mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update components
This commit is contained in:
parent
196a7b8fc8
commit
9977ee3741
@ -16,12 +16,12 @@
|
||||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.1.57",
|
||||
"_release": "1.1.57",
|
||||
"version": "1.1.58",
|
||||
"_release": "1.1.58",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.1.57",
|
||||
"commit": "80da1038922e66fc43774cb9e5a1df999f303295"
|
||||
"tag": "1.1.58",
|
||||
"commit": "57a6fa68cdf72d05c6dfdf95cd2134471eca0af5"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||
"_target": "^1.1.51",
|
||||
|
@ -900,7 +900,7 @@
|
||||
return null;
|
||||
}
|
||||
|
||||
self.connect = function () {
|
||||
self.connect = function (options) {
|
||||
|
||||
console.log('Begin connect');
|
||||
|
||||
@ -908,7 +908,7 @@
|
||||
|
||||
self.getAvailableServers().then(function (servers) {
|
||||
|
||||
self.connectToServers(servers).then(function (result) {
|
||||
self.connectToServers(servers, options).then(function (result) {
|
||||
|
||||
resolve(result);
|
||||
});
|
||||
@ -921,7 +921,7 @@
|
||||
// TODO: Implement
|
||||
};
|
||||
|
||||
self.connectToServers = function (servers) {
|
||||
self.connectToServers = function (servers, options) {
|
||||
|
||||
console.log('Begin connectToServers, with ' + servers.length + ' servers');
|
||||
|
||||
@ -929,7 +929,7 @@
|
||||
|
||||
if (servers.length == 1) {
|
||||
|
||||
self.connectToServer(servers[0]).then(function (result) {
|
||||
self.connectToServer(servers[0], options).then(function (result) {
|
||||
|
||||
if (result.State == ConnectionState.Unavailable) {
|
||||
|
||||
@ -948,7 +948,7 @@
|
||||
var firstServer = servers.length ? servers[0] : null;
|
||||
// See if we have any saved credentials and can auto sign in
|
||||
if (firstServer) {
|
||||
self.connectToServer(firstServer).then(function (result) {
|
||||
self.connectToServer(firstServer, options).then(function (result) {
|
||||
|
||||
if (result.State == ConnectionState.SignedIn) {
|
||||
|
||||
@ -1112,7 +1112,8 @@
|
||||
function onSuccessfulConnection(server, systemInfo, connectionMode, options, resolve) {
|
||||
|
||||
var credentials = credentialProvider.credentials();
|
||||
if (credentials.ConnectAccessToken) {
|
||||
options = options || {};
|
||||
if (credentials.ConnectAccessToken && options.enableAutoLogin !== false) {
|
||||
|
||||
ensureConnectUser(credentials).then(function () {
|
||||
|
||||
@ -1139,7 +1140,14 @@
|
||||
|
||||
function afterConnectValidated(server, credentials, systemInfo, connectionMode, verifyLocalAuthentication, options, resolve) {
|
||||
|
||||
if (verifyLocalAuthentication && server.AccessToken) {
|
||||
options = options || {};
|
||||
|
||||
if (options.enableAutoLogin === false) {
|
||||
|
||||
server.UserId = null;
|
||||
server.AccessToken = null;
|
||||
|
||||
} else if (verifyLocalAuthentication && server.AccessToken && options.enableAutoLogin !== false) {
|
||||
|
||||
validateAuthentication(server, connectionMode).then(function () {
|
||||
|
||||
@ -1164,7 +1172,7 @@
|
||||
};
|
||||
|
||||
result.ApiClient = getOrAddApiClient(server, connectionMode);
|
||||
result.State = server.AccessToken ?
|
||||
result.State = server.AccessToken && options.enableAutoLogin !== false ?
|
||||
ConnectionState.SignedIn :
|
||||
ConnectionState.ServerSignIn;
|
||||
|
||||
@ -1196,7 +1204,7 @@
|
||||
return address;
|
||||
}
|
||||
|
||||
self.connectToAddress = function (address) {
|
||||
self.connectToAddress = function (address, options) {
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
@ -1222,7 +1230,7 @@
|
||||
};
|
||||
updateServerInfo(server, publicInfo);
|
||||
|
||||
self.connectToServer(server).then(resolve, onFail);
|
||||
self.connectToServer(server, options).then(resolve, onFail);
|
||||
|
||||
}, onFail);
|
||||
|
||||
|
@ -16,12 +16,12 @@
|
||||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.3.79",
|
||||
"_release": "1.3.79",
|
||||
"version": "1.3.80",
|
||||
"_release": "1.3.80",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.3.79",
|
||||
"commit": "0365f630017335cdce79e783cffcac271846a32d"
|
||||
"tag": "1.3.80",
|
||||
"commit": "4e49327c0a8658e390e2a4a59d0222e6c3614be4"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.0",
|
||||
|
@ -13,6 +13,15 @@ define(['appStorage', 'events'], function (appStorage, events) {
|
||||
|
||||
var self = this;
|
||||
|
||||
self.enableAutoLogin = function (val) {
|
||||
|
||||
if (val != null) {
|
||||
self.set('enableAutoLogin', val.toString());
|
||||
}
|
||||
|
||||
return self.get('enableAutoLogin') != 'false';
|
||||
};
|
||||
|
||||
self.enableAutomaticBitrateDetection = function (val) {
|
||||
|
||||
if (val != null) {
|
||||
|
@ -381,7 +381,8 @@ define([], function () {
|
||||
distX: distX,
|
||||
distY: distY,
|
||||
distT: distT,
|
||||
distT2: distT2
|
||||
distT2: distT2,
|
||||
index: i
|
||||
});
|
||||
}
|
||||
|
||||
@ -406,13 +407,23 @@ define([], function () {
|
||||
}
|
||||
|
||||
function sortNodesT(a, b) {
|
||||
var result = a.distT - b.distT;
|
||||
|
||||
if (result == 0) {
|
||||
return a.distT2 - b.distT2;
|
||||
var result = a.distT - b.distT;
|
||||
if (result != 0) {
|
||||
return result;
|
||||
}
|
||||
|
||||
return result;
|
||||
//result = a.distT2 - b.distT2;
|
||||
//if (result != 0) {
|
||||
// return result;
|
||||
//}
|
||||
|
||||
result = a.index - b.index;
|
||||
if (result != 0) {
|
||||
return result;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
function sortNodesY(a, b) {
|
||||
|
@ -201,7 +201,7 @@
|
||||
return curr.ChannelId == channel.Id;
|
||||
});
|
||||
|
||||
html += '<div class="channelPrograms">';
|
||||
html += '<div class="channelPrograms" data-channelid="' + channel.Id + '">';
|
||||
|
||||
for (var i = 0, length = programs.length; i < length; i++) {
|
||||
|
||||
@ -360,6 +360,19 @@
|
||||
imageLoader.lazyChildren(channelList);
|
||||
}
|
||||
|
||||
function parentWithClass(elem, className) {
|
||||
|
||||
while (!elem.classList || !elem.classList.contains(className)) {
|
||||
elem = elem.parentNode;
|
||||
|
||||
if (!elem) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
return elem;
|
||||
}
|
||||
|
||||
function renderGuide(context, date, channels, programs, apiClient) {
|
||||
|
||||
//var list = [];
|
||||
@ -400,6 +413,15 @@
|
||||
// list.push(i);
|
||||
//});
|
||||
//channels = list;
|
||||
var activeElement = document.activeElement;
|
||||
var itemId = activeElement && activeElement.getAttribute ? activeElement.getAttribute('data-id') : null;
|
||||
var channelRowId = null;
|
||||
|
||||
if (activeElement) {
|
||||
channelRowId = parentWithClass(activeElement, 'channelPrograms');
|
||||
channelRowId = channelRowId && channelRowId.getAttribute ? channelRowId.getAttribute('data-channelid') : null;
|
||||
}
|
||||
|
||||
renderChannelHeaders(context, channels, apiClient);
|
||||
|
||||
var startDate = date;
|
||||
@ -409,7 +431,27 @@
|
||||
renderPrograms(context, date, channels, programs);
|
||||
|
||||
if (layoutManager.tv) {
|
||||
focusManager.autoFocus(context.querySelector('.programGrid'), true);
|
||||
|
||||
var focusElem;
|
||||
if (itemId) {
|
||||
focusElem = context.querySelector('[data-id="' + itemId + '"]')
|
||||
}
|
||||
|
||||
if (focusElem) {
|
||||
focusManager.focus(focusElem);
|
||||
} else {
|
||||
|
||||
var autoFocusParent;
|
||||
|
||||
if (channelRowId) {
|
||||
autoFocusParent = context.querySelector('[data-channelid="' + channelRowId + '"]')
|
||||
}
|
||||
|
||||
if (!autoFocusParent) {
|
||||
autoFocusParent = context.querySelector('.programGrid');
|
||||
}
|
||||
focusManager.autoFocus(autoFocusParent, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'browser', 'pageJs'], function (loading, viewManager, skinManager, pluginManager, backdrop, browser, page) {
|
||||
define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'browser', 'pageJs', 'appSettings'], function (loading, viewManager, skinManager, pluginManager, backdrop, browser, page, appSettings) {
|
||||
|
||||
var embyRouter = {
|
||||
showLocalLogin: function (apiClient, serverId, manualLogin) {
|
||||
@ -35,7 +35,11 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||
|
||||
loading.show();
|
||||
|
||||
connectionManager.connect().then(function (result) {
|
||||
connectionManager.connect({
|
||||
|
||||
enableAutoLogin: appSettings.enableAutoLogin()
|
||||
|
||||
}).then(function (result) {
|
||||
handleConnectionResult(result, loading);
|
||||
});
|
||||
}
|
||||
@ -210,8 +214,8 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||
if (!isBackNav) {
|
||||
// Don't force a new view for home due to the back menu
|
||||
//if (route.type != 'home') {
|
||||
onNewViewNeeded();
|
||||
return;
|
||||
onNewViewNeeded();
|
||||
return;
|
||||
//}
|
||||
}
|
||||
viewManager.tryRestoreView(currentRequest).then(function () {
|
||||
@ -234,7 +238,11 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||
|
||||
connectionManager = connectionManagerInstance;
|
||||
|
||||
connectionManager.connect().then(function (result) {
|
||||
connectionManager.connect({
|
||||
|
||||
enableAutoLogin: appSettings.enableAutoLogin()
|
||||
|
||||
}).then(function (result) {
|
||||
|
||||
firstConnectionResult = result;
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
||||
"tag": "v1.0.11",
|
||||
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
||||
},
|
||||
"_source": "git://github.com/polymerelements/paper-behaviors.git",
|
||||
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "polymerelements/paper-behaviors"
|
||||
"_originalSource": "PolymerElements/paper-behaviors"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u062e\u0631\u0648\u062c",
|
||||
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
|
||||
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
|
||||
"OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a",
|
||||
"OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"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",
|
||||
@ -77,7 +76,6 @@
|
||||
"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 an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"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",
|
||||
@ -205,7 +202,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": "Release Date",
|
||||
"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",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
|
||||
"OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
|
||||
"OptionBackdrop": "\u0424\u043e\u043d",
|
||||
"OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
|
||||
"ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438",
|
||||
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0439 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430",
|
||||
"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",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Sortir",
|
||||
"LabelVisitCommunity": "Visita la Comunitat",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configura codi pin",
|
||||
"HeaderAdultsReadHere": "Adults Llegiu Aqu\u00ed!",
|
||||
"RegisterWithPayPal": "Registra amb PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies",
|
||||
"LabelSyncTempPath": "Directori de fitxers temporals:",
|
||||
"LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multim\u00e8dia convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "Habilita la visualitzaci\u00f3 millorada de pel\u00b7l\u00edcules",
|
||||
"LabelEnableEnhancedMoviesHelp": "Si s'habilita, les pel\u00b7l\u00edcules es mostraran com a directoris per a incloure tr\u00e0ilers, extres, elenc i equip i qualsevol altre contingut relacionat.",
|
||||
"HeaderSyncJobInfo": "Feina del Sync",
|
||||
"FolderTypeMixed": "Contingut barrejat",
|
||||
"FolderTypeMixed": "Contingut mesclat",
|
||||
"FolderTypeMovies": "Pel\u00b7l\u00edcules",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "V\u00eddeos per adults",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "V\u00eddeos musicals",
|
||||
"FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendent",
|
||||
"OptionDescending": "Descendent",
|
||||
"OptionRuntime": "Temps d'exec.",
|
||||
"OptionReleaseDate": "Data d'Estrena",
|
||||
"OptionReleaseDate": "Data de Publicaci\u00f3",
|
||||
"OptionPlayCount": "Nombre de Reproduccions",
|
||||
"OptionDatePlayed": "Data de Reproducci\u00f3",
|
||||
"OptionDateAdded": "Data afegida",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Pressupost",
|
||||
"OptionRevenue": "Ingressos",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Tel\u00f3 de fons",
|
||||
"OptionTimeline": "L\u00ednia temporal",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metapuntuaci\u00f3",
|
||||
"ButtonSelect": "Selecciona",
|
||||
"ButtonGroupVersions": "Agrupar Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Afegir a Col\u00b7lecci\u00f3",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Cr\u00e8dits",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "Repartiment i Equip",
|
||||
"HeaderAdditionalParts": "Parts addicionals",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Anunci",
|
||||
"ButtonPlayTrailer": "Tr\u00e0iler",
|
||||
"LabelMissing": "Manca",
|
||||
"LabelOffline": "Desconnectat",
|
||||
"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.",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Saltat",
|
||||
"HeaderEpisodeOrganization": "Organitzaci\u00f3 d'Episodis",
|
||||
"LabelSeries": "S\u00e8ries:",
|
||||
"LabelSeasonNumber": "Nombre de temporada:",
|
||||
"LabelEpisodeNumber": "Nombre d'episodi:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Nombre d'episodi final",
|
||||
"LabelEndingEpisodeNumberHelp": "Nom\u00e9s cal per als fitxers multi-episodi",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Reprodu\u00efnt",
|
||||
"TabNavigation": "Navegaci\u00f3",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Escenes",
|
||||
"ButtonSubtitles": "Subt\u00edtols",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista seg\u00fcent",
|
||||
"ButtonStop": "Atura",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonNext": "Seg\u00fcent",
|
||||
@ -920,7 +914,6 @@
|
||||
"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": "Aquesta llista de reproducci\u00f3 \u00e9s buida actualment.",
|
||||
"ButtonDismiss": "Descarta",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Can\u00e7ons",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "V\u00eddeos per adults",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subt\u00edtols",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organitza",
|
||||
"TabPlugins": "Complements",
|
||||
"TabHelp": "Ajuda",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notificacions",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nova llista de reproducci\u00f3...",
|
||||
"MessageAddedToPlaylistSuccess": "D'acord",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Esborra de la llista de reproducci\u00f3",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Tr\u00e0ilers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Jocs",
|
||||
"HeaderBooks": "Llibres",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Compartir",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Comparteix",
|
||||
"HeaderConfirm": "Confirmar",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Zav\u0159\u00edt",
|
||||
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfigurace pin code",
|
||||
"HeaderAdultsReadHere": "Pro dosp\u011bl\u00e9 - \u010dt\u011bte zde!",
|
||||
"RegisterWithPayPal": "Zaregistrujte se pomoc\u00ed PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma",
|
||||
"LabelSyncTempPath": "Slo\u017eka pro do\u010dasn\u00e9 soubory:",
|
||||
"LabelSyncTempPathHelp": "Zadejte vlastn\u00ed synchroniza\u010dn\u00ed pracovn\u00ed slo\u017eku. P\u0159eveden\u00e9 m\u00e9dia vytvo\u0159en\u00e9 b\u011bhem synchroniza\u010dn\u00edho procesu zde budou ulo\u017eeny.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Sm\u00ed\u0161en\u00fd obsah",
|
||||
"FolderTypeMovies": "Filmy",
|
||||
"FolderTypeMusic": "Hudba",
|
||||
"FolderTypeAdultVideos": "Filmy pro dosp\u011bl\u00e9",
|
||||
"FolderTypePhotos": "Fotky",
|
||||
"FolderTypeMusicVideos": "Hudebn\u00ed klipy",
|
||||
"FolderTypeHomeVideos": "Dom\u00e1c\u00ed video",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Rozpo\u010det",
|
||||
"OptionRevenue": "P\u0159\u00edjem",
|
||||
"OptionPoster": "Plak\u00e1t",
|
||||
"HeaderYears": "Roky",
|
||||
"OptionPosterCard": "Plak\u00e1t",
|
||||
"OptionBackdrop": "Pozad\u00ed",
|
||||
"OptionTimeline": "\u010casov\u00e1 osa",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metask\u00f3re",
|
||||
"ButtonSelect": "Vybrat",
|
||||
"ButtonGroupVersions": "Skupinov\u00e9 verze",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "P\u0159idat do Kolekce",
|
||||
"PismoMessage": "Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.",
|
||||
"TangibleSoftwareMessage": "Pou\u017eit\u00e9 konkr\u00e9tn\u00ed \u0159e\u0161en\u00ed Java \/ C # p\u0159evodn\u00edk\u016f skrz p\u0159\u00edsp\u011bvkov\u00e9 licence.",
|
||||
"HeaderCredits": "Kredity",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "Herci a obsazen\u00ed",
|
||||
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
|
||||
"ButtonSplitVersionsApart": "Rozd\u011blit verze",
|
||||
"ButtonPlayTrailer": "Uk\u00e1zka\/Trailer",
|
||||
"ButtonPlayTrailer": "Uk\u00e1zka",
|
||||
"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.",
|
||||
@ -591,9 +587,9 @@
|
||||
"LabelFailed": "Selh\u00e1n\u00ed",
|
||||
"LabelSkipped": "P\u0159esko\u010deno",
|
||||
"HeaderEpisodeOrganization": "Organizace epizod",
|
||||
"LabelSeries": "Seri\u00e1ly:",
|
||||
"LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny",
|
||||
"LabelEpisodeNumber": "\u010c\u00edslo epizody:",
|
||||
"LabelSeries": "Seri\u00e1ly",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:",
|
||||
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
|
||||
"OptionRememberOrganizeCorrection": "Ulo\u017e a aplikuj tuto korekci pro budouc\u00ed soubory s podobn\u00fdmi jm\u00e9ny",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
||||
"TabNavigation": "Navigace",
|
||||
"TabControls": "Ovl\u00e1d\u00e1n\u00ed",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Sc\u00e9ny",
|
||||
"ButtonSubtitles": "Titulky",
|
||||
"ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa",
|
||||
"ButtonNextTrack": "Dal\u0161\u00ed stopa",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonNextTrack": "N\u00e1sleduj\u00edc\u00ed stopa",
|
||||
"ButtonStop": "Zastavit",
|
||||
"ButtonPause": "Pozastavit",
|
||||
"ButtonNext": "Dal\u0161\u00ed",
|
||||
@ -920,7 +914,6 @@
|
||||
"MessageNoPlaylistsAvailable": "Playlisty umo\u017e\u0148uj\u00ed vytv\u00e1\u0159et seznamy obsahu pro postupn\u00e9 p\u0159ehr\u00e1n\u00ed. Chcete-li p\u0159idat polo\u017eky do playlist\u016f, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i, nebo klepn\u011bte podr\u017ete, a pot\u00e9 vyberte mo\u017enost P\u0159idat do Playlistu.",
|
||||
"MessageNoPlaylistItemsAvailable": "Playlist je zat\u00edm pr\u00e1zdn\u00fd.",
|
||||
"ButtonDismiss": "Zam\u00edtnout",
|
||||
"ButtonMore": "V\u00edce",
|
||||
"ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.",
|
||||
"LabelChannelStreamQuality": "Preferovan\u00e1 kvalita pro vys\u00edl\u00e1n\u00ed p\u0159es internet:",
|
||||
"LabelChannelStreamQualityHelp": "P\u0159i mal\u00e9 \u0161\u00ed\u0159ce p\u00e1sma, m\u016f\u017ee pomoci omezov\u00e1n\u00ed kvality pro hlad\u0161\u00ed streamov\u00e1n\u00ed videa.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Neidentifikov\u00e1no",
|
||||
"OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed",
|
||||
"OptionStub": "Pah\u00fdl",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Sez\u00f3na 0",
|
||||
"LabelReport": "Hl\u00e1\u0161en\u00ed:",
|
||||
"OptionReportSongs": "Songy",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "\u00dam\u011blci",
|
||||
"OptionReportAlbums": "Alba",
|
||||
"OptionReportAdultVideos": "Videa pro dosp\u011bl\u00e9",
|
||||
"ButtonMoreItems": "V\u00edce",
|
||||
"ButtonMore": "V\u00edce",
|
||||
"HeaderActivity": "Aktivity",
|
||||
"ScheduledTaskStartedWithName": "{0} zah\u00e1jeno",
|
||||
"ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Obnova hesla",
|
||||
"HeaderParentalRatings": "Rodi\u010dovsk\u00e1 hodnocen\u00ed",
|
||||
"HeaderVideoTypes": "Typ videa",
|
||||
"HeaderYears": "Roky",
|
||||
"HeaderBlockItemsWithNoRating": "Blokovat obsah s \u017e\u00e1dnou nebo nerozpoznanou informac\u00ed o hodnocen\u00ed:",
|
||||
"LabelBlockContentWithTags": "Blokovat obsah dle tag\u016f:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit na jednotliv\u00e9 vlo\u017een\u00ed obr\u00e1zku",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy",
|
||||
"HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti",
|
||||
"HeaderUpcomingPrograms": "Nadch\u00e1zej\u00edc\u00ed TV programy",
|
||||
"ButtonMoreItems": "V\u00edce",
|
||||
"LabelShowLibraryTileNames": "Zobrazit n\u00e1zvy dla\u017edic v knihovn\u011b",
|
||||
"LabelShowLibraryTileNamesHelp": "Ur\u010d\u00edte, zda se zobraz\u00ed \u0161t\u00edtky s n\u00e1zvy pod dla\u017edic\u00ed v knihovn\u011b na domovsk\u00e9 str\u00e1nce",
|
||||
"OptionEnableTranscodingThrottle": "Povolit p\u0159i\u0161krcen\u00ed",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
|
||||
"LabelDataProvider": "Poskytovatel dat:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nov\u00e9 nahr\u00e1vky automaticky uspo\u0159\u00e1dat a importovat do va\u0161ich knihoven.",
|
||||
"HeaderDefaultPadding": "Standardn\u00ed odsazen\u00ed",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Titulky",
|
||||
"HeaderVideos": "Videa",
|
||||
"OptionEnableVideoFrameAnalysis": "Povolit anal\u00fdzu videa sn\u00edmek po sn\u00edmku",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extrahuje podrobn\u00e9 informace o videu, kter\u00e9 lze pou\u017e\u00edt pro co nejefektivn\u011bj\u0161\u00ed p\u0159ek\u00f3dov\u00e1n\u00ed. Zp\u016fsob\u00ed d\u00e9letrvaj\u00edc\u00ed prohled\u00e1v\u00e1n\u00ed knihovny.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit jednotliv\u00fdch sn\u00edmk\u016f pro anal\u00fdzu videa men\u0161\u00ed ne\u017e:",
|
||||
"LabelHardwareAccelerationType": "Hardwarov\u00e1 akcelerace:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Dostupn\u00e9 jen na podporovan\u00fdch syst\u00e9mech.",
|
||||
"ButtonServerDashboard": "Hlavn\u00ed nab\u00eddka serveru",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-organizace",
|
||||
"TabPlugins": "Z\u00e1suvn\u00e9 moduly",
|
||||
"TabHelp": "N\u00e1pov\u011bda",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Kvalita",
|
||||
"HeaderNotifications": "Ozn\u00e1men\u00ed",
|
||||
"HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nov\u00fd playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Zobrazit nahr\u00e1vky seri\u00e1l\u016f",
|
||||
"ValueOriginalAirDate": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Odebrat z playlistu",
|
||||
"HeaderSpecials": "Speci\u00e1ly",
|
||||
"HeaderTrailers": "Trailery",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Alba",
|
||||
"HeaderGames": "Hry",
|
||||
"HeaderBooks": "Knihy",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Sez\u00f3ny",
|
||||
"HeaderTracks": "Stopy",
|
||||
"HeaderItems": "Polo\u017eky",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "E-mailov\u00e1 adresa je ji\u017e pou\u017e\u00edv\u00e1na. Zadejte novou e-mailovou adresu a zkuste to znovu, nebo pou\u017eijte funkci zapomenut\u00e9ho hesla.",
|
||||
"MessageThankYouForConnectSignUp": "D\u011bkujeme za p\u0159ihl\u00e1\u0161en\u00ed se k Emby Connect. Dal\u0161\u00ed pokyny, jak potvrdit sv\u016fj nov\u00fd \u00fa\u010det, V\u00e1m budou zasl\u00e1ny na va\u0161\u00ed emailovou adresu. Pros\u00edm potvr\u010fte \u00fa\u010det a pak se vr\u00e1\u0165te pro p\u0159ihl\u00e1\u0161en\u00ed.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Sd\u00edlet",
|
||||
"ButtonShareHelp": "Pod\u011blte se o webovou str\u00e1nku obsahuj\u00edc\u00ed informace o m\u00e9di\u00edch se soci\u00e1ln\u00edmi m\u00e9dii. Medi\u00e1ln\u00ed soubory nejsou nikdy sd\u00edleny ve\u0159ejn\u011b.",
|
||||
"ButtonShare": "Sd\u00edlet",
|
||||
"HeaderConfirm": "Souhlas",
|
||||
"MessageConfirmDeleteTunerDevice": "Jste si jisti, \u017ee chcete smazat tento p\u0159\u00edstroj?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Vyberte za\u0159azen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e1 za\u0159azen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.",
|
||||
"MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny trailery a u\u017eivatelsk\u00e1 intra.",
|
||||
"OptionEnableDisplayMirroring": "Povolit zrcadlen\u00ed zobrazen\u00ed",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizace vy\u017eaduje p\u0159ipojen\u00ed k Emby serveru s aktivn\u00edm p\u0159edplatn\u00fdm Emby Premiere.",
|
||||
"ErrorValidatingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i ov\u011b\u0159ov\u00e1n\u00ed informac\u00ed o va\u0161em p\u0159edplatn\u00e9m Emby Premiere. Pros\u00edm zkuste to pozd\u011bji.",
|
||||
"LabelLocalSyncStatusValue": "Stav: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Afslut",
|
||||
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfigurer pinkode",
|
||||
"HeaderAdultsReadHere": "Voksne l\u00e6s her!",
|
||||
"RegisterWithPayPal": "Registrer med PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "Blandet indhold",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "FIlm",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Voksenfilm",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "Musikvideoer",
|
||||
"FolderTypeHomeVideos": "Hjemmevideoer",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Stigende",
|
||||
"OptionDescending": "Faldende",
|
||||
"OptionRuntime": "Varighed",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Udgivelsesdato",
|
||||
"OptionPlayCount": "Gange afspillet",
|
||||
"OptionDatePlayed": "Dato for afspilning",
|
||||
"OptionDateAdded": "Dato for tilf\u00f8jelse",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Indt\u00e6gt",
|
||||
"OptionPoster": "Plakat",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Plakat",
|
||||
"OptionBackdrop": "Baggrund",
|
||||
"OptionTimeline": "Tidslinje",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "V\u00e6lg",
|
||||
"ButtonGroupVersions": "Grupp\u00e9r versioner",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Tilf\u00f8j til samling",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Anerkendelser",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienter",
|
||||
"LabelCompleted": "F\u00e6rdig",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "Fejlet",
|
||||
"LabelSkipped": "Oversprunget",
|
||||
"HeaderEpisodeOrganization": "Organisation af episoder",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "S\u00e6sonnummer",
|
||||
"LabelEpisodeNumber": "Episodenummer",
|
||||
"LabelSeries": "Serier",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
|
||||
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Spiller nu",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Kontroller",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Forrige spor",
|
||||
"ButtonNextTrack": "N\u00e6ste spor",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "N\u00e6ste",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Afvis",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Uidentificeret",
|
||||
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
|
||||
"OptionStub": "P\u00e5begyndt",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "S\u00e6son 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Sange",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artister",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Voksenfilm",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Aktivitet",
|
||||
"ScheduledTaskStartedWithName": "{0} startet",
|
||||
"ScheduledTaskCancelledWithName": "{0} blev afbrudt",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Nulstil adgangskode",
|
||||
"HeaderParentalRatings": "Aldersgr\u00e6nser",
|
||||
"HeaderVideoTypes": "Videotyper",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Bloker indhold med disse tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Kommende film",
|
||||
"HeaderUpcomingSports": "Kommende sportsudsendelser",
|
||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
|
||||
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
|
||||
"OptionEnableTranscodingThrottle": "Aktiver neddrosling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Undertekster",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Organiser automatisk",
|
||||
"TabPlugins": "Tilf\u00f8jelser",
|
||||
"TabHelp": "Hj\u00e6lp",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Kvalitet",
|
||||
"HeaderNotifications": "Notifikationer",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Ny afspilningsliste...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Vis serieoptagelse",
|
||||
"ValueOriginalAirDate": "Blev sendt f\u00f8rste gang: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Fjer fra afspilningsliste",
|
||||
"HeaderSpecials": "S\u00e6rudsendelser",
|
||||
"HeaderTrailers": "Trailere",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Spil",
|
||||
"HeaderBooks": "B\u00f8ger",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "S\u00e6soner",
|
||||
"HeaderTracks": "Spor",
|
||||
"HeaderItems": "Element",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Beenden",
|
||||
"LabelVisitCommunity": "Besuche die Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "PIN Code festlegen",
|
||||
"HeaderAdultsReadHere": "Eltern, bitte lesen!",
|
||||
"RegisterWithPayPal": "Registrieren mit PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft",
|
||||
"HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
|
||||
"LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
|
||||
"LabelSyncTempPathHelp": "Legen Sie ein Arbeitsverzeichnis f\u00fcr die Synchronisation fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
|
||||
"LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
|
||||
"HeaderSyncJobInfo": "Synchronisationsaufgabe",
|
||||
"FolderTypeMixed": "Gemischte Inhalte",
|
||||
"FolderTypeMixed": "Gemischter Inhalt",
|
||||
"FolderTypeMovies": "Filme",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "Musikvideos",
|
||||
"FolderTypeHomeVideos": "Heimvideos",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Aufsteigend",
|
||||
"OptionDescending": "Absteigend",
|
||||
"OptionRuntime": "Dauer",
|
||||
"OptionReleaseDate": "Erscheinungsdatum",
|
||||
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||
"OptionPlayCount": "Z\u00e4hler",
|
||||
"OptionDatePlayed": "Abgespielt am",
|
||||
"OptionDateAdded": "Hinzugef\u00fcgt am",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Einnahme",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Jahre",
|
||||
"OptionPosterCard": "Poster Karte",
|
||||
"OptionBackdrop": "Hintergrund",
|
||||
"OptionTimeline": "Zeitlinie",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Ausw\u00e4hlen",
|
||||
"ButtonGroupVersions": "Gruppiere Versionen",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
|
||||
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
|
||||
"TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
|
||||
"HeaderCredits": "Herausgeber",
|
||||
@ -351,10 +347,10 @@
|
||||
"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": "Default recording path:",
|
||||
"LabelRecordingPath": "Standard Aufnahmepfad:",
|
||||
"LabelMovieRecordingPath": "Film Aufnahmepfad (Optional):",
|
||||
"LabelSeriesRecordingPath": "Serien Aufnahmepfad (optional):",
|
||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||
"LabelRecordingPathHelp": "Lege das Verzeichnis f\u00fcr Aufnahmen fest. L\u00e4sst Du es leer, wird das Data-Verzeichnis des Servers verwendet.",
|
||||
"LabelImagesByNamePath": "Images by name Pfad:",
|
||||
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
|
||||
"LabelMetadataPath": "Metadata Pfad:",
|
||||
@ -565,8 +561,8 @@
|
||||
"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": "External domain:",
|
||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
||||
"LabelExternalDDNS": "Externe Domain:",
|
||||
"LabelExternalDDNSHelp": "Wenn Du einen dynamischen DNS verwendest gib ihn hier ein. Emby Apps werden diesen f\u00fcr entfernte Verbindungen verwenden. Dieses Feld muss gef\u00fcllt werden, wenn ein eigenes SSL Zertifikat verwendet wird.",
|
||||
"TabResume": "Fortsetzen",
|
||||
"TabWeather": "Wetter",
|
||||
"TitleAppSettings": "App Einstellungen",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Aktuelle Wiedergabe",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Vollbild",
|
||||
"ButtonScenes": "Szenen",
|
||||
"ButtonSubtitles": "Untertitel",
|
||||
"ButtonPreviousTrack": "Vorherige Tonspur",
|
||||
"ButtonNextTrack": "N\u00e4chste Tonspur",
|
||||
"ButtonAudioTracks": "Audiospuren",
|
||||
"ButtonPreviousTrack": "Vorheriges St\u00fcck",
|
||||
"ButtonNextTrack": "N\u00e4chstes St\u00fcck",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "N\u00e4chstes",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Verwerfen",
|
||||
"ButtonMore": "Mehr",
|
||||
"ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.",
|
||||
"LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams:",
|
||||
"LabelChannelStreamQualityHelp": "In einer Umgebung mit langsamer Bandbreite kann die Beschr\u00e4nkung der Wiedergabequalit\u00e4t dazu beitragen eine fl\u00fcssige Darstellung sicherzustellen.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Undefiniert",
|
||||
"OptionMissingParentalRating": "Fehlende Altersfreigabe",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episoden",
|
||||
"OptionSeason0": "Staffel 0",
|
||||
"LabelReport": "Bericht:",
|
||||
"OptionReportSongs": "Lieder",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Interpreten",
|
||||
"OptionReportAlbums": "Alben",
|
||||
"OptionReportAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||
"ButtonMoreItems": "Mehr",
|
||||
"ButtonMore": "Mehr",
|
||||
"HeaderActivity": "Aktivit\u00e4ten",
|
||||
"ScheduledTaskStartedWithName": "{0} gestartet",
|
||||
"ScheduledTaskCancelledWithName": "{0} wurde abgebrochen",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Passwort zur\u00fccksetzen",
|
||||
"HeaderParentalRatings": "Altersbeschr\u00e4nkung",
|
||||
"HeaderVideoTypes": "Videotypen",
|
||||
"HeaderYears": "Jahre",
|
||||
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
|
||||
"LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Bevorstehende Filme",
|
||||
"HeaderUpcomingSports": "Folgende Sportveranstaltungen",
|
||||
"HeaderUpcomingPrograms": "Bevorstehende Programme",
|
||||
"ButtonMoreItems": "Mehr",
|
||||
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
|
||||
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
|
||||
"OptionEnableTranscodingThrottle": "aktiviere Drosselung",
|
||||
@ -1494,15 +1488,11 @@
|
||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
|
||||
"HeaderSetupTVGuide": "TV Guide einrichten",
|
||||
"LabelDataProvider": "Datenquelle:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Neue Aufnahmen werden mittels automatischer Organisation in Ihrer Bibliothek importiert.",
|
||||
"OptionSendRecordingsToAutoOrganize": "Organisiere Aufnahmen in bereits bestehende Serien Verzeichnisse anderer Bibliotheken automatisch",
|
||||
"HeaderDefaultPadding": "Standard Vor\/ Nachlauf",
|
||||
"OptionEnableRecordingSubfolders": "Erstelle Unterverzeichnisse f\u00fcr Katerogien wie Sport, Kindersendungen etc.",
|
||||
"HeaderSubtitles": "Untertitel",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware Beschleunigung:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Nur auf unterst\u00fctzten Systemen verf\u00fcgbar.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Autom.Organisation",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Hilfe",
|
||||
"ButtonFullscreen": "Vollbild",
|
||||
"ButtonAudioTracks": "Audiospuren",
|
||||
"ButtonQuality": "Qualit\u00e4t",
|
||||
"HeaderNotifications": "Benachrichtigungen",
|
||||
"HeaderSelectPlayer": "W\u00e4hle Videoplayer",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Neue Wiedergabeliste...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Zeige Serienaufnahmen an",
|
||||
"ValueOriginalAirDate": "Urspr\u00fcngliches Ausstrahlungsdatum: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Von Wiedergabeliste entfernen",
|
||||
"HeaderSpecials": "Extras",
|
||||
"HeaderTrailers": "Trailer",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Alben",
|
||||
"HeaderGames": "Spiele",
|
||||
"HeaderBooks": "B\u00fccher",
|
||||
"HeaderEpisodes": "Episoden",
|
||||
"HeaderSeasons": "Staffeln",
|
||||
"HeaderTracks": "Lieder",
|
||||
"HeaderItems": "Inhalte",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "Die Emailadresse wird bereits verwendet. Bitte verwenden Sie eine neue Emailadresse und versuchen Sie es erneut oder benutzen Sie die \"Passwort vergessen\" Funktion.",
|
||||
"MessageThankYouForConnectSignUp": "Vielen Dank f\u00fcr Ihre Anmeldung bei Emby Connect. Eine Emails mit weiteren Schritten zur Anmeldung Ihres neuen Kontos wird Ihnen in K\u00fcrze zugestellt. Bitte best\u00e4tigen Sie Ihr Konto und kehren Sie dann hier her zur\u00fcck um sich anzumelden.",
|
||||
"Share": "Teilen",
|
||||
"HeaderShare": "Teilen",
|
||||
"ButtonShareHelp": "Teilen Sie eine Website mit Medieninformationen in einem sozialen Netzwerk. Medien werden niemals \u00f6ffentlich geteilt.",
|
||||
"ButtonShare": "Teilen",
|
||||
"HeaderConfirm": "Best\u00e4tigen",
|
||||
"MessageConfirmDeleteTunerDevice": "M\u00f6chten Sie dieses Ger\u00e4t wirklich l\u00f6schen?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?",
|
||||
"MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.",
|
||||
"OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync ben\u00f6tigt eine Verbindung zu einem Emby Server mit aktivem Emby Premium Abo.",
|
||||
"ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
|
||||
"AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.",
|
||||
"HeaderHealthMonitor": "Gesundheits Monitor",
|
||||
"HealthMonitorNoAlerts": "Keine aktiven Wartnungen."
|
||||
"HealthMonitorNoAlerts": "Keine aktiven Wartnungen.",
|
||||
"RecordingPathChangeMessage": "Das \u00c4ndern des Aufnahmeverzeichnisses wird alte Aufnahmen nicht automatisch verschieben. Wenn Du das m\u00f6chtest, musst Du das selber machen.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
|
||||
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"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 an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "\u0391\u03bd\u03ac\u03bc\u03b5\u03b9\u03ba\u03c4\u03bf \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||
"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",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"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",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1",
|
||||
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Exit",
|
||||
"LabelVisitCommunity": "Visit Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organisation",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Season number",
|
||||
"LabelEpisodeNumber": "Episode number",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organise",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Salir",
|
||||
"LabelVisitCommunity": "Visit Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Salir",
|
||||
"LabelVisitCommunity": "Visitar la Comunidad",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||
"HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
|
||||
"RegisterWithPayPal": "Registrar con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincronizacion requiere de una Membres\u00eda de Aficionado",
|
||||
"HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
|
||||
"LabelSyncTempPath": "Ruta 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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Contenido mezclado",
|
||||
"FolderTypeMovies": "Pel\u00edculas",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "Videos para adultos",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "Videos musicales",
|
||||
"FolderTypeHomeVideos": "Videos caseros",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Duraci\u00f3n",
|
||||
"OptionReleaseDate": "Fecha de Estreno",
|
||||
"OptionReleaseDate": "Fecha de Liberaci\u00f3n",
|
||||
"OptionPlayCount": "Contador",
|
||||
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
|
||||
"OptionDateAdded": "Fecha de Adici\u00f3n",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Presupuesto",
|
||||
"OptionRevenue": "Recaudaci\u00f3n",
|
||||
"OptionPoster": "P\u00f3ster",
|
||||
"HeaderYears": "A\u00f1os",
|
||||
"OptionPosterCard": "Tarjeta de P\u00f3ster",
|
||||
"OptionBackdrop": "Imagen de Fondo",
|
||||
"OptionTimeline": "L\u00ednea de Tiempo",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Seleccionar",
|
||||
"ButtonGroupVersions": "Agrupar Versiones",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Agregar a Colecci\u00f3n",
|
||||
"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",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Omitido",
|
||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "N\u00famero de temporada:",
|
||||
"LabelEpisodeNumber": "N\u00famero de episodio:",
|
||||
"LabelSeasonNumber": "Temporada numero:",
|
||||
"LabelEpisodeNumber": "Episodio numero:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n en archivos futuros con nombres similares",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
||||
"TabNavigation": "Navegaci\u00f3n",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Pantalla completa",
|
||||
"ButtonScenes": "Escenas",
|
||||
"ButtonSubtitles": "Subt\u00edtulos",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"ButtonAudioTracks": "Pistas de Audio",
|
||||
"ButtonStop": "Detener",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Siguiente",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Descartar",
|
||||
"ButtonMore": "M\u00e1s",
|
||||
"ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.",
|
||||
"LabelChannelStreamQuality": "Calidad preferida para canal de 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.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "No Identificado",
|
||||
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
|
||||
"OptionStub": "Plantilla",
|
||||
"HeaderEpisodes": "Episodios",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Reporte:",
|
||||
"OptionReportSongs": "Canciones",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artistas",
|
||||
"OptionReportAlbums": "\u00c1lbumes",
|
||||
"OptionReportAdultVideos": "Videos para Adultos",
|
||||
"ButtonMoreItems": "Mas",
|
||||
"ButtonMore": "M\u00e1s",
|
||||
"HeaderActivity": "Actividad",
|
||||
"ScheduledTaskStartedWithName": "{0} Iniciado",
|
||||
"ScheduledTaskCancelledWithName": "{0} fue cancelado",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Restablecer Contrase\u00f1a",
|
||||
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
|
||||
"HeaderVideoTypes": "Tipos de Video",
|
||||
"HeaderYears": "A\u00f1os",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
|
||||
"LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
|
||||
"HeaderUpcomingSports": "Deportes por Estrenar",
|
||||
"HeaderUpcomingPrograms": "Programas por Estrenar",
|
||||
"ButtonMoreItems": "Mas",
|
||||
"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",
|
||||
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
|
||||
"LabelDataProvider": "Proveedor de datos:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"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",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subt\u00edtulos",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Aceleraci\u00f3n por Hardware:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Disponible \u00fanicamente en sistemas soportados.",
|
||||
"ButtonServerDashboard": "Panel de Control del Servidor",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organizar",
|
||||
"TabPlugins": "Complementos",
|
||||
"TabHelp": "Ayuda",
|
||||
"ButtonFullscreen": "Pantalla completa",
|
||||
"ButtonAudioTracks": "Pistas de Audio",
|
||||
"ButtonQuality": "Calidad",
|
||||
"HeaderNotifications": "Notificaciones",
|
||||
"HeaderSelectPlayer": "Seleccionar Reproductor",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nueva lista de reproducci\u00f3n...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Ver grabaciones de series",
|
||||
"ValueOriginalAirDate": "Fecha de transmisi\u00f3n original: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Eliminar de la lista de reproducci\u00f3n",
|
||||
"HeaderSpecials": "Especiales",
|
||||
"HeaderTrailers": "Tr\u00e1ilers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u00c1lbumes",
|
||||
"HeaderGames": "Juegos",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderEpisodes": "Episodios",
|
||||
"HeaderSeasons": "Temporadas",
|
||||
"HeaderTracks": "Pistas",
|
||||
"HeaderItems": "\u00cdtems",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "La direcci\u00f3n de correo electr\u00f3nico ya esta en uso. Por favor ingrese un correo electr\u00f3nico nuevo e intente de nuevo, o si olvido la contrase\u00f1a use la opci\u00f3n \"Olvide mi contrase\u00f1a\".",
|
||||
"MessageThankYouForConnectSignUp": "Gracias por registrarse a Emby Connect. Un correo electr\u00f3nico sera enviado a su direcci\u00f3n con instrucciones de como confirmar su nueva cuenta. Por favor confirme la cuente y regrese aqu\u00ed para iniciar sesi\u00f3n.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Compartir",
|
||||
"ButtonShareHelp": "Compartir paginas web que contengan informaci\u00f3n sobre los medios con redes sociales. Los archivos de los medios nunca son compartidos p\u00fablicamente.",
|
||||
"ButtonShare": "Compartir",
|
||||
"HeaderConfirm": "Confirmar",
|
||||
"MessageConfirmDeleteTunerDevice": "\u00bfEst\u00e1 seguro de querer eliminar este dispositivo?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?",
|
||||
"MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.",
|
||||
"OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincronizacion requiere de una Membres\u00eda de Aficionado",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere conectarse a un Servidor Emby con una suscripci\u00f3n activa de Emby Premier.",
|
||||
"ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.",
|
||||
"LabelLocalSyncStatusValue": "Estado: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Salir",
|
||||
"LabelVisitCommunity": "Visitar la comunidad",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configurar contrase\u00f1a",
|
||||
"HeaderAdultsReadHere": "Adultos Leer Aqui!",
|
||||
"RegisterWithPayPal": "Registrese con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
|
||||
"LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
|
||||
"LabelSyncTempPathHelp": "Especificar una carpeta personalizada para archivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas",
|
||||
"LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco, equipo y otros contenidos relacionados.",
|
||||
"HeaderSyncJobInfo": "Trabajo de Sync",
|
||||
"FolderTypeMixed": "Contenido mezclado",
|
||||
"FolderTypeMixed": "Contenido mixto",
|
||||
"FolderTypeMovies": "Peliculas",
|
||||
"FolderTypeMusic": "Musica",
|
||||
"FolderTypeAdultVideos": "Videos para adultos",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "Videos Musicales",
|
||||
"FolderTypeHomeVideos": "Videos caseros",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Tiempo",
|
||||
"OptionReleaseDate": "Fecha de lanzamiento",
|
||||
"OptionReleaseDate": "Fecha de Lanzamiento",
|
||||
"OptionPlayCount": "N\u00famero de reproducc.",
|
||||
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
|
||||
"OptionDateAdded": "A\u00f1adido el",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Presupuesto",
|
||||
"OptionRevenue": "Recaudaci\u00f3n",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "A\u00f1os",
|
||||
"OptionPosterCard": "Cartelera",
|
||||
"OptionBackdrop": "Imagen de fondo",
|
||||
"OptionTimeline": "L\u00ednea de tiempo",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metavalor",
|
||||
"ButtonSelect": "Seleccionar",
|
||||
"ButtonGroupVersions": "Versiones de Grupo",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Agregar a la colecci\u00f3n",
|
||||
"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",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Programa",
|
||||
"HeaderClients": "Clientes",
|
||||
"LabelCompleted": "Completado",
|
||||
"LabelFailed": "Fallido",
|
||||
"LabelFailed": "Error",
|
||||
"LabelSkipped": "Omitido",
|
||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Temporada n\u00famero:",
|
||||
"LabelEpisodeNumber": "N\u00famero de cap\u00edtulo:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Reproduciendo ahora",
|
||||
"TabNavigation": "Navegaci\u00f3n",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Escenas",
|
||||
"ButtonSubtitles": "Subt\u00edtulos",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Detener",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonNext": "Siguiente",
|
||||
@ -920,7 +914,6 @@
|
||||
"MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenido para jugar consecutivamente a la vez. Para a\u00f1adir elementos a las listas de reproducci\u00f3n, haga clic o toque y mantenga, a continuaci\u00f3n, seleccione Agregar a la lista de reproducci\u00f3n.",
|
||||
"MessageNoPlaylistItemsAvailable": "La lista de reproducci\u00f3n est\u00e1 vac\u00eda.",
|
||||
"ButtonDismiss": "Descartar",
|
||||
"ButtonMore": "M\u00e1s",
|
||||
"ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.",
|
||||
"LabelChannelStreamQuality": "Calidad del canal online preferida:",
|
||||
"LabelChannelStreamQualityHelp": "En un entorno de bajo ancho de banda, limitar la calidad puede ayudar a asegurar una experiencia de streaming suave.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Sin identificar",
|
||||
"OptionMissingParentalRating": "Sin clasificaci\u00f3n parental",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Informe:",
|
||||
"OptionReportSongs": "Canciones",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artistas",
|
||||
"OptionReportAlbums": "Albumes",
|
||||
"OptionReportAdultVideos": "V\u00eddeos de adultos",
|
||||
"ButtonMoreItems": "M\u00e1s",
|
||||
"ButtonMore": "M\u00e1s",
|
||||
"HeaderActivity": "Actividad",
|
||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||
"ScheduledTaskCancelledWithName": "{0} ha sido cancelado",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Reestablecer contrase\u00f1a",
|
||||
"HeaderParentalRatings": "Clasificaci\u00f3n parental",
|
||||
"HeaderVideoTypes": "Tipos de v\u00eddeos",
|
||||
"HeaderYears": "A\u00f1os",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin valoraciones o si son desconocidas:",
|
||||
"LabelBlockContentWithTags": "Bloquear contenido sin etiquetas:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limitar a una imagen integrada",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas",
|
||||
"HeaderUpcomingSports": "Pr\u00f3ximos deportes",
|
||||
"HeaderUpcomingPrograms": "Pr\u00f3ximos programas",
|
||||
"ButtonMoreItems": "M\u00e1s",
|
||||
"LabelShowLibraryTileNames": "Mostrar nombres de pesta\u00f1as de la biblioteca",
|
||||
"LabelShowLibraryTileNamesHelp": "Determina si las etiquetas se mostrar\u00e1n debajo de las pesta\u00f1as de la biblioteca en la p\u00e1gina de inicio",
|
||||
"OptionEnableTranscodingThrottle": "Activar estrangulamiento",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Configurar gu\u00eda de TV",
|
||||
"LabelDataProvider": "Proveedor de datos:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones se enviar\u00e1n al organizador autom\u00e1tico y se importar\u00e1n a tu biblioteca.",
|
||||
"HeaderDefaultPadding": "Relleno por defecto",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subt\u00edtulos",
|
||||
"HeaderVideos": "V\u00eddeos",
|
||||
"OptionEnableVideoFrameAnalysis": "Activar an\u00e1lisis fotograma a fotograma",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extraer informaci\u00f3n detallada de los v\u00eddeos hace que la transcodificaci\u00f3n sea lo m\u00e1s eficiente posible. Los escaneos de la biblioteca tardar\u00e1n m\u00e1s.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limitar an\u00e1lisis fotograma a fotograma a menos de:",
|
||||
"LabelHardwareAccelerationType": "Aceleraci\u00f3n por hardware:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Disponible s\u00f3lo en sistemas soportados.",
|
||||
"ButtonServerDashboard": "Panel de control del servidor",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Poistu",
|
||||
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Quitter",
|
||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Quitter",
|
||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Ajouter \u00e0 la collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -351,9 +347,9 @@
|
||||
"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": "Default recording path:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelRecordingPath": "Chemin d'enregistrement par d\u00e9faut",
|
||||
"LabelMovieRecordingPath": "Emplacement des films (optionnel)",
|
||||
"LabelSeriesRecordingPath": "Emplacement des s\u00e9ries (optionnel)",
|
||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||
"LabelImagesByNamePath": "Images by name path:",
|
||||
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
|
||||
@ -565,7 +561,7 @@
|
||||
"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 domain:",
|
||||
"LabelExternalDDNS": "Domaine externe",
|
||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
||||
"TabResume": "Resume",
|
||||
"TabWeather": "Weather",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "echec",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Season number",
|
||||
"LabelEpisodeNumber": "Episode number",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Pr\u00e9c\u00e9dent",
|
||||
"ButtonNextTrack": "Suivant",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "Plus",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Ann\u00e9es",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Plein \u00e9cran",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync n\u00e9cessite un compte Emby Premiere actif",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Modifier votre dossier d'enregistrement migrera pas les enregistrements existants de l'ancien emplacement vers le nouveau . Vous aurez besoin de les d\u00e9placer manuellement.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Quitter",
|
||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configurer le code PIN",
|
||||
"HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
|
||||
"RegisterWithPayPal": "S'enregistrer avec PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "Activer le mode d'affichage am\u00e9lior\u00e9 des films",
|
||||
"LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les bonus, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.",
|
||||
"HeaderSyncJobInfo": "T\u00e2che de synchronisation",
|
||||
"FolderTypeMixed": "Contenus m\u00e9lang\u00e9s",
|
||||
"FolderTypeMixed": "Contenu m\u00e9lang\u00e9",
|
||||
"FolderTypeMovies": "Films",
|
||||
"FolderTypeMusic": "Musique",
|
||||
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Vid\u00e9os Musical",
|
||||
"FolderTypeHomeVideos": "Vid\u00e9os personnelles",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendant",
|
||||
"OptionDescending": "Descendant",
|
||||
"OptionRuntime": "Dur\u00e9e",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Date de sortie",
|
||||
"OptionPlayCount": "Nombre de lectures",
|
||||
"OptionDatePlayed": "Date lu",
|
||||
"OptionDateAdded": "Date d'ajout",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Recettes",
|
||||
"OptionPoster": "Affiche",
|
||||
"HeaderYears": "Ann\u00e9es",
|
||||
"OptionPosterCard": "Carte Affiche",
|
||||
"OptionBackdrop": "Image d'arri\u00e8re-plan",
|
||||
"OptionTimeline": "Chronologie",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "S\u00e9lectionner",
|
||||
"ButtonGroupVersions": "Versions des groupes",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Ajouter \u00e0 une collection",
|
||||
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
|
||||
"TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
|
||||
"HeaderCredits": "Cr\u00e9dits",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Programme",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "\u00c9chou\u00e9",
|
||||
"LabelSkipped": "Saut\u00e9",
|
||||
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Num\u00e9ro de la saison:",
|
||||
"LabelEpisodeNumber": "Num\u00e9ro de l'\u00e9pisode:",
|
||||
"LabelSeries": "S\u00e9ries :",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
|
||||
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
|
||||
"OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Lecture en cours",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Contr\u00f4les",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Sc\u00e8nes",
|
||||
"ButtonSubtitles": "Sous-titres",
|
||||
"ButtonPreviousTrack": "Piste Pr\u00e9c\u00e9dente",
|
||||
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
|
||||
"ButtonNextTrack": "Piste suivante",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Arr\u00eat",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Suivant",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Annuler",
|
||||
"ButtonMore": "Plus",
|
||||
"ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Non identifi\u00e9",
|
||||
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
|
||||
"OptionStub": "Coupure",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Saison 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Chansons",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artistes",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Vid\u00e9os adultes",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"ButtonMore": "Plus",
|
||||
"HeaderActivity": "Activit\u00e9",
|
||||
"ScheduledTaskStartedWithName": "{0} a commenc\u00e9",
|
||||
"ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9",
|
||||
"HeaderParentalRatings": "Note parentale",
|
||||
"HeaderVideoTypes": "Types de vid\u00e9o",
|
||||
"HeaderYears": "Ann\u00e9es",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
|
||||
"LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Films \u00e0 venir",
|
||||
"HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
|
||||
"HeaderUpcomingPrograms": "Programmes \u00e0 venir",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"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",
|
||||
"OptionEnableTranscodingThrottle": "Activer le throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Configuration du Guide TV",
|
||||
"LabelDataProvider": "Fournisseur de donn\u00e9es :",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"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",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Sous-titres",
|
||||
"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 :",
|
||||
"LabelHardwareAccelerationType": "Acc\u00e9l\u00e9ration mat\u00e9rielle:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Disponible uniquement sur les syst\u00e8mes support\u00e9s.",
|
||||
"ButtonServerDashboard": "Tableau de bord du serveur",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-organisation",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Aide",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Qualit\u00e9",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "S\u00e9lectionnez le lecteur",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nouvelle liste de lecture...",
|
||||
"MessageAddedToPlaylistSuccess": "OK",
|
||||
"ButtonViewSeriesRecording": "Voir les enregistrements de s\u00e9ries",
|
||||
"ValueOriginalAirDate": "Date de diffusion originale: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Supprimer de la liste de lecture",
|
||||
"HeaderSpecials": "Episodes sp\u00e9ciaux",
|
||||
"HeaderTrailers": "Bandes-annonces",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Jeux",
|
||||
"HeaderBooks": "Livres",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Saisons",
|
||||
"HeaderTracks": "Pistes",
|
||||
"HeaderItems": "El\u00e9ments",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "Cette adresse email est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.",
|
||||
"MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrits sur Emby Connect. Un email va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir \u00e0 cet endroit pour vous connecter.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Partager",
|
||||
"ButtonShareHelp": "Partager un page web contenant les informations sur les m\u00e9dias \u00e0 travers les m\u00e9dias sociaux. Les fichiers de m\u00e9dias ne sont jamais partag\u00e9s publiquement.",
|
||||
"ButtonShare": "Partager",
|
||||
"HeaderConfirm": "Confirmer",
|
||||
"MessageConfirmDeleteTunerDevice": "Etes-vous s\u00fbr de vouloir supprimer cet appareil ?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?",
|
||||
"MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.",
|
||||
"OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync n\u00e9cessite une connexion avec un serveur Emby et une souscription Emby Premiere active.",
|
||||
"ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.",
|
||||
"LabelLocalSyncStatusValue": "Status : {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Verlasse",
|
||||
"LabelVisitCommunity": "Bsuech d'Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfigurier de Pin Code",
|
||||
"HeaderAdultsReadHere": "Erwachseni bitte do lese!",
|
||||
"RegisterWithPayPal": "Registrier di mit PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "Verschiedeni Sache",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Film",
|
||||
"FolderTypeMusic": "Musig",
|
||||
"FolderTypeAdultVideos": "Erwachseni Film",
|
||||
"FolderTypePhotos": "F\u00f6teli",
|
||||
"FolderTypeMusicVideos": "Musigvideos",
|
||||
"FolderTypeHomeVideos": "Heimvideos",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ufstiigend",
|
||||
"OptionDescending": "Abstiigend",
|
||||
"OptionRuntime": "Laufziit",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Release Ziit:",
|
||||
"OptionPlayCount": "Z\u00e4hler",
|
||||
"OptionDatePlayed": "Abgspellt am",
|
||||
"OptionDateAdded": "Dezue gf\u00fcegt am",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "iinahme",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Postercharte",
|
||||
"OptionBackdrop": "Hindergrund",
|
||||
"OptionTimeline": "Ziitlinie",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
|
||||
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd",
|
||||
"LabelSyncTempPath": "Temporary file path:",
|
||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "\u05ea\u05d5\u05db\u05df \u05de\u05e2\u05d5\u05e8\u05d1",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1",
|
||||
"OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea",
|
||||
"OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
|
||||
"OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "\u05d1\u05d7\u05e8",
|
||||
"ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"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",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
|
||||
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
||||
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "\u05e0\u05db\u05e9\u05dc",
|
||||
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
|
||||
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e0\u05d4:",
|
||||
"LabelEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05e7:",
|
||||
"LabelSeries": "\u05e1\u05d3\u05e8\u05d4",
|
||||
"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",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "\u05d4\u05d1\u05d0",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "\u05e9\u05ea\u05e3",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "\u05e9\u05ea\u05e3",
|
||||
"HeaderConfirm": "\u05d0\u05e9\u05e8",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Izlaz",
|
||||
"LabelVisitCommunity": "Posjeti zajednicu",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Bud\u017eet",
|
||||
"OptionRevenue": "Prihod",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Pozadina",
|
||||
"OptionTimeline": "Vremenska linija",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Odaberi",
|
||||
"ButtonGroupVersions": "Verzija grupe",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Presko\u010deno",
|
||||
"HeaderEpisodeOrganization": "Organizacija epizoda",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Broj sezone:",
|
||||
"LabelEpisodeNumber": "Broj epizode:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Broj kraja epizode:",
|
||||
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Sad se izvodi",
|
||||
"TabNavigation": "Navigacija",
|
||||
"TabControls": "Kontrole",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scene",
|
||||
"ButtonSubtitles": "Titlovi",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pauza",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Kil\u00e9p\u00e9s",
|
||||
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||
"LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:",
|
||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Vegyes tartalom",
|
||||
"FolderTypeMovies": "Filmek",
|
||||
"FolderTypeMusic": "Zen\u00e9k",
|
||||
"FolderTypeAdultVideos": "Feln\u0151tt vide\u00f3k",
|
||||
"FolderTypePhotos": "F\u00e9nyk\u00e9pek",
|
||||
"FolderTypeMusicVideos": "Zenei vide\u00f3k",
|
||||
"FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "N\u00f6vekv\u0151",
|
||||
"OptionDescending": "Cs\u00f6kken\u0151",
|
||||
"OptionRuntime": "J\u00e1t\u00e9kid\u0151",
|
||||
"OptionReleaseDate": "Megjelen\u00e9s D\u00e1tuma",
|
||||
"OptionReleaseDate": "Megjelen\u00e9s d\u00e1tuma",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Hozz\u00e1adva",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "K\u00f6lts\u00e9g",
|
||||
"OptionRevenue": "Bev\u00e9tel",
|
||||
"OptionPoster": "Poszter",
|
||||
"HeaderYears": "\u00c9v",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "V\u00e1lassz",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Hozz\u00e1ad\u00e1s a gy\u0171jtem\u00e9nyhez",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -588,10 +584,10 @@
|
||||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Sikertelen",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Sorozatok:",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "\u00c9vad sz\u00e1ma:",
|
||||
"LabelEpisodeNumber": "Epiz\u00f3d sz\u00e1ma:",
|
||||
"LabelEndingEpisodeNumber": "Befejez\u0151 epiz\u00f3d sz\u00e1ma:",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Most j\u00e1tszott",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Vez\u00e9rl\u00e9s",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Jelenetek",
|
||||
"ButtonSubtitles": "Feliratok",
|
||||
"ButtonPreviousTrack": "El\u0151z\u0151 s\u00e1v",
|
||||
"ButtonNextTrack": "K\u00f6vetkez\u0151 s\u00e1v",
|
||||
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
||||
"ButtonStop": "Le\u00e1ll\u00edt",
|
||||
"ButtonPause": "Sz\u00fcnet",
|
||||
"ButtonNext": "K\u00f6vetkez\u0151",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "T\u00f6bbi",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Jelent\u00e9s:",
|
||||
"OptionReportSongs": "Dalok",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "M\u0171v\u00e9szek",
|
||||
"OptionReportAlbums": "Albumok",
|
||||
"OptionReportAdultVideos": "Feln\u0151tt vide\u00f3k",
|
||||
"ButtonMoreItems": "T\u00f6bbi",
|
||||
"ButtonMore": "T\u00f6bbi",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} elkezdve",
|
||||
"ScheduledTaskCancelledWithName": "{0} megszak\u00edtva",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Korhat\u00e1r besorol\u00e1s",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "\u00c9v",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "T\u00f6bbi",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Feliratok",
|
||||
"HeaderVideos": "Vide\u00f3k",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Szerver Vez\u00e9rl\u0151pult",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Rendez\u00e9s",
|
||||
"TabPlugins": "B\u0151v\u00edtm\u00e9nyek",
|
||||
"TabHelp": "Seg\u00edts\u00e9g",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
||||
"ButtonQuality": "Min\u0151s\u00e9g",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Speci\u00e1lis",
|
||||
"HeaderTrailers": "El\u0151zetesek",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albumok",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "\u00c9vad",
|
||||
"HeaderTracks": "S\u00e1vok",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Megoszt\u00e1s",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Megoszt\u00e1s",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Keluar",
|
||||
"LabelVisitCommunity": "Kunjungi Komunitas",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Atur kode pin",
|
||||
"HeaderAdultsReadHere": "Dewasa Baca Disini!",
|
||||
"RegisterWithPayPal": "Registrasi menggunakan PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari",
|
||||
"LabelSyncTempPath": "Alamat file sementara:",
|
||||
"LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "Aktifkan menampilkan film ditingkatkan",
|
||||
"LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.",
|
||||
"HeaderSyncJobInfo": "Kerja Sinkron",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMixed": "Kontent Campuran",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Esci",
|
||||
"LabelVisitCommunity": "Visita la Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configura codice pin",
|
||||
"HeaderAdultsReadHere": "Adulti leggete qui!",
|
||||
"RegisterWithPayPal": "Registrati con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "contenuto misto",
|
||||
"FolderTypeMovies": "Film",
|
||||
"FolderTypeMusic": "Musica",
|
||||
"FolderTypeAdultVideos": "Video per adulti",
|
||||
"FolderTypePhotos": "Foto",
|
||||
"FolderTypeMusicVideos": "Video musicali",
|
||||
"FolderTypeHomeVideos": "Video personali",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Discentente",
|
||||
"OptionRuntime": "Durata",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Data di rilascio",
|
||||
"OptionPlayCount": "Visto N\u00b0",
|
||||
"OptionDatePlayed": "Visto il",
|
||||
"OptionDateAdded": "Aggiunto il",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Recensione",
|
||||
"OptionPoster": "Locandina",
|
||||
"HeaderYears": "Anni",
|
||||
"OptionPosterCard": "Scheda locandina",
|
||||
"OptionBackdrop": "Sfondo",
|
||||
"OptionTimeline": "Cronologia",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Punteggio",
|
||||
"ButtonSelect": "Seleziona",
|
||||
"ButtonGroupVersions": "Versione Gruppo",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Aggiungi alla collezione",
|
||||
"PismoMessage": "Dona per avere una licenza di Pismo",
|
||||
"TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
|
||||
"HeaderCredits": "Crediti",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Programma",
|
||||
"HeaderClients": "Dispositivi",
|
||||
"LabelCompleted": "Completato",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "Fallito",
|
||||
"LabelSkipped": "Saltato",
|
||||
"HeaderEpisodeOrganization": "Organizzazione Episodi",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Numero Stagione:",
|
||||
"LabelEpisodeNumber": "Numero Episodio :",
|
||||
"LabelSeries": "Serie:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Numero ultimo episodio:",
|
||||
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "In esecuzione",
|
||||
"TabNavigation": "Navigazione",
|
||||
"TabControls": "Controlli",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scene",
|
||||
"ButtonSubtitles": "Sottotitoli",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Traccia Precedente",
|
||||
"ButtonNextTrack": "Traccia Successiva",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonNext": "Prossimo",
|
||||
@ -920,7 +914,6 @@
|
||||
"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",
|
||||
"ButtonDismiss": "Cancella",
|
||||
"ButtonMore": "Piu",
|
||||
"ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In un ambiente a bassa larghezza di banda, limitando la qualit\u00e0 pu\u00f2 contribuire a garantire un'esperienza di streaming continuo.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Non identificata",
|
||||
"OptionMissingParentalRating": "Voto genitori mancante",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Stagione 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Canzoni",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Cantanti",
|
||||
"OptionReportAlbums": "Album",
|
||||
"OptionReportAdultVideos": "Video x adulti",
|
||||
"ButtonMoreItems": "Dettagli",
|
||||
"ButtonMore": "Piu",
|
||||
"HeaderActivity": "Attivit\u00e0",
|
||||
"ScheduledTaskStartedWithName": "{0} Avviati",
|
||||
"ScheduledTaskCancelledWithName": "{0} cancellati",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Reset della Password",
|
||||
"HeaderParentalRatings": "Valutazioni genitori",
|
||||
"HeaderVideoTypes": "Tipi Video",
|
||||
"HeaderYears": "Anni",
|
||||
"HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
|
||||
"LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Film in arrivo",
|
||||
"HeaderUpcomingSports": "Sport in arrivo",
|
||||
"HeaderUpcomingPrograms": "Programmi in arrivo",
|
||||
"ButtonMoreItems": "Dettagli",
|
||||
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
|
||||
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
|
||||
"OptionEnableTranscodingThrottle": "Abilita il throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Guida all'installazione TV",
|
||||
"LabelDataProvider": "Fornitore di dati:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Le nuove registrazioni saranno inviati alla Auto-Organizzare caratteristica ed importato nella libreria multimediale.",
|
||||
"HeaderDefaultPadding": "Imbottitura predefinito",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Sottotitoli",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Organizza Autom.",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Aiuto",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Qualit\u00e0",
|
||||
"HeaderNotifications": "Notifiche",
|
||||
"HeaderSelectPlayer": "Utente selezionato :",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nuova playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Vista delle serie in registrazione",
|
||||
"ValueOriginalAirDate": "Prima messa in onda (originale): {0}",
|
||||
"ButtonRemoveFromPlaylist": "Rimuovi dalla playlist",
|
||||
"HeaderSpecials": "Speciali",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Album",
|
||||
"HeaderGames": "Giochi",
|
||||
"HeaderBooks": "Libri",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Stagioni",
|
||||
"HeaderTracks": "Traccia",
|
||||
"HeaderItems": "Elementi",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"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.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Condividi",
|
||||
"ButtonShareHelp": "Condividi una pagina web contenente informazioni multimediali con i social media. I file multimediali non verranno mai condivisi pubblicamente.",
|
||||
"ButtonShare": "Condividi",
|
||||
"HeaderConfirm": "Conferma",
|
||||
"MessageConfirmDeleteTunerDevice": "Sei sicuro di voler cancellare questo dispositivo?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Lo sapevi che con Emby Premiere puoi migilorare la tua esperienza con funzionalit\u00e0 come la Modalit\u00e0 Cinema?",
|
||||
"MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.",
|
||||
"OptionEnableDisplayMirroring": "Abilita visualizzazione remota",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizzazione richiede la connessione con Emby Server, e un abbonamento Emby Premiere attivo.",
|
||||
"ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.",
|
||||
"LabelLocalSyncStatusValue": "Stato {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,9 +1,8 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"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",
|
||||
"LabelGithub": "GitHub",
|
||||
"LabelSwagger": "Swagger",
|
||||
"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",
|
||||
@ -26,7 +25,7 @@
|
||||
"LabelWindowsService": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456",
|
||||
"AWindowsServiceHasBeenInstalled": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b.",
|
||||
"WindowsServiceIntro1": "Emby Server \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0435\u0433\u0435\u0440 \u043e\u043d\u044b\u04a3 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u04e9\u04a3\u0434\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04b1\u043d\u0430\u0442\u0441\u0430\u04a3\u044b\u0437, \u043e\u0441\u044b\u043d\u044b\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u0431\u04b1\u043b Windows \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||
"WindowsServiceIntro2": "\u0415\u0433\u0435\u0440 Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430 \u0431\u043e\u043b\u0441\u0430, \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437, \u0431\u04b1\u043b \u0441\u043e\u043b \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0434\u0435\u0439 \u0436\u04af\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u043d \u0448\u044b\u0493\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u0493\u0430\u043d \u049b\u0430\u0442\u0430\u0440, \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u04d9\u043a\u0456\u043c\u0448\u0456 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u044b\u043f \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442. \u049a\u044b\u0437\u043c\u0435\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430, \u049b\u044b\u0437\u043c\u0435\u0442 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u0430\u0442\u044b\u043d \u0435\u043a\u0435\u043d\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"WindowsServiceIntro2": "\u0415\u0433\u0435\u0440 Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430 \u0431\u043e\u043b\u0441\u0430, \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437, \u0431\u04b1\u043b \u0441\u043e\u043b \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0434\u0435\u0439 \u0436\u04af\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u043d \u0448\u044b\u0493\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u0493\u0430\u043d \u049b\u0430\u0442\u0430\u0440, \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u04d9\u043a\u0456\u043c\u0448\u0456 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u044b\u043f \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442. \u049a\u044b\u0437\u043c\u0435\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430, \u049b\u044b\u0437\u043c\u0435\u0442 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u0430\u0442\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d <b>\u0414\u0430\u0439\u044b\u043d<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 <b>\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u044b \u043a\u0435\u043b\u0435\u0434\u0456.",
|
||||
"LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
||||
"LabelEnableVideoImageExtraction": "\u0411\u0435\u0439\u043d\u0435 \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
|
||||
@ -77,7 +76,6 @@
|
||||
"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": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"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",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||
"OptionRevenue": "\u0422\u0430\u0431\u044b\u0441",
|
||||
"OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437",
|
||||
"HeaderYears": "\u0416\u044b\u043b\u0434\u0430\u0440",
|
||||
"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",
|
||||
@ -270,13 +266,13 @@
|
||||
"OptionContinuing": "\u0416\u0430\u043b\u0493\u0430\u0441\u0443\u0434\u0430",
|
||||
"OptionEnded": "\u0410\u044f\u049b\u0442\u0430\u043b\u0434\u044b",
|
||||
"HeaderAirDays": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456",
|
||||
"OptionSundayShort": "Sun",
|
||||
"OptionMondayShort": "Mon",
|
||||
"OptionTuesdayShort": "Tue",
|
||||
"OptionWednesdayShort": "Wed",
|
||||
"OptionThursdayShort": "Thu",
|
||||
"OptionFridayShort": "Fri",
|
||||
"OptionSaturdayShort": "Sat",
|
||||
"OptionSundayShort": "\u0436\u0435\u043a",
|
||||
"OptionMondayShort": "\u0434\u04af\u0439",
|
||||
"OptionTuesdayShort": "\u0441\u0435\u0439",
|
||||
"OptionWednesdayShort": "\u0441\u04d9\u0440",
|
||||
"OptionThursdayShort": "\u0431\u0435\u0439",
|
||||
"OptionFridayShort": "\u0436\u04b1\u043c",
|
||||
"OptionSaturdayShort": "\u0441\u0435\u043d",
|
||||
"OptionSunday": "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
|
||||
"OptionMonday": "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
|
||||
"OptionTuesday": "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
|
||||
"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",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\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",
|
||||
@ -351,10 +347,10 @@
|
||||
"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": "Default recording path:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||
"LabelRecordingPath": "\u0416\u0430\u0437\u0443\u0434\u044b\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0436\u043e\u043b\u044b:",
|
||||
"LabelMovieRecordingPath": "\u0424\u0438\u043b\u044c\u043c \u0436\u0430\u0437\u0443 \u0436\u043e\u043b\u044b (\u043c\u0456\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441):",
|
||||
"LabelSeriesRecordingPath": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0436\u0430\u0437\u0443 \u0436\u043e\u043b\u044b (\u043c\u0456\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441):",
|
||||
"LabelRecordingPathHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u0439\u0442\u044b\u043d \u04d9\u0434\u0435\u043f\u043a\u0456 \u043e\u0440\u044b\u043d\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u04a3\u0456\u0437. \u0411\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u0441\u0430\u04a3\u044b\u0437, \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 program data \u049b\u0430\u043b\u0442\u0430\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"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:",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "\u0421\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440",
|
||||
"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",
|
||||
"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.",
|
||||
@ -565,8 +561,8 @@
|
||||
"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": "External domain:",
|
||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
||||
"LabelExternalDDNS": "\u0421\u044b\u0440\u0442\u049b\u044b \u0434\u043e\u043c\u0435\u043d:",
|
||||
"LabelExternalDDNSHelp": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b DNS \u0431\u043e\u043b\u0441\u0430, \u043e\u043d\u044b \u043e\u0441\u044b\u043d\u0434\u0430 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u043b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0422\u0435\u04a3\u0448\u0435\u043b\u0435\u0442\u0456\u043d SSL-\u043a\u0443\u04d9\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u0431\u04b1\u043b \u04e9\u0440\u0456\u0441 \u043c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"TabResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
|
||||
"TabWeather": "\u0410\u0443\u0430 \u0440\u0430\u0439\u044b",
|
||||
"TitleAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
|
||||
@ -732,12 +728,10 @@
|
||||
"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": "Fullscreen",
|
||||
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
||||
"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",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
|
||||
"ButtonPause": "\u04ae\u0437\u0443",
|
||||
"ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
|
||||
@ -855,7 +849,7 @@
|
||||
"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",
|
||||
"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.",
|
||||
"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 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
|
||||
"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",
|
||||
@ -920,7 +914,6 @@
|
||||
"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 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \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.",
|
||||
"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.",
|
||||
"LabelChannelStreamQuality": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430\u0441\u044b\u043d\u044b\u04a3 \u0441\u0430\u043f\u0430 \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, \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0442\u044b\u049b \u04d9\u0441\u0435\u0440\u0433\u0435 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u043f\u0430\u043d\u044b \u0448\u0435\u043a\u0442\u0435\u0443 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"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": "Episodes",
|
||||
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
|
||||
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
|
||||
"OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
|
||||
@ -1100,7 +1092,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",
|
||||
"ButtonMore": "\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",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443",
|
||||
"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",
|
||||
"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:",
|
||||
"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",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"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",
|
||||
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||
"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.",
|
||||
"OptionEnableTranscodingThrottle": "\u0420\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||
@ -1494,15 +1488,11 @@
|
||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "\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 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \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": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"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 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
|
||||
"OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u043a\u0456\u0442\u0430\u043f\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u0441\u0442\u0430 \u0431\u043e\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b",
|
||||
"HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"OptionEnableRecordingSubfolders": "\u0421\u043f\u043e\u0440\u0442, \u0411\u0430\u043b\u0430\u043b\u0430\u0440\u0493\u0430 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440 \u04af\u0448\u0456\u043d \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0436\u0430\u0441\u0430\u043b\u0430\u0434\u044b",
|
||||
"HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443:",
|
||||
"LabelHardwareAccelerationTypeHelp": "\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.",
|
||||
"ButtonServerDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b",
|
||||
@ -1861,9 +1851,9 @@
|
||||
"OptionProductionLocations": "\u04e8\u043d\u0434\u0456\u0440\u0443 \u043e\u0440\u044b\u043d\u0434\u0430\u0440\u044b",
|
||||
"OptionBirthLocation": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b",
|
||||
"LabelAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440",
|
||||
"AttributeNew": "New",
|
||||
"AttributePremiere": "Premiere",
|
||||
"AttributeLive": "Live",
|
||||
"AttributeNew": "\u0416\u0430\u04a3\u0430",
|
||||
"AttributePremiere": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440\u0456",
|
||||
"AttributeLive": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439",
|
||||
"LabelHDProgram": "HD",
|
||||
"HeaderChangeFolderType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443",
|
||||
"HeaderChangeFolderTypeHelp": "\u0422\u04af\u0440\u0434\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430, \u0436\u0430\u04a3\u0430 \u0442\u04af\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u049b\u04b1\u0440\u044b\u04a3\u044b\u0437.",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
|
||||
"TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430",
|
||||
"ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d...",
|
||||
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
|
||||
"ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430",
|
||||
"HeaderNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
|
||||
"HeaderSelectPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "\u0416\u0430\u04a3\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456...",
|
||||
"MessageAddedToPlaylistSuccess": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b",
|
||||
"ButtonViewSeriesRecording": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u049b\u0430\u0440\u0430\u0443",
|
||||
"ValueOriginalAirDate": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}",
|
||||
"ButtonRemoveFromPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443",
|
||||
"HeaderSpecials": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0434\u0430\u0440",
|
||||
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
|
||||
"HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
|
||||
"HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440",
|
||||
"HeaderEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
|
||||
"HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440",
|
||||
"HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440",
|
||||
"HeaderItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440",
|
||||
@ -2104,9 +2096,9 @@
|
||||
"LabelFullReview": "\u041f\u0456\u043a\u0456\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d:",
|
||||
"LabelShortRatingDescription": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b\u04a3 \u049b\u044b\u0441\u049b\u0430 \u0430\u049b\u043f\u0430\u0440\u044b:",
|
||||
"OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d",
|
||||
"EndsAtValue": "Ends at {0}",
|
||||
"ReleaseYearValue": "Release year: {0}",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"EndsAtValue": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443\u044b: {0}",
|
||||
"ReleaseYearValue": "\u0428\u044b\u0493\u0430\u0440\u0443 \u0436\u043e\u043b\u044b: {0}",
|
||||
"OriginalAirDateValue": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}",
|
||||
"WebClientTourContent": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u0416\u0430\u0441\u044b\u043b \u0448\u0435\u043d\u0431\u0435\u0440\u043b\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u049b\u0430\u043d\u0448\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0431\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.",
|
||||
"WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456 \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
|
||||
"WebClientTourMouseOver": "\u041c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430 \u0436\u044b\u043b\u0434\u0430\u043c \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0456\u043d \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437",
|
||||
@ -2202,7 +2194,7 @@
|
||||
"HeaderUnlockSync": "Emby \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||
"MessageUnlockAppWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere.",
|
||||
"MessageToValidateSupporter": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0431\u043e\u043b\u0441\u0430, Emby Server \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 -> Emby Premiere \u0430\u0441\u0442\u044b\u043d\u0434\u0430 Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437",
|
||||
"MessagePaymentServicesUnavailable": "\u0422\u04e9\u043b\u0435\u043c \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||
"MessagePleaseSignInLocalNetwork": "\u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0435\u043b\u0456\u0433\u0435 Wifi \u043d\u0435\u043c\u0435\u0441\u0435 LAN \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0456\u04a3\u0456\u0437.",
|
||||
"ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443",
|
||||
@ -2230,9 +2222,7 @@
|
||||
"ErrorMessageUsernameInUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u0430\u0442\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||
"ErrorMessageEmailInUse": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u0441\u043a\u0435 \u0441\u0430\u043b\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.",
|
||||
"MessageThankYouForConnectSignUp": "Emby Connect \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0433\u0435 \u0430\u043b\u0493\u044b\u0441. \u041c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u042d-\u043f\u043e\u0448\u0442\u0430 \u0445\u0430\u0431\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u0430\u04a3\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440 \u0431\u043e\u043b\u0430\u0434\u044b. \u041a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043d\u0456 \u0440\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d \u043e\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||
"ButtonShareHelp": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b.",
|
||||
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||
"ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||
"HeaderConfirm": "\u0420\u0430\u0441\u0442\u0430\u0443",
|
||||
"MessageConfirmDeleteTunerDevice": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u04b1\u043b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?",
|
||||
"MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
||||
"OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442",
|
||||
"ErrorValidatingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||
"LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}",
|
||||
@ -2274,7 +2265,7 @@
|
||||
"ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443",
|
||||
"AlreadyPaid": "\u04d8\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u0442\u04e9\u043b\u0435\u043d\u0434\u0456 \u043c\u0435?",
|
||||
"AlreadyPaidHelp1": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d Media Browser for Android \u0435\u0441\u043a\u0456 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043b\u0435\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0441\u0456\u0437\u0433\u0435 \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u0434\u0430\u043d \u0442\u04e9\u043b\u0435\u0443\u0433\u0435 \u049b\u0430\u0436\u0435\u0442\u0456 \u0436\u043e\u049b. \u0411\u0456\u0437\u0433\u0435 {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u0493\u0430 \u0445\u0430\u0442 \u0436\u0456\u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0441\u0456\u0437 \u04af\u0448\u0456\u043d \u0431\u0456\u0437 \u043e\u043d\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0435\u043c\u0456\u0437.",
|
||||
"AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
|
||||
"AlreadyPaidHelp2": "Emby Premiere \u0430\u043b\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? \u0416\u0430\u0439 \u0493\u0430\u043d\u0430 \u0431\u04b1\u043b \u0442\u0456\u043b\u049b\u0430\u0442\u044b\u0441\u0443 \u0442\u0435\u0440\u0435\u0437\u0435\u0441\u0456\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u04a3\u044b\u0437 \u0434\u0430, Emby Server \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 -> Emby Premiere \u0430\u0441\u0442\u044b\u043d\u0434\u0430 Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437, \u0441\u043e\u043d\u0434\u0430 \u0431\u04b1\u043d\u044b\u04a3 \u049b\u04b1\u043b\u043f\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0430\u0448\u044b\u043b\u0430\u0434\u044b.",
|
||||
"ButtonForYou": "\u0421\u0456\u0437 \u04af\u0448\u0456\u043d...",
|
||||
"ButtonLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430...",
|
||||
"ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...",
|
||||
@ -2325,7 +2316,7 @@
|
||||
"CoverArt": "Cover Art",
|
||||
"ButtonOff": "\u04e8\u0448\u0456\u0440",
|
||||
"TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443",
|
||||
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
||||
"HardwareAccelerationWarning": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443\u0434\u0456 \u049b\u043e\u0441\u0443 \u043a\u0435\u0439\u0431\u0456\u0440 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430 \u0442\u04b1\u0440\u0430\u049b\u0441\u044b\u0437\u0434\u044b\u049b \u0442\u0443\u0434\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u0410\u043c\u0430\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u04a3\u0456\u0437 \u0431\u0435\u043d \u0431\u0435\u0439\u043d\u0435 \u0434\u0440\u0430\u0439\u0432\u0435\u0440\u043b\u0435\u0440\u0456\u04a3\u0456\u0437 \u0442\u043e\u043b\u044b\u049b \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u043e\u0441\u044b\u043d\u044b \u049b\u043e\u0441\u049b\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0431\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u0430 \u049b\u0438\u044b\u043d\u0434\u044b\u049b \u0431\u043e\u043b\u0441\u0430, \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0410\u0432\u0442\u043e \u04af\u0448\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442.",
|
||||
"HeaderSelectCodecIntrosPath": "\u041a\u043e\u0434\u0435\u043a \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443",
|
||||
"ButtonLocalRefresh": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
|
||||
"ButtonAddMissingData": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443",
|
||||
@ -2346,23 +2337,25 @@
|
||||
"DrmChannelsNotImported": "DRM \u0431\u0430\u0440 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0431\u0435\u0439\u0434\u0456.",
|
||||
"ConfigureDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456 Emby Server \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d\u0434\u0435 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b",
|
||||
"LabelAllowHWTranscoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
|
||||
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
|
||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||
"AllowHWTranscodingHelp": "\u0415\u0433\u0435\u0440 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430, \u0430\u0493\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u044e\u043d\u0435\u0440\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u04b1\u043b Emby Server \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u0442\u0430\u043b\u0430\u0431\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||
"OptionRequirePerfectSubtitleMatch": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c \u04af\u0448\u0456\u043d \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u043a\u0435\u043c\u0435\u043b\u0434\u0456 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443",
|
||||
"ErrorAddingGuestAccount1": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u043e\u043d\u0430\u0493\u044b\u04a3\u044b\u0437 Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0434\u044b \u043c\u0430? \u041e\u043b {0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||
"ErrorAddingGuestAccount2": "\u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u044d-\u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441, \u049b\u043e\u043d\u0430\u0493\u044b\u04a3\u044b\u0437 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d \u0430\u044f\u049b\u0442\u0430\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u043e\u043b \u043e\u0441\u044b \u044d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b \u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430, \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0436\u04d9\u043d\u0435 \u043e\u043d\u044b\u04a3 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u0441\u044b\u043f \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.",
|
||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||
"GuestUserNotFound": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d \u0436\u043e\u049b. \u0410\u0442\u044b\u043d\u044b\u04a3 \u0434\u04b1\u0440\u044b\u0441\u0442\u044b\u0493\u044b\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u043d\u044b\u04a3 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.",
|
||||
"MarkPlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0443",
|
||||
"MarkUnplayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0443",
|
||||
"Yesterday": "\u0412\u0447\u0435\u0440\u0430",
|
||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
|
||||
"DownloadImagesInAdvanceWarning": "\u0411\u0430\u0440\u043b\u044b\u049b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u0436\u04af\u043a\u0442\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456\u043d\u0434\u0435 \u043a\u0456\u0442\u0430\u043f\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u0443\u0430\u049b\u044b\u0442\u044b \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0431\u043e\u043b\u0430\u0434\u044b .",
|
||||
"MetadataSettingChangeHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u0442\u0430\u0493\u044b \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456. \u0411\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u0430\u0448\u044b\u04a3\u044b\u0437 \u0434\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456\u043d\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0440\u044b\u043c\u044b\u043c\u0435\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u0434\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u04a3\u044b\u0437.",
|
||||
"LabelTitle": "\u0410\u0442\u0430\u0443\u044b:",
|
||||
"LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\u0442\u0430\u0443\u044b:",
|
||||
"LabelSortTitle": "\u0410\u0442\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u0443",
|
||||
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"OptionConvertRecordingPreserveAudio": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0434\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u0443",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "\u0411\u04b1\u043b \u0436\u0430\u049b\u0441\u044b\u043b\u0430\u0443 \u0434\u044b\u0431\u044b\u0441\u0442\u044b \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||
"CreateCollectionHelp": "\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 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0493\u044b \u0431\u0430\u0441\u049b\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d \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.",
|
||||
"AddItemToCollectionHelp": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0456\u0437\u0434\u0435\u043f \u0436\u04d9\u043d\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\u043f \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u0493\u0430 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u04a3\u0456\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437.",
|
||||
"HeaderHealthMonitor": "\u0416\u04b1\u043c\u044b\u0441\u049b\u0430 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0442\u0456\u043b\u0456\u043a \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u044b",
|
||||
"HealthMonitorNoAlerts": "\u041e\u0441\u044b\u043d\u0434\u0430 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0435\u0441\u043a\u0435\u0440\u0442\u0443\u043b\u0435\u0440 \u0436\u043e\u049b.",
|
||||
"RecordingPathChangeMessage": "\u0416\u0430\u0437\u0443 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u043a\u0435\u043d\u0434\u0435, \u0431\u0430\u0440 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0435\u0441\u043a\u0456 \u043e\u0440\u043d\u044b\u043d\u0430\u043d \u0436\u0430\u04a3\u0430\u0441\u044b\u043d\u0430 \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u043d\u0431\u0430\u0439\u0434\u044b. \u0422\u0430\u043b\u0430\u043f \u0435\u0442\u0441\u0435\u04a3\u0456\u0437, \u043e\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u043c\u0435\u043d \u0436\u044b\u043b\u0436\u044b\u0442\u0443\u044b\u04a3\u044b\u0437\u0493\u0430 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\uc885\ub8cc",
|
||||
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30",
|
||||
"LabelSyncTempPath": "\uc784\uc2dc \ud30c\uc77c \uacbd\ub85c:",
|
||||
"LabelSyncTempPathHelp": "\uc0ac\uc6a9\uc790 \ub3d9\uae30\ud654 \uc791\uc5c5 \ud3f4\ub354\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \ub3d9\uae30\ud654 \uacfc\uc815\uc5d0\uc11c \ub9cc\ub4e4\uc5b4\uc9c4 \ubcc0\ud658\ub41c \ubbf8\ub514\uc5b4\uac00 \uc5ec\uae30\uc5d0 \uc800\uc7a5\ub429\ub2c8\ub2e4.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "\ud5a5\uc0c1\ub41c \uc601\ud654 \ud654\uba74 \uc0ac\uc6a9",
|
||||
"LabelEnableEnhancedMoviesHelp": "\uc601\ud654 \uc608\uace0\ud3b8, \ucd94\uac00\uc815\ubcf4, \ubc30\uc5ed \ub4f1\uc758 \uad00\ub828 \ucf58\ud150\uce20\uac00 \ud3ec\ud568\ub41c \ud3f4\ub354\ub85c \ud45c\uc2dc\ud569\ub2c8\ub2e4.",
|
||||
"HeaderSyncJobInfo": "\ub3d9\uae30\ud654 \uc791\uc5c5",
|
||||
"FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\ud2b8",
|
||||
"FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\uce20",
|
||||
"FolderTypeMovies": "\uc601\ud654",
|
||||
"FolderTypeMusic": "\uc74c\uc545",
|
||||
"FolderTypeAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
|
||||
"FolderTypePhotos": "\uc0ac\uc9c4",
|
||||
"FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624",
|
||||
"FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "\uc624\ub984\ucc28\uc21c",
|
||||
"OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c",
|
||||
"OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "\uac1c\ubd09\uc77c",
|
||||
"OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\uc608\uc0b0",
|
||||
"OptionRevenue": "\uc218\uc775",
|
||||
"OptionPoster": "\ud3ec\uc2a4\ud130",
|
||||
"HeaderYears": "\uc5f0\ub3c4",
|
||||
"OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc",
|
||||
"OptionBackdrop": "\ubc30\uacbd",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "\uc120\ud0dd",
|
||||
"ButtonGroupVersions": "\uadf8\ub8f9 \ubc84\uc804",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "\uceec\ub809\uc158\uc5d0 \ucd94\uac00",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "\ud06c\ub808\ub514\ud2b8",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "\ubc30\uc5ed \ubc0f \uc81c\uc791\uc9c4",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"ButtonPlayTrailer": "\uc608\uace0\ud3b8",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "\uc624\ud504\ub77c\uc778",
|
||||
"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.",
|
||||
@ -588,10 +584,10 @@
|
||||
"HeaderProgram": "\ud504\ub85c\uadf8\ub7a8",
|
||||
"HeaderClients": "\ud074\ub77c\uc774\uc5b8\ud2b8",
|
||||
"LabelCompleted": "\uc644\ub8cc",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "\uc2e4\ud328",
|
||||
"LabelSkipped": "\uac74\ub108\ub700",
|
||||
"HeaderEpisodeOrganization": "\uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeries": "\uc2dc\ub9ac\uc988:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
|
||||
"TabNavigation": "\ud0d0\uc0c9",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "\uc7a5\uba74",
|
||||
"ButtonSubtitles": "\uc790\ub9c9",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "\uc774\uc804 \ud2b8\ub799",
|
||||
"ButtonNextTrack": "\ub2e4\uc74c \ud2b8\ub799",
|
||||
"ButtonStop": "\uc911\uc9c0",
|
||||
"ButtonPause": "\uc77c\uc2dc \uc911\uc9c0",
|
||||
"ButtonNext": "\ub2e4\uc74c",
|
||||
@ -920,7 +914,6 @@
|
||||
"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": "\uc774 \uc7ac\uc0dd\ubaa9\ub85d\uc740 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "\uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c, \uc774\ubbf8\uc9c0, \uac1c\uc778 \uc124\uc815\uc744 \ud3b8\uc9d1\ud569\ub2c8\ub2e4.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "\ub300\uc5ed\ud3ed\uc774 \ub0ae\uc740 \ud658\uacbd\uc5d0\uc11c \ud488\uc9c8\uc744 \uc81c\ud55c\ud558\uba74 \ubd80\ub4dc\ub7ec\uc6b4 \uc2a4\ud2b8\ub9ac\ubc0d\uc744 \uc720\uc9c0\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "\uc2dc\uc98c 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "\ub178\ub798",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "\uc544\ud2f0\uc2a4\ud2b8",
|
||||
"OptionReportAlbums": "\uc568\ubc94",
|
||||
"OptionReportAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428",
|
||||
"ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654",
|
||||
"HeaderParentalRatings": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09",
|
||||
"HeaderVideoTypes": "\ube44\ub514\uc624 \uc885\ub958",
|
||||
"HeaderYears": "\uc5f0\ub3c4",
|
||||
"HeaderBlockItemsWithNoRating": "\ub4f1\uae09 \uc815\ubcf4\uac00 \uc5c6\uac70\ub098 \uc54c \uc218 \uc5c6\ub294 \ucf58\ud14c\ud2b8 \ucc28\ub2e8:",
|
||||
"LabelBlockContentWithTags": "\ub2e4\uc74c \ud0dc\uadf8\uac00 \uc788\ub294 \ucf58\ud150\ud2b8 \ucc28\ub2e8:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654",
|
||||
"HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20",
|
||||
"HeaderUpcomingPrograms": "\uc608\uc815 \ud504\ub85c\uadf8\ub7a8",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "throttling \uc0ac\uc6a9",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815",
|
||||
"LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "\uc0c8 \ub179\ud654\ub97c \uc790\ub3d9 \uad6c\uc131 \uae30\ub2a5\uc744 \uac70\uce5c \ud6c4 \ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c \uac00\uc838\uc635\ub2c8\ub2e4.",
|
||||
"HeaderDefaultPadding": "\uae30\ubcf8 \uc5ec\ubc31",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "\uc790\ub9c9",
|
||||
"HeaderVideos": "\ube44\ub514\uc624",
|
||||
"OptionEnableVideoFrameAnalysis": "\ud504\ub808\uc784 \ub2e8\uc704 \ube44\ub514\uc624 \ubd84\uc11d \uc0ac\uc6a9",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "\uac00\ub2a5\ud55c \ucd5c\uace0 \ud6a8\uc728\uc758 \ud2b8\ub79c\uc2a4\ucf54\ub529\uc744 \uc704\ud574 \ube44\ub514\uc624\uc758 \uc0c1\uc138\ud55c \uc815\ubcf4\ub97c \ucd94\ucd9c\ud569\ub2c8\ub2e4. \ub77c\uc774\ube0c\ub7ec\ub9ac \uac80\uc0c9 \uc2dc\uac04\uc774 \uae38\uc5b4\uc9d1\ub2c8\ub2e4.",
|
||||
"LabelVideoFrameAnalysisLimit": "\ub2e4\uc74c\ubcf4\ub2e4 \uc791\uc740 \ube44\ub514\uc624\uc758 \ud504\ub808\uc784 \ub2e8\uc704 \ubd84\uc11d \uc81c\ud55c:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "\uc11c\ubc84 \ub300\uc2dc\ubcf4\ub4dc",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131",
|
||||
"TabPlugins": "\ud50c\ub7ec\uadf8\uc778",
|
||||
"TabHelp": "\ub3c4\uc6c0\ub9d0",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "\ud488\uc9c8",
|
||||
"HeaderNotifications": "\uc54c\ub9bc",
|
||||
"HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "\uc0c8 \uc7ac\uc0dd\ubaa9\ub85d...",
|
||||
"MessageAddedToPlaylistSuccess": "OK",
|
||||
"ButtonViewSeriesRecording": "\uc2dc\ub9ac\uc988 \ub179\ud654 \ubcf4\uae30",
|
||||
"ValueOriginalAirDate": "\ucd5c\ucd08 \ubc29\uc1a1\uc77c: {0}",
|
||||
"ButtonRemoveFromPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0\uc11c \uc81c\uac70",
|
||||
"HeaderSpecials": "\uc2a4\ud398\uc15c",
|
||||
"HeaderTrailers": "\uc608\uace0\ud3b8",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\uc568\ubc94",
|
||||
"HeaderGames": "\uac8c\uc784",
|
||||
"HeaderBooks": "\ucc45",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "\uc2dc\uc98c",
|
||||
"HeaderTracks": "\ud2b8\ub799",
|
||||
"HeaderItems": "\ud56d\ubaa9",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\uba54\uc77c \uc8fc\uc18c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uac70\ub098 \ube44\ubc00\ubc88\ud638 \ubd84\uc2e4 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "\uacf5\uc720",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "\uacf5\uc720",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "\uc774 \uc7a5\uce58\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Tutup",
|
||||
"LabelVisitCommunity": "Melawat Masyarakat",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Avslutt",
|
||||
"LabelVisitCommunity": "Bes\u00f8k samfunn",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfigurer PIN-kode",
|
||||
"HeaderAdultsReadHere": "Voksne les her!",
|
||||
"RegisterWithPayPal": "Registrer med PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever Emby Premiere abonnement.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "Forskjellig innhold",
|
||||
"FolderTypeMixed": "Blandet innhold",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
"FolderTypeMusic": "Musikk",
|
||||
"FolderTypeAdultVideos": "Voksen-videoer",
|
||||
"FolderTypePhotos": "Foto",
|
||||
"FolderTypeMusicVideos": "Musikk-videoer",
|
||||
"FolderTypeHomeVideos": "Hjemme-videoer",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "\u00d8kende",
|
||||
"OptionDescending": "Synkende",
|
||||
"OptionRuntime": "Spilletid",
|
||||
"OptionReleaseDate": "Utgivelse Dato",
|
||||
"OptionReleaseDate": "Uttgitt dato",
|
||||
"OptionPlayCount": "Antall avspillinger",
|
||||
"OptionDatePlayed": "Dato spilt",
|
||||
"OptionDateAdded": "Dato lagt til",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budsjett",
|
||||
"OptionRevenue": "Inntjening",
|
||||
"OptionPoster": "Plakat",
|
||||
"HeaderYears": "\u00c5r",
|
||||
"OptionPosterCard": "Plakatkort",
|
||||
"OptionBackdrop": "Bakgrunn",
|
||||
"OptionTimeline": "Tidslinje",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Velg",
|
||||
"ButtonGroupVersions": "Gruppeversjoner",
|
||||
"ButtonAddToCollection": "Legg til i samling",
|
||||
"ButtonAddToCollection": "Legg til samling",
|
||||
"PismoMessage": "Utnytte Pismo File Mount gjennom en donert lisens.",
|
||||
"TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -351,9 +347,9 @@
|
||||
"LabelCustomPaths": "Angi egendefinerte stier der du \u00f8nsker. La feltene st\u00e5 tomme for \u00e5 bruke standardinnstillingene.",
|
||||
"LabelCachePath": "Buffer sti:",
|
||||
"LabelCachePathHelp": "Angi en egendefinert plassering for server cache-filer, for eksempel bilder. La st\u00e5 tomt for \u00e5 bruke serveren standard.",
|
||||
"LabelRecordingPath": "Default recording path:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelRecordingPath": "Standard opptaks bane",
|
||||
"LabelMovieRecordingPath": "Filmopptak sti (valgfritt):",
|
||||
"LabelSeriesRecordingPath": "Serieopptak sti (valgfritt):",
|
||||
"LabelRecordingPathHelp": "Angi en egendefinert sted \u00e5 lagre opptakene. Dersom du lar den st\u00e5 tom vil serveren sin data mappe bli brukt.",
|
||||
"LabelImagesByNamePath": "Bilder etter navn sti:",
|
||||
"LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.",
|
||||
@ -566,7 +562,7 @@
|
||||
"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": "Eksternt domene:",
|
||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
||||
"LabelExternalDDNSHelp": "Hvis du har en dynamisk DNS skriv den inn her. Emby apps vil bruke den n\u00e5r du kobler eksternt. Dette feltet er obligatorisk n\u00e5r den brukes med en egendefinert SSL-sertifikat.",
|
||||
"TabResume": "Forsette",
|
||||
"TabWeather": "V\u00e6r",
|
||||
"TitleAppSettings": "App-innstillinger",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Spilles Av",
|
||||
"TabNavigation": "Navigering",
|
||||
"TabControls": "Kontrollerer",
|
||||
"ButtonFullscreen": "Fullskjerm",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonPreviousTrack": "Forrige lydspor",
|
||||
"ButtonNextTrack": "Neste lydspor",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonPreviousTrack": "Forrige Spor",
|
||||
"ButtonNextTrack": "Neste Spor",
|
||||
"ButtonStop": "Stopp",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Neste",
|
||||
@ -920,7 +914,6 @@
|
||||
"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",
|
||||
"ButtonDismiss": "Avvis",
|
||||
"ButtonMore": "Mer",
|
||||
"ButtonEditOtherUserPreferences": "Endre denne brukeren sin profilbilde og personlige innstillinger.",
|
||||
"LabelChannelStreamQuality": "Foretrukket internet kanalkvalitet:",
|
||||
"LabelChannelStreamQualityHelp": "P\u00e5 en linje med lav b\u00e5ndbredde, vil begrensing av kvalitet hjelpe med \u00e5 gi en mer behagelig streaming opplevelse.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "uidentifisert",
|
||||
"OptionMissingParentalRating": "Mangler foreldresensur",
|
||||
"OptionStub": "stump",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"OptionSeason0": "Sesong 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Sanger:",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artisert",
|
||||
"OptionReportAlbums": "Albumer",
|
||||
"OptionReportAdultVideos": "Voksen videoer",
|
||||
"ButtonMoreItems": "Mere",
|
||||
"ButtonMore": "Mer",
|
||||
"HeaderActivity": "Aktivitet",
|
||||
"ScheduledTaskStartedWithName": "{0} startet",
|
||||
"ScheduledTaskCancelledWithName": "{0} ble avbrutt",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Resett passord",
|
||||
"HeaderParentalRatings": "Foreldresensur",
|
||||
"HeaderVideoTypes": "Videotyper",
|
||||
"HeaderYears": "\u00c5r",
|
||||
"HeaderBlockItemsWithNoRating": "Blokkere innhold med ingen eller ukjent aldersgrense.",
|
||||
"LabelBlockContentWithTags": "Blokker innhold med f\u00f8lgende tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Maksimalt et innebygd bilde",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Kommende filmer",
|
||||
"HeaderUpcomingSports": "Kommende sport",
|
||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||
"ButtonMoreItems": "Mere",
|
||||
"LabelShowLibraryTileNames": "Vis bibliotek filnavn",
|
||||
"LabelShowLibraryTileNamesHelp": "Bestemmer om etikettene vil bli vist under bibliotek fliser p\u00e5 hjemmesiden",
|
||||
"OptionEnableTranscodingThrottle": "Aktiver struping",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Sett opp TV Guide",
|
||||
"LabelDataProvider": "Dataleverand\u00f8rer",
|
||||
"OptionSendRecordingsToAutoOrganize": "Aktivere auto-organisering av nye opptak in til eksisterende mapper for serier i andre biblioteker.",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nye opptak vil bli sendt til Auto-Organiser funksjonen og importert til ditt mediebiblioteket.",
|
||||
"HeaderDefaultPadding": "Standard padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"OptionEnableRecordingSubfolders": "Opprett undermapper for kategorier slik som sport, barn, etc.",
|
||||
"HeaderSubtitles": "Undertekster",
|
||||
"HeaderVideos": "Filmer",
|
||||
"OptionEnableVideoFrameAnalysis": "Aktivert bilde for bilde videoanalyse",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Hent ut detaljert informasjon om videoer som kan brukes til \u00e5 lage transcoding s\u00e5 effektiv som mulig. Dette vil f\u00f8re til bibliotek skanner tar lengre tid.",
|
||||
"LabelVideoFrameAnalysisLimit": "Begrens bilde for bilde-analyse til videoer mindre enn:",
|
||||
"LabelHardwareAccelerationType": "Maskinvareakselerasjon:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Kun tilgjengelig p\u00e5 systemer som st\u00f8ttes.",
|
||||
"ButtonServerDashboard": "Server dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-organiser",
|
||||
"TabPlugins": "Programtillegg",
|
||||
"TabHelp": "Hjelp",
|
||||
"ButtonFullscreen": "Fullskjerm",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonQuality": "Kvalitet",
|
||||
"HeaderNotifications": "Melding",
|
||||
"HeaderSelectPlayer": "Velg avspiller",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Ny spilleliste...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Se serie opptak",
|
||||
"ValueOriginalAirDate": "Original lanseringsdato: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Fjern fra spilleliste",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailere",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albumer",
|
||||
"HeaderGames": "Spill",
|
||||
"HeaderBooks": "B\u00f8ker",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"HeaderSeasons": "Sesonger",
|
||||
"HeaderTracks": "Spor",
|
||||
"HeaderItems": "Elementer",
|
||||
@ -2104,9 +2096,9 @@
|
||||
"LabelFullReview": "Full anmeldelse:",
|
||||
"LabelShortRatingDescription": "Kort sammendrag av vurdering:",
|
||||
"OptionIRecommendThisItem": "Jeg anbefaler dette elementet",
|
||||
"EndsAtValue": "Ends at {0}",
|
||||
"ReleaseYearValue": "Release year: {0}",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"EndsAtValue": "Ender p\u00e5 {0}",
|
||||
"ReleaseYearValue": "Utgivelse \u00e5r: {0}",
|
||||
"OriginalAirDateValue": "Original utgivelse dato: {0}",
|
||||
"WebClientTourContent": "Vis dine nylig tilf\u00f8yde medier, neste episodene og mer. De gr\u00f8nne sirklene viser hvor mange uspilte elementer du har.",
|
||||
"WebClientTourMovies": "Spill av filmer, trailere og mer fra hvilken som helst enhet med en nettleser",
|
||||
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
|
||||
@ -2230,9 +2222,7 @@
|
||||
"ErrorMessageUsernameInUse": "Brukernavnet er alt i bruk, Pr\u00f8v igjen med et annet brukernavn.",
|
||||
"ErrorMessageEmailInUse": "Epost addressee du oppgav er alt i bruk. Velg en annen epost adresse eller bruk tilbakestilling av passord funksjonen.",
|
||||
"MessageThankYouForConnectSignUp": "Takk for din registering i Emby Connect nettverket. En e-post vil bli sendt til din adresse med instruksjoner om hvordan du bekrefte den nye kontoen. Vennligst bekreft kontoen og deretter kom tilbake hit for \u00e5 logge p\u00e5.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Del",
|
||||
"ButtonShareHelp": "Del en nettside som inneholder medieinformasjon p\u00e5 sosiale medier. Mediefiler blir aldri delt offentlig.",
|
||||
"Share": "Del",
|
||||
"ButtonShare": "Del",
|
||||
"HeaderConfirm": "Bekreft",
|
||||
"MessageConfirmDeleteTunerDevice": "Er du sikker p\u00e5 at du vil slette denne enheten?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Viste du at med Emby Premiere, f\u00e5r du oppleve Emby med kino modus?",
|
||||
"MessageDidYouKnowCinemaMode2": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til \u00e5 spille trailere og tilpassede introer f\u00f8r filmen begynner.",
|
||||
"OptionEnableDisplayMirroring": "Aktiver skjerm speiling.",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever Emby Premiere abonnement.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synkronisering krever tilkobling til en Emby Server med et aktivt Emby Premiere abonnement.",
|
||||
"ErrorValidatingSupporterInfo": "Det oppstod en feil under validering din Emby Premiere informasjon. Vennligst pr\u00f8v igjen senere.",
|
||||
"LabelLocalSyncStatusValue": "Status {0}",
|
||||
@ -2299,7 +2290,7 @@
|
||||
"MessageTryMicrosoftEdge": "For en bedre opplevelse p\u00e5 Windows 10, kan du pr\u00f8ve den nye Microsoft Edge nettleseren.",
|
||||
"HeaderTryModernBrowser": "Pr\u00f8v en moderne nettleser",
|
||||
"MessageTryModernBrowser": "For en bedre opplevelse p\u00e5 Windows pr\u00f8v en moderne nettleser slik som Google Chrome, Firefox eller Opera.",
|
||||
"ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.",
|
||||
"ErrorAddingListingsToSchedulesDirect": "Det oppstod en feil mens du legger din oppstilling til tidsplaner Direkte konto. Direkte tidsplaner kun tillatt et begrenset antall oppstillingkombinasjoner per brukerkonto. Du b\u00f8r logge inn p\u00e5 nettstedet i planene Direct konto og noen samlinger av kontoen din for \u00e5 slette f\u00f8r du fortsetter.",
|
||||
"PleaseAddAtLeastOneFolder": "Vennligst legg til mint en mappe ved \u00e5 trykke p\u00e5 Legg til knappen.",
|
||||
"ErrorAddingMediaPathToVirtualFolder": "Det oppstod en feil \u00e5 legge mediebanen . S\u00f8rg for at banen er gyldig og Emby Server prosessen har tilgang til stedet.",
|
||||
"ErrorRemovingEmbyConnectAccount": "Det oppstod en feil under fjerning Emby Connect-kontoen. Kontroller at du har en aktiv Internett-tilkobling og pr\u00f8v igjen.",
|
||||
@ -2361,8 +2352,10 @@
|
||||
"LabelSortTitle": "Forkortet tittel:",
|
||||
"OptionConvertRecordingPreserveAudio": "Bevare opprinnelige lyd ved konvertering opptak",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "Denne leverand\u00f8ren gir bedre lyd, men kan kreve transcoding under avspilling p\u00e5 enkelte enheter.",
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"CreateCollectionHelp": "Samlinger tillate deg \u00e5 lage personlige grupperinger av filmer og annet bibliotek innhold.",
|
||||
"AddItemToCollectionHelp": "Legg til elementer i samlingene ved \u00e5 s\u00f8ke etter dem og bruke sine h\u00f8yreklikk eller pek menyer for \u00e5 legge dem til en samling.",
|
||||
"HeaderHealthMonitor": "Helse Overv\u00e5ker",
|
||||
"HealthMonitorNoAlerts": "Det finnes ingen aktive varslinger",
|
||||
"RecordingPathChangeMessage": "Endre opptaksmappe vil ikke migrere eksisterende opptak fra den gamle plasseringen til den nye. Du m\u00e5 flytte dem manuelt hvis \u00f8nskelig.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Afsluiten",
|
||||
"LabelVisitCommunity": "Bezoek Gemeenschap",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configureer pincode",
|
||||
"HeaderAdultsReadHere": "Volwassenen Lees hier!",
|
||||
"RegisterWithPayPal": "Registreer met PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een actief Premiere 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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Gemengde inhoud",
|
||||
"FolderTypeMovies": "Films",
|
||||
"FolderTypeMusic": "Muziek",
|
||||
"FolderTypeAdultVideos": "Adult video's",
|
||||
"FolderTypePhotos": "Foto's",
|
||||
"FolderTypeMusicVideos": "Muziek video's",
|
||||
"FolderTypeHomeVideos": "Thuis video's",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Oplopend",
|
||||
"OptionDescending": "Aflopend",
|
||||
"OptionRuntime": "Speelduur",
|
||||
"OptionReleaseDate": "Datum van uitgifte",
|
||||
"OptionReleaseDate": "Uitgave datum",
|
||||
"OptionPlayCount": "Afspeel telling",
|
||||
"OptionDatePlayed": "Datum afgespeeld",
|
||||
"OptionDateAdded": "Datum toegevoegd",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Inkomsten",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Jaren",
|
||||
"OptionPosterCard": "Poster kaart",
|
||||
"OptionBackdrop": "Achtergrond",
|
||||
"OptionTimeline": "Tijdlijn",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecteer",
|
||||
"ButtonGroupVersions": "Groepeer Versies",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Toevoegen aan Collectie",
|
||||
"PismoMessage": "Pismo File Mount (met een geschonken licentie).",
|
||||
"TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -351,10 +347,10 @@
|
||||
"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": "Default recording path:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||
"LabelRecordingPath": "Standaard opname pad:",
|
||||
"LabelMovieRecordingPath": "Filmopname pad (optioneel):",
|
||||
"LabelSeriesRecordingPath": "Serieopname pad (optioneel):",
|
||||
"LabelRecordingPathHelp": "Geef de standaard locatie op om opnamen op te slaan. Indien leeg gelaten, zal de map van de server-programma gegevens worden gebruikt.",
|
||||
"LabelImagesByNamePath": "Afbeeldingen op naam pad:",
|
||||
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
|
||||
"LabelMetadataPath": "Metadata pad:",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Extra onderdelen",
|
||||
"ButtonSplitVersionsApart": "Splits Versies Apart",
|
||||
"ButtonPlayTrailer": "Trailer afspelen",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Ontbreekt",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Pad vervangingen worden gebruikt om een pad op de server te vertalen 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.",
|
||||
@ -565,8 +561,8 @@
|
||||
"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": "External domain:",
|
||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
||||
"LabelExternalDDNS": "Extern domein:",
|
||||
"LabelExternalDDNSHelp": "Als u een dynamische DNS heeft kunt u deze hier invoeren. Emby apps zal deze gebruiken bij het op afstand aansluiten. Dit veld is verplicht bij gebruik in combinatie met een aangepast SSL-certificaat.",
|
||||
"TabResume": "Hervatten",
|
||||
"TabWeather": "Weer",
|
||||
"TitleAppSettings": "App Instellingen",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Overgeslagen",
|
||||
"HeaderEpisodeOrganization": "Afleveringen Organisatie",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Seizoen nummer:",
|
||||
"LabelEpisodeNumber": "Aflevering nummer:",
|
||||
"LabelSeasonNumber": "Seizoensnummer:",
|
||||
"LabelEpisodeNumber": "Afleveringsnummer:",
|
||||
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
|
||||
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
|
||||
"OptionRememberOrganizeCorrection": "Bewaar correctie en gebruik deze bij toekomstige bestanden met een lijkende naam",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Wordt nu afgespeeld",
|
||||
"TabNavigation": "Navigatie",
|
||||
"TabControls": "Besturing",
|
||||
"ButtonFullscreen": "Volledig scherm",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Ondertiteling",
|
||||
"ButtonPreviousTrack": "Vorig nummer",
|
||||
"ButtonNextTrack": "Volgend nummer",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Vorige track",
|
||||
"ButtonNextTrack": "Volgende track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pauze",
|
||||
"ButtonNext": "Volgende",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Afwijzen",
|
||||
"ButtonMore": "Meer",
|
||||
"ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.",
|
||||
"LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:",
|
||||
"LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Onge\u00efdentificeerd",
|
||||
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Afleveringen",
|
||||
"OptionSeason0": "Seizoen 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Nummers",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artiesten",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult video's",
|
||||
"ButtonMoreItems": "Meer",
|
||||
"ButtonMore": "Meer",
|
||||
"HeaderActivity": "Activiteit",
|
||||
"ScheduledTaskStartedWithName": "{0} is gestart",
|
||||
"ScheduledTaskCancelledWithName": "{0} is geannuleerd",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Wachtwoord resetten",
|
||||
"HeaderParentalRatings": "Ouderlijke toezicht",
|
||||
"HeaderVideoTypes": "Video types",
|
||||
"HeaderYears": "Jaren",
|
||||
"HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
|
||||
"LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Films binnenkort",
|
||||
"HeaderUpcomingSports": "Sport binnenkort",
|
||||
"HeaderUpcomingPrograms": "Programma's binnenkort",
|
||||
"ButtonMoreItems": "Meer",
|
||||
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
|
||||
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
|
||||
"OptionEnableTranscodingThrottle": "Throtteling inschakelen",
|
||||
@ -1494,15 +1488,11 @@
|
||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.",
|
||||
"HeaderSetupTVGuide": "TV Gids configureren",
|
||||
"LabelDataProvider": "Gegevensleverancier:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nieuwe opnamen zullen door de Automatisch Organiseren functionaliteit in uw media bilbiliotheek ge\u00efmporteerd worden.",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatisch organiseren van opnames in de bestaande serie mappen van andere bibliotheken",
|
||||
"HeaderDefaultPadding": "Standaard 'Padding'",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"OptionEnableRecordingSubfolders": "Maak sub-mappen voor categorie\u00ebn zoals sport, Kids, etc. ",
|
||||
"HeaderSubtitles": "Ondertiteling",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleratie:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Alleen beschikbaar op ondersteunde systemen.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Autom. Organiseren",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Hulp",
|
||||
"ButtonFullscreen": "Volledig scherm",
|
||||
"ButtonAudioTracks": "Audio track",
|
||||
"ButtonQuality": "Kwaliteit",
|
||||
"HeaderNotifications": "Meldingen",
|
||||
"HeaderSelectPlayer": "Selecteer Speler",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nieuwe afspeellijst...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Bekijk serie opnamen",
|
||||
"ValueOriginalAirDate": "Originele uitzenddatum: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Verwijderen uit afspeellijst",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Boeken",
|
||||
"HeaderEpisodes": "Afleveringen",
|
||||
"HeaderSeasons": "Seizoenen",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2104,9 +2096,9 @@
|
||||
"LabelFullReview": "Volledige beoordeling:",
|
||||
"LabelShortRatingDescription": "Korte beoordeling overzicht:",
|
||||
"OptionIRecommendThisItem": "Ik beveel dit item aan",
|
||||
"EndsAtValue": "Ends at {0}",
|
||||
"ReleaseYearValue": "Release year: {0}",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"EndsAtValue": "Eindigt om: {0}",
|
||||
"ReleaseYearValue": "Jaar van uitgifte: {0}",
|
||||
"OriginalAirDateValue": "Originele uitzenddatum: {0}",
|
||||
"WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.",
|
||||
"WebClientTourMovies": "Speel films, trailers en meer van elk apparaat met een webbrowser",
|
||||
"WebClientTourMouseOver": "Houd de muis over een poster voor snelle toegang tot belangrijke informatie",
|
||||
@ -2230,9 +2222,7 @@
|
||||
"ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.",
|
||||
"ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.",
|
||||
"MessageThankYouForConnectSignUp": "Bedankt voor het aanmelden bij Emby Connect. Een e-mail met instructies hoe uw account bevestigd moet worden wordt verstuurd. Bevestig het account en keer terug om aan te melden.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Delen",
|
||||
"ButtonShareHelp": "Deel een webpagina met media-informatie met sociale media. Media-bestanden worden nooit publiekelijk gedeeld.",
|
||||
"Share": "Delen",
|
||||
"ButtonShare": "Delen",
|
||||
"HeaderConfirm": "bevestigen",
|
||||
"MessageConfirmDeleteTunerDevice": "Weet u zeker dat u dit apparaat wilt verwijderen?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere uw ervaring met functies zoals Cinema Mode kunt verbeteren?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.",
|
||||
"OptionEnableDisplayMirroring": "Schakel beeld spiegeling in",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een actief Premiere lidmaatschap.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync vereist een verbinding met een Emby Server met een actief Emby Premiere abonnement.",
|
||||
"ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2361,8 +2352,10 @@
|
||||
"LabelSortTitle": "Sorteer titel:",
|
||||
"OptionConvertRecordingPreserveAudio": "Behoud van originele audio bij het converteren opnamen",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "Dit zal betere audio leveren, maar kan transcodering nodig hebben tijdens het afspelen op sommige apparaten.",
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"CreateCollectionHelp": "Collecties maken het u mogelijk om gepersonaliseerde groeperingen van films en andere bibliotheek inhoud te maken.",
|
||||
"AddItemToCollectionHelp": "Voegen items aan uw collecties toe door te zoeken en gebruik rechts klikken met de muis of tik op menu's om ze toe te voegen aan een verzameling.",
|
||||
"HeaderHealthMonitor": "Gezondheid",
|
||||
"HealthMonitorNoAlerts": "Er zijn geen actieve waarschuwingen.",
|
||||
"RecordingPathChangeMessage": "Bij het wijzigen van uw opnamemap zullen bestaande opnamen niet migreren van de oude locatie naar de nieuwe. U moet deze desgewenst handmatig verplaatsen.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Wyj\u015bcie",
|
||||
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfiguruj kod pin",
|
||||
"HeaderAdultsReadHere": "Doro\u015bli czyta\u0107!",
|
||||
"RegisterWithPayPal": "Zarejestruj z PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego",
|
||||
"LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:",
|
||||
"LabelSyncTempPathHelp": "Okre\u015b w\u0142asny folder synchronizacji. Utworzone skonwertowane media podczas synchronizacji b\u0119d\u0105 zapisywane tutaj.",
|
||||
@ -91,10 +89,9 @@
|
||||
"LabelEnableEnhancedMovies": "W\u0142\u0105cz rozszerzone wy\u015bwietlanie film\u00f3w",
|
||||
"LabelEnableEnhancedMoviesHelp": "Je\u015bli w\u0142\u0105czone, filmy bed\u0105 wy\u015bwitlane jako foldery aby zawiera\u0107 trailery, dodatki, obsade i ekip\u0119, oraz inn\u0105 powi\u0105zan\u0105 zawarto\u015b\u0107.",
|
||||
"HeaderSyncJobInfo": "Zadanie synchronizacji",
|
||||
"FolderTypeMixed": "Zawarto\u015b\u0107 mieszana",
|
||||
"FolderTypeMixed": "R\u00f3\u017cna zawarto\u015b\u0107",
|
||||
"FolderTypeMovies": "Filmy",
|
||||
"FolderTypeMusic": "Muzyka",
|
||||
"FolderTypeAdultVideos": "Filmy dla doros\u0142ych",
|
||||
"FolderTypePhotos": "Zdj\u0119cia",
|
||||
"FolderTypeMusicVideos": "Teledyski",
|
||||
"FolderTypeHomeVideos": "Filmy domowe",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Rosn\u0105co",
|
||||
"OptionDescending": "Malej\u0105co",
|
||||
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Data Wydania",
|
||||
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
|
||||
"OptionDatePlayed": "Data odtworzenia",
|
||||
"OptionDateAdded": "Data dodania",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Bud\u017cet",
|
||||
"OptionRevenue": "Doch\u00f3d",
|
||||
"OptionPoster": "Plakat",
|
||||
"HeaderYears": "Lata",
|
||||
"OptionPosterCard": "Plakat",
|
||||
"OptionBackdrop": "Zrzut",
|
||||
"OptionTimeline": "O\u015b czasu",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metawynik",
|
||||
"ButtonSelect": "Wybierz",
|
||||
"ButtonGroupVersions": "Grupa Wersji",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Dodaj do Kolekcji",
|
||||
"PismoMessage": "U\u017cycie Pismo File Mount poprzed licencj\u0119 dotowan\u0105.",
|
||||
"TangibleSoftwareMessage": "u\u017cycie Tangible Solutions Java\/C# converters poprzez licecj\u0119 dotowan\u0105.",
|
||||
"HeaderCredits": "Zas\u0142ugi",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "Obsada & Eikpa",
|
||||
"HeaderAdditionalParts": "Dodatkowe Cz\u0119\u015bci",
|
||||
"ButtonSplitVersionsApart": "Podziel Wersje",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"ButtonPlayTrailer": "Zwiastun",
|
||||
"LabelMissing": "Brakuj\u0105cy",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Podmiana \u015bcie\u017cek jest u\u017cywana do mapowania \u015bcie\u017cek na serwerze do \u015bcie\u017cek do kt\u00f3rych klienci maj\u0105 dost\u0119p. Pozwalaj\u0105c klientom na bezpo\u015bredni dost\u0119p do medi\u00f3w na serwerze, mog\u0105 oni odtwarza\u0107 bezpo\u015brednio po sieci, unikaj\u0105c w ten spos\u00f3b u\u017cywania zasob\u00f3w serwera na streaming i transkodowanie ich.",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienci",
|
||||
"LabelCompleted": "Zako\u0144czono",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "Nieudane",
|
||||
"LabelSkipped": "Pomini\u0119te",
|
||||
"HeaderEpisodeOrganization": "Organizacja Odcink\u00f3w",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "Numer sezonu:",
|
||||
"LabelEpisodeNumber": "Numer epizodu:",
|
||||
"LabelSeries": "Seriale:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Numer ostatniego odcinka:",
|
||||
"LabelEndingEpisodeNumberHelp": "Wymagane tylko dla wielo-odcinkowych plik\u00f3w",
|
||||
"OptionRememberOrganizeCorrection": "Zapisz i zastosuj t\u0119 korekcj\u0119 na plikach z podobnymi nazwami dodanymi w przysz\u0142o\u015bci",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Odtwarzane teraz",
|
||||
"TabNavigation": "Nawigacja",
|
||||
"TabControls": "Kotrolki",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Sceny",
|
||||
"ButtonSubtitles": "Napisy",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "Poprzednia \u015bcie\u017cka",
|
||||
"ButtonNextTrack": "Nast\u0119pna \u015bcie\u017cka",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pauza",
|
||||
"ButtonNext": "Nast\u0119pny",
|
||||
@ -920,7 +914,6 @@
|
||||
"MessageNoPlaylistsAvailable": "Playlisty pozwalaj\u0105 na tworzenie list z zawarto\u015bci\u0105 do odtwarzania kolejno w czasie. Aby doda\u0107 pozycje do playlisty, kliknij prawym guzikiem lub naci\u015bnij i przytrzymaj, a nast\u0119pnie wybierz dodaj do Playlisty.",
|
||||
"MessageNoPlaylistItemsAvailable": "Playlista jest obecnie pusta.",
|
||||
"ButtonDismiss": "Odrzu\u0107",
|
||||
"ButtonMore": "Wi\u0119cej",
|
||||
"ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "W \u015brodowisku z s\u0142abym \u0142\u0105czem, ograniczenie jako\u015bci mo\u017ce zapewni\u0107 lepsze do\u015bwiadczenia w streamowaniu.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Niezidentyfikowane",
|
||||
"OptionMissingParentalRating": "Brak oceny rodzicielskiej",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Sezon 0",
|
||||
"LabelReport": "Zg\u0142o\u015b:",
|
||||
"OptionReportSongs": "Utwory",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Wykonawcy",
|
||||
"OptionReportAlbums": "Albumy",
|
||||
"OptionReportAdultVideos": "Filmy dla doros\u0142ych",
|
||||
"ButtonMoreItems": "Wi\u0119cej",
|
||||
"ButtonMore": "Wi\u0119cej",
|
||||
"HeaderActivity": "Aktywno\u015b\u0107",
|
||||
"ScheduledTaskStartedWithName": "{0} rozpocz\u0119te",
|
||||
"ScheduledTaskCancelledWithName": "{0} anulowane",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Zresetuj has\u0142o",
|
||||
"HeaderParentalRatings": "Ocena rodzicielska",
|
||||
"HeaderVideoTypes": "Typy Video",
|
||||
"HeaderYears": "Lata",
|
||||
"HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:",
|
||||
"LabelBlockContentWithTags": "Zablokuj materia\u0142 z tagami:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Ogranicz do jednego osadzonego obrazka",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Przysz\u0142e filmy",
|
||||
"HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe",
|
||||
"HeaderUpcomingPrograms": "Przysz\u0142e programy",
|
||||
"ButtonMoreItems": "Wi\u0119cej",
|
||||
"LabelShowLibraryTileNames": "Pokazuj nazwy bibliotek",
|
||||
"LabelShowLibraryTileNamesHelp": "Okre\u015bla czy okre\u015blenia b\u0119d\u0105 wy\u015bwietlane poni\u017cej biblioteki na stronie g\u0142\u00f3wnej",
|
||||
"OptionEnableTranscodingThrottle": "W\u0142\u0105cz CPU throttling serwera",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Skonfiguruj Program TV",
|
||||
"LabelDataProvider": "Dostawca danych:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nowe nagrania b\u0119d\u0105 wysy\u0142ane do funkcji Auto-Organizacji i importowane do twojej biblioteki medi\u00f3w.",
|
||||
"HeaderDefaultPadding": "Domy\u015blny Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Napisy",
|
||||
"HeaderVideos": "Wideo",
|
||||
"OptionEnableVideoFrameAnalysis": "W\u0142\u0105cz analiz\u0119 wideo klatka po klatce",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Wydob\u0105d\u017a szczeg\u00f3\u0142owe informacje o filmach kt\u00f3re mog\u0105 pom\u00f3c transkodowa\u0107 najwydajniej jako to mo\u017cliwe. Wyd\u0142u\u017cy to proces skanowania biblioteki.",
|
||||
"LabelVideoFrameAnalysisLimit": "Ogranicz analiz\u0119 wideo klatka po klatce do mniej ni\u017c:",
|
||||
"LabelHardwareAccelerationType": "Akceleracja sprz\u0119towa:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Dost\u0119pne tylko na wspieranych systemach.",
|
||||
"ButtonServerDashboard": "Panel G\u0142\u00f3wny Serwera",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organizuj",
|
||||
"TabPlugins": "Wtyczki",
|
||||
"TabHelp": "Pomoc",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Jako\u015b\u0107",
|
||||
"HeaderNotifications": "Powiadomienia",
|
||||
"HeaderSelectPlayer": "Wybierz Odtworzacz",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nowa playlista...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Ogl\u0105daj nagrania seriali",
|
||||
"ValueOriginalAirDate": "data pierwszej transmisji: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Usu\u0144 z playlisty",
|
||||
"HeaderSpecials": "Specjalne",
|
||||
"HeaderTrailers": "Zwiastuny",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albumy",
|
||||
"HeaderGames": "Gry",
|
||||
"HeaderBooks": "Ksi\u0105\u017cki",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Sezony",
|
||||
"HeaderTracks": "Utwory",
|
||||
"HeaderItems": "Pozycje",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "Adres e-mail jest ju\u017c aktualnie w u\u017cyciu. Wprowad\u017a nowy adres e-mail i spr\u00f3buj ponownie lub u\u017cyj opcji przywracania has\u0142a.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Udost\u0119pnij",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Udost\u0119pnij",
|
||||
"HeaderConfirm": "Potwierd\u017a",
|
||||
"MessageConfirmDeleteTunerDevice": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Sair",
|
||||
"LabelVisitCommunity": "Visitar a Comunidade",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
||||
"RegisterWithPayPal": "Registrar com PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.",
|
||||
"HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
|
||||
"LabelSyncTempPath": "Local do 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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Conte\u00fado misto",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
||||
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Or\u00e7amento",
|
||||
"OptionRevenue": "Faturamento",
|
||||
"OptionPoster": "Capa",
|
||||
"HeaderYears": "Anos",
|
||||
"OptionPosterCard": "Cart\u00e3o da capa",
|
||||
"OptionBackdrop": "Imagem de Fundo",
|
||||
"OptionTimeline": "Linha do tempo",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecionar",
|
||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"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",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Reproduzindo Agora",
|
||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Tela cheia",
|
||||
"ButtonScenes": "Cenas",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonPreviousTrack": "Faixa anterior",
|
||||
"ButtonNextTrack": "Faixa seguinte",
|
||||
"ButtonAudioTracks": "Faixas de \u00c1udio",
|
||||
"ButtonStop": "Parar",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Pr\u00f3xima",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Descartar",
|
||||
"ButtonMore": "Mais",
|
||||
"ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.",
|
||||
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
|
||||
"LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "N\u00e3o identificada",
|
||||
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Relat\u00f3rio:",
|
||||
"OptionReportSongs": "M\u00fasicas",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artistas",
|
||||
"OptionReportAlbums": "\u00c1lbuns",
|
||||
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"ButtonMore": "Mais",
|
||||
"HeaderActivity": "Atividade",
|
||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
||||
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
||||
"HeaderVideoTypes": "Tipos de V\u00eddeo",
|
||||
"HeaderYears": "Anos",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:",
|
||||
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
||||
"HeaderUpcomingSports": "Esportes Por Estrear",
|
||||
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"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",
|
||||
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
||||
"LabelDataProvider": "Provedor de dados:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"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",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Legendas",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Acelera\u00e7\u00e3o de hardware:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel somente em sistemas suportados.",
|
||||
"ButtonServerDashboard": "Painel do Servidor",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organizar",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Ajuda",
|
||||
"ButtonFullscreen": "Tela cheia",
|
||||
"ButtonAudioTracks": "Faixas de \u00c1udio",
|
||||
"ButtonQuality": "Qualidade",
|
||||
"HeaderNotifications": "Avisos",
|
||||
"HeaderSelectPlayer": "Selecione onde Reproduzir",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Nova lista de reprodu\u00e7\u00e3o",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Visualizar grava\u00e7\u00e3o de s\u00e9ries",
|
||||
"ValueOriginalAirDate": "Data original de exibi\u00e7\u00e3o: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remover da lista de reprodu\u00e7\u00e3o",
|
||||
"HeaderSpecials": "Especiais",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u00c1lbuns",
|
||||
"HeaderGames": "Jogos",
|
||||
"HeaderBooks": "Livros",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Temporadas",
|
||||
"HeaderTracks": "Faixas",
|
||||
"HeaderItems": "Itens",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "O endere\u00e7o de email j\u00e1 est\u00e1 em uso. Por favor, digite um novo endere\u00e7o de email e tente novamente ou use o recurso de senha esquecida.",
|
||||
"MessageThankYouForConnectSignUp": "Obrigado por inscrever-se no Emby Connect. Um email ser\u00e1 enviado para seu endere\u00e7o com as instru\u00e7\u00f5es para confirmar sua nova conta. Por favor, confirme a conta e ent\u00e3o volte aqui para entrar.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Compartilhar",
|
||||
"ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es de m\u00eddia com uma m\u00eddia social. Os arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente.",
|
||||
"ButtonShare": "Compartilhar",
|
||||
"HeaderConfirm": "Confirmar",
|
||||
"MessageConfirmDeleteTunerDevice": "Deseja realmente excluir este dispositivo?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.",
|
||||
"OptionEnableDisplayMirroring": "Ativar espelhamento da tela",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.",
|
||||
"ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Sair",
|
||||
"LabelVisitCommunity": "Visitar a Comunidade",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
||||
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
||||
"RegisterWithPayPal": "Registar com PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Conte\u00fado misto",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||
"FolderTypePhotos": "Fotos",
|
||||
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
||||
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Dura\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento:",
|
||||
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
|
||||
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
|
||||
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Or\u00e7amento",
|
||||
"OptionRevenue": "Receita",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Anos",
|
||||
"OptionPosterCard": "Cart\u00e3o da capa",
|
||||
"OptionBackdrop": "Imagem de fundo",
|
||||
"OptionTimeline": "Linha de tempo",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecionar",
|
||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"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",
|
||||
@ -592,8 +588,8 @@
|
||||
"LabelSkipped": "Ignorado",
|
||||
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
|
||||
"LabelSeries": "S\u00e9rie:",
|
||||
"LabelSeasonNumber": "N\u00famero da temporada:",
|
||||
"LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
|
||||
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes semelhantes",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "A reproduzir agora",
|
||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||
"TabControls": "Controlos",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Cenas",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonPreviousTrack": "Faixa anterior",
|
||||
"ButtonNextTrack": "Faixa seguinte",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Parar",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Pr\u00f3xima",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Descartar",
|
||||
"ButtonMore": "Mais",
|
||||
"ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.",
|
||||
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
|
||||
"LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "N\u00e3o identificada",
|
||||
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Relat\u00f3rio:",
|
||||
"OptionReportSongs": "M\u00fasicas",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artistas",
|
||||
"OptionReportAlbums": "\u00c1lbuns",
|
||||
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"ButtonMore": "Mais",
|
||||
"HeaderActivity": "Atividade",
|
||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
||||
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
||||
"HeaderVideoTypes": "Tipos de V\u00eddeo",
|
||||
"HeaderYears": "Anos",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:",
|
||||
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
||||
"HeaderUpcomingSports": "Esportes Por Estrear",
|
||||
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"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",
|
||||
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
||||
"LabelDataProvider": "Provedor de dados:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca multim\u00e9dia.",
|
||||
"HeaderDefaultPadding": "Padding Padr\u00e3o",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Legendas",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Acelera\u00e7\u00e3o de hardware:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel apenas em sistemas suportados.",
|
||||
"ButtonServerDashboard": "Painel do Servidor",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica",
|
||||
"TabPlugins": "Extens\u00f5es",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifica\u00e7\u00f5es",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es multim\u00e9dia com um website social. Os arquivos de multim\u00e9dia nunca ser\u00e3o compartilhados publicamente.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Iesire",
|
||||
"LabelVisitCommunity": "Viziteaza comunitatea",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configureaza codul pin",
|
||||
"HeaderAdultsReadHere": "Adultii Cititi Aici!",
|
||||
"RegisterWithPayPal": "Inregistreaza-te cu PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "Continut mixt",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Filme",
|
||||
"FolderTypeMusic": "Muzica",
|
||||
"FolderTypeAdultVideos": "Filme Porno",
|
||||
"FolderTypePhotos": "Fotografii",
|
||||
"FolderTypeMusicVideos": "Videoclipuri",
|
||||
"FolderTypeHomeVideos": "Video Personale",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Crescator",
|
||||
"OptionDescending": "Descrescator",
|
||||
"OptionRuntime": "Timp Rulare",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Data Aparitie",
|
||||
"OptionPlayCount": "Contorizari rulari",
|
||||
"OptionDatePlayed": "Data Rulare",
|
||||
"OptionDateAdded": "Data Adaugare",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Buget",
|
||||
"OptionRevenue": "Incasari",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"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",
|
||||
@ -64,7 +63,7 @@
|
||||
"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",
|
||||
"CategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e",
|
||||
"TabPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
|
||||
"HeaderEasyPinCode": "\u041f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
|
||||
"HeaderGrownupsOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445!",
|
||||
@ -77,7 +76,6 @@
|
||||
"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\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
|
||||
"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 \u043f\u0430\u043f\u043a\u0435 \u0441 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u0444\u0430\u0439\u043b\u0430\u043c\u0438:",
|
||||
"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 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\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": "\u0414\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445",
|
||||
"FolderTypePhotos": "\u0424\u043e\u0442\u043e",
|
||||
"FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
|
||||
"FolderTypeHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||
"OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430",
|
||||
"OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"HeaderYears": "\u0413\u043e\u0434\u044b",
|
||||
"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",
|
||||
@ -267,8 +263,8 @@
|
||||
"OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b",
|
||||
"TabBasic": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435",
|
||||
"TabAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435",
|
||||
"OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f",
|
||||
"OptionEnded": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0441\u044f",
|
||||
"OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u044e\u0449\u0438\u0439\u0441\u044f",
|
||||
"OptionEnded": "\u0417\u0430\u043a\u043e\u043d\u0447\u0435\u043d\u043d\u044b\u0439",
|
||||
"HeaderAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430",
|
||||
"OptionSundayShort": "\u0432\u0441\u043a",
|
||||
"OptionMondayShort": "\u043f\u043d\u0434",
|
||||
@ -308,7 +304,7 @@
|
||||
"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, \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u044e\u0442\u0441\u044f \u043b\u044e\u0431\u044b\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c. \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\u0430\u0437\u043e\u0440\u0432\u0430\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):",
|
||||
"LabelName": "\u0418\u043c\u044f:",
|
||||
"ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...",
|
||||
"OptionAllowUserToManageServer": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \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",
|
||||
@ -352,8 +348,8 @@
|
||||
"LabelCachePath": "\u041f\u0443\u0442\u044c \u043a \u043a\u0435\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": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelMovieRecordingPath": "\u041f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0444\u0438\u043b\u044c\u043c\u043e\u0432 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):",
|
||||
"LabelSeriesRecordingPath": "\u041f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):",
|
||||
"LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\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. \u0415\u0441\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u0430 program data \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
||||
"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.",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438",
|
||||
"HeaderAdditionalParts": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u0438",
|
||||
"ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440",
|
||||
"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\u0440\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \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, \u043e\u043d\u0438 \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.",
|
||||
@ -580,7 +576,7 @@
|
||||
"TabActivityLog": "\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439",
|
||||
"TabSmartMatches": "\u0418\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f",
|
||||
"TabSmartMatchInfo": "\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0432\u0430\u0448\u0438\u043c\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0434\u0438\u0430\u043b\u043e\u0433\u0430 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043a\u0435",
|
||||
"HeaderName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435)",
|
||||
"HeaderName": "\u0418\u043c\u044f",
|
||||
"HeaderDate": "\u0414\u0430\u0442\u0430",
|
||||
"HeaderSource": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
"HeaderStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f",
|
||||
"TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
|
||||
"TabControls": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
|
||||
"ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d...",
|
||||
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...",
|
||||
"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...",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
|
||||
"ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||
"ButtonPause": "\u041f\u0430\u0443\u0437\u0430",
|
||||
"ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"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.",
|
||||
"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-\u043a\u0430\u043d\u0430\u043b\u0430:",
|
||||
"LabelChannelStreamQualityHelp": "\u041f\u0440\u0438 \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\u0438 \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 \u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"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": "\u0422\u0412-\u044d\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",
|
||||
@ -1100,7 +1092,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...",
|
||||
"ButtonMore": "\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",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f",
|
||||
"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",
|
||||
"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:",
|
||||
"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",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"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",
|
||||
"ButtonMoreItems": "\u0415\u0449\u0451...",
|
||||
"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.",
|
||||
"OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0440\u043e\u0441\u0441\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"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": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u043d\u0443\u0442\u0440\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0432 \u0434\u0440\u0443\u0433\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u0445.",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "\u041d\u043e\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \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",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"OptionEnableRecordingSubfolders": "\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u043e\u0434\u043f\u0430\u043f\u043e\u043a \u0434\u043b\u044f \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439, \u043a\u0430\u043a \u0421\u043f\u043e\u0440\u0442, \u0414\u0435\u0442\u0441\u043a\u0438\u0439 \u0438 \u0442.\u043f.",
|
||||
"HeaderSubtitles": "\u0421\u0443\u0431\u0442.",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435:",
|
||||
"LabelHardwareAccelerationTypeHelp": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \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.",
|
||||
"ButtonServerDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
||||
@ -1861,9 +1851,9 @@
|
||||
"OptionProductionLocations": "\u041c\u0435\u0441\u0442\u0430 \u0441\u044a\u0451\u043c\u043e\u043a",
|
||||
"OptionBirthLocation": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f",
|
||||
"LabelAllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b",
|
||||
"AttributeNew": "New",
|
||||
"AttributePremiere": "Premiere",
|
||||
"AttributeLive": "Live",
|
||||
"AttributeNew": "\u041d\u043e\u0432\u044b\u0439",
|
||||
"AttributePremiere": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430",
|
||||
"AttributeLive": "\u042d\u0444\u0438\u0440",
|
||||
"LabelHDProgram": "HD",
|
||||
"HeaderChangeFolderType": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f",
|
||||
"HeaderChangeFolderTypeHelp": "\u0414\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0430, \u043d\u0430\u0434\u043e \u0438\u0437\u044a\u044f\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443 \u0438 \u0437\u0430\u043d\u043e\u0432\u043e \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0435\u0451 \u0441 \u043d\u043e\u0432\u044b\u043c \u0442\u0438\u043f\u043e\u043c.",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a",
|
||||
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||
"TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430",
|
||||
"ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d...",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
|
||||
"ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...",
|
||||
"HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
|
||||
"HeaderSelectPlayer": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...",
|
||||
"MessageAddedToPlaylistSuccess": "\u041e\u041a",
|
||||
"ButtonViewSeriesRecording": "\u0421\u043c. \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430",
|
||||
"ValueOriginalAirDate": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}",
|
||||
"ButtonRemoveFromPlaylist": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u0430",
|
||||
"HeaderSpecials": "\u0421\u043f\u0435\u0446.",
|
||||
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b.",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||
"HeaderGames": "\u0418\u0433\u0440\u044b",
|
||||
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||
"HeaderEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b",
|
||||
"HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438",
|
||||
"HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
|
||||
@ -2104,9 +2096,9 @@
|
||||
"LabelFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e:",
|
||||
"LabelShortRatingDescription": "\u041a\u0440\u0430\u0442\u043a\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438:",
|
||||
"OptionIRecommendThisItem": "\u042f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442",
|
||||
"EndsAtValue": "Ends at {0}",
|
||||
"ReleaseYearValue": "Release year: {0}",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"EndsAtValue": "\u041a\u043e\u043d\u0435\u0446 \u0432 {0}",
|
||||
"ReleaseYearValue": "\u0413\u043e\u0434 \u0432\u044b\u043f\u0443\u0441\u043a\u0430: {0}",
|
||||
"OriginalAirDateValue": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}",
|
||||
"WebClientTourContent": "\u0421\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0438 \u0442.\u0434. \u0417\u0435\u043b\u0451\u043d\u044b\u0435 \u043a\u0440\u0443\u0436\u043e\u0447\u043a\u0438 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.",
|
||||
"WebClientTourMovies": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u0442.\u0434., \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043c\u0435\u044e\u0449\u0435\u0433\u043e \u0431\u0440\u0430\u0443\u0437\u0435\u0440.",
|
||||
"WebClientTourMouseOver": "\u0417\u0430\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440 \u043c\u044b\u0448\u0438 \u043d\u0430\u0434 \u043b\u044e\u0431\u044b\u043c \u043f\u043e\u0441\u0442\u0435\u0440\u043e\u043c \u0434\u043b\u044f \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u0430\u0436\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438",
|
||||
@ -2230,9 +2222,7 @@
|
||||
"ErrorMessageUsernameInUse": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||
"ErrorMessageEmailInUse": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c.",
|
||||
"MessageThankYouForConnectSignUp": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044e \u0432 Emby Connect. \u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u042d-\u043f\u043e\u0447\u0442\u044b \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c\u0438 \u043a\u0430\u043a \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u043d\u043e\u0432\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u0432\u0430\u0448 \u0430\u0434\u0440\u0435\u0441. \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c, \u0430 \u043f\u043e\u0442\u043e\u043c \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0439\u0442\u0438.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
|
||||
"ButtonShareHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435.",
|
||||
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
||||
"ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
||||
"HeaderConfirm": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||
"MessageConfirmDeleteTunerDevice": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?",
|
||||
"MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
|
||||
"OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
||||
"ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
|
||||
"LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}",
|
||||
@ -2359,10 +2350,12 @@
|
||||
"LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
||||
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
||||
"LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:",
|
||||
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"OptionConvertRecordingPreserveAudio": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0430\u0443\u0434\u0438\u043e \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "\u042d\u0442\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442 \u0430\u0443\u0434\u0438\u043e \u043f\u043e\u043b\u0443\u0447\u0448\u0435, \u043d\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.",
|
||||
"CreateCollectionHelp": "\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 \u0438 \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
||||
"AddItemToCollectionHelp": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438\u0445 \u043f\u043e\u0438\u0441\u043a\u0430, \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0438\u0445 \u043f\u0440\u0430\u0432\u044b\u043c \u0449\u0435\u043b\u0447\u043a\u043e\u043c \u0438\u043b\u0438 \u043a\u0430\u0441\u0430\u043d\u0438\u0435\u043c \u043c\u0435\u043d\u044e \u0434\u043b\u044f \u0438\u0445 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e.",
|
||||
"HeaderHealthMonitor": "\u041c\u043e\u043d\u0438\u0442\u043e\u0440 \u0440\u0430\u0431\u043e\u0442\u043e\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u0438",
|
||||
"HealthMonitorNoAlerts": "\u0417\u0434\u0435\u0441\u044c \u043d\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0439.",
|
||||
"RecordingPathChangeMessage": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u043d\u0435 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0443 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0441\u043e \u0441\u0442\u0430\u0440\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435. \u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u0445 \u0432\u0440\u0443\u0447\u043d\u0443\u044e, \u0435\u0441\u043b\u0438 \u044d\u0442\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Exit",
|
||||
"LabelVisitCommunity": "Visit Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Izhod",
|
||||
"LabelVisitCommunity": "Obiscite Skupnost",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Nastavi pin kodo",
|
||||
"HeaderAdultsReadHere": "Odrasli, preberite tukaj!",
|
||||
"RegisterWithPayPal": "Registriraj se z PayPal-om",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici",
|
||||
"LabelSyncTempPath": "Zacasna pot do datoteke:",
|
||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
||||
@ -91,10 +89,9 @@
|
||||
"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",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMixed": "Mesane vsebine",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "Datum Izdaje",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Dodaj v Zbirko",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Avsluta",
|
||||
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Konfigurera pinkod",
|
||||
"HeaderAdultsReadHere": "Vuxna L\u00e4s H\u00e4r!",
|
||||
"RegisterWithPayPal": "Registrera med PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
|
||||
"LabelSyncTempPath": "Tempor\u00e4r fils\u00f6kv\u00e4g:",
|
||||
"LabelSyncTempPathHelp": "Ange en anpassad s\u00f6kv\u00e4g f\u00f6r synkronisering. Omkodad media som skapas under synkroniseringsprocessen kommer lagras h\u00e4r.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Blandat inneh\u00e5ll",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
||||
"FolderTypePhotos": "Foton",
|
||||
"FolderTypeMusicVideos": "Musikvideor",
|
||||
"FolderTypeHomeVideos": "Hemvideor",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "Stigande",
|
||||
"OptionDescending": "Sjunkande",
|
||||
"OptionRuntime": "Speltid",
|
||||
"OptionReleaseDate": "Releasedatum",
|
||||
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||
"OptionPlayCount": "Antal visningar",
|
||||
"OptionDatePlayed": "Senast visad",
|
||||
"OptionDateAdded": "Inlagd den",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Int\u00e4kter",
|
||||
"OptionPoster": "Affisch",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Affischkort",
|
||||
"OptionBackdrop": "Fondbild",
|
||||
"OptionTimeline": "Tidslinje",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metabetyg",
|
||||
"ButtonSelect": "V\u00e4lj",
|
||||
"ButtonGroupVersions": "Gruppera versioner",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "L\u00e4gg till samling",
|
||||
"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",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienter",
|
||||
"LabelCompleted": "Klar",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "Misslyckades",
|
||||
"LabelSkipped": "Hoppades \u00f6ver",
|
||||
"HeaderEpisodeOrganization": "Katalogisering av avsnitt",
|
||||
"LabelSeries": "Serie",
|
||||
"LabelSeasonNumber": "S\u00e4songsnummer:",
|
||||
"LabelEpisodeNumber": "Avsnittsnummer:",
|
||||
"LabelSeries": "Serie:",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "Avslutande avsnittsnummer:",
|
||||
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
|
||||
"OptionRememberOrganizeCorrection": "Spara och applicera den h\u00e4r \u00e4ndringen p\u00e5 framtida filer mad liknande namn",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Nu spelas",
|
||||
"TabNavigation": "Navigering",
|
||||
"TabControls": "Kontroller",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertexter",
|
||||
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r",
|
||||
"ButtonNextTrack": "N\u00e4sta sp\u00e5r",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
|
||||
"ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
|
||||
"ButtonStop": "Stopp",
|
||||
"ButtonPause": "Paus",
|
||||
"ButtonNext": "N\u00e4sta",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Avvisa",
|
||||
"ButtonMore": "Mer",
|
||||
"ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.",
|
||||
"LabelChannelStreamQuality": "F\u00f6redragen kvalitet p\u00e5 internetkanaler:",
|
||||
"LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Oidentifierad",
|
||||
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
|
||||
"OptionStub": "Stump",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "S\u00e4song 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "L\u00e5tar",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artister",
|
||||
"OptionReportAlbums": "Album",
|
||||
"OptionReportAdultVideos": "Vuxen videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "Mer",
|
||||
"HeaderActivity": "Aktivitet",
|
||||
"ScheduledTaskStartedWithName": "{0} startad",
|
||||
"ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Videotyper",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Blockera inneh\u00e5ll med ingen eller ej k\u00e4nd \u00e5ldersgr\u00e4ns:",
|
||||
"LabelBlockContentWithTags": "Blockera inneh\u00e5ll med etiketter:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Aktivera strypning",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nya inspelningar kommer katalogiseras automatiskt och importeras till ditt mediabibliotek.",
|
||||
"HeaderDefaultPadding": "Tidsmarginaler",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Undertexter",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "h\u00e5rdvaruacceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Endast tillg\u00e4ngligt p\u00e5 h\u00e5rdvara med st\u00f6d.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Katalogisera automatiskt",
|
||||
"TabPlugins": "Till\u00e4gg",
|
||||
"TabHelp": "Hj\u00e4lp",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Kvalitet",
|
||||
"HeaderNotifications": "Meddelanden",
|
||||
"HeaderSelectPlayer": "V\u00e4lj spelare",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "Ny spellista...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "Visa serieinspelning",
|
||||
"ValueOriginalAirDate": "Ursprungligt s\u00e4ndningsdatum: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Ta bort fr\u00e5n spellista",
|
||||
"HeaderSpecials": "Specialavsnitt",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Album",
|
||||
"HeaderGames": "Spel",
|
||||
"HeaderBooks": "B\u00f6cker",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "S\u00e4songer",
|
||||
"HeaderTracks": "Sp\u00e5r",
|
||||
"HeaderItems": "Objekt",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Cikis",
|
||||
"LabelVisitCommunity": "Bizi Ziyaret Edin",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Se\u00e7im",
|
||||
"ButtonGroupVersions": "Grup Versionlar\u0131",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
||||
"TabNavigation": "Navigasyon",
|
||||
"TabControls": "Kontrol",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Sahneler",
|
||||
"ButtonSubtitles": "Altyaz\u0131lar",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Durdur",
|
||||
"ButtonPause": "Duraklat",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u0412\u0438\u0439\u0442\u0438",
|
||||
"LabelVisitCommunity": "Visit Community",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"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",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||
"OptionRevenue": "\u0417\u0431\u043e\u0440\u0438",
|
||||
"OptionPoster": "Poster",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "Timeline",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438",
|
||||
"TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c",
|
||||
"HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438",
|
||||
"HeaderGames": "\u0406\u0433\u0440\u0438",
|
||||
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438",
|
||||
"HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "Tho\u00e1t",
|
||||
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "Ng\u00e2n s\u00e1ch",
|
||||
"OptionRevenue": "Doanh thu",
|
||||
"OptionPoster": "\u00c1p ph\u00edch",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "Backdrop",
|
||||
"OptionTimeline": "D\u00f2ng th\u1eddi gian",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "L\u1ef1a ch\u1ecdn",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u9000\u51fa",
|
||||
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a",
|
||||
"HeaderAdultsReadHere": "\u6210\u4eba\u9605\u8bfb\u8fd9\u91cc\uff01",
|
||||
"RegisterWithPayPal": "\u6ce8\u518cPayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "\u6df7\u5408\u5185\u5bb9",
|
||||
"FolderTypeMovies": "\u7535\u5f71",
|
||||
"FolderTypeMusic": "\u97f3\u4e50",
|
||||
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||
"FolderTypePhotos": "\u56fe\u7247",
|
||||
"FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891",
|
||||
"FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "\u5347\u5e8f",
|
||||
"OptionDescending": "\u964d\u5e8f",
|
||||
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
|
||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u9884\u7b97",
|
||||
"OptionRevenue": "\u6536\u5165",
|
||||
"OptionPoster": "\u6d77\u62a5",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "\u80cc\u666f",
|
||||
"OptionTimeline": "\u65f6\u95f4\u8868",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "\u8bc4\u5206",
|
||||
"ButtonSelect": "\u9009\u62e9",
|
||||
"ButtonGroupVersions": "\u7248\u672c\u53f7",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"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",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
|
||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
|
||||
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"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",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "\u7a0b\u5e8f",
|
||||
"HeaderClients": "\u5ba2\u6237\u7aef",
|
||||
"LabelCompleted": "\u5b8c\u6210",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "\u5931\u8d25",
|
||||
"LabelSkipped": "\u8df3\u8fc7",
|
||||
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "\u591a\u5c11\u5b63\uff1a",
|
||||
"LabelEpisodeNumber": "\u591a\u5c11\u96c6\uff1a",
|
||||
"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",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
||||
"TabNavigation": "\u5bfc\u822a",
|
||||
"TabControls": "\u63a7\u5236",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "\u573a\u666f",
|
||||
"ButtonSubtitles": "\u5b57\u5e55",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
|
||||
"ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
|
||||
"ButtonStop": "\u505c\u6b62",
|
||||
"ButtonPause": "\u6682\u505c",
|
||||
"ButtonNext": "\u4e0b\u4e00\u4e2a",
|
||||
@ -920,7 +914,6 @@
|
||||
"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",
|
||||
"ButtonDismiss": "\u89e3\u6563",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"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",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"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",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "\u827a\u672f\u5bb6",
|
||||
"OptionReportAlbums": "\u4e13\u8f91",
|
||||
"OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "\u6d3b\u52a8",
|
||||
"ScheduledTaskStartedWithName": "{0} \u5f00\u59cb",
|
||||
"ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
|
||||
"HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7",
|
||||
"HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "\u5b57\u5e55",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "\u81ea\u52a8\u6574\u7406",
|
||||
"TabPlugins": "\u63d2\u4ef6",
|
||||
"TabHelp": "\u5e2e\u52a9",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "\u8d28\u91cf",
|
||||
"HeaderNotifications": "\u901a\u77e5",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "\u65b0\u5efa\u64ad\u653e\u5217\u8868...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "\u67e5\u770b\u7535\u89c6\u5267\u5f55\u50cf",
|
||||
"ValueOriginalAirDate": "\u539f\u59cb\u64ad\u51fa\u65e5\u671f: {0}",
|
||||
"ButtonRemoveFromPlaylist": "\u4ece\u64ad\u653e\u5217\u8868\u4e2d\u79fb\u9664",
|
||||
"HeaderSpecials": "\u7279\u96c6",
|
||||
"HeaderTrailers": "\u9884\u544a\u7247",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "\u4e13\u8f91",
|
||||
"HeaderGames": "\u6e38\u620f",
|
||||
"HeaderBooks": "\u4e66\u7c4d",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "\u5b63",
|
||||
"HeaderTracks": "\u97f3\u8f68",
|
||||
"HeaderItems": "\u9879\u76ee",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u96e2\u958b",
|
||||
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
|
||||
"LabelGithub": "Github",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
|
||||
"HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
|
||||
"RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
|
||||
"FolderTypeMovies": "\u96fb\u5f71",
|
||||
"FolderTypeMusic": "\u97f3\u6a02",
|
||||
"FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
||||
"FolderTypePhotos": "\u76f8\u7247",
|
||||
"FolderTypeMusicVideos": "MV",
|
||||
"FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247",
|
||||
@ -205,7 +202,7 @@
|
||||
"OptionAscending": "\u905e\u5347",
|
||||
"OptionDescending": "\u905e\u964d",
|
||||
"OptionRuntime": "\u904b\u884c\u6642\u9593",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
||||
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u9810\u7b97",
|
||||
"OptionRevenue": "\u6536\u5165",
|
||||
"OptionPoster": "\u6d77\u5831",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "\u6d77\u5831\u5361\u7247",
|
||||
"OptionBackdrop": "\u80cc\u666f",
|
||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
|
||||
"ButtonSelect": "\u9078\u64c7",
|
||||
"ButtonGroupVersions": "\u7248\u672c",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab",
|
||||
"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",
|
||||
@ -495,7 +491,7 @@
|
||||
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
|
||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
|
||||
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"ButtonPlayTrailer": "\u9810\u544a\u7247",
|
||||
"LabelMissing": "\u7f3a\u5c11",
|
||||
"LabelOffline": "\u96e2\u7dda",
|
||||
"PathSubstitutionHelp": "\u66ff\u63db\u8def\u5f91\u66f4\u6539\u8def\u5f91\u8b93\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u64ad\u653e\uff0c\u907f\u514d\u6d88\u8017\u8cc7\u6e90\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002",
|
||||
@ -588,12 +584,12 @@
|
||||
"HeaderProgram": "\u7a0b\u5f0f",
|
||||
"HeaderClients": "\u5ba2\u6236\u7aef",
|
||||
"LabelCompleted": "\u5df2\u5b8c\u6210",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelFailed": "\u5931\u6557",
|
||||
"LabelSkipped": "\u7565\u904e",
|
||||
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578\uff1a",
|
||||
"LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578\uff1a",
|
||||
"LabelSeries": "\u96fb\u8996\u5287\uff1a",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
|
||||
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "\u5b57\u5e55",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "\u9996\u5b63",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "\u6b4c\u66f2",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "\u5b57\u5e55",
|
||||
"HeaderVideos": "\u5f71\u7247",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "\u4f3a\u670d\u5668\u72c0\u614b",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "\u901a\u77e5",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "\u67e5\u770b\u96fb\u8996\u5287\u9304\u5f71",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "\u904a\u6232",
|
||||
"HeaderBooks": "\u66f8\u7c4d",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"LabelExit": "\u96e2\u958b",
|
||||
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4",
|
||||
"LabelGithub": "GitHub",
|
||||
@ -77,7 +76,6 @@
|
||||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Register with PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"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.",
|
||||
@ -94,7 +92,6 @@
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
@ -219,7 +216,6 @@
|
||||
"OptionBudget": "\u9810\u7b97",
|
||||
"OptionRevenue": "\u6536\u5165",
|
||||
"OptionPoster": "\u6d77\u5831",
|
||||
"HeaderYears": "Years",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBackdrop": "\u80cc\u666f",
|
||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||
@ -329,7 +325,7 @@
|
||||
"OptionMetascore": "\u8a55\u5206",
|
||||
"ButtonSelect": "\u9078\u64c7",
|
||||
"ButtonGroupVersions": "\u7248\u672c",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"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",
|
||||
@ -732,12 +728,10 @@
|
||||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
@ -920,7 +914,6 @@
|
||||
"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.",
|
||||
"ButtonDismiss": "Dismiss",
|
||||
"ButtonMore": "More",
|
||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||
@ -1083,7 +1076,6 @@
|
||||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
@ -1100,7 +1092,7 @@
|
||||
"OptionReportArtists": "Artists",
|
||||
"OptionReportAlbums": "Albums",
|
||||
"OptionReportAdultVideos": "Adult videos",
|
||||
"ButtonMoreItems": "More",
|
||||
"ButtonMore": "More",
|
||||
"HeaderActivity": "Activity",
|
||||
"ScheduledTaskStartedWithName": "{0} started",
|
||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||
@ -1355,6 +1347,7 @@
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRatings": "Parental Ratings",
|
||||
"HeaderVideoTypes": "Video Types",
|
||||
"HeaderYears": "Years",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||
"LabelBlockContentWithTags": "Block content with tags:",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||
@ -1377,6 +1370,7 @@
|
||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
@ -1495,14 +1489,10 @@
|
||||
"HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357",
|
||||
"LabelDataProvider": "Data provider:",
|
||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
|
||||
"HeaderDefaultPadding": "Default Padding",
|
||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"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:",
|
||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||
"ButtonServerDashboard": "Server Dashboard",
|
||||
@ -1885,6 +1875,8 @@
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabHelp": "Help",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e",
|
||||
@ -1895,7 +1887,6 @@
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
@ -2057,6 +2048,7 @@
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
@ -2231,8 +2223,6 @@
|
||||
"ErrorMessageEmailInUse": "\u6b64\u96fb\u5b50\u90f5\u4ef6\u5e33\u865f\u5df2\u88ab\u4f7f\u7528\u904e\uff0c\u8acb\u8f38\u5165\u5176\u4ed6\u7684\u96fb\u5b50\u90f5\u4ef6\u5e33\u865f\uff0c\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\uff0c\u6216\u4f7f\u7528\u300c\u5fd8\u8a18\u5bc6\u78bc\u300d\u529f\u80fd\u627e\u56de\u5bc6\u78bc\u3002",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"Share": "Share",
|
||||
"HeaderShare": "\u5206\u4eab",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "\u5206\u4eab",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
@ -2250,6 +2240,7 @@
|
||||
"MessageDidYouKnowCinemaMode": "\u4f60\u77e5\u9053\u55ce\uff1f\u6709\u4e86Emby\u8c6a\u83ef\u7248\uff0c\u60a8\u5c31\u53ef\u4ee5\u4eab\u6709\u66f4\u597d\u7684\u4f7f\u7528\u9ad4\u9a57",
|
||||
"MessageDidYouKnowCinemaMode2": "\u50cf\u662f\u5176\u4e2d\u4e4b\u4e00\u7684\u5287\u9662\u6a21\u5f0f\uff0c\u5c31\u80fd\u8b93\u60a8\u5728\u5a92\u9ad4\u64ad\u653e\u524d\uff0c\u5148\u64ad\u653e\u81ea\u8a02\u7684\u524d\u5c0e\u7247\u6216\u9810\u544a\u7247\u3002",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
@ -2364,5 +2355,7 @@
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"HeaderHealthMonitor": "Health Monitor",
|
||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
||||
"HealthMonitorNoAlerts": "There are no active alerts.",
|
||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||
"VisualLoginFormHelp": "Select a user or sign in manually"
|
||||
}
|
@ -2,7 +2,6 @@
|
||||
// <summary>voicecommands class</summary>
|
||||
define([], function () {
|
||||
|
||||
|
||||
/// <summary> Process the command. </summary>
|
||||
/// <param name="commandPath"> Full pathname of the command file. </param>
|
||||
/// <param name="result"> The result. </param>
|
||||
|
@ -324,31 +324,6 @@ define(['dialogHelper', 'jQuery', 'paper-button'], function (dialogHelper, $) {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary> Speaks the given text. </summary>
|
||||
/// <param name="text"> The text. </param>
|
||||
/// <returns> . </returns>
|
||||
function speak(text) {
|
||||
|
||||
if (!SpeechSynthesisUtterance) {
|
||||
console.log('API not supported');
|
||||
}
|
||||
|
||||
var utterance = new SpeechSynthesisUtterance(text);
|
||||
utterance.lang = lang;
|
||||
utterance.rate = 0.9;
|
||||
utterance.pitch = 1;
|
||||
utterance.addEventListener('end', function () {
|
||||
console.log('Synthesizing completed');
|
||||
});
|
||||
|
||||
utterance.addEventListener('error', function (event) {
|
||||
console.log('Synthesizing error');
|
||||
});
|
||||
|
||||
console.log('Synthesizing the text: ' + text);
|
||||
speechSynthesis.speak(utterance);
|
||||
}
|
||||
|
||||
/// <summary> An enum constant representing the window. voice input manager option. </summary>
|
||||
return {
|
||||
startListening: startListening
|
||||
|
Loading…
Reference in New Issue
Block a user