mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
196a7b8fc8
commit
9977ee3741
50 changed files with 770 additions and 998 deletions
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.1.57",
|
"version": "1.1.58",
|
||||||
"_release": "1.1.57",
|
"_release": "1.1.58",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.1.57",
|
"tag": "1.1.58",
|
||||||
"commit": "80da1038922e66fc43774cb9e5a1df999f303295"
|
"commit": "57a6fa68cdf72d05c6dfdf95cd2134471eca0af5"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||||
"_target": "^1.1.51",
|
"_target": "^1.1.51",
|
||||||
|
|
|
@ -900,7 +900,7 @@
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.connect = function () {
|
self.connect = function (options) {
|
||||||
|
|
||||||
console.log('Begin connect');
|
console.log('Begin connect');
|
||||||
|
|
||||||
|
@ -908,7 +908,7 @@
|
||||||
|
|
||||||
self.getAvailableServers().then(function (servers) {
|
self.getAvailableServers().then(function (servers) {
|
||||||
|
|
||||||
self.connectToServers(servers).then(function (result) {
|
self.connectToServers(servers, options).then(function (result) {
|
||||||
|
|
||||||
resolve(result);
|
resolve(result);
|
||||||
});
|
});
|
||||||
|
@ -921,7 +921,7 @@
|
||||||
// TODO: Implement
|
// TODO: Implement
|
||||||
};
|
};
|
||||||
|
|
||||||
self.connectToServers = function (servers) {
|
self.connectToServers = function (servers, options) {
|
||||||
|
|
||||||
console.log('Begin connectToServers, with ' + servers.length + ' servers');
|
console.log('Begin connectToServers, with ' + servers.length + ' servers');
|
||||||
|
|
||||||
|
@ -929,7 +929,7 @@
|
||||||
|
|
||||||
if (servers.length == 1) {
|
if (servers.length == 1) {
|
||||||
|
|
||||||
self.connectToServer(servers[0]).then(function (result) {
|
self.connectToServer(servers[0], options).then(function (result) {
|
||||||
|
|
||||||
if (result.State == ConnectionState.Unavailable) {
|
if (result.State == ConnectionState.Unavailable) {
|
||||||
|
|
||||||
|
@ -948,7 +948,7 @@
|
||||||
var firstServer = servers.length ? servers[0] : null;
|
var firstServer = servers.length ? servers[0] : null;
|
||||||
// See if we have any saved credentials and can auto sign in
|
// See if we have any saved credentials and can auto sign in
|
||||||
if (firstServer) {
|
if (firstServer) {
|
||||||
self.connectToServer(firstServer).then(function (result) {
|
self.connectToServer(firstServer, options).then(function (result) {
|
||||||
|
|
||||||
if (result.State == ConnectionState.SignedIn) {
|
if (result.State == ConnectionState.SignedIn) {
|
||||||
|
|
||||||
|
@ -1112,7 +1112,8 @@
|
||||||
function onSuccessfulConnection(server, systemInfo, connectionMode, options, resolve) {
|
function onSuccessfulConnection(server, systemInfo, connectionMode, options, resolve) {
|
||||||
|
|
||||||
var credentials = credentialProvider.credentials();
|
var credentials = credentialProvider.credentials();
|
||||||
if (credentials.ConnectAccessToken) {
|
options = options || {};
|
||||||
|
if (credentials.ConnectAccessToken && options.enableAutoLogin !== false) {
|
||||||
|
|
||||||
ensureConnectUser(credentials).then(function () {
|
ensureConnectUser(credentials).then(function () {
|
||||||
|
|
||||||
|
@ -1139,7 +1140,14 @@
|
||||||
|
|
||||||
function afterConnectValidated(server, credentials, systemInfo, connectionMode, verifyLocalAuthentication, options, resolve) {
|
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 () {
|
validateAuthentication(server, connectionMode).then(function () {
|
||||||
|
|
||||||
|
@ -1164,7 +1172,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
result.ApiClient = getOrAddApiClient(server, connectionMode);
|
result.ApiClient = getOrAddApiClient(server, connectionMode);
|
||||||
result.State = server.AccessToken ?
|
result.State = server.AccessToken && options.enableAutoLogin !== false ?
|
||||||
ConnectionState.SignedIn :
|
ConnectionState.SignedIn :
|
||||||
ConnectionState.ServerSignIn;
|
ConnectionState.ServerSignIn;
|
||||||
|
|
||||||
|
@ -1196,7 +1204,7 @@
|
||||||
return address;
|
return address;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.connectToAddress = function (address) {
|
self.connectToAddress = function (address, options) {
|
||||||
|
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
@ -1222,7 +1230,7 @@
|
||||||
};
|
};
|
||||||
updateServerInfo(server, publicInfo);
|
updateServerInfo(server, publicInfo);
|
||||||
|
|
||||||
self.connectToServer(server).then(resolve, onFail);
|
self.connectToServer(server, options).then(resolve, onFail);
|
||||||
|
|
||||||
}, onFail);
|
}, onFail);
|
||||||
|
|
||||||
|
|
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.3.79",
|
"version": "1.3.80",
|
||||||
"_release": "1.3.79",
|
"_release": "1.3.80",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.3.79",
|
"tag": "1.3.80",
|
||||||
"commit": "0365f630017335cdce79e783cffcac271846a32d"
|
"commit": "4e49327c0a8658e390e2a4a59d0222e6c3614be4"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.0",
|
"_target": "^1.2.0",
|
||||||
|
|
|
@ -13,6 +13,15 @@ define(['appStorage', 'events'], function (appStorage, events) {
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
self.enableAutoLogin = function (val) {
|
||||||
|
|
||||||
|
if (val != null) {
|
||||||
|
self.set('enableAutoLogin', val.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
return self.get('enableAutoLogin') != 'false';
|
||||||
|
};
|
||||||
|
|
||||||
self.enableAutomaticBitrateDetection = function (val) {
|
self.enableAutomaticBitrateDetection = function (val) {
|
||||||
|
|
||||||
if (val != null) {
|
if (val != null) {
|
||||||
|
|
|
@ -381,7 +381,8 @@ define([], function () {
|
||||||
distX: distX,
|
distX: distX,
|
||||||
distY: distY,
|
distY: distY,
|
||||||
distT: distT,
|
distT: distT,
|
||||||
distT2: distT2
|
distT2: distT2,
|
||||||
|
index: i
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -406,15 +407,25 @@ define([], function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
function sortNodesT(a, b) {
|
function sortNodesT(a, b) {
|
||||||
var result = a.distT - b.distT;
|
|
||||||
|
|
||||||
if (result == 0) {
|
var result = a.distT - b.distT;
|
||||||
return a.distT2 - b.distT2;
|
if (result != 0) {
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//result = a.distT2 - b.distT2;
|
||||||
|
//if (result != 0) {
|
||||||
|
// return result;
|
||||||
|
//}
|
||||||
|
|
||||||
|
result = a.index - b.index;
|
||||||
|
if (result != 0) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
function sortNodesY(a, b) {
|
function sortNodesY(a, b) {
|
||||||
var result = a.distY - b.distY;
|
var result = a.distY - b.distY;
|
||||||
|
|
||||||
|
|
|
@ -201,7 +201,7 @@
|
||||||
return curr.ChannelId == channel.Id;
|
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++) {
|
for (var i = 0, length = programs.length; i < length; i++) {
|
||||||
|
|
||||||
|
@ -360,6 +360,19 @@
|
||||||
imageLoader.lazyChildren(channelList);
|
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) {
|
function renderGuide(context, date, channels, programs, apiClient) {
|
||||||
|
|
||||||
//var list = [];
|
//var list = [];
|
||||||
|
@ -400,6 +413,15 @@
|
||||||
// list.push(i);
|
// list.push(i);
|
||||||
//});
|
//});
|
||||||
//channels = list;
|
//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);
|
renderChannelHeaders(context, channels, apiClient);
|
||||||
|
|
||||||
var startDate = date;
|
var startDate = date;
|
||||||
|
@ -409,7 +431,27 @@
|
||||||
renderPrograms(context, date, channels, programs);
|
renderPrograms(context, date, channels, programs);
|
||||||
|
|
||||||
if (layoutManager.tv) {
|
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 = {
|
var embyRouter = {
|
||||||
showLocalLogin: function (apiClient, serverId, manualLogin) {
|
showLocalLogin: function (apiClient, serverId, manualLogin) {
|
||||||
|
@ -35,7 +35,11 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||||
|
|
||||||
loading.show();
|
loading.show();
|
||||||
|
|
||||||
connectionManager.connect().then(function (result) {
|
connectionManager.connect({
|
||||||
|
|
||||||
|
enableAutoLogin: appSettings.enableAutoLogin()
|
||||||
|
|
||||||
|
}).then(function (result) {
|
||||||
handleConnectionResult(result, loading);
|
handleConnectionResult(result, loading);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -234,7 +238,11 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||||
|
|
||||||
connectionManager = connectionManagerInstance;
|
connectionManager = connectionManagerInstance;
|
||||||
|
|
||||||
connectionManager.connect().then(function (result) {
|
connectionManager.connect({
|
||||||
|
|
||||||
|
enableAutoLogin: appSettings.enableAutoLogin()
|
||||||
|
|
||||||
|
}).then(function (result) {
|
||||||
|
|
||||||
firstConnectionResult = result;
|
firstConnectionResult = result;
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"tag": "v1.0.11",
|
"tag": "v1.0.11",
|
||||||
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/paper-behaviors.git",
|
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
|
||||||
"_target": "^1.0.0",
|
"_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",
|
"LabelExit": "\u062e\u0631\u0648\u062c",
|
||||||
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
|
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
|
||||||
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
|
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
|
"OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
|
||||||
"OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a",
|
"OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a",
|
||||||
"OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642",
|
"OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649",
|
"OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u0418\u0437\u0445\u043e\u0434",
|
||||||
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
|
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
|
||||||
"LabelGithub": "Github",
|
"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",
|
"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!",
|
"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",
|
"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",
|
"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:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||||
"FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438",
|
"FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
|
"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",
|
"FolderTypePhotos": "\u0421\u043d\u0438\u043c\u043a\u0438",
|
||||||
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u0438\u043a\u0430\u043b\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
|
"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",
|
"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",
|
"OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449",
|
||||||
"OptionDescending": "\u041d\u0438\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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
|
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
|
||||||
"OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
"OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
|
"OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
|
||||||
"OptionBackdrop": "\u0424\u043e\u043d",
|
"OptionBackdrop": "\u0424\u043e\u043d",
|
||||||
"OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a",
|
"OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
|
"OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
|
||||||
"ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\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",
|
"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.",
|
"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.",
|
"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",
|
"HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Sortir",
|
||||||
"LabelVisitCommunity": "Visita la Comunitat",
|
"LabelVisitCommunity": "Visita la Comunitat",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configura codi pin",
|
"ButtonConfigurePinCode": "Configura codi pin",
|
||||||
"HeaderAdultsReadHere": "Adults Llegiu Aqu\u00ed!",
|
"HeaderAdultsReadHere": "Adults Llegiu Aqu\u00ed!",
|
||||||
"RegisterWithPayPal": "Registra amb PayPal",
|
"RegisterWithPayPal": "Registra amb PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies",
|
"HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies",
|
||||||
"LabelSyncTempPath": "Directori de fitxers temporals:",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "Feina del Sync",
|
||||||
"FolderTypeMixed": "Contingut barrejat",
|
"FolderTypeMixed": "Contingut mesclat",
|
||||||
"FolderTypeMovies": "Pel\u00b7l\u00edcules",
|
"FolderTypeMovies": "Pel\u00b7l\u00edcules",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "V\u00eddeos per adults",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "V\u00eddeos musicals",
|
"FolderTypeMusicVideos": "V\u00eddeos musicals",
|
||||||
"FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics",
|
"FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendent",
|
"OptionAscending": "Ascendent",
|
||||||
"OptionDescending": "Descendent",
|
"OptionDescending": "Descendent",
|
||||||
"OptionRuntime": "Temps d'exec.",
|
"OptionRuntime": "Temps d'exec.",
|
||||||
"OptionReleaseDate": "Data d'Estrena",
|
"OptionReleaseDate": "Data de Publicaci\u00f3",
|
||||||
"OptionPlayCount": "Nombre de Reproduccions",
|
"OptionPlayCount": "Nombre de Reproduccions",
|
||||||
"OptionDatePlayed": "Data de Reproducci\u00f3",
|
"OptionDatePlayed": "Data de Reproducci\u00f3",
|
||||||
"OptionDateAdded": "Data afegida",
|
"OptionDateAdded": "Data afegida",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Pressupost",
|
"OptionBudget": "Pressupost",
|
||||||
"OptionRevenue": "Ingressos",
|
"OptionRevenue": "Ingressos",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Tel\u00f3 de fons",
|
"OptionBackdrop": "Tel\u00f3 de fons",
|
||||||
"OptionTimeline": "L\u00ednia temporal",
|
"OptionTimeline": "L\u00ednia temporal",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metapuntuaci\u00f3",
|
"OptionMetascore": "Metapuntuaci\u00f3",
|
||||||
"ButtonSelect": "Selecciona",
|
"ButtonSelect": "Selecciona",
|
||||||
"ButtonGroupVersions": "Agrupar Versions",
|
"ButtonGroupVersions": "Agrupar Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Afegir a Col\u00b7lecci\u00f3",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Cr\u00e8dits",
|
"HeaderCredits": "Cr\u00e8dits",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "Repartiment i Equip",
|
"HeaderCastCrew": "Repartiment i Equip",
|
||||||
"HeaderAdditionalParts": "Parts addicionals",
|
"HeaderAdditionalParts": "Parts addicionals",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||||
"ButtonPlayTrailer": "Anunci",
|
"ButtonPlayTrailer": "Tr\u00e0iler",
|
||||||
"LabelMissing": "Manca",
|
"LabelMissing": "Manca",
|
||||||
"LabelOffline": "Desconnectat",
|
"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.",
|
"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",
|
"LabelSkipped": "Saltat",
|
||||||
"HeaderEpisodeOrganization": "Organitzaci\u00f3 d'Episodis",
|
"HeaderEpisodeOrganization": "Organitzaci\u00f3 d'Episodis",
|
||||||
"LabelSeries": "S\u00e8ries:",
|
"LabelSeries": "S\u00e8ries:",
|
||||||
"LabelSeasonNumber": "Nombre de temporada:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Nombre d'episodi:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Nombre d'episodi final",
|
"LabelEndingEpisodeNumber": "Nombre d'episodi final",
|
||||||
"LabelEndingEpisodeNumberHelp": "Nom\u00e9s cal per als fitxers multi-episodi",
|
"LabelEndingEpisodeNumberHelp": "Nom\u00e9s cal per als fitxers multi-episodi",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Reprodu\u00efnt",
|
"TabNowPlaying": "Reprodu\u00efnt",
|
||||||
"TabNavigation": "Navegaci\u00f3",
|
"TabNavigation": "Navegaci\u00f3",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Escenes",
|
"ButtonScenes": "Escenes",
|
||||||
"ButtonSubtitles": "Subt\u00edtols",
|
"ButtonSubtitles": "Subt\u00edtols",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Pista anterior",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Pista seg\u00fcent",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Atura",
|
"ButtonStop": "Atura",
|
||||||
"ButtonPause": "Pausa",
|
"ButtonPause": "Pausa",
|
||||||
"ButtonNext": "Seg\u00fcent",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Aquesta llista de reproducci\u00f3 \u00e9s buida actualment.",
|
||||||
"ButtonDismiss": "Descarta",
|
"ButtonDismiss": "Descarta",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Temporada 0",
|
"OptionSeason0": "Temporada 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Can\u00e7ons",
|
"OptionReportSongs": "Can\u00e7ons",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "V\u00eddeos per adults",
|
"OptionReportAdultVideos": "V\u00eddeos per adults",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat",
|
"ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subt\u00edtols",
|
"HeaderSubtitles": "Subt\u00edtols",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organitza",
|
"TabAutoOrganize": "Auto-Organitza",
|
||||||
"TabPlugins": "Complements",
|
"TabPlugins": "Complements",
|
||||||
"TabHelp": "Ajuda",
|
"TabHelp": "Ajuda",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notificacions",
|
"HeaderNotifications": "Notificacions",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nova llista de reproducci\u00f3...",
|
"OptionNewPlaylist": "Nova llista de reproducci\u00f3...",
|
||||||
"MessageAddedToPlaylistSuccess": "D'acord",
|
"MessageAddedToPlaylistSuccess": "D'acord",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Esborra de la llista de reproducci\u00f3",
|
"ButtonRemoveFromPlaylist": "Esborra de la llista de reproducci\u00f3",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Tr\u00e0ilers",
|
"HeaderTrailers": "Tr\u00e0ilers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Jocs",
|
"HeaderGames": "Jocs",
|
||||||
"HeaderBooks": "Llibres",
|
"HeaderBooks": "Llibres",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Compartir",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Comparteix",
|
"ButtonShare": "Comparteix",
|
||||||
"HeaderConfirm": "Confirmar",
|
"HeaderConfirm": "Confirmar",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Zav\u0159\u00edt",
|
||||||
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
|
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfigurace pin code",
|
"ButtonConfigurePinCode": "Konfigurace pin code",
|
||||||
"HeaderAdultsReadHere": "Pro dosp\u011bl\u00e9 - \u010dt\u011bte zde!",
|
"HeaderAdultsReadHere": "Pro dosp\u011bl\u00e9 - \u010dt\u011bte zde!",
|
||||||
"RegisterWithPayPal": "Zaregistrujte se pomoc\u00ed PayPal",
|
"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",
|
"HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma",
|
||||||
"LabelSyncTempPath": "Slo\u017eka pro do\u010dasn\u00e9 soubory:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "Sm\u00ed\u0161en\u00fd obsah",
|
||||||
"FolderTypeMovies": "Filmy",
|
"FolderTypeMovies": "Filmy",
|
||||||
"FolderTypeMusic": "Hudba",
|
"FolderTypeMusic": "Hudba",
|
||||||
"FolderTypeAdultVideos": "Filmy pro dosp\u011bl\u00e9",
|
|
||||||
"FolderTypePhotos": "Fotky",
|
"FolderTypePhotos": "Fotky",
|
||||||
"FolderTypeMusicVideos": "Hudebn\u00ed klipy",
|
"FolderTypeMusicVideos": "Hudebn\u00ed klipy",
|
||||||
"FolderTypeHomeVideos": "Dom\u00e1c\u00ed video",
|
"FolderTypeHomeVideos": "Dom\u00e1c\u00ed video",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Rozpo\u010det",
|
"OptionBudget": "Rozpo\u010det",
|
||||||
"OptionRevenue": "P\u0159\u00edjem",
|
"OptionRevenue": "P\u0159\u00edjem",
|
||||||
"OptionPoster": "Plak\u00e1t",
|
"OptionPoster": "Plak\u00e1t",
|
||||||
"HeaderYears": "Roky",
|
|
||||||
"OptionPosterCard": "Plak\u00e1t",
|
"OptionPosterCard": "Plak\u00e1t",
|
||||||
"OptionBackdrop": "Pozad\u00ed",
|
"OptionBackdrop": "Pozad\u00ed",
|
||||||
"OptionTimeline": "\u010casov\u00e1 osa",
|
"OptionTimeline": "\u010casov\u00e1 osa",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metask\u00f3re",
|
"OptionMetascore": "Metask\u00f3re",
|
||||||
"ButtonSelect": "Vybrat",
|
"ButtonSelect": "Vybrat",
|
||||||
"ButtonGroupVersions": "Skupinov\u00e9 verze",
|
"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.",
|
"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.",
|
"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",
|
"HeaderCredits": "Kredity",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "Herci a obsazen\u00ed",
|
"HeaderCastCrew": "Herci a obsazen\u00ed",
|
||||||
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
|
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
|
||||||
"ButtonSplitVersionsApart": "Rozd\u011blit verze",
|
"ButtonSplitVersionsApart": "Rozd\u011blit verze",
|
||||||
"ButtonPlayTrailer": "Uk\u00e1zka\/Trailer",
|
"ButtonPlayTrailer": "Uk\u00e1zka",
|
||||||
"LabelMissing": "Chyb\u00ed",
|
"LabelMissing": "Chyb\u00ed",
|
||||||
"LabelOffline": "Offline",
|
"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.",
|
"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",
|
"LabelFailed": "Selh\u00e1n\u00ed",
|
||||||
"LabelSkipped": "P\u0159esko\u010deno",
|
"LabelSkipped": "P\u0159esko\u010deno",
|
||||||
"HeaderEpisodeOrganization": "Organizace epizod",
|
"HeaderEpisodeOrganization": "Organizace epizod",
|
||||||
"LabelSeries": "Seri\u00e1ly:",
|
"LabelSeries": "Seri\u00e1ly",
|
||||||
"LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "\u010c\u00edslo epizody:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:",
|
"LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
|
"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",
|
"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",
|
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
||||||
"TabNavigation": "Navigace",
|
"TabNavigation": "Navigace",
|
||||||
"TabControls": "Ovl\u00e1d\u00e1n\u00ed",
|
"TabControls": "Ovl\u00e1d\u00e1n\u00ed",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Sc\u00e9ny",
|
"ButtonScenes": "Sc\u00e9ny",
|
||||||
"ButtonSubtitles": "Titulky",
|
"ButtonSubtitles": "Titulky",
|
||||||
"ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa",
|
"ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa",
|
||||||
"ButtonNextTrack": "Dal\u0161\u00ed stopa",
|
"ButtonNextTrack": "N\u00e1sleduj\u00edc\u00ed stopa",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Zastavit",
|
"ButtonStop": "Zastavit",
|
||||||
"ButtonPause": "Pozastavit",
|
"ButtonPause": "Pozastavit",
|
||||||
"ButtonNext": "Dal\u0161\u00ed",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Playlist je zat\u00edm pr\u00e1zdn\u00fd.",
|
||||||
"ButtonDismiss": "Zam\u00edtnout",
|
"ButtonDismiss": "Zam\u00edtnout",
|
||||||
"ButtonMore": "V\u00edce",
|
|
||||||
"ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.",
|
"ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.",
|
||||||
"LabelChannelStreamQuality": "Preferovan\u00e1 kvalita pro vys\u00edl\u00e1n\u00ed p\u0159es internet:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Neidentifikov\u00e1no",
|
||||||
"OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed",
|
"OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed",
|
||||||
"OptionStub": "Pah\u00fdl",
|
"OptionStub": "Pah\u00fdl",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Sez\u00f3na 0",
|
"OptionSeason0": "Sez\u00f3na 0",
|
||||||
"LabelReport": "Hl\u00e1\u0161en\u00ed:",
|
"LabelReport": "Hl\u00e1\u0161en\u00ed:",
|
||||||
"OptionReportSongs": "Songy",
|
"OptionReportSongs": "Songy",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "\u00dam\u011blci",
|
"OptionReportArtists": "\u00dam\u011blci",
|
||||||
"OptionReportAlbums": "Alba",
|
"OptionReportAlbums": "Alba",
|
||||||
"OptionReportAdultVideos": "Videa pro dosp\u011bl\u00e9",
|
"OptionReportAdultVideos": "Videa pro dosp\u011bl\u00e9",
|
||||||
"ButtonMoreItems": "V\u00edce",
|
"ButtonMore": "V\u00edce",
|
||||||
"HeaderActivity": "Aktivity",
|
"HeaderActivity": "Aktivity",
|
||||||
"ScheduledTaskStartedWithName": "{0} zah\u00e1jeno",
|
"ScheduledTaskStartedWithName": "{0} zah\u00e1jeno",
|
||||||
"ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno",
|
"ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Obnova hesla",
|
"HeaderPasswordReset": "Obnova hesla",
|
||||||
"HeaderParentalRatings": "Rodi\u010dovsk\u00e1 hodnocen\u00ed",
|
"HeaderParentalRatings": "Rodi\u010dovsk\u00e1 hodnocen\u00ed",
|
||||||
"HeaderVideoTypes": "Typ videa",
|
"HeaderVideoTypes": "Typ videa",
|
||||||
|
"HeaderYears": "Roky",
|
||||||
"HeaderBlockItemsWithNoRating": "Blokovat obsah s \u017e\u00e1dnou nebo nerozpoznanou informac\u00ed o hodnocen\u00ed:",
|
"HeaderBlockItemsWithNoRating": "Blokovat obsah s \u017e\u00e1dnou nebo nerozpoznanou informac\u00ed o hodnocen\u00ed:",
|
||||||
"LabelBlockContentWithTags": "Blokovat obsah dle tag\u016f:",
|
"LabelBlockContentWithTags": "Blokovat obsah dle tag\u016f:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit na jednotliv\u00e9 vlo\u017een\u00ed obr\u00e1zku",
|
"LabelEnableSingleImageInDidlLimit": "Limit na jednotliv\u00e9 vlo\u017een\u00ed obr\u00e1zku",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy",
|
"HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy",
|
||||||
"HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti",
|
"HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti",
|
||||||
"HeaderUpcomingPrograms": "Nadch\u00e1zej\u00edc\u00ed TV programy",
|
"HeaderUpcomingPrograms": "Nadch\u00e1zej\u00edc\u00ed TV programy",
|
||||||
|
"ButtonMoreItems": "V\u00edce",
|
||||||
"LabelShowLibraryTileNames": "Zobrazit n\u00e1zvy dla\u017edic v knihovn\u011b",
|
"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",
|
"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",
|
"OptionEnableTranscodingThrottle": "Povolit p\u0159i\u0161krcen\u00ed",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
|
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
|
||||||
"LabelDataProvider": "Poskytovatel dat:",
|
"LabelDataProvider": "Poskytovatel dat:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Standardn\u00ed odsazen\u00ed",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Titulky",
|
"HeaderSubtitles": "Titulky",
|
||||||
"HeaderVideos": "Videa",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardwarov\u00e1 akcelerace:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Dostupn\u00e9 jen na podporovan\u00fdch syst\u00e9mech.",
|
"LabelHardwareAccelerationTypeHelp": "Dostupn\u00e9 jen na podporovan\u00fdch syst\u00e9mech.",
|
||||||
"ButtonServerDashboard": "Hlavn\u00ed nab\u00eddka serveru",
|
"ButtonServerDashboard": "Hlavn\u00ed nab\u00eddka serveru",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-organizace",
|
"TabAutoOrganize": "Auto-organizace",
|
||||||
"TabPlugins": "Z\u00e1suvn\u00e9 moduly",
|
"TabPlugins": "Z\u00e1suvn\u00e9 moduly",
|
||||||
"TabHelp": "N\u00e1pov\u011bda",
|
"TabHelp": "N\u00e1pov\u011bda",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Kvalita",
|
"ButtonQuality": "Kvalita",
|
||||||
"HeaderNotifications": "Ozn\u00e1men\u00ed",
|
"HeaderNotifications": "Ozn\u00e1men\u00ed",
|
||||||
"HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de",
|
"HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nov\u00fd playlist...",
|
"OptionNewPlaylist": "Nov\u00fd playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Zobrazit nahr\u00e1vky seri\u00e1l\u016f",
|
"ButtonViewSeriesRecording": "Zobrazit nahr\u00e1vky seri\u00e1l\u016f",
|
||||||
"ValueOriginalAirDate": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Odebrat z playlistu",
|
"ButtonRemoveFromPlaylist": "Odebrat z playlistu",
|
||||||
"HeaderSpecials": "Speci\u00e1ly",
|
"HeaderSpecials": "Speci\u00e1ly",
|
||||||
"HeaderTrailers": "Trailery",
|
"HeaderTrailers": "Trailery",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Alba",
|
"HeaderAlbums": "Alba",
|
||||||
"HeaderGames": "Hry",
|
"HeaderGames": "Hry",
|
||||||
"HeaderBooks": "Knihy",
|
"HeaderBooks": "Knihy",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Sez\u00f3ny",
|
"HeaderSeasons": "Sez\u00f3ny",
|
||||||
"HeaderTracks": "Stopy",
|
"HeaderTracks": "Stopy",
|
||||||
"HeaderItems": "Polo\u017eky",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Sd\u00edlet",
|
||||||
"HeaderConfirm": "Souhlas",
|
"HeaderConfirm": "Souhlas",
|
||||||
"MessageConfirmDeleteTunerDevice": "Jste si jisti, \u017ee chcete smazat tento p\u0159\u00edstroj?",
|
"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.",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"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}",
|
"LabelLocalSyncStatusValue": "Stav: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Afslut",
|
||||||
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
|
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfigurer pinkode",
|
"ButtonConfigurePinCode": "Konfigurer pinkode",
|
||||||
"HeaderAdultsReadHere": "Voksne l\u00e6s her!",
|
"HeaderAdultsReadHere": "Voksne l\u00e6s her!",
|
||||||
"RegisterWithPayPal": "Registrer med PayPal",
|
"RegisterWithPayPal": "Registrer med PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
|
"HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
|
||||||
"LabelSyncTempPath": "Sti for midlertidige filer:",
|
"LabelSyncTempPath": "Sti for midlertidige filer:",
|
||||||
"LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
|
"LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
|
||||||
|
@ -91,10 +89,9 @@
|
||||||
"LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
|
"LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
|
||||||
"LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
|
"LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
|
||||||
"HeaderSyncJobInfo": "Sync Job",
|
"HeaderSyncJobInfo": "Sync Job",
|
||||||
"FolderTypeMixed": "Blandet indhold",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "FIlm",
|
"FolderTypeMovies": "FIlm",
|
||||||
"FolderTypeMusic": "Musik",
|
"FolderTypeMusic": "Musik",
|
||||||
"FolderTypeAdultVideos": "Voksenfilm",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "Musikvideoer",
|
"FolderTypeMusicVideos": "Musikvideoer",
|
||||||
"FolderTypeHomeVideos": "Hjemmevideoer",
|
"FolderTypeHomeVideos": "Hjemmevideoer",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Stigende",
|
"OptionAscending": "Stigende",
|
||||||
"OptionDescending": "Faldende",
|
"OptionDescending": "Faldende",
|
||||||
"OptionRuntime": "Varighed",
|
"OptionRuntime": "Varighed",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Udgivelsesdato",
|
||||||
"OptionPlayCount": "Gange afspillet",
|
"OptionPlayCount": "Gange afspillet",
|
||||||
"OptionDatePlayed": "Dato for afspilning",
|
"OptionDatePlayed": "Dato for afspilning",
|
||||||
"OptionDateAdded": "Dato for tilf\u00f8jelse",
|
"OptionDateAdded": "Dato for tilf\u00f8jelse",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Indt\u00e6gt",
|
"OptionRevenue": "Indt\u00e6gt",
|
||||||
"OptionPoster": "Plakat",
|
"OptionPoster": "Plakat",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Plakat",
|
"OptionPosterCard": "Plakat",
|
||||||
"OptionBackdrop": "Baggrund",
|
"OptionBackdrop": "Baggrund",
|
||||||
"OptionTimeline": "Tidslinje",
|
"OptionTimeline": "Tidslinje",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "V\u00e6lg",
|
"ButtonSelect": "V\u00e6lg",
|
||||||
"ButtonGroupVersions": "Grupp\u00e9r versioner",
|
"ButtonGroupVersions": "Grupp\u00e9r versioner",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Tilf\u00f8j til samling",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Anerkendelser",
|
"HeaderCredits": "Anerkendelser",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Program",
|
"HeaderProgram": "Program",
|
||||||
"HeaderClients": "Klienter",
|
"HeaderClients": "Klienter",
|
||||||
"LabelCompleted": "F\u00e6rdig",
|
"LabelCompleted": "F\u00e6rdig",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "Fejlet",
|
||||||
"LabelSkipped": "Oversprunget",
|
"LabelSkipped": "Oversprunget",
|
||||||
"HeaderEpisodeOrganization": "Organisation af episoder",
|
"HeaderEpisodeOrganization": "Organisation af episoder",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Serier",
|
||||||
"LabelSeasonNumber": "S\u00e6sonnummer",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Episodenummer",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
|
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
|
||||||
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
|
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Spiller nu",
|
"TabNowPlaying": "Spiller nu",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Kontroller",
|
"TabControls": "Kontroller",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scener",
|
"ButtonScenes": "Scener",
|
||||||
"ButtonSubtitles": "Undertekster",
|
"ButtonSubtitles": "Undertekster",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Forrige spor",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "N\u00e6ste spor",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "N\u00e6ste",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.",
|
||||||
"ButtonDismiss": "Afvis",
|
"ButtonDismiss": "Afvis",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.",
|
"ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.",
|
"LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Uidentificeret",
|
"OptionUnidentified": "Uidentificeret",
|
||||||
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
|
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
|
||||||
"OptionStub": "P\u00e5begyndt",
|
"OptionStub": "P\u00e5begyndt",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "S\u00e6son 0",
|
"OptionSeason0": "S\u00e6son 0",
|
||||||
"LabelReport": "Rapport:",
|
"LabelReport": "Rapport:",
|
||||||
"OptionReportSongs": "Sange",
|
"OptionReportSongs": "Sange",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artister",
|
"OptionReportArtists": "Artister",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Voksenfilm",
|
"OptionReportAdultVideos": "Voksenfilm",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Aktivitet",
|
"HeaderActivity": "Aktivitet",
|
||||||
"ScheduledTaskStartedWithName": "{0} startet",
|
"ScheduledTaskStartedWithName": "{0} startet",
|
||||||
"ScheduledTaskCancelledWithName": "{0} blev afbrudt",
|
"ScheduledTaskCancelledWithName": "{0} blev afbrudt",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Nulstil adgangskode",
|
"HeaderPasswordReset": "Nulstil adgangskode",
|
||||||
"HeaderParentalRatings": "Aldersgr\u00e6nser",
|
"HeaderParentalRatings": "Aldersgr\u00e6nser",
|
||||||
"HeaderVideoTypes": "Videotyper",
|
"HeaderVideoTypes": "Videotyper",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Bloker indhold med disse tags:",
|
"LabelBlockContentWithTags": "Bloker indhold med disse tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede",
|
"LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Kommende film",
|
"HeaderUpcomingMovies": "Kommende film",
|
||||||
"HeaderUpcomingSports": "Kommende sportsudsendelser",
|
"HeaderUpcomingSports": "Kommende sportsudsendelser",
|
||||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
|
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
|
||||||
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
|
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
|
||||||
"OptionEnableTranscodingThrottle": "Aktiver neddrosling",
|
"OptionEnableTranscodingThrottle": "Aktiver neddrosling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Undertekster",
|
"HeaderSubtitles": "Undertekster",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Organiser automatisk",
|
"TabAutoOrganize": "Organiser automatisk",
|
||||||
"TabPlugins": "Tilf\u00f8jelser",
|
"TabPlugins": "Tilf\u00f8jelser",
|
||||||
"TabHelp": "Hj\u00e6lp",
|
"TabHelp": "Hj\u00e6lp",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Kvalitet",
|
"ButtonQuality": "Kvalitet",
|
||||||
"HeaderNotifications": "Notifikationer",
|
"HeaderNotifications": "Notifikationer",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Ny afspilningsliste...",
|
"OptionNewPlaylist": "Ny afspilningsliste...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Vis serieoptagelse",
|
"ButtonViewSeriesRecording": "Vis serieoptagelse",
|
||||||
"ValueOriginalAirDate": "Blev sendt f\u00f8rste gang: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Fjer fra afspilningsliste",
|
"ButtonRemoveFromPlaylist": "Fjer fra afspilningsliste",
|
||||||
"HeaderSpecials": "S\u00e6rudsendelser",
|
"HeaderSpecials": "S\u00e6rudsendelser",
|
||||||
"HeaderTrailers": "Trailere",
|
"HeaderTrailers": "Trailere",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Spil",
|
"HeaderGames": "Spil",
|
||||||
"HeaderBooks": "B\u00f8ger",
|
"HeaderBooks": "B\u00f8ger",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "S\u00e6soner",
|
"HeaderSeasons": "S\u00e6soner",
|
||||||
"HeaderTracks": "Spor",
|
"HeaderTracks": "Spor",
|
||||||
"HeaderItems": "Element",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Beenden",
|
||||||
"LabelVisitCommunity": "Besuche die Community",
|
"LabelVisitCommunity": "Besuche die Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "PIN Code festlegen",
|
"ButtonConfigurePinCode": "PIN Code festlegen",
|
||||||
"HeaderAdultsReadHere": "Eltern, bitte lesen!",
|
"HeaderAdultsReadHere": "Eltern, bitte lesen!",
|
||||||
"RegisterWithPayPal": "Registrieren mit PayPal",
|
"RegisterWithPayPal": "Registrieren mit PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft",
|
|
||||||
"HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
|
"HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
|
||||||
"LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
|
"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.",
|
"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.",
|
"LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
|
||||||
"LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
|
"LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
|
||||||
"HeaderSyncJobInfo": "Synchronisationsaufgabe",
|
"HeaderSyncJobInfo": "Synchronisationsaufgabe",
|
||||||
"FolderTypeMixed": "Gemischte Inhalte",
|
"FolderTypeMixed": "Gemischter Inhalt",
|
||||||
"FolderTypeMovies": "Filme",
|
"FolderTypeMovies": "Filme",
|
||||||
"FolderTypeMusic": "Musik",
|
"FolderTypeMusic": "Musik",
|
||||||
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "Musikvideos",
|
"FolderTypeMusicVideos": "Musikvideos",
|
||||||
"FolderTypeHomeVideos": "Heimvideos",
|
"FolderTypeHomeVideos": "Heimvideos",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Aufsteigend",
|
"OptionAscending": "Aufsteigend",
|
||||||
"OptionDescending": "Absteigend",
|
"OptionDescending": "Absteigend",
|
||||||
"OptionRuntime": "Dauer",
|
"OptionRuntime": "Dauer",
|
||||||
"OptionReleaseDate": "Erscheinungsdatum",
|
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||||
"OptionPlayCount": "Z\u00e4hler",
|
"OptionPlayCount": "Z\u00e4hler",
|
||||||
"OptionDatePlayed": "Abgespielt am",
|
"OptionDatePlayed": "Abgespielt am",
|
||||||
"OptionDateAdded": "Hinzugef\u00fcgt am",
|
"OptionDateAdded": "Hinzugef\u00fcgt am",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Einnahme",
|
"OptionRevenue": "Einnahme",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Jahre",
|
|
||||||
"OptionPosterCard": "Poster Karte",
|
"OptionPosterCard": "Poster Karte",
|
||||||
"OptionBackdrop": "Hintergrund",
|
"OptionBackdrop": "Hintergrund",
|
||||||
"OptionTimeline": "Zeitlinie",
|
"OptionTimeline": "Zeitlinie",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Ausw\u00e4hlen",
|
"ButtonSelect": "Ausw\u00e4hlen",
|
||||||
"ButtonGroupVersions": "Gruppiere Versionen",
|
"ButtonGroupVersions": "Gruppiere Versionen",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
|
||||||
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
|
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
|
||||||
"TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
|
"TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
|
||||||
"HeaderCredits": "Herausgeber",
|
"HeaderCredits": "Herausgeber",
|
||||||
|
@ -351,10 +347,10 @@
|
||||||
"LabelCustomPaths": "Definiere eigene Pfade. Felder leer lassen um die Standardwerte zu nutzen.",
|
"LabelCustomPaths": "Definiere eigene Pfade. Felder leer lassen um die Standardwerte zu nutzen.",
|
||||||
"LabelCachePath": "Cache Pfad:",
|
"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.",
|
"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):",
|
"LabelMovieRecordingPath": "Film Aufnahmepfad (Optional):",
|
||||||
"LabelSeriesRecordingPath": "Serien 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:",
|
"LabelImagesByNamePath": "Images by name Pfad:",
|
||||||
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
|
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
|
||||||
"LabelMetadataPath": "Metadata Pfad:",
|
"LabelMetadataPath": "Metadata Pfad:",
|
||||||
|
@ -565,8 +561,8 @@
|
||||||
"LabelWebSocketPortNumber": "Web Socket Port Nummer:",
|
"LabelWebSocketPortNumber": "Web Socket Port Nummer:",
|
||||||
"LabelEnableAutomaticPortMap": "Aktiviere das automatische Port-Mapping",
|
"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.",
|
"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:",
|
"LabelExternalDDNS": "Externe 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.",
|
"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",
|
"TabResume": "Fortsetzen",
|
||||||
"TabWeather": "Wetter",
|
"TabWeather": "Wetter",
|
||||||
"TitleAppSettings": "App Einstellungen",
|
"TitleAppSettings": "App Einstellungen",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Aktuelle Wiedergabe",
|
"TabNowPlaying": "Aktuelle Wiedergabe",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Vollbild",
|
|
||||||
"ButtonScenes": "Szenen",
|
"ButtonScenes": "Szenen",
|
||||||
"ButtonSubtitles": "Untertitel",
|
"ButtonSubtitles": "Untertitel",
|
||||||
"ButtonPreviousTrack": "Vorherige Tonspur",
|
"ButtonPreviousTrack": "Vorheriges St\u00fcck",
|
||||||
"ButtonNextTrack": "N\u00e4chste Tonspur",
|
"ButtonNextTrack": "N\u00e4chstes St\u00fcck",
|
||||||
"ButtonAudioTracks": "Audiospuren",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "N\u00e4chstes",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.",
|
||||||
"ButtonDismiss": "Verwerfen",
|
"ButtonDismiss": "Verwerfen",
|
||||||
"ButtonMore": "Mehr",
|
|
||||||
"ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.",
|
"ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.",
|
||||||
"LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Undefiniert",
|
||||||
"OptionMissingParentalRating": "Fehlende Altersfreigabe",
|
"OptionMissingParentalRating": "Fehlende Altersfreigabe",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episoden",
|
|
||||||
"OptionSeason0": "Staffel 0",
|
"OptionSeason0": "Staffel 0",
|
||||||
"LabelReport": "Bericht:",
|
"LabelReport": "Bericht:",
|
||||||
"OptionReportSongs": "Lieder",
|
"OptionReportSongs": "Lieder",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Interpreten",
|
"OptionReportArtists": "Interpreten",
|
||||||
"OptionReportAlbums": "Alben",
|
"OptionReportAlbums": "Alben",
|
||||||
"OptionReportAdultVideos": "Videos f\u00fcr Erwachsene",
|
"OptionReportAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||||
"ButtonMoreItems": "Mehr",
|
"ButtonMore": "Mehr",
|
||||||
"HeaderActivity": "Aktivit\u00e4ten",
|
"HeaderActivity": "Aktivit\u00e4ten",
|
||||||
"ScheduledTaskStartedWithName": "{0} gestartet",
|
"ScheduledTaskStartedWithName": "{0} gestartet",
|
||||||
"ScheduledTaskCancelledWithName": "{0} wurde abgebrochen",
|
"ScheduledTaskCancelledWithName": "{0} wurde abgebrochen",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Passwort zur\u00fccksetzen",
|
"HeaderPasswordReset": "Passwort zur\u00fccksetzen",
|
||||||
"HeaderParentalRatings": "Altersbeschr\u00e4nkung",
|
"HeaderParentalRatings": "Altersbeschr\u00e4nkung",
|
||||||
"HeaderVideoTypes": "Videotypen",
|
"HeaderVideoTypes": "Videotypen",
|
||||||
|
"HeaderYears": "Jahre",
|
||||||
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
|
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
|
||||||
"LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
|
"LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild",
|
"LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Bevorstehende Filme",
|
"HeaderUpcomingMovies": "Bevorstehende Filme",
|
||||||
"HeaderUpcomingSports": "Folgende Sportveranstaltungen",
|
"HeaderUpcomingSports": "Folgende Sportveranstaltungen",
|
||||||
"HeaderUpcomingPrograms": "Bevorstehende Programme",
|
"HeaderUpcomingPrograms": "Bevorstehende Programme",
|
||||||
|
"ButtonMoreItems": "Mehr",
|
||||||
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
|
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
|
||||||
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
|
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
|
||||||
"OptionEnableTranscodingThrottle": "aktiviere Drosselung",
|
"OptionEnableTranscodingThrottle": "aktiviere Drosselung",
|
||||||
|
@ -1494,15 +1488,11 @@
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
|
||||||
"HeaderSetupTVGuide": "TV Guide einrichten",
|
"HeaderSetupTVGuide": "TV Guide einrichten",
|
||||||
"LabelDataProvider": "Datenquelle:",
|
"LabelDataProvider": "Datenquelle:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"OptionSendRecordingsToAutoOrganize": "Organisiere Aufnahmen in bereits bestehende Serien Verzeichnisse anderer Bibliotheken automatisch",
|
||||||
"OptionSendRecordingsToAutoOrganizeHelp": "Neue Aufnahmen werden mittels automatischer Organisation in Ihrer Bibliothek importiert.",
|
|
||||||
"HeaderDefaultPadding": "Standard Vor\/ Nachlauf",
|
"HeaderDefaultPadding": "Standard Vor\/ Nachlauf",
|
||||||
"OptionEnableRecordingSubfolders": "Erstelle Unterverzeichnisse f\u00fcr Katerogien wie Sport, Kindersendungen etc.",
|
"OptionEnableRecordingSubfolders": "Erstelle Unterverzeichnisse f\u00fcr Katerogien wie Sport, Kindersendungen etc.",
|
||||||
"HeaderSubtitles": "Untertitel",
|
"HeaderSubtitles": "Untertitel",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware Beschleunigung:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Nur auf unterst\u00fctzten Systemen verf\u00fcgbar.",
|
"LabelHardwareAccelerationTypeHelp": "Nur auf unterst\u00fctzten Systemen verf\u00fcgbar.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Autom.Organisation",
|
"TabAutoOrganize": "Autom.Organisation",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Hilfe",
|
"TabHelp": "Hilfe",
|
||||||
|
"ButtonFullscreen": "Vollbild",
|
||||||
|
"ButtonAudioTracks": "Audiospuren",
|
||||||
"ButtonQuality": "Qualit\u00e4t",
|
"ButtonQuality": "Qualit\u00e4t",
|
||||||
"HeaderNotifications": "Benachrichtigungen",
|
"HeaderNotifications": "Benachrichtigungen",
|
||||||
"HeaderSelectPlayer": "W\u00e4hle Videoplayer",
|
"HeaderSelectPlayer": "W\u00e4hle Videoplayer",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Neue Wiedergabeliste...",
|
"OptionNewPlaylist": "Neue Wiedergabeliste...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Zeige Serienaufnahmen an",
|
"ButtonViewSeriesRecording": "Zeige Serienaufnahmen an",
|
||||||
"ValueOriginalAirDate": "Urspr\u00fcngliches Ausstrahlungsdatum: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Von Wiedergabeliste entfernen",
|
"ButtonRemoveFromPlaylist": "Von Wiedergabeliste entfernen",
|
||||||
"HeaderSpecials": "Extras",
|
"HeaderSpecials": "Extras",
|
||||||
"HeaderTrailers": "Trailer",
|
"HeaderTrailers": "Trailer",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Alben",
|
"HeaderAlbums": "Alben",
|
||||||
"HeaderGames": "Spiele",
|
"HeaderGames": "Spiele",
|
||||||
"HeaderBooks": "B\u00fccher",
|
"HeaderBooks": "B\u00fccher",
|
||||||
|
"HeaderEpisodes": "Episoden",
|
||||||
"HeaderSeasons": "Staffeln",
|
"HeaderSeasons": "Staffeln",
|
||||||
"HeaderTracks": "Lieder",
|
"HeaderTracks": "Lieder",
|
||||||
"HeaderItems": "Inhalte",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Teilen",
|
||||||
"HeaderShare": "Teilen",
|
|
||||||
"ButtonShareHelp": "Teilen Sie eine Website mit Medieninformationen in einem sozialen Netzwerk. Medien werden niemals \u00f6ffentlich geteilt.",
|
|
||||||
"ButtonShare": "Teilen",
|
"ButtonShare": "Teilen",
|
||||||
"HeaderConfirm": "Best\u00e4tigen",
|
"HeaderConfirm": "Best\u00e4tigen",
|
||||||
"MessageConfirmDeleteTunerDevice": "M\u00f6chten Sie dieses Ger\u00e4t wirklich l\u00f6schen?",
|
"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?",
|
"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.",
|
"MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.",
|
||||||
"OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
|
"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.",
|
"AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.",
|
||||||
"HeaderHealthMonitor": "Gesundheits Monitor",
|
"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",
|
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
|
||||||
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
|
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "\u039f\u03b9 \u03b5\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5!",
|
"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",
|
"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",
|
"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",
|
"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.",
|
"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",
|
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
"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",
|
"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",
|
"FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||||
"FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae",
|
"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",
|
"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",
|
"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",
|
"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",
|
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
|
||||||
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
|
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
|
||||||
"OptionRuntime": "Runtime",
|
"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",
|
"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",
|
"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",
|
"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",
|
"OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
|
"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",
|
"OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1",
|
||||||
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"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.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Exit",
|
||||||
"LabelVisitCommunity": "Visit Community",
|
"LabelVisitCommunity": "Visit Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -592,8 +588,8 @@
|
||||||
"LabelSkipped": "Skipped",
|
"LabelSkipped": "Skipped",
|
||||||
"HeaderEpisodeOrganization": "Episode Organisation",
|
"HeaderEpisodeOrganization": "Episode Organisation",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "Season number",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Episode number",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organise",
|
"TabAutoOrganize": "Auto-Organise",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Salir",
|
||||||
"LabelVisitCommunity": "Visit Community",
|
"LabelVisitCommunity": "Visit Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Salir",
|
||||||
"LabelVisitCommunity": "Visitar la Comunidad",
|
"LabelVisitCommunity": "Visitar la Comunidad",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||||
"HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
|
"HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
|
||||||
"RegisterWithPayPal": "Registrar con PayPal",
|
"RegisterWithPayPal": "Registrar con PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sincronizacion requiere de una Membres\u00eda de Aficionado",
|
|
||||||
"HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
|
"HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
|
||||||
"LabelSyncTempPath": "Ruta de archivos temporales:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "Contenido mezclado",
|
||||||
"FolderTypeMovies": "Pel\u00edculas",
|
"FolderTypeMovies": "Pel\u00edculas",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "Videos para adultos",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "Videos musicales",
|
"FolderTypeMusicVideos": "Videos musicales",
|
||||||
"FolderTypeHomeVideos": "Videos caseros",
|
"FolderTypeHomeVideos": "Videos caseros",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendente",
|
"OptionAscending": "Ascendente",
|
||||||
"OptionDescending": "Descendente",
|
"OptionDescending": "Descendente",
|
||||||
"OptionRuntime": "Duraci\u00f3n",
|
"OptionRuntime": "Duraci\u00f3n",
|
||||||
"OptionReleaseDate": "Fecha de Estreno",
|
"OptionReleaseDate": "Fecha de Liberaci\u00f3n",
|
||||||
"OptionPlayCount": "Contador",
|
"OptionPlayCount": "Contador",
|
||||||
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
|
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
|
||||||
"OptionDateAdded": "Fecha de Adici\u00f3n",
|
"OptionDateAdded": "Fecha de Adici\u00f3n",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Presupuesto",
|
"OptionBudget": "Presupuesto",
|
||||||
"OptionRevenue": "Recaudaci\u00f3n",
|
"OptionRevenue": "Recaudaci\u00f3n",
|
||||||
"OptionPoster": "P\u00f3ster",
|
"OptionPoster": "P\u00f3ster",
|
||||||
"HeaderYears": "A\u00f1os",
|
|
||||||
"OptionPosterCard": "Tarjeta de P\u00f3ster",
|
"OptionPosterCard": "Tarjeta de P\u00f3ster",
|
||||||
"OptionBackdrop": "Imagen de Fondo",
|
"OptionBackdrop": "Imagen de Fondo",
|
||||||
"OptionTimeline": "L\u00ednea de Tiempo",
|
"OptionTimeline": "L\u00ednea de Tiempo",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Seleccionar",
|
"ButtonSelect": "Seleccionar",
|
||||||
"ButtonGroupVersions": "Agrupar Versiones",
|
"ButtonGroupVersions": "Agrupar Versiones",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Agregar a Colecci\u00f3n",
|
||||||
"PismoMessage": "Utilizando Pismo File Mount a trav\u00e9s de una licencia donada.",
|
"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.",
|
"TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.",
|
||||||
"HeaderCredits": "Cr\u00e9ditos",
|
"HeaderCredits": "Cr\u00e9ditos",
|
||||||
|
@ -592,8 +588,8 @@
|
||||||
"LabelSkipped": "Omitido",
|
"LabelSkipped": "Omitido",
|
||||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
|
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "N\u00famero de temporada:",
|
"LabelSeasonNumber": "Temporada numero:",
|
||||||
"LabelEpisodeNumber": "N\u00famero de episodio:",
|
"LabelEpisodeNumber": "Episodio numero:",
|
||||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||||
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n en archivos futuros con nombres similares",
|
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n en archivos futuros con nombres similares",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
||||||
"TabNavigation": "Navegaci\u00f3n",
|
"TabNavigation": "Navegaci\u00f3n",
|
||||||
"TabControls": "Controles",
|
"TabControls": "Controles",
|
||||||
"ButtonFullscreen": "Pantalla completa",
|
|
||||||
"ButtonScenes": "Escenas",
|
"ButtonScenes": "Escenas",
|
||||||
"ButtonSubtitles": "Subt\u00edtulos",
|
"ButtonSubtitles": "Subt\u00edtulos",
|
||||||
"ButtonPreviousTrack": "Pista anterior",
|
"ButtonPreviousTrack": "Pista anterior",
|
||||||
"ButtonNextTrack": "Pista siguiente",
|
"ButtonNextTrack": "Pista siguiente",
|
||||||
"ButtonAudioTracks": "Pistas de Audio",
|
|
||||||
"ButtonStop": "Detener",
|
"ButtonStop": "Detener",
|
||||||
"ButtonPause": "Pausar",
|
"ButtonPause": "Pausar",
|
||||||
"ButtonNext": "Siguiente",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.",
|
||||||
"ButtonDismiss": "Descartar",
|
"ButtonDismiss": "Descartar",
|
||||||
"ButtonMore": "M\u00e1s",
|
|
||||||
"ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.",
|
"ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.",
|
||||||
"LabelChannelStreamQuality": "Calidad preferida para canal de internet:",
|
"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.",
|
"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",
|
"OptionUnidentified": "No Identificado",
|
||||||
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
|
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
|
||||||
"OptionStub": "Plantilla",
|
"OptionStub": "Plantilla",
|
||||||
"HeaderEpisodes": "Episodios",
|
|
||||||
"OptionSeason0": "Temporada 0",
|
"OptionSeason0": "Temporada 0",
|
||||||
"LabelReport": "Reporte:",
|
"LabelReport": "Reporte:",
|
||||||
"OptionReportSongs": "Canciones",
|
"OptionReportSongs": "Canciones",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artistas",
|
"OptionReportArtists": "Artistas",
|
||||||
"OptionReportAlbums": "\u00c1lbumes",
|
"OptionReportAlbums": "\u00c1lbumes",
|
||||||
"OptionReportAdultVideos": "Videos para Adultos",
|
"OptionReportAdultVideos": "Videos para Adultos",
|
||||||
"ButtonMoreItems": "Mas",
|
"ButtonMore": "M\u00e1s",
|
||||||
"HeaderActivity": "Actividad",
|
"HeaderActivity": "Actividad",
|
||||||
"ScheduledTaskStartedWithName": "{0} Iniciado",
|
"ScheduledTaskStartedWithName": "{0} Iniciado",
|
||||||
"ScheduledTaskCancelledWithName": "{0} fue cancelado",
|
"ScheduledTaskCancelledWithName": "{0} fue cancelado",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Restablecer Contrase\u00f1a",
|
"HeaderPasswordReset": "Restablecer Contrase\u00f1a",
|
||||||
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
|
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
|
||||||
"HeaderVideoTypes": "Tipos de Video",
|
"HeaderVideoTypes": "Tipos de Video",
|
||||||
|
"HeaderYears": "A\u00f1os",
|
||||||
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
|
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
|
||||||
"LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
|
"LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
|
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
|
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
|
||||||
"HeaderUpcomingSports": "Deportes por Estrenar",
|
"HeaderUpcomingSports": "Deportes por Estrenar",
|
||||||
"HeaderUpcomingPrograms": "Programas por Estrenar",
|
"HeaderUpcomingPrograms": "Programas por Estrenar",
|
||||||
|
"ButtonMoreItems": "Mas",
|
||||||
"LabelShowLibraryTileNames": "Mostrar nombres de t\u00edtulo de las bibliotecas",
|
"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",
|
"LabelShowLibraryTileNamesHelp": "Determina si se desplegar\u00e1n etiquetas debajo de los t\u00edtulos de las bibliotecas con la p\u00e1gina principal",
|
||||||
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
|
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
|
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
|
||||||
"LabelDataProvider": "Proveedor de datos:",
|
"LabelDataProvider": "Proveedor de datos:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Rellenado Predeterminado",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subt\u00edtulos",
|
"HeaderSubtitles": "Subt\u00edtulos",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Aceleraci\u00f3n por Hardware:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Disponible \u00fanicamente en sistemas soportados.",
|
"LabelHardwareAccelerationTypeHelp": "Disponible \u00fanicamente en sistemas soportados.",
|
||||||
"ButtonServerDashboard": "Panel de Control del Servidor",
|
"ButtonServerDashboard": "Panel de Control del Servidor",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organizar",
|
"TabAutoOrganize": "Auto-Organizar",
|
||||||
"TabPlugins": "Complementos",
|
"TabPlugins": "Complementos",
|
||||||
"TabHelp": "Ayuda",
|
"TabHelp": "Ayuda",
|
||||||
|
"ButtonFullscreen": "Pantalla completa",
|
||||||
|
"ButtonAudioTracks": "Pistas de Audio",
|
||||||
"ButtonQuality": "Calidad",
|
"ButtonQuality": "Calidad",
|
||||||
"HeaderNotifications": "Notificaciones",
|
"HeaderNotifications": "Notificaciones",
|
||||||
"HeaderSelectPlayer": "Seleccionar Reproductor",
|
"HeaderSelectPlayer": "Seleccionar Reproductor",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nueva lista de reproducci\u00f3n...",
|
"OptionNewPlaylist": "Nueva lista de reproducci\u00f3n...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Ver grabaciones de series",
|
"ButtonViewSeriesRecording": "Ver grabaciones de series",
|
||||||
"ValueOriginalAirDate": "Fecha de transmisi\u00f3n original: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Eliminar de la lista de reproducci\u00f3n",
|
"ButtonRemoveFromPlaylist": "Eliminar de la lista de reproducci\u00f3n",
|
||||||
"HeaderSpecials": "Especiales",
|
"HeaderSpecials": "Especiales",
|
||||||
"HeaderTrailers": "Tr\u00e1ilers",
|
"HeaderTrailers": "Tr\u00e1ilers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\u00c1lbumes",
|
"HeaderAlbums": "\u00c1lbumes",
|
||||||
"HeaderGames": "Juegos",
|
"HeaderGames": "Juegos",
|
||||||
"HeaderBooks": "Libros",
|
"HeaderBooks": "Libros",
|
||||||
|
"HeaderEpisodes": "Episodios",
|
||||||
"HeaderSeasons": "Temporadas",
|
"HeaderSeasons": "Temporadas",
|
||||||
"HeaderTracks": "Pistas",
|
"HeaderTracks": "Pistas",
|
||||||
"HeaderItems": "\u00cdtems",
|
"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\".",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Compartir",
|
||||||
"HeaderConfirm": "Confirmar",
|
"HeaderConfirm": "Confirmar",
|
||||||
"MessageConfirmDeleteTunerDevice": "\u00bfEst\u00e1 seguro de querer eliminar este dispositivo?",
|
"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?",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.",
|
||||||
"LabelLocalSyncStatusValue": "Estado: {0}",
|
"LabelLocalSyncStatusValue": "Estado: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Salir",
|
||||||
"LabelVisitCommunity": "Visitar la comunidad",
|
"LabelVisitCommunity": "Visitar la comunidad",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configurar contrase\u00f1a",
|
"ButtonConfigurePinCode": "Configurar contrase\u00f1a",
|
||||||
"HeaderAdultsReadHere": "Adultos Leer Aqui!",
|
"HeaderAdultsReadHere": "Adultos Leer Aqui!",
|
||||||
"RegisterWithPayPal": "Registrese con PayPal",
|
"RegisterWithPayPal": "Registrese con PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
|
"HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
|
||||||
"LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "Trabajo de Sync",
|
||||||
"FolderTypeMixed": "Contenido mezclado",
|
"FolderTypeMixed": "Contenido mixto",
|
||||||
"FolderTypeMovies": "Peliculas",
|
"FolderTypeMovies": "Peliculas",
|
||||||
"FolderTypeMusic": "Musica",
|
"FolderTypeMusic": "Musica",
|
||||||
"FolderTypeAdultVideos": "Videos para adultos",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "Videos Musicales",
|
"FolderTypeMusicVideos": "Videos Musicales",
|
||||||
"FolderTypeHomeVideos": "Videos caseros",
|
"FolderTypeHomeVideos": "Videos caseros",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendente",
|
"OptionAscending": "Ascendente",
|
||||||
"OptionDescending": "Descendente",
|
"OptionDescending": "Descendente",
|
||||||
"OptionRuntime": "Tiempo",
|
"OptionRuntime": "Tiempo",
|
||||||
"OptionReleaseDate": "Fecha de lanzamiento",
|
"OptionReleaseDate": "Fecha de Lanzamiento",
|
||||||
"OptionPlayCount": "N\u00famero de reproducc.",
|
"OptionPlayCount": "N\u00famero de reproducc.",
|
||||||
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
|
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
|
||||||
"OptionDateAdded": "A\u00f1adido el",
|
"OptionDateAdded": "A\u00f1adido el",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Presupuesto",
|
"OptionBudget": "Presupuesto",
|
||||||
"OptionRevenue": "Recaudaci\u00f3n",
|
"OptionRevenue": "Recaudaci\u00f3n",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "A\u00f1os",
|
|
||||||
"OptionPosterCard": "Cartelera",
|
"OptionPosterCard": "Cartelera",
|
||||||
"OptionBackdrop": "Imagen de fondo",
|
"OptionBackdrop": "Imagen de fondo",
|
||||||
"OptionTimeline": "L\u00ednea de tiempo",
|
"OptionTimeline": "L\u00ednea de tiempo",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metavalor",
|
"OptionMetascore": "Metavalor",
|
||||||
"ButtonSelect": "Seleccionar",
|
"ButtonSelect": "Seleccionar",
|
||||||
"ButtonGroupVersions": "Versiones de Grupo",
|
"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.",
|
"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.",
|
"TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.",
|
||||||
"HeaderCredits": "Cr\u00e9ditos",
|
"HeaderCredits": "Cr\u00e9ditos",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Programa",
|
"HeaderProgram": "Programa",
|
||||||
"HeaderClients": "Clientes",
|
"HeaderClients": "Clientes",
|
||||||
"LabelCompleted": "Completado",
|
"LabelCompleted": "Completado",
|
||||||
"LabelFailed": "Fallido",
|
"LabelFailed": "Error",
|
||||||
"LabelSkipped": "Omitido",
|
"LabelSkipped": "Omitido",
|
||||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
|
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "Temporada n\u00famero:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "N\u00famero de cap\u00edtulo:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||||
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre",
|
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Reproduciendo ahora",
|
"TabNowPlaying": "Reproduciendo ahora",
|
||||||
"TabNavigation": "Navegaci\u00f3n",
|
"TabNavigation": "Navegaci\u00f3n",
|
||||||
"TabControls": "Controles",
|
"TabControls": "Controles",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Escenas",
|
"ButtonScenes": "Escenas",
|
||||||
"ButtonSubtitles": "Subt\u00edtulos",
|
"ButtonSubtitles": "Subt\u00edtulos",
|
||||||
"ButtonPreviousTrack": "Pista anterior",
|
"ButtonPreviousTrack": "Pista anterior",
|
||||||
"ButtonNextTrack": "Pista siguiente",
|
"ButtonNextTrack": "Pista siguiente",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Detener",
|
"ButtonStop": "Detener",
|
||||||
"ButtonPause": "Pausa",
|
"ButtonPause": "Pausa",
|
||||||
"ButtonNext": "Siguiente",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "La lista de reproducci\u00f3n est\u00e1 vac\u00eda.",
|
||||||
"ButtonDismiss": "Descartar",
|
"ButtonDismiss": "Descartar",
|
||||||
"ButtonMore": "M\u00e1s",
|
|
||||||
"ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.",
|
"ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.",
|
||||||
"LabelChannelStreamQuality": "Calidad del canal online preferida:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Sin identificar",
|
||||||
"OptionMissingParentalRating": "Sin clasificaci\u00f3n parental",
|
"OptionMissingParentalRating": "Sin clasificaci\u00f3n parental",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Temporada 0",
|
"OptionSeason0": "Temporada 0",
|
||||||
"LabelReport": "Informe:",
|
"LabelReport": "Informe:",
|
||||||
"OptionReportSongs": "Canciones",
|
"OptionReportSongs": "Canciones",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artistas",
|
"OptionReportArtists": "Artistas",
|
||||||
"OptionReportAlbums": "Albumes",
|
"OptionReportAlbums": "Albumes",
|
||||||
"OptionReportAdultVideos": "V\u00eddeos de adultos",
|
"OptionReportAdultVideos": "V\u00eddeos de adultos",
|
||||||
"ButtonMoreItems": "M\u00e1s",
|
"ButtonMore": "M\u00e1s",
|
||||||
"HeaderActivity": "Actividad",
|
"HeaderActivity": "Actividad",
|
||||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||||
"ScheduledTaskCancelledWithName": "{0} ha sido cancelado",
|
"ScheduledTaskCancelledWithName": "{0} ha sido cancelado",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Reestablecer contrase\u00f1a",
|
"HeaderPasswordReset": "Reestablecer contrase\u00f1a",
|
||||||
"HeaderParentalRatings": "Clasificaci\u00f3n parental",
|
"HeaderParentalRatings": "Clasificaci\u00f3n parental",
|
||||||
"HeaderVideoTypes": "Tipos de v\u00eddeos",
|
"HeaderVideoTypes": "Tipos de v\u00eddeos",
|
||||||
|
"HeaderYears": "A\u00f1os",
|
||||||
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin valoraciones o si son desconocidas:",
|
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin valoraciones o si son desconocidas:",
|
||||||
"LabelBlockContentWithTags": "Bloquear contenido sin etiquetas:",
|
"LabelBlockContentWithTags": "Bloquear contenido sin etiquetas:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitar a una imagen integrada",
|
"LabelEnableSingleImageInDidlLimit": "Limitar a una imagen integrada",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas",
|
"HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas",
|
||||||
"HeaderUpcomingSports": "Pr\u00f3ximos deportes",
|
"HeaderUpcomingSports": "Pr\u00f3ximos deportes",
|
||||||
"HeaderUpcomingPrograms": "Pr\u00f3ximos programas",
|
"HeaderUpcomingPrograms": "Pr\u00f3ximos programas",
|
||||||
|
"ButtonMoreItems": "M\u00e1s",
|
||||||
"LabelShowLibraryTileNames": "Mostrar nombres de pesta\u00f1as de la biblioteca",
|
"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",
|
"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",
|
"OptionEnableTranscodingThrottle": "Activar estrangulamiento",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Configurar gu\u00eda de TV",
|
"HeaderSetupTVGuide": "Configurar gu\u00eda de TV",
|
||||||
"LabelDataProvider": "Proveedor de datos:",
|
"LabelDataProvider": "Proveedor de datos:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Relleno por defecto",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subt\u00edtulos",
|
"HeaderSubtitles": "Subt\u00edtulos",
|
||||||
"HeaderVideos": "V\u00eddeos",
|
"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:",
|
"LabelHardwareAccelerationType": "Aceleraci\u00f3n por hardware:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Disponible s\u00f3lo en sistemas soportados.",
|
"LabelHardwareAccelerationTypeHelp": "Disponible s\u00f3lo en sistemas soportados.",
|
||||||
"ButtonServerDashboard": "Panel de control del servidor",
|
"ButtonServerDashboard": "Panel de control del servidor",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Poistu",
|
||||||
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
|
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Quitter",
|
||||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Quitter",
|
||||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Ajouter \u00e0 la collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -351,9 +347,9 @@
|
||||||
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
|
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
|
||||||
"LabelCachePath": "Cache path:",
|
"LabelCachePath": "Cache path:",
|
||||||
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
|
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
|
||||||
"LabelRecordingPath": "Default recording path:",
|
"LabelRecordingPath": "Chemin d'enregistrement par d\u00e9faut",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"LabelMovieRecordingPath": "Emplacement des films (optionnel)",
|
||||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
"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.",
|
"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:",
|
"LabelImagesByNamePath": "Images by name path:",
|
||||||
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
|
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
|
||||||
|
@ -565,7 +561,7 @@
|
||||||
"LabelWebSocketPortNumber": "Web socket port number:",
|
"LabelWebSocketPortNumber": "Web socket port number:",
|
||||||
"LabelEnableAutomaticPortMap": "Enable automatic port mapping",
|
"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.",
|
"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.",
|
"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",
|
"TabResume": "Resume",
|
||||||
"TabWeather": "Weather",
|
"TabWeather": "Weather",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Program",
|
"HeaderProgram": "Program",
|
||||||
"HeaderClients": "Clients",
|
"HeaderClients": "Clients",
|
||||||
"LabelCompleted": "Completed",
|
"LabelCompleted": "Completed",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "echec",
|
||||||
"LabelSkipped": "Skipped",
|
"LabelSkipped": "Skipped",
|
||||||
"HeaderEpisodeOrganization": "Episode Organization",
|
"HeaderEpisodeOrganization": "Episode Organization",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "Season number",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Episode number",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Pr\u00e9c\u00e9dent",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Suivant",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "Plus",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Ann\u00e9es",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "Plus",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Plein \u00e9cran",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Quitter",
|
||||||
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configurer le code PIN",
|
"ButtonConfigurePinCode": "Configurer le code PIN",
|
||||||
"HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
|
"HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
|
||||||
"RegisterWithPayPal": "S'enregistrer avec PayPal",
|
"RegisterWithPayPal": "S'enregistrer avec PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
|
"HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
|
||||||
"LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "T\u00e2che de synchronisation",
|
||||||
"FolderTypeMixed": "Contenus m\u00e9lang\u00e9s",
|
"FolderTypeMixed": "Contenu m\u00e9lang\u00e9",
|
||||||
"FolderTypeMovies": "Films",
|
"FolderTypeMovies": "Films",
|
||||||
"FolderTypeMusic": "Musique",
|
"FolderTypeMusic": "Musique",
|
||||||
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Vid\u00e9os Musical",
|
"FolderTypeMusicVideos": "Vid\u00e9os Musical",
|
||||||
"FolderTypeHomeVideos": "Vid\u00e9os personnelles",
|
"FolderTypeHomeVideos": "Vid\u00e9os personnelles",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendant",
|
"OptionAscending": "Ascendant",
|
||||||
"OptionDescending": "Descendant",
|
"OptionDescending": "Descendant",
|
||||||
"OptionRuntime": "Dur\u00e9e",
|
"OptionRuntime": "Dur\u00e9e",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Date de sortie",
|
||||||
"OptionPlayCount": "Nombre de lectures",
|
"OptionPlayCount": "Nombre de lectures",
|
||||||
"OptionDatePlayed": "Date lu",
|
"OptionDatePlayed": "Date lu",
|
||||||
"OptionDateAdded": "Date d'ajout",
|
"OptionDateAdded": "Date d'ajout",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Recettes",
|
"OptionRevenue": "Recettes",
|
||||||
"OptionPoster": "Affiche",
|
"OptionPoster": "Affiche",
|
||||||
"HeaderYears": "Ann\u00e9es",
|
|
||||||
"OptionPosterCard": "Carte Affiche",
|
"OptionPosterCard": "Carte Affiche",
|
||||||
"OptionBackdrop": "Image d'arri\u00e8re-plan",
|
"OptionBackdrop": "Image d'arri\u00e8re-plan",
|
||||||
"OptionTimeline": "Chronologie",
|
"OptionTimeline": "Chronologie",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "S\u00e9lectionner",
|
"ButtonSelect": "S\u00e9lectionner",
|
||||||
"ButtonGroupVersions": "Versions des groupes",
|
"ButtonGroupVersions": "Versions des groupes",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Ajouter \u00e0 une collection",
|
||||||
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
|
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
|
||||||
"TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
|
"TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
|
||||||
"HeaderCredits": "Cr\u00e9dits",
|
"HeaderCredits": "Cr\u00e9dits",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Programme",
|
"HeaderProgram": "Programme",
|
||||||
"HeaderClients": "Clients",
|
"HeaderClients": "Clients",
|
||||||
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
|
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\u00c9chou\u00e9",
|
||||||
"LabelSkipped": "Saut\u00e9",
|
"LabelSkipped": "Saut\u00e9",
|
||||||
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
|
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "S\u00e9ries :",
|
||||||
"LabelSeasonNumber": "Num\u00e9ro de la saison:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Num\u00e9ro de l'\u00e9pisode:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
|
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
|
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
|
||||||
"OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires",
|
"OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Lecture en cours",
|
"TabNowPlaying": "Lecture en cours",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Contr\u00f4les",
|
"TabControls": "Contr\u00f4les",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Sc\u00e8nes",
|
"ButtonScenes": "Sc\u00e8nes",
|
||||||
"ButtonSubtitles": "Sous-titres",
|
"ButtonSubtitles": "Sous-titres",
|
||||||
"ButtonPreviousTrack": "Piste Pr\u00e9c\u00e9dente",
|
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
|
||||||
"ButtonNextTrack": "Piste suivante",
|
"ButtonNextTrack": "Piste suivante",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Arr\u00eat",
|
"ButtonStop": "Arr\u00eat",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Suivant",
|
"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",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.",
|
||||||
"ButtonDismiss": "Annuler",
|
"ButtonDismiss": "Annuler",
|
||||||
"ButtonMore": "Plus",
|
|
||||||
"ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.",
|
"ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.",
|
"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",
|
"OptionUnidentified": "Non identifi\u00e9",
|
||||||
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
|
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
|
||||||
"OptionStub": "Coupure",
|
"OptionStub": "Coupure",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Saison 0",
|
"OptionSeason0": "Saison 0",
|
||||||
"LabelReport": "Rapport:",
|
"LabelReport": "Rapport:",
|
||||||
"OptionReportSongs": "Chansons",
|
"OptionReportSongs": "Chansons",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artistes",
|
"OptionReportArtists": "Artistes",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Vid\u00e9os adultes",
|
"OptionReportAdultVideos": "Vid\u00e9os adultes",
|
||||||
"ButtonMoreItems": "Plus",
|
"ButtonMore": "Plus",
|
||||||
"HeaderActivity": "Activit\u00e9",
|
"HeaderActivity": "Activit\u00e9",
|
||||||
"ScheduledTaskStartedWithName": "{0} a commenc\u00e9",
|
"ScheduledTaskStartedWithName": "{0} a commenc\u00e9",
|
||||||
"ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9",
|
"ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9",
|
"HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9",
|
||||||
"HeaderParentalRatings": "Note parentale",
|
"HeaderParentalRatings": "Note parentale",
|
||||||
"HeaderVideoTypes": "Types de vid\u00e9o",
|
"HeaderVideoTypes": "Types de vid\u00e9o",
|
||||||
|
"HeaderYears": "Ann\u00e9es",
|
||||||
"HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
|
"HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
|
||||||
"LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
|
"LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e",
|
"LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Films \u00e0 venir",
|
"HeaderUpcomingMovies": "Films \u00e0 venir",
|
||||||
"HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
|
"HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
|
||||||
"HeaderUpcomingPrograms": "Programmes \u00e0 venir",
|
"HeaderUpcomingPrograms": "Programmes \u00e0 venir",
|
||||||
|
"ButtonMoreItems": "Plus",
|
||||||
"LabelShowLibraryTileNames": "Voir les noms des affiches de la biblioth\u00e8que",
|
"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",
|
"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",
|
"OptionEnableTranscodingThrottle": "Activer le throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Configuration du Guide TV",
|
"HeaderSetupTVGuide": "Configuration du Guide TV",
|
||||||
"LabelDataProvider": "Fournisseur de donn\u00e9es :",
|
"LabelDataProvider": "Fournisseur de donn\u00e9es :",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Temporisation par d\u00e9faut",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Sous-titres",
|
"HeaderSubtitles": "Sous-titres",
|
||||||
"HeaderVideos": "Vid\u00e9os",
|
"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:",
|
"LabelHardwareAccelerationType": "Acc\u00e9l\u00e9ration mat\u00e9rielle:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Disponible uniquement sur les syst\u00e8mes support\u00e9s.",
|
"LabelHardwareAccelerationTypeHelp": "Disponible uniquement sur les syst\u00e8mes support\u00e9s.",
|
||||||
"ButtonServerDashboard": "Tableau de bord du serveur",
|
"ButtonServerDashboard": "Tableau de bord du serveur",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-organisation",
|
"TabAutoOrganize": "Auto-organisation",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Aide",
|
"TabHelp": "Aide",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Qualit\u00e9",
|
"ButtonQuality": "Qualit\u00e9",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "S\u00e9lectionnez le lecteur",
|
"HeaderSelectPlayer": "S\u00e9lectionnez le lecteur",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nouvelle liste de lecture...",
|
"OptionNewPlaylist": "Nouvelle liste de lecture...",
|
||||||
"MessageAddedToPlaylistSuccess": "OK",
|
"MessageAddedToPlaylistSuccess": "OK",
|
||||||
"ButtonViewSeriesRecording": "Voir les enregistrements de s\u00e9ries",
|
"ButtonViewSeriesRecording": "Voir les enregistrements de s\u00e9ries",
|
||||||
"ValueOriginalAirDate": "Date de diffusion originale: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Supprimer de la liste de lecture",
|
"ButtonRemoveFromPlaylist": "Supprimer de la liste de lecture",
|
||||||
"HeaderSpecials": "Episodes sp\u00e9ciaux",
|
"HeaderSpecials": "Episodes sp\u00e9ciaux",
|
||||||
"HeaderTrailers": "Bandes-annonces",
|
"HeaderTrailers": "Bandes-annonces",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Jeux",
|
"HeaderGames": "Jeux",
|
||||||
"HeaderBooks": "Livres",
|
"HeaderBooks": "Livres",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Saisons",
|
"HeaderSeasons": "Saisons",
|
||||||
"HeaderTracks": "Pistes",
|
"HeaderTracks": "Pistes",
|
||||||
"HeaderItems": "El\u00e9ments",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Partager",
|
||||||
"HeaderConfirm": "Confirmer",
|
"HeaderConfirm": "Confirmer",
|
||||||
"MessageConfirmDeleteTunerDevice": "Etes-vous s\u00fbr de vouloir supprimer cet appareil ?",
|
"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 ?",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.",
|
||||||
"LabelLocalSyncStatusValue": "Status : {0}",
|
"LabelLocalSyncStatusValue": "Status : {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Verlasse",
|
||||||
"LabelVisitCommunity": "Bsuech d'Community",
|
"LabelVisitCommunity": "Bsuech d'Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfigurier de Pin Code",
|
"ButtonConfigurePinCode": "Konfigurier de Pin Code",
|
||||||
"HeaderAdultsReadHere": "Erwachseni bitte do lese!",
|
"HeaderAdultsReadHere": "Erwachseni bitte do lese!",
|
||||||
"RegisterWithPayPal": "Registrier di mit PayPal",
|
"RegisterWithPayPal": "Registrier di mit PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
|
"HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
|
||||||
"LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:",
|
"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.",
|
"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",
|
"LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte",
|
||||||
"LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
|
"LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
|
||||||
"HeaderSyncJobInfo": "Sync Job",
|
"HeaderSyncJobInfo": "Sync Job",
|
||||||
"FolderTypeMixed": "Verschiedeni Sache",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Film",
|
"FolderTypeMovies": "Film",
|
||||||
"FolderTypeMusic": "Musig",
|
"FolderTypeMusic": "Musig",
|
||||||
"FolderTypeAdultVideos": "Erwachseni Film",
|
|
||||||
"FolderTypePhotos": "F\u00f6teli",
|
"FolderTypePhotos": "F\u00f6teli",
|
||||||
"FolderTypeMusicVideos": "Musigvideos",
|
"FolderTypeMusicVideos": "Musigvideos",
|
||||||
"FolderTypeHomeVideos": "Heimvideos",
|
"FolderTypeHomeVideos": "Heimvideos",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ufstiigend",
|
"OptionAscending": "Ufstiigend",
|
||||||
"OptionDescending": "Abstiigend",
|
"OptionDescending": "Abstiigend",
|
||||||
"OptionRuntime": "Laufziit",
|
"OptionRuntime": "Laufziit",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Release Ziit:",
|
||||||
"OptionPlayCount": "Z\u00e4hler",
|
"OptionPlayCount": "Z\u00e4hler",
|
||||||
"OptionDatePlayed": "Abgspellt am",
|
"OptionDatePlayed": "Abgspellt am",
|
||||||
"OptionDateAdded": "Dezue gf\u00fcegt am",
|
"OptionDateAdded": "Dezue gf\u00fcegt am",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "iinahme",
|
"OptionRevenue": "iinahme",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Postercharte",
|
"OptionPosterCard": "Postercharte",
|
||||||
"OptionBackdrop": "Hindergrund",
|
"OptionBackdrop": "Hindergrund",
|
||||||
"OptionTimeline": "Ziitlinie",
|
"OptionTimeline": "Ziitlinie",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
|
||||||
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
|
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"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",
|
"HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||||
"HeaderSyncJobInfo": "Sync Job",
|
"HeaderSyncJobInfo": "Sync Job",
|
||||||
"FolderTypeMixed": "\u05ea\u05d5\u05db\u05df \u05de\u05e2\u05d5\u05e8\u05d1",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd",
|
"FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1",
|
"OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1",
|
||||||
"OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea",
|
"OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea",
|
||||||
"OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
|
"OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
|
"OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
|
||||||
"OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df",
|
"OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "\u05d1\u05d7\u05e8",
|
"ButtonSelect": "\u05d1\u05d7\u05e8",
|
||||||
"ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea",
|
"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.",
|
"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.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
|
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
|
||||||
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
||||||
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
|
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\u05e0\u05db\u05e9\u05dc",
|
||||||
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
|
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
|
||||||
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
|
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "\u05e1\u05d3\u05e8\u05d4",
|
||||||
"LabelSeasonNumber": "\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e0\u05d4:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05e7:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:",
|
"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",
|
"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",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "\u05d4\u05d1\u05d0",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd",
|
"HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "\u05e9\u05ea\u05e3",
|
||||||
"HeaderConfirm": "\u05d0\u05e9\u05e8",
|
"HeaderConfirm": "\u05d0\u05e9\u05e8",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Izlaz",
|
||||||
"LabelVisitCommunity": "Posjeti zajednicu",
|
"LabelVisitCommunity": "Posjeti zajednicu",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Bud\u017eet",
|
"OptionBudget": "Bud\u017eet",
|
||||||
"OptionRevenue": "Prihod",
|
"OptionRevenue": "Prihod",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Pozadina",
|
"OptionBackdrop": "Pozadina",
|
||||||
"OptionTimeline": "Vremenska linija",
|
"OptionTimeline": "Vremenska linija",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Odaberi",
|
"ButtonSelect": "Odaberi",
|
||||||
"ButtonGroupVersions": "Verzija grupe",
|
"ButtonGroupVersions": "Verzija grupe",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -592,8 +588,8 @@
|
||||||
"LabelSkipped": "Presko\u010deno",
|
"LabelSkipped": "Presko\u010deno",
|
||||||
"HeaderEpisodeOrganization": "Organizacija epizoda",
|
"HeaderEpisodeOrganization": "Organizacija epizoda",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "Broj sezone:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Broj epizode:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Broj kraja epizode:",
|
"LabelEndingEpisodeNumber": "Broj kraja epizode:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
|
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Sad se izvodi",
|
"TabNowPlaying": "Sad se izvodi",
|
||||||
"TabNavigation": "Navigacija",
|
"TabNavigation": "Navigacija",
|
||||||
"TabControls": "Kontrole",
|
"TabControls": "Kontrole",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scene",
|
"ButtonScenes": "Scene",
|
||||||
"ButtonSubtitles": "Titlovi",
|
"ButtonSubtitles": "Titlovi",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pauza",
|
"ButtonPause": "Pauza",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Kil\u00e9p\u00e9s",
|
||||||
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
|
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa",
|
"ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val",
|
"RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:",
|
"LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Vegyes tartalom",
|
||||||
"FolderTypeMovies": "Filmek",
|
"FolderTypeMovies": "Filmek",
|
||||||
"FolderTypeMusic": "Zen\u00e9k",
|
"FolderTypeMusic": "Zen\u00e9k",
|
||||||
"FolderTypeAdultVideos": "Feln\u0151tt vide\u00f3k",
|
|
||||||
"FolderTypePhotos": "F\u00e9nyk\u00e9pek",
|
"FolderTypePhotos": "F\u00e9nyk\u00e9pek",
|
||||||
"FolderTypeMusicVideos": "Zenei vide\u00f3k",
|
"FolderTypeMusicVideos": "Zenei vide\u00f3k",
|
||||||
"FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k",
|
"FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "N\u00f6vekv\u0151",
|
"OptionAscending": "N\u00f6vekv\u0151",
|
||||||
"OptionDescending": "Cs\u00f6kken\u0151",
|
"OptionDescending": "Cs\u00f6kken\u0151",
|
||||||
"OptionRuntime": "J\u00e1t\u00e9kid\u0151",
|
"OptionRuntime": "J\u00e1t\u00e9kid\u0151",
|
||||||
"OptionReleaseDate": "Megjelen\u00e9s D\u00e1tuma",
|
"OptionReleaseDate": "Megjelen\u00e9s d\u00e1tuma",
|
||||||
"OptionPlayCount": "Play Count",
|
"OptionPlayCount": "Play Count",
|
||||||
"OptionDatePlayed": "Date Played",
|
"OptionDatePlayed": "Date Played",
|
||||||
"OptionDateAdded": "Hozz\u00e1adva",
|
"OptionDateAdded": "Hozz\u00e1adva",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "K\u00f6lts\u00e9g",
|
"OptionBudget": "K\u00f6lts\u00e9g",
|
||||||
"OptionRevenue": "Bev\u00e9tel",
|
"OptionRevenue": "Bev\u00e9tel",
|
||||||
"OptionPoster": "Poszter",
|
"OptionPoster": "Poszter",
|
||||||
"HeaderYears": "\u00c9v",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "V\u00e1lassz",
|
"ButtonSelect": "V\u00e1lassz",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Hozz\u00e1ad\u00e1s a gy\u0171jtem\u00e9nyhez",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -588,10 +584,10 @@
|
||||||
"HeaderProgram": "Program",
|
"HeaderProgram": "Program",
|
||||||
"HeaderClients": "Clients",
|
"HeaderClients": "Clients",
|
||||||
"LabelCompleted": "Completed",
|
"LabelCompleted": "Completed",
|
||||||
"LabelFailed": "Sikertelen",
|
"LabelFailed": "Failed",
|
||||||
"LabelSkipped": "Skipped",
|
"LabelSkipped": "Skipped",
|
||||||
"HeaderEpisodeOrganization": "Episode Organization",
|
"HeaderEpisodeOrganization": "Episode Organization",
|
||||||
"LabelSeries": "Sorozatok:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "\u00c9vad sz\u00e1ma:",
|
"LabelSeasonNumber": "\u00c9vad sz\u00e1ma:",
|
||||||
"LabelEpisodeNumber": "Epiz\u00f3d sz\u00e1ma:",
|
"LabelEpisodeNumber": "Epiz\u00f3d sz\u00e1ma:",
|
||||||
"LabelEndingEpisodeNumber": "Befejez\u0151 epiz\u00f3d sz\u00e1ma:",
|
"LabelEndingEpisodeNumber": "Befejez\u0151 epiz\u00f3d sz\u00e1ma:",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Most j\u00e1tszott",
|
"TabNowPlaying": "Most j\u00e1tszott",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Vez\u00e9rl\u00e9s",
|
"TabControls": "Vez\u00e9rl\u00e9s",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Jelenetek",
|
"ButtonScenes": "Jelenetek",
|
||||||
"ButtonSubtitles": "Feliratok",
|
"ButtonSubtitles": "Feliratok",
|
||||||
"ButtonPreviousTrack": "El\u0151z\u0151 s\u00e1v",
|
"ButtonPreviousTrack": "El\u0151z\u0151 s\u00e1v",
|
||||||
"ButtonNextTrack": "K\u00f6vetkez\u0151 s\u00e1v",
|
"ButtonNextTrack": "K\u00f6vetkez\u0151 s\u00e1v",
|
||||||
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
|
||||||
"ButtonStop": "Le\u00e1ll\u00edt",
|
"ButtonStop": "Le\u00e1ll\u00edt",
|
||||||
"ButtonPause": "Sz\u00fcnet",
|
"ButtonPause": "Sz\u00fcnet",
|
||||||
"ButtonNext": "K\u00f6vetkez\u0151",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "T\u00f6bbi",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s",
|
"OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Jelent\u00e9s:",
|
"LabelReport": "Jelent\u00e9s:",
|
||||||
"OptionReportSongs": "Dalok",
|
"OptionReportSongs": "Dalok",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "M\u0171v\u00e9szek",
|
"OptionReportArtists": "M\u0171v\u00e9szek",
|
||||||
"OptionReportAlbums": "Albumok",
|
"OptionReportAlbums": "Albumok",
|
||||||
"OptionReportAdultVideos": "Feln\u0151tt vide\u00f3k",
|
"OptionReportAdultVideos": "Feln\u0151tt vide\u00f3k",
|
||||||
"ButtonMoreItems": "T\u00f6bbi",
|
"ButtonMore": "T\u00f6bbi",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} elkezdve",
|
"ScheduledTaskStartedWithName": "{0} elkezdve",
|
||||||
"ScheduledTaskCancelledWithName": "{0} megszak\u00edtva",
|
"ScheduledTaskCancelledWithName": "{0} megszak\u00edtva",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Korhat\u00e1r besorol\u00e1s",
|
"HeaderParentalRatings": "Korhat\u00e1r besorol\u00e1s",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "\u00c9v",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek",
|
"HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "T\u00f6bbi",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Feliratok",
|
"HeaderSubtitles": "Feliratok",
|
||||||
"HeaderVideos": "Vide\u00f3k",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Szerver Vez\u00e9rl\u0151pult",
|
"ButtonServerDashboard": "Szerver Vez\u00e9rl\u0151pult",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Rendez\u00e9s",
|
"TabAutoOrganize": "Auto-Rendez\u00e9s",
|
||||||
"TabPlugins": "B\u0151v\u00edtm\u00e9nyek",
|
"TabPlugins": "B\u0151v\u00edtm\u00e9nyek",
|
||||||
"TabHelp": "Seg\u00edts\u00e9g",
|
"TabHelp": "Seg\u00edts\u00e9g",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
||||||
"ButtonQuality": "Min\u0151s\u00e9g",
|
"ButtonQuality": "Min\u0151s\u00e9g",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ",
|
"HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Speci\u00e1lis",
|
"HeaderSpecials": "Speci\u00e1lis",
|
||||||
"HeaderTrailers": "El\u0151zetesek",
|
"HeaderTrailers": "El\u0151zetesek",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albumok",
|
"HeaderAlbums": "Albumok",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "\u00c9vad",
|
"HeaderSeasons": "\u00c9vad",
|
||||||
"HeaderTracks": "S\u00e1vok",
|
"HeaderTracks": "S\u00e1vok",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Megoszt\u00e1s",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Keluar",
|
||||||
"LabelVisitCommunity": "Kunjungi Komunitas",
|
"LabelVisitCommunity": "Kunjungi Komunitas",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Atur kode pin",
|
"ButtonConfigurePinCode": "Atur kode pin",
|
||||||
"HeaderAdultsReadHere": "Dewasa Baca Disini!",
|
"HeaderAdultsReadHere": "Dewasa Baca Disini!",
|
||||||
"RegisterWithPayPal": "Registrasi menggunakan PayPal",
|
"RegisterWithPayPal": "Registrasi menggunakan PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari",
|
"HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari",
|
||||||
"LabelSyncTempPath": "Alamat file sementara:",
|
"LabelSyncTempPath": "Alamat file sementara:",
|
||||||
"LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.",
|
"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",
|
"LabelEnableEnhancedMovies": "Aktifkan menampilkan film ditingkatkan",
|
||||||
"LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.",
|
"LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.",
|
||||||
"HeaderSyncJobInfo": "Kerja Sinkron",
|
"HeaderSyncJobInfo": "Kerja Sinkron",
|
||||||
"FolderTypeMixed": "Mixed content",
|
"FolderTypeMixed": "Kontent Campuran",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Esci",
|
||||||
"LabelVisitCommunity": "Visita la Community",
|
"LabelVisitCommunity": "Visita la Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configura codice pin",
|
"ButtonConfigurePinCode": "Configura codice pin",
|
||||||
"HeaderAdultsReadHere": "Adulti leggete qui!",
|
"HeaderAdultsReadHere": "Adulti leggete qui!",
|
||||||
"RegisterWithPayPal": "Registrati con PayPal",
|
"RegisterWithPayPal": "Registrati con PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
|
"HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
|
||||||
"LabelSyncTempPath": "Percorso file temporanei:",
|
"LabelSyncTempPath": "Percorso file temporanei:",
|
||||||
"LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
|
"LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
|
||||||
|
@ -94,7 +92,6 @@
|
||||||
"FolderTypeMixed": "contenuto misto",
|
"FolderTypeMixed": "contenuto misto",
|
||||||
"FolderTypeMovies": "Film",
|
"FolderTypeMovies": "Film",
|
||||||
"FolderTypeMusic": "Musica",
|
"FolderTypeMusic": "Musica",
|
||||||
"FolderTypeAdultVideos": "Video per adulti",
|
|
||||||
"FolderTypePhotos": "Foto",
|
"FolderTypePhotos": "Foto",
|
||||||
"FolderTypeMusicVideos": "Video musicali",
|
"FolderTypeMusicVideos": "Video musicali",
|
||||||
"FolderTypeHomeVideos": "Video personali",
|
"FolderTypeHomeVideos": "Video personali",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendente",
|
"OptionAscending": "Ascendente",
|
||||||
"OptionDescending": "Discentente",
|
"OptionDescending": "Discentente",
|
||||||
"OptionRuntime": "Durata",
|
"OptionRuntime": "Durata",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Data di rilascio",
|
||||||
"OptionPlayCount": "Visto N\u00b0",
|
"OptionPlayCount": "Visto N\u00b0",
|
||||||
"OptionDatePlayed": "Visto il",
|
"OptionDatePlayed": "Visto il",
|
||||||
"OptionDateAdded": "Aggiunto il",
|
"OptionDateAdded": "Aggiunto il",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Recensione",
|
"OptionRevenue": "Recensione",
|
||||||
"OptionPoster": "Locandina",
|
"OptionPoster": "Locandina",
|
||||||
"HeaderYears": "Anni",
|
|
||||||
"OptionPosterCard": "Scheda locandina",
|
"OptionPosterCard": "Scheda locandina",
|
||||||
"OptionBackdrop": "Sfondo",
|
"OptionBackdrop": "Sfondo",
|
||||||
"OptionTimeline": "Cronologia",
|
"OptionTimeline": "Cronologia",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Punteggio",
|
"OptionMetascore": "Punteggio",
|
||||||
"ButtonSelect": "Seleziona",
|
"ButtonSelect": "Seleziona",
|
||||||
"ButtonGroupVersions": "Versione Gruppo",
|
"ButtonGroupVersions": "Versione Gruppo",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Aggiungi alla collezione",
|
||||||
"PismoMessage": "Dona per avere una licenza di Pismo",
|
"PismoMessage": "Dona per avere una licenza di Pismo",
|
||||||
"TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
|
"TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
|
||||||
"HeaderCredits": "Crediti",
|
"HeaderCredits": "Crediti",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Programma",
|
"HeaderProgram": "Programma",
|
||||||
"HeaderClients": "Dispositivi",
|
"HeaderClients": "Dispositivi",
|
||||||
"LabelCompleted": "Completato",
|
"LabelCompleted": "Completato",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "Fallito",
|
||||||
"LabelSkipped": "Saltato",
|
"LabelSkipped": "Saltato",
|
||||||
"HeaderEpisodeOrganization": "Organizzazione Episodi",
|
"HeaderEpisodeOrganization": "Organizzazione Episodi",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Serie:",
|
||||||
"LabelSeasonNumber": "Numero Stagione:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Numero Episodio :",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Numero ultimo episodio:",
|
"LabelEndingEpisodeNumber": "Numero ultimo episodio:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
|
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "In esecuzione",
|
"TabNowPlaying": "In esecuzione",
|
||||||
"TabNavigation": "Navigazione",
|
"TabNavigation": "Navigazione",
|
||||||
"TabControls": "Controlli",
|
"TabControls": "Controlli",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scene",
|
"ButtonScenes": "Scene",
|
||||||
"ButtonSubtitles": "Sottotitoli",
|
"ButtonSubtitles": "Sottotitoli",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Traccia Precedente",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Traccia Successiva",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pausa",
|
"ButtonPause": "Pausa",
|
||||||
"ButtonNext": "Prossimo",
|
"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",
|
"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",
|
"MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota",
|
||||||
"ButtonDismiss": "Cancella",
|
"ButtonDismiss": "Cancella",
|
||||||
"ButtonMore": "Piu",
|
|
||||||
"ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.",
|
"ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Non identificata",
|
||||||
"OptionMissingParentalRating": "Voto genitori mancante",
|
"OptionMissingParentalRating": "Voto genitori mancante",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Stagione 0",
|
"OptionSeason0": "Stagione 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Canzoni",
|
"OptionReportSongs": "Canzoni",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Cantanti",
|
"OptionReportArtists": "Cantanti",
|
||||||
"OptionReportAlbums": "Album",
|
"OptionReportAlbums": "Album",
|
||||||
"OptionReportAdultVideos": "Video x adulti",
|
"OptionReportAdultVideos": "Video x adulti",
|
||||||
"ButtonMoreItems": "Dettagli",
|
"ButtonMore": "Piu",
|
||||||
"HeaderActivity": "Attivit\u00e0",
|
"HeaderActivity": "Attivit\u00e0",
|
||||||
"ScheduledTaskStartedWithName": "{0} Avviati",
|
"ScheduledTaskStartedWithName": "{0} Avviati",
|
||||||
"ScheduledTaskCancelledWithName": "{0} cancellati",
|
"ScheduledTaskCancelledWithName": "{0} cancellati",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Reset della Password",
|
"HeaderPasswordReset": "Reset della Password",
|
||||||
"HeaderParentalRatings": "Valutazioni genitori",
|
"HeaderParentalRatings": "Valutazioni genitori",
|
||||||
"HeaderVideoTypes": "Tipi Video",
|
"HeaderVideoTypes": "Tipi Video",
|
||||||
|
"HeaderYears": "Anni",
|
||||||
"HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
|
"HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
|
||||||
"LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
|
"LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata",
|
"LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Film in arrivo",
|
"HeaderUpcomingMovies": "Film in arrivo",
|
||||||
"HeaderUpcomingSports": "Sport in arrivo",
|
"HeaderUpcomingSports": "Sport in arrivo",
|
||||||
"HeaderUpcomingPrograms": "Programmi in arrivo",
|
"HeaderUpcomingPrograms": "Programmi in arrivo",
|
||||||
|
"ButtonMoreItems": "Dettagli",
|
||||||
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
|
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
|
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
|
||||||
"OptionEnableTranscodingThrottle": "Abilita il throttling",
|
"OptionEnableTranscodingThrottle": "Abilita il throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Guida all'installazione TV",
|
"HeaderSetupTVGuide": "Guida all'installazione TV",
|
||||||
"LabelDataProvider": "Fornitore di dati:",
|
"LabelDataProvider": "Fornitore di dati:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Imbottitura predefinito",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Sottotitoli",
|
"HeaderSubtitles": "Sottotitoli",
|
||||||
"HeaderVideos": "Video",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Organizza Autom.",
|
"TabAutoOrganize": "Organizza Autom.",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Aiuto",
|
"TabHelp": "Aiuto",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Qualit\u00e0",
|
"ButtonQuality": "Qualit\u00e0",
|
||||||
"HeaderNotifications": "Notifiche",
|
"HeaderNotifications": "Notifiche",
|
||||||
"HeaderSelectPlayer": "Utente selezionato :",
|
"HeaderSelectPlayer": "Utente selezionato :",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nuova playlist...",
|
"OptionNewPlaylist": "Nuova playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Vista delle serie in registrazione",
|
"ButtonViewSeriesRecording": "Vista delle serie in registrazione",
|
||||||
"ValueOriginalAirDate": "Prima messa in onda (originale): {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Rimuovi dalla playlist",
|
"ButtonRemoveFromPlaylist": "Rimuovi dalla playlist",
|
||||||
"HeaderSpecials": "Speciali",
|
"HeaderSpecials": "Speciali",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Album",
|
"HeaderAlbums": "Album",
|
||||||
"HeaderGames": "Giochi",
|
"HeaderGames": "Giochi",
|
||||||
"HeaderBooks": "Libri",
|
"HeaderBooks": "Libri",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Stagioni",
|
"HeaderSeasons": "Stagioni",
|
||||||
"HeaderTracks": "Traccia",
|
"HeaderTracks": "Traccia",
|
||||||
"HeaderItems": "Elementi",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Condividi",
|
||||||
"HeaderConfirm": "Conferma",
|
"HeaderConfirm": "Conferma",
|
||||||
"MessageConfirmDeleteTunerDevice": "Sei sicuro di voler cancellare questo dispositivo?",
|
"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?",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.",
|
||||||
"LabelLocalSyncStatusValue": "Stato {0}",
|
"LabelLocalSyncStatusValue": "Stato {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u0428\u044b\u0493\u0443",
|
||||||
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\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",
|
"LabelGithub": "GitHub",
|
||||||
"LabelSwagger": "Swagger \u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0456",
|
"LabelSwagger": "Swagger",
|
||||||
"LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b",
|
"LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b",
|
||||||
"LabelApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\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",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"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!",
|
"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",
|
"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",
|
"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:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
|
||||||
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
"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",
|
"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",
|
"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",
|
"FolderTypeHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"OptionRevenue": "\u0422\u0430\u0431\u044b\u0441",
|
"OptionRevenue": "\u0422\u0430\u0431\u044b\u0441",
|
||||||
"OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437",
|
"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",
|
"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",
|
"OptionBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442",
|
||||||
"OptionTimeline": "\u0423\u0430\u049b\u044b\u0442 \u0448\u043a\u0430\u043b\u0430\u0441\u044b",
|
"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",
|
"OptionContinuing": "\u0416\u0430\u043b\u0493\u0430\u0441\u0443\u0434\u0430",
|
||||||
"OptionEnded": "\u0410\u044f\u049b\u0442\u0430\u043b\u0434\u044b",
|
"OptionEnded": "\u0410\u044f\u049b\u0442\u0430\u043b\u0434\u044b",
|
||||||
"HeaderAirDays": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456",
|
"HeaderAirDays": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "\u0436\u0435\u043a",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "\u0434\u04af\u0439",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "\u0441\u0435\u0439",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "\u0441\u04d9\u0440",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "\u0431\u0435\u0439",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "\u0436\u04b1\u043c",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "\u0441\u0435\u043d",
|
||||||
"OptionSunday": "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
|
"OptionSunday": "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
|
||||||
"OptionMonday": "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
|
"OptionMonday": "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
|
||||||
"OptionTuesday": "\u0441\u0435\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",
|
"OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
|
||||||
"ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443",
|
"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",
|
"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.",
|
"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.",
|
"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",
|
"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.",
|
"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:",
|
"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.",
|
"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:",
|
"LabelRecordingPath": "\u0416\u0430\u0437\u0443\u0434\u044b\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0436\u043e\u043b\u044b:",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"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": "Series recording path (optional):",
|
"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": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
"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:",
|
"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.",
|
"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:",
|
"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",
|
"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",
|
"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",
|
"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",
|
"LabelMissing": "\u0416\u043e\u049b",
|
||||||
"LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441",
|
"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.",
|
"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:",
|
"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",
|
"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.",
|
"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:",
|
"LabelExternalDDNS": "\u0421\u044b\u0440\u0442\u049b\u044b \u0434\u043e\u043c\u0435\u043d:",
|
||||||
"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": "\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",
|
"TabResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
|
||||||
"TabWeather": "\u0410\u0443\u0430 \u0440\u0430\u0439\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",
|
"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",
|
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||||
"TabNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443",
|
"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",
|
"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",
|
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
|
||||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
"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",
|
"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",
|
"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",
|
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
|
||||||
"ButtonPause": "\u04ae\u0437\u0443",
|
"ButtonPause": "\u04ae\u0437\u0443",
|
||||||
"ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
|
"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:",
|
"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",
|
"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",
|
"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",
|
"HeaderSendMessage": "\u0425\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0443",
|
||||||
"ButtonSend": "\u0416\u0456\u0431\u0435\u0440\u0443",
|
"ButtonSend": "\u0416\u0456\u0431\u0435\u0440\u0443",
|
||||||
"LabelMessageText": "\u0425\u0430\u0431\u0430\u0440 \u043c\u04d9\u0442\u0456\u043d\u0456",
|
"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.",
|
"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.",
|
"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",
|
"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.",
|
"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:",
|
"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.",
|
"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",
|
"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",
|
"OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b",
|
||||||
"OptionStub": "\u0422\u044b\u0493\u044b\u043d",
|
"OptionStub": "\u0422\u044b\u0493\u044b\u043d",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
|
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
|
||||||
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
|
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
|
||||||
"OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
|
"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",
|
"OptionReportArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||||
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\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",
|
"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",
|
"HeaderActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
|
||||||
"ScheduledTaskStartedWithName": "{0} \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0434\u044b",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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:",
|
"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:",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"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:",
|
"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",
|
"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",
|
||||||
"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.",
|
|
||||||
"HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
|
"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",
|
"HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
||||||
"HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\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:",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"OptionBirthLocation": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b",
|
||||||
"LabelAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440",
|
"LabelAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "\u0416\u0430\u04a3\u0430",
|
||||||
"AttributePremiere": "Premiere",
|
"AttributePremiere": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440\u0456",
|
||||||
"AttributeLive": "Live",
|
"AttributeLive": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439",
|
||||||
"LabelHDProgram": "HD",
|
"LabelHDProgram": "HD",
|
||||||
"HeaderChangeFolderType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443",
|
"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.",
|
"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",
|
"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",
|
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
|
||||||
"TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430",
|
"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",
|
"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",
|
"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",
|
"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...",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
|
||||||
"HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
|
"HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
|
||||||
"HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\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",
|
"HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440",
|
||||||
"HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440",
|
"HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440",
|
||||||
"HeaderItems": "\u0422\u0430\u0440\u043c\u0430\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:",
|
"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:",
|
"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",
|
"OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443\u044b: {0}",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "\u0428\u044b\u0493\u0430\u0440\u0443 \u0436\u043e\u043b\u044b: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {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.",
|
"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.",
|
"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",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||||
"HeaderShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
|
||||||
"ButtonShareHelp": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b.",
|
|
||||||
"ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
"ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||||
"HeaderConfirm": "\u0420\u0430\u0441\u0442\u0430\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?",
|
"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?",
|
"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.",
|
"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",
|
"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",
|
"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.",
|
"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}",
|
"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",
|
"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?",
|
"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.",
|
"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...",
|
"ButtonForYou": "\u0421\u0456\u0437 \u04af\u0448\u0456\u043d...",
|
||||||
"ButtonLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430...",
|
"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...",
|
"ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...",
|
||||||
|
@ -2325,7 +2316,7 @@
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Cover Art",
|
||||||
"ButtonOff": "\u04e8\u0448\u0456\u0440",
|
"ButtonOff": "\u04e8\u0448\u0456\u0440",
|
||||||
"TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443",
|
"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",
|
"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",
|
"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",
|
"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.",
|
"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",
|
"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",
|
"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.",
|
"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": "Only download subtitles that are a perfect match for my video files",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"Yesterday": "\u0412\u0447\u0435\u0440\u0430",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"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": "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.",
|
"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:",
|
"LabelTitle": "\u0410\u0442\u0430\u0443\u044b:",
|
||||||
"LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\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",
|
"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",
|
"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": "This will provide better audio but may require transcoding during playback on some devices.",
|
"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": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
"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": "Health Monitor",
|
"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": "There are no active alerts."
|
"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",
|
"LabelExit": "\uc885\ub8cc",
|
||||||
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
|
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815",
|
"ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30",
|
"RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30",
|
"HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30",
|
||||||
"LabelSyncTempPath": "\uc784\uc2dc \ud30c\uc77c \uacbd\ub85c:",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "\ub3d9\uae30\ud654 \uc791\uc5c5",
|
||||||
"FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\ud2b8",
|
"FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\uce20",
|
||||||
"FolderTypeMovies": "\uc601\ud654",
|
"FolderTypeMovies": "\uc601\ud654",
|
||||||
"FolderTypeMusic": "\uc74c\uc545",
|
"FolderTypeMusic": "\uc74c\uc545",
|
||||||
"FolderTypeAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
|
|
||||||
"FolderTypePhotos": "\uc0ac\uc9c4",
|
"FolderTypePhotos": "\uc0ac\uc9c4",
|
||||||
"FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624",
|
"FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624",
|
||||||
"FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624",
|
"FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "\uc624\ub984\ucc28\uc21c",
|
"OptionAscending": "\uc624\ub984\ucc28\uc21c",
|
||||||
"OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c",
|
"OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c",
|
||||||
"OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04",
|
"OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "\uac1c\ubd09\uc77c",
|
||||||
"OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218",
|
"OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218",
|
||||||
"OptionDatePlayed": "Date Played",
|
"OptionDatePlayed": "Date Played",
|
||||||
"OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc",
|
"OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\uc608\uc0b0",
|
"OptionBudget": "\uc608\uc0b0",
|
||||||
"OptionRevenue": "\uc218\uc775",
|
"OptionRevenue": "\uc218\uc775",
|
||||||
"OptionPoster": "\ud3ec\uc2a4\ud130",
|
"OptionPoster": "\ud3ec\uc2a4\ud130",
|
||||||
"HeaderYears": "\uc5f0\ub3c4",
|
|
||||||
"OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc",
|
"OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc",
|
||||||
"OptionBackdrop": "\ubc30\uacbd",
|
"OptionBackdrop": "\ubc30\uacbd",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "\uc120\ud0dd",
|
"ButtonSelect": "\uc120\ud0dd",
|
||||||
"ButtonGroupVersions": "\uadf8\ub8f9 \ubc84\uc804",
|
"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.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "\ud06c\ub808\ub514\ud2b8",
|
"HeaderCredits": "\ud06c\ub808\ub514\ud2b8",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "\ubc30\uc5ed \ubc0f \uc81c\uc791\uc9c4",
|
"HeaderCastCrew": "\ubc30\uc5ed \ubc0f \uc81c\uc791\uc9c4",
|
||||||
"HeaderAdditionalParts": "Additional Parts",
|
"HeaderAdditionalParts": "Additional Parts",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "\uc608\uace0\ud3b8",
|
||||||
"LabelMissing": "Missing",
|
"LabelMissing": "Missing",
|
||||||
"LabelOffline": "\uc624\ud504\ub77c\uc778",
|
"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.",
|
"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",
|
"HeaderProgram": "\ud504\ub85c\uadf8\ub7a8",
|
||||||
"HeaderClients": "\ud074\ub77c\uc774\uc5b8\ud2b8",
|
"HeaderClients": "\ud074\ub77c\uc774\uc5b8\ud2b8",
|
||||||
"LabelCompleted": "\uc644\ub8cc",
|
"LabelCompleted": "\uc644\ub8cc",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\uc2e4\ud328",
|
||||||
"LabelSkipped": "\uac74\ub108\ub700",
|
"LabelSkipped": "\uac74\ub108\ub700",
|
||||||
"HeaderEpisodeOrganization": "\uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131",
|
"HeaderEpisodeOrganization": "\uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "\uc2dc\ub9ac\uc988:",
|
||||||
"LabelSeasonNumber": "Season number:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Episode number:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:",
|
"LabelEndingEpisodeNumber": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
|
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
|
||||||
"TabNavigation": "\ud0d0\uc0c9",
|
"TabNavigation": "\ud0d0\uc0c9",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "\uc7a5\uba74",
|
"ButtonScenes": "\uc7a5\uba74",
|
||||||
"ButtonSubtitles": "\uc790\ub9c9",
|
"ButtonSubtitles": "\uc790\ub9c9",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "\uc774\uc804 \ud2b8\ub799",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "\ub2e4\uc74c \ud2b8\ub799",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "\uc911\uc9c0",
|
"ButtonStop": "\uc911\uc9c0",
|
||||||
"ButtonPause": "\uc77c\uc2dc \uc911\uc9c0",
|
"ButtonPause": "\uc77c\uc2dc \uc911\uc9c0",
|
||||||
"ButtonNext": "\ub2e4\uc74c",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "\uc774 \uc7ac\uc0dd\ubaa9\ub85d\uc740 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"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.",
|
"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:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "\uc2dc\uc98c 0",
|
"OptionSeason0": "\uc2dc\uc98c 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "\ub178\ub798",
|
"OptionReportSongs": "\ub178\ub798",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "\uc544\ud2f0\uc2a4\ud2b8",
|
"OptionReportArtists": "\uc544\ud2f0\uc2a4\ud2b8",
|
||||||
"OptionReportAlbums": "\uc568\ubc94",
|
"OptionReportAlbums": "\uc568\ubc94",
|
||||||
"OptionReportAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
|
"OptionReportAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428",
|
"ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428",
|
||||||
"ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428",
|
"ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654",
|
"HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654",
|
||||||
"HeaderParentalRatings": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09",
|
"HeaderParentalRatings": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09",
|
||||||
"HeaderVideoTypes": "\ube44\ub514\uc624 \uc885\ub958",
|
"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:",
|
"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:",
|
"LabelBlockContentWithTags": "\ub2e4\uc74c \ud0dc\uadf8\uac00 \uc788\ub294 \ucf58\ud150\ud2b8 \ucc28\ub2e8:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654",
|
"HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654",
|
||||||
"HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20",
|
"HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20",
|
||||||
"HeaderUpcomingPrograms": "\uc608\uc815 \ud504\ub85c\uadf8\ub7a8",
|
"HeaderUpcomingPrograms": "\uc608\uc815 \ud504\ub85c\uadf8\ub7a8",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "throttling \uc0ac\uc6a9",
|
"OptionEnableTranscodingThrottle": "throttling \uc0ac\uc6a9",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815",
|
"HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815",
|
||||||
"LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:",
|
"LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "\uae30\ubcf8 \uc5ec\ubc31",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "\uc790\ub9c9",
|
"HeaderSubtitles": "\uc790\ub9c9",
|
||||||
"HeaderVideos": "\ube44\ub514\uc624",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "\uc11c\ubc84 \ub300\uc2dc\ubcf4\ub4dc",
|
"ButtonServerDashboard": "\uc11c\ubc84 \ub300\uc2dc\ubcf4\ub4dc",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131",
|
"TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131",
|
||||||
"TabPlugins": "\ud50c\ub7ec\uadf8\uc778",
|
"TabPlugins": "\ud50c\ub7ec\uadf8\uc778",
|
||||||
"TabHelp": "\ub3c4\uc6c0\ub9d0",
|
"TabHelp": "\ub3c4\uc6c0\ub9d0",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "\ud488\uc9c8",
|
"ButtonQuality": "\ud488\uc9c8",
|
||||||
"HeaderNotifications": "\uc54c\ub9bc",
|
"HeaderNotifications": "\uc54c\ub9bc",
|
||||||
"HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd",
|
"HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "\uc0c8 \uc7ac\uc0dd\ubaa9\ub85d...",
|
"OptionNewPlaylist": "\uc0c8 \uc7ac\uc0dd\ubaa9\ub85d...",
|
||||||
"MessageAddedToPlaylistSuccess": "OK",
|
"MessageAddedToPlaylistSuccess": "OK",
|
||||||
"ButtonViewSeriesRecording": "\uc2dc\ub9ac\uc988 \ub179\ud654 \ubcf4\uae30",
|
"ButtonViewSeriesRecording": "\uc2dc\ub9ac\uc988 \ub179\ud654 \ubcf4\uae30",
|
||||||
"ValueOriginalAirDate": "\ucd5c\ucd08 \ubc29\uc1a1\uc77c: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0\uc11c \uc81c\uac70",
|
"ButtonRemoveFromPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0\uc11c \uc81c\uac70",
|
||||||
"HeaderSpecials": "\uc2a4\ud398\uc15c",
|
"HeaderSpecials": "\uc2a4\ud398\uc15c",
|
||||||
"HeaderTrailers": "\uc608\uace0\ud3b8",
|
"HeaderTrailers": "\uc608\uace0\ud3b8",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\uc568\ubc94",
|
"HeaderAlbums": "\uc568\ubc94",
|
||||||
"HeaderGames": "\uac8c\uc784",
|
"HeaderGames": "\uac8c\uc784",
|
||||||
"HeaderBooks": "\ucc45",
|
"HeaderBooks": "\ucc45",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "\uc2dc\uc98c",
|
"HeaderSeasons": "\uc2dc\uc98c",
|
||||||
"HeaderTracks": "\ud2b8\ub799",
|
"HeaderTracks": "\ud2b8\ub799",
|
||||||
"HeaderItems": "\ud56d\ubaa9",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "\uacf5\uc720",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "\uc774 \uc7a5\uce58\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Tutup",
|
||||||
"LabelVisitCommunity": "Melawat Masyarakat",
|
"LabelVisitCommunity": "Melawat Masyarakat",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Avslutt",
|
||||||
"LabelVisitCommunity": "Bes\u00f8k samfunn",
|
"LabelVisitCommunity": "Bes\u00f8k samfunn",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfigurer PIN-kode",
|
"ButtonConfigurePinCode": "Konfigurer PIN-kode",
|
||||||
"HeaderAdultsReadHere": "Voksne les her!",
|
"HeaderAdultsReadHere": "Voksne les her!",
|
||||||
"RegisterWithPayPal": "Registrer med PayPal",
|
"RegisterWithPayPal": "Registrer med PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever Emby Premiere abonnement.",
|
|
||||||
"HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
|
"HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
|
||||||
"LabelSyncTempPath": "Midlertidig fil-sti:",
|
"LabelSyncTempPath": "Midlertidig fil-sti:",
|
||||||
"LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.",
|
"LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.",
|
||||||
|
@ -91,10 +89,9 @@
|
||||||
"LabelEnableEnhancedMovies": "Aktiver forbedrede filmvisning",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "Synk.jobb",
|
||||||
"FolderTypeMixed": "Forskjellig innhold",
|
"FolderTypeMixed": "Blandet innhold",
|
||||||
"FolderTypeMovies": "Filmer",
|
"FolderTypeMovies": "Filmer",
|
||||||
"FolderTypeMusic": "Musikk",
|
"FolderTypeMusic": "Musikk",
|
||||||
"FolderTypeAdultVideos": "Voksen-videoer",
|
|
||||||
"FolderTypePhotos": "Foto",
|
"FolderTypePhotos": "Foto",
|
||||||
"FolderTypeMusicVideos": "Musikk-videoer",
|
"FolderTypeMusicVideos": "Musikk-videoer",
|
||||||
"FolderTypeHomeVideos": "Hjemme-videoer",
|
"FolderTypeHomeVideos": "Hjemme-videoer",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "\u00d8kende",
|
"OptionAscending": "\u00d8kende",
|
||||||
"OptionDescending": "Synkende",
|
"OptionDescending": "Synkende",
|
||||||
"OptionRuntime": "Spilletid",
|
"OptionRuntime": "Spilletid",
|
||||||
"OptionReleaseDate": "Utgivelse Dato",
|
"OptionReleaseDate": "Uttgitt dato",
|
||||||
"OptionPlayCount": "Antall avspillinger",
|
"OptionPlayCount": "Antall avspillinger",
|
||||||
"OptionDatePlayed": "Dato spilt",
|
"OptionDatePlayed": "Dato spilt",
|
||||||
"OptionDateAdded": "Dato lagt til",
|
"OptionDateAdded": "Dato lagt til",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budsjett",
|
"OptionBudget": "Budsjett",
|
||||||
"OptionRevenue": "Inntjening",
|
"OptionRevenue": "Inntjening",
|
||||||
"OptionPoster": "Plakat",
|
"OptionPoster": "Plakat",
|
||||||
"HeaderYears": "\u00c5r",
|
|
||||||
"OptionPosterCard": "Plakatkort",
|
"OptionPosterCard": "Plakatkort",
|
||||||
"OptionBackdrop": "Bakgrunn",
|
"OptionBackdrop": "Bakgrunn",
|
||||||
"OptionTimeline": "Tidslinje",
|
"OptionTimeline": "Tidslinje",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Velg",
|
"ButtonSelect": "Velg",
|
||||||
"ButtonGroupVersions": "Gruppeversjoner",
|
"ButtonGroupVersions": "Gruppeversjoner",
|
||||||
"ButtonAddToCollection": "Legg til i samling",
|
"ButtonAddToCollection": "Legg til samling",
|
||||||
"PismoMessage": "Utnytte Pismo File Mount gjennom en donert lisens.",
|
"PismoMessage": "Utnytte Pismo File Mount gjennom en donert lisens.",
|
||||||
"TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
|
"TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -351,9 +347,9 @@
|
||||||
"LabelCustomPaths": "Angi egendefinerte stier der du \u00f8nsker. La feltene st\u00e5 tomme for \u00e5 bruke standardinnstillingene.",
|
"LabelCustomPaths": "Angi egendefinerte stier der du \u00f8nsker. La feltene st\u00e5 tomme for \u00e5 bruke standardinnstillingene.",
|
||||||
"LabelCachePath": "Buffer sti:",
|
"LabelCachePath": "Buffer sti:",
|
||||||
"LabelCachePathHelp": "Angi en egendefinert plassering for server cache-filer, for eksempel bilder. La st\u00e5 tomt for \u00e5 bruke serveren standard.",
|
"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:",
|
"LabelRecordingPath": "Standard opptaks bane",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"LabelMovieRecordingPath": "Filmopptak sti (valgfritt):",
|
||||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
"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.",
|
"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:",
|
"LabelImagesByNamePath": "Bilder etter navn sti:",
|
||||||
"LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.",
|
"LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.",
|
||||||
|
@ -566,7 +562,7 @@
|
||||||
"LabelEnableAutomaticPortMap": "Aktiver automatisk portmapping",
|
"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.",
|
"LabelEnableAutomaticPortMapHelp": "Fors\u00f8k automatisk mapping av den offentlige port til den lokale port via UPnP. Dette fungerer ikke med alle rutere.",
|
||||||
"LabelExternalDDNS": "Eksternt domene:",
|
"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",
|
"TabResume": "Forsette",
|
||||||
"TabWeather": "V\u00e6r",
|
"TabWeather": "V\u00e6r",
|
||||||
"TitleAppSettings": "App-innstillinger",
|
"TitleAppSettings": "App-innstillinger",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Spilles Av",
|
"TabNowPlaying": "Spilles Av",
|
||||||
"TabNavigation": "Navigering",
|
"TabNavigation": "Navigering",
|
||||||
"TabControls": "Kontrollerer",
|
"TabControls": "Kontrollerer",
|
||||||
"ButtonFullscreen": "Fullskjerm",
|
|
||||||
"ButtonScenes": "Scener",
|
"ButtonScenes": "Scener",
|
||||||
"ButtonSubtitles": "Undertekster",
|
"ButtonSubtitles": "Undertekster",
|
||||||
"ButtonPreviousTrack": "Forrige lydspor",
|
"ButtonPreviousTrack": "Forrige Spor",
|
||||||
"ButtonNextTrack": "Neste lydspor",
|
"ButtonNextTrack": "Neste Spor",
|
||||||
"ButtonAudioTracks": "Lydspor",
|
|
||||||
"ButtonStop": "Stopp",
|
"ButtonStop": "Stopp",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Neste",
|
"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.",
|
"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",
|
"MessageNoPlaylistItemsAvailable": "Denne spillelisten er forel\u00f8pig tom",
|
||||||
"ButtonDismiss": "Avvis",
|
"ButtonDismiss": "Avvis",
|
||||||
"ButtonMore": "Mer",
|
|
||||||
"ButtonEditOtherUserPreferences": "Endre denne brukeren sin profilbilde og personlige innstillinger.",
|
"ButtonEditOtherUserPreferences": "Endre denne brukeren sin profilbilde og personlige innstillinger.",
|
||||||
"LabelChannelStreamQuality": "Foretrukket internet kanalkvalitet:",
|
"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.",
|
"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",
|
"OptionUnidentified": "uidentifisert",
|
||||||
"OptionMissingParentalRating": "Mangler foreldresensur",
|
"OptionMissingParentalRating": "Mangler foreldresensur",
|
||||||
"OptionStub": "stump",
|
"OptionStub": "stump",
|
||||||
"HeaderEpisodes": "Episoder:",
|
|
||||||
"OptionSeason0": "Sesong 0",
|
"OptionSeason0": "Sesong 0",
|
||||||
"LabelReport": "Rapport:",
|
"LabelReport": "Rapport:",
|
||||||
"OptionReportSongs": "Sanger:",
|
"OptionReportSongs": "Sanger:",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artisert",
|
"OptionReportArtists": "Artisert",
|
||||||
"OptionReportAlbums": "Albumer",
|
"OptionReportAlbums": "Albumer",
|
||||||
"OptionReportAdultVideos": "Voksen videoer",
|
"OptionReportAdultVideos": "Voksen videoer",
|
||||||
"ButtonMoreItems": "Mere",
|
"ButtonMore": "Mer",
|
||||||
"HeaderActivity": "Aktivitet",
|
"HeaderActivity": "Aktivitet",
|
||||||
"ScheduledTaskStartedWithName": "{0} startet",
|
"ScheduledTaskStartedWithName": "{0} startet",
|
||||||
"ScheduledTaskCancelledWithName": "{0} ble avbrutt",
|
"ScheduledTaskCancelledWithName": "{0} ble avbrutt",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Resett passord",
|
"HeaderPasswordReset": "Resett passord",
|
||||||
"HeaderParentalRatings": "Foreldresensur",
|
"HeaderParentalRatings": "Foreldresensur",
|
||||||
"HeaderVideoTypes": "Videotyper",
|
"HeaderVideoTypes": "Videotyper",
|
||||||
|
"HeaderYears": "\u00c5r",
|
||||||
"HeaderBlockItemsWithNoRating": "Blokkere innhold med ingen eller ukjent aldersgrense.",
|
"HeaderBlockItemsWithNoRating": "Blokkere innhold med ingen eller ukjent aldersgrense.",
|
||||||
"LabelBlockContentWithTags": "Blokker innhold med f\u00f8lgende tags:",
|
"LabelBlockContentWithTags": "Blokker innhold med f\u00f8lgende tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Maksimalt et innebygd bilde",
|
"LabelEnableSingleImageInDidlLimit": "Maksimalt et innebygd bilde",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Kommende filmer",
|
"HeaderUpcomingMovies": "Kommende filmer",
|
||||||
"HeaderUpcomingSports": "Kommende sport",
|
"HeaderUpcomingSports": "Kommende sport",
|
||||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||||
|
"ButtonMoreItems": "Mere",
|
||||||
"LabelShowLibraryTileNames": "Vis bibliotek filnavn",
|
"LabelShowLibraryTileNames": "Vis bibliotek filnavn",
|
||||||
"LabelShowLibraryTileNamesHelp": "Bestemmer om etikettene vil bli vist under bibliotek fliser p\u00e5 hjemmesiden",
|
"LabelShowLibraryTileNamesHelp": "Bestemmer om etikettene vil bli vist under bibliotek fliser p\u00e5 hjemmesiden",
|
||||||
"OptionEnableTranscodingThrottle": "Aktiver struping",
|
"OptionEnableTranscodingThrottle": "Aktiver struping",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Sett opp TV Guide",
|
"HeaderSetupTVGuide": "Sett opp TV Guide",
|
||||||
"LabelDataProvider": "Dataleverand\u00f8rer",
|
"LabelDataProvider": "Dataleverand\u00f8rer",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Aktivere auto-organisering av nye opptak in til eksisterende mapper for serier i andre biblioteker.",
|
"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",
|
"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",
|
"HeaderSubtitles": "Undertekster",
|
||||||
"HeaderVideos": "Filmer",
|
"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:",
|
"LabelHardwareAccelerationType": "Maskinvareakselerasjon:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Kun tilgjengelig p\u00e5 systemer som st\u00f8ttes.",
|
"LabelHardwareAccelerationTypeHelp": "Kun tilgjengelig p\u00e5 systemer som st\u00f8ttes.",
|
||||||
"ButtonServerDashboard": "Server dashboard",
|
"ButtonServerDashboard": "Server dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-organiser",
|
"TabAutoOrganize": "Auto-organiser",
|
||||||
"TabPlugins": "Programtillegg",
|
"TabPlugins": "Programtillegg",
|
||||||
"TabHelp": "Hjelp",
|
"TabHelp": "Hjelp",
|
||||||
|
"ButtonFullscreen": "Fullskjerm",
|
||||||
|
"ButtonAudioTracks": "Lydspor",
|
||||||
"ButtonQuality": "Kvalitet",
|
"ButtonQuality": "Kvalitet",
|
||||||
"HeaderNotifications": "Melding",
|
"HeaderNotifications": "Melding",
|
||||||
"HeaderSelectPlayer": "Velg avspiller",
|
"HeaderSelectPlayer": "Velg avspiller",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Ny spilleliste...",
|
"OptionNewPlaylist": "Ny spilleliste...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Se serie opptak",
|
"ButtonViewSeriesRecording": "Se serie opptak",
|
||||||
"ValueOriginalAirDate": "Original lanseringsdato: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Fjern fra spilleliste",
|
"ButtonRemoveFromPlaylist": "Fjern fra spilleliste",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailere",
|
"HeaderTrailers": "Trailere",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albumer",
|
"HeaderAlbums": "Albumer",
|
||||||
"HeaderGames": "Spill",
|
"HeaderGames": "Spill",
|
||||||
"HeaderBooks": "B\u00f8ker",
|
"HeaderBooks": "B\u00f8ker",
|
||||||
|
"HeaderEpisodes": "Episoder:",
|
||||||
"HeaderSeasons": "Sesonger",
|
"HeaderSeasons": "Sesonger",
|
||||||
"HeaderTracks": "Spor",
|
"HeaderTracks": "Spor",
|
||||||
"HeaderItems": "Elementer",
|
"HeaderItems": "Elementer",
|
||||||
|
@ -2104,9 +2096,9 @@
|
||||||
"LabelFullReview": "Full anmeldelse:",
|
"LabelFullReview": "Full anmeldelse:",
|
||||||
"LabelShortRatingDescription": "Kort sammendrag av vurdering:",
|
"LabelShortRatingDescription": "Kort sammendrag av vurdering:",
|
||||||
"OptionIRecommendThisItem": "Jeg anbefaler dette elementet",
|
"OptionIRecommendThisItem": "Jeg anbefaler dette elementet",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ender p\u00e5 {0}",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "Utgivelse \u00e5r: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {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.",
|
"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",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Del",
|
||||||
"HeaderShare": "Del",
|
|
||||||
"ButtonShareHelp": "Del en nettside som inneholder medieinformasjon p\u00e5 sosiale medier. Mediefiler blir aldri delt offentlig.",
|
|
||||||
"ButtonShare": "Del",
|
"ButtonShare": "Del",
|
||||||
"HeaderConfirm": "Bekreft",
|
"HeaderConfirm": "Bekreft",
|
||||||
"MessageConfirmDeleteTunerDevice": "Er du sikker p\u00e5 at du vil slette denne enheten?",
|
"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?",
|
"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.",
|
"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.",
|
"OptionEnableDisplayMirroring": "Aktiver skjerm speiling.",
|
||||||
|
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever Emby Premiere abonnement.",
|
||||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synkronisering krever tilkobling til en Emby Server med et aktivt 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.",
|
"ErrorValidatingSupporterInfo": "Det oppstod en feil under validering din Emby Premiere informasjon. Vennligst pr\u00f8v igjen senere.",
|
||||||
"LabelLocalSyncStatusValue": "Status {0}",
|
"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.",
|
"MessageTryMicrosoftEdge": "For en bedre opplevelse p\u00e5 Windows 10, kan du pr\u00f8ve den nye Microsoft Edge nettleseren.",
|
||||||
"HeaderTryModernBrowser": "Pr\u00f8v en moderne nettleser",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"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:",
|
"LabelSortTitle": "Forkortet tittel:",
|
||||||
"OptionConvertRecordingPreserveAudio": "Bevare opprinnelige lyd ved konvertering opptak",
|
"OptionConvertRecordingPreserveAudio": "Bevare opprinnelige lyd ved konvertering opptak",
|
||||||
"OptionConvertRecordingPreserveAudioHelp": "Denne leverand\u00f8ren gir bedre lyd, men kan kreve transcoding under avspilling p\u00e5 enkelte enheter.",
|
"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.",
|
"CreateCollectionHelp": "Samlinger tillate deg \u00e5 lage personlige grupperinger av filmer og annet bibliotek innhold.",
|
||||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
"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": "Health Monitor",
|
"HeaderHealthMonitor": "Helse Overv\u00e5ker",
|
||||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
"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",
|
"LabelExit": "Afsluiten",
|
||||||
"LabelVisitCommunity": "Bezoek Gemeenschap",
|
"LabelVisitCommunity": "Bezoek Gemeenschap",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configureer pincode",
|
"ButtonConfigurePinCode": "Configureer pincode",
|
||||||
"HeaderAdultsReadHere": "Volwassenen Lees hier!",
|
"HeaderAdultsReadHere": "Volwassenen Lees hier!",
|
||||||
"RegisterWithPayPal": "Registreer met PayPal",
|
"RegisterWithPayPal": "Registreer met PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een actief Premiere lidmaatschap.",
|
|
||||||
"HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
|
"HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
|
||||||
"LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
|
"LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
|
||||||
"LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.",
|
"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",
|
"FolderTypeMixed": "Gemengde inhoud",
|
||||||
"FolderTypeMovies": "Films",
|
"FolderTypeMovies": "Films",
|
||||||
"FolderTypeMusic": "Muziek",
|
"FolderTypeMusic": "Muziek",
|
||||||
"FolderTypeAdultVideos": "Adult video's",
|
|
||||||
"FolderTypePhotos": "Foto's",
|
"FolderTypePhotos": "Foto's",
|
||||||
"FolderTypeMusicVideos": "Muziek video's",
|
"FolderTypeMusicVideos": "Muziek video's",
|
||||||
"FolderTypeHomeVideos": "Thuis video's",
|
"FolderTypeHomeVideos": "Thuis video's",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Oplopend",
|
"OptionAscending": "Oplopend",
|
||||||
"OptionDescending": "Aflopend",
|
"OptionDescending": "Aflopend",
|
||||||
"OptionRuntime": "Speelduur",
|
"OptionRuntime": "Speelduur",
|
||||||
"OptionReleaseDate": "Datum van uitgifte",
|
"OptionReleaseDate": "Uitgave datum",
|
||||||
"OptionPlayCount": "Afspeel telling",
|
"OptionPlayCount": "Afspeel telling",
|
||||||
"OptionDatePlayed": "Datum afgespeeld",
|
"OptionDatePlayed": "Datum afgespeeld",
|
||||||
"OptionDateAdded": "Datum toegevoegd",
|
"OptionDateAdded": "Datum toegevoegd",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Inkomsten",
|
"OptionRevenue": "Inkomsten",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Jaren",
|
|
||||||
"OptionPosterCard": "Poster kaart",
|
"OptionPosterCard": "Poster kaart",
|
||||||
"OptionBackdrop": "Achtergrond",
|
"OptionBackdrop": "Achtergrond",
|
||||||
"OptionTimeline": "Tijdlijn",
|
"OptionTimeline": "Tijdlijn",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Selecteer",
|
"ButtonSelect": "Selecteer",
|
||||||
"ButtonGroupVersions": "Groepeer Versies",
|
"ButtonGroupVersions": "Groepeer Versies",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Toevoegen aan Collectie",
|
||||||
"PismoMessage": "Pismo File Mount (met een geschonken licentie).",
|
"PismoMessage": "Pismo File Mount (met een geschonken licentie).",
|
||||||
"TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
|
"TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -351,10 +347,10 @@
|
||||||
"LabelCustomPaths": "Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.",
|
"LabelCustomPaths": "Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.",
|
||||||
"LabelCachePath": "Cache pad:",
|
"LabelCachePath": "Cache pad:",
|
||||||
"LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.",
|
"LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.",
|
||||||
"LabelRecordingPath": "Default recording path:",
|
"LabelRecordingPath": "Standaard opname pad:",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"LabelMovieRecordingPath": "Filmopname pad (optioneel):",
|
||||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
"LabelSeriesRecordingPath": "Serieopname pad (optioneel):",
|
||||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
"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:",
|
"LabelImagesByNamePath": "Afbeeldingen op naam pad:",
|
||||||
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
|
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
|
||||||
"LabelMetadataPath": "Metadata pad:",
|
"LabelMetadataPath": "Metadata pad:",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "Cast & Crew",
|
"HeaderCastCrew": "Cast & Crew",
|
||||||
"HeaderAdditionalParts": "Extra onderdelen",
|
"HeaderAdditionalParts": "Extra onderdelen",
|
||||||
"ButtonSplitVersionsApart": "Splits Versies Apart",
|
"ButtonSplitVersionsApart": "Splits Versies Apart",
|
||||||
"ButtonPlayTrailer": "Trailer afspelen",
|
"ButtonPlayTrailer": "Trailer",
|
||||||
"LabelMissing": "Ontbreekt",
|
"LabelMissing": "Ontbreekt",
|
||||||
"LabelOffline": "Offline",
|
"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.",
|
"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:",
|
"LabelWebSocketPortNumber": "Web socket poortnummer:",
|
||||||
"LabelEnableAutomaticPortMap": "Schakel automatisch poort vertalen in",
|
"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.",
|
"LabelEnableAutomaticPortMapHelp": "Probeer om de publieke poort automatisch te vertalen naar de lokale poort via UPnP. Dit werkt niet op alle routers.",
|
||||||
"LabelExternalDDNS": "External domain:",
|
"LabelExternalDDNS": "Extern domein:",
|
||||||
"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": "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",
|
"TabResume": "Hervatten",
|
||||||
"TabWeather": "Weer",
|
"TabWeather": "Weer",
|
||||||
"TitleAppSettings": "App Instellingen",
|
"TitleAppSettings": "App Instellingen",
|
||||||
|
@ -592,8 +588,8 @@
|
||||||
"LabelSkipped": "Overgeslagen",
|
"LabelSkipped": "Overgeslagen",
|
||||||
"HeaderEpisodeOrganization": "Afleveringen Organisatie",
|
"HeaderEpisodeOrganization": "Afleveringen Organisatie",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Series:",
|
||||||
"LabelSeasonNumber": "Seizoen nummer:",
|
"LabelSeasonNumber": "Seizoensnummer:",
|
||||||
"LabelEpisodeNumber": "Aflevering nummer:",
|
"LabelEpisodeNumber": "Afleveringsnummer:",
|
||||||
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
|
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
|
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
|
||||||
"OptionRememberOrganizeCorrection": "Bewaar correctie en gebruik deze bij toekomstige bestanden met een lijkende naam",
|
"OptionRememberOrganizeCorrection": "Bewaar correctie en gebruik deze bij toekomstige bestanden met een lijkende naam",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Wordt nu afgespeeld",
|
"TabNowPlaying": "Wordt nu afgespeeld",
|
||||||
"TabNavigation": "Navigatie",
|
"TabNavigation": "Navigatie",
|
||||||
"TabControls": "Besturing",
|
"TabControls": "Besturing",
|
||||||
"ButtonFullscreen": "Volledig scherm",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Ondertiteling",
|
"ButtonSubtitles": "Ondertiteling",
|
||||||
"ButtonPreviousTrack": "Vorig nummer",
|
"ButtonPreviousTrack": "Vorige track",
|
||||||
"ButtonNextTrack": "Volgend nummer",
|
"ButtonNextTrack": "Volgende track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pauze",
|
"ButtonPause": "Pauze",
|
||||||
"ButtonNext": "Volgende",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.",
|
||||||
"ButtonDismiss": "Afwijzen",
|
"ButtonDismiss": "Afwijzen",
|
||||||
"ButtonMore": "Meer",
|
|
||||||
"ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.",
|
"ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.",
|
||||||
"LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:",
|
"LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:",
|
||||||
"LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.",
|
"LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Onge\u00efdentificeerd",
|
"OptionUnidentified": "Onge\u00efdentificeerd",
|
||||||
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
|
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Afleveringen",
|
|
||||||
"OptionSeason0": "Seizoen 0",
|
"OptionSeason0": "Seizoen 0",
|
||||||
"LabelReport": "Rapport:",
|
"LabelReport": "Rapport:",
|
||||||
"OptionReportSongs": "Nummers",
|
"OptionReportSongs": "Nummers",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artiesten",
|
"OptionReportArtists": "Artiesten",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult video's",
|
"OptionReportAdultVideos": "Adult video's",
|
||||||
"ButtonMoreItems": "Meer",
|
"ButtonMore": "Meer",
|
||||||
"HeaderActivity": "Activiteit",
|
"HeaderActivity": "Activiteit",
|
||||||
"ScheduledTaskStartedWithName": "{0} is gestart",
|
"ScheduledTaskStartedWithName": "{0} is gestart",
|
||||||
"ScheduledTaskCancelledWithName": "{0} is geannuleerd",
|
"ScheduledTaskCancelledWithName": "{0} is geannuleerd",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Wachtwoord resetten",
|
"HeaderPasswordReset": "Wachtwoord resetten",
|
||||||
"HeaderParentalRatings": "Ouderlijke toezicht",
|
"HeaderParentalRatings": "Ouderlijke toezicht",
|
||||||
"HeaderVideoTypes": "Video types",
|
"HeaderVideoTypes": "Video types",
|
||||||
|
"HeaderYears": "Jaren",
|
||||||
"HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
|
"HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
|
||||||
"LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
|
"LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding",
|
"LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Films binnenkort",
|
"HeaderUpcomingMovies": "Films binnenkort",
|
||||||
"HeaderUpcomingSports": "Sport binnenkort",
|
"HeaderUpcomingSports": "Sport binnenkort",
|
||||||
"HeaderUpcomingPrograms": "Programma's binnenkort",
|
"HeaderUpcomingPrograms": "Programma's binnenkort",
|
||||||
|
"ButtonMoreItems": "Meer",
|
||||||
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
|
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
|
||||||
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
|
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
|
||||||
"OptionEnableTranscodingThrottle": "Throtteling inschakelen",
|
"OptionEnableTranscodingThrottle": "Throtteling inschakelen",
|
||||||
|
@ -1494,15 +1488,11 @@
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.",
|
||||||
"HeaderSetupTVGuide": "TV Gids configureren",
|
"HeaderSetupTVGuide": "TV Gids configureren",
|
||||||
"LabelDataProvider": "Gegevensleverancier:",
|
"LabelDataProvider": "Gegevensleverancier:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"OptionSendRecordingsToAutoOrganize": "Automatisch organiseren van opnames in de bestaande serie mappen van andere bibliotheken",
|
||||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nieuwe opnamen zullen door de Automatisch Organiseren functionaliteit in uw media bilbiliotheek ge\u00efmporteerd worden.",
|
|
||||||
"HeaderDefaultPadding": "Standaard 'Padding'",
|
"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",
|
"HeaderSubtitles": "Ondertiteling",
|
||||||
"HeaderVideos": "Video's",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleratie:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Alleen beschikbaar op ondersteunde systemen.",
|
"LabelHardwareAccelerationTypeHelp": "Alleen beschikbaar op ondersteunde systemen.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Autom. Organiseren",
|
"TabAutoOrganize": "Autom. Organiseren",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Hulp",
|
"TabHelp": "Hulp",
|
||||||
|
"ButtonFullscreen": "Volledig scherm",
|
||||||
|
"ButtonAudioTracks": "Audio track",
|
||||||
"ButtonQuality": "Kwaliteit",
|
"ButtonQuality": "Kwaliteit",
|
||||||
"HeaderNotifications": "Meldingen",
|
"HeaderNotifications": "Meldingen",
|
||||||
"HeaderSelectPlayer": "Selecteer Speler",
|
"HeaderSelectPlayer": "Selecteer Speler",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nieuwe afspeellijst...",
|
"OptionNewPlaylist": "Nieuwe afspeellijst...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Bekijk serie opnamen",
|
"ButtonViewSeriesRecording": "Bekijk serie opnamen",
|
||||||
"ValueOriginalAirDate": "Originele uitzenddatum: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Verwijderen uit afspeellijst",
|
"ButtonRemoveFromPlaylist": "Verwijderen uit afspeellijst",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Boeken",
|
"HeaderBooks": "Boeken",
|
||||||
|
"HeaderEpisodes": "Afleveringen",
|
||||||
"HeaderSeasons": "Seizoenen",
|
"HeaderSeasons": "Seizoenen",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"HeaderItems": "Items",
|
||||||
|
@ -2104,9 +2096,9 @@
|
||||||
"LabelFullReview": "Volledige beoordeling:",
|
"LabelFullReview": "Volledige beoordeling:",
|
||||||
"LabelShortRatingDescription": "Korte beoordeling overzicht:",
|
"LabelShortRatingDescription": "Korte beoordeling overzicht:",
|
||||||
"OptionIRecommendThisItem": "Ik beveel dit item aan",
|
"OptionIRecommendThisItem": "Ik beveel dit item aan",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Eindigt om: {0}",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "Jaar van uitgifte: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {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.",
|
"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",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Delen",
|
||||||
"HeaderShare": "Delen",
|
|
||||||
"ButtonShareHelp": "Deel een webpagina met media-informatie met sociale media. Media-bestanden worden nooit publiekelijk gedeeld.",
|
|
||||||
"ButtonShare": "Delen",
|
"ButtonShare": "Delen",
|
||||||
"HeaderConfirm": "bevestigen",
|
"HeaderConfirm": "bevestigen",
|
||||||
"MessageConfirmDeleteTunerDevice": "Weet u zeker dat u dit apparaat wilt verwijderen?",
|
"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?",
|
"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.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.",
|
||||||
"OptionEnableDisplayMirroring": "Schakel beeld spiegeling in",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2361,8 +2352,10 @@
|
||||||
"LabelSortTitle": "Sorteer titel:",
|
"LabelSortTitle": "Sorteer titel:",
|
||||||
"OptionConvertRecordingPreserveAudio": "Behoud van originele audio bij het converteren opnamen",
|
"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.",
|
"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.",
|
"CreateCollectionHelp": "Collecties maken het u mogelijk om gepersonaliseerde groeperingen van films en andere bibliotheek inhoud te maken.",
|
||||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
"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": "Health Monitor",
|
"HeaderHealthMonitor": "Gezondheid",
|
||||||
"HealthMonitorNoAlerts": "There are no active alerts."
|
"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",
|
"LabelExit": "Wyj\u015bcie",
|
||||||
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
|
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfiguruj kod pin",
|
"ButtonConfigurePinCode": "Konfiguruj kod pin",
|
||||||
"HeaderAdultsReadHere": "Doro\u015bli czyta\u0107!",
|
"HeaderAdultsReadHere": "Doro\u015bli czyta\u0107!",
|
||||||
"RegisterWithPayPal": "Zarejestruj z PayPal",
|
"RegisterWithPayPal": "Zarejestruj z PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego",
|
"HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego",
|
||||||
"LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:",
|
"LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:",
|
||||||
"LabelSyncTempPathHelp": "Okre\u015b w\u0142asny folder synchronizacji. Utworzone skonwertowane media podczas synchronizacji b\u0119d\u0105 zapisywane tutaj.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "Zadanie synchronizacji",
|
||||||
"FolderTypeMixed": "Zawarto\u015b\u0107 mieszana",
|
"FolderTypeMixed": "R\u00f3\u017cna zawarto\u015b\u0107",
|
||||||
"FolderTypeMovies": "Filmy",
|
"FolderTypeMovies": "Filmy",
|
||||||
"FolderTypeMusic": "Muzyka",
|
"FolderTypeMusic": "Muzyka",
|
||||||
"FolderTypeAdultVideos": "Filmy dla doros\u0142ych",
|
|
||||||
"FolderTypePhotos": "Zdj\u0119cia",
|
"FolderTypePhotos": "Zdj\u0119cia",
|
||||||
"FolderTypeMusicVideos": "Teledyski",
|
"FolderTypeMusicVideos": "Teledyski",
|
||||||
"FolderTypeHomeVideos": "Filmy domowe",
|
"FolderTypeHomeVideos": "Filmy domowe",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Rosn\u0105co",
|
"OptionAscending": "Rosn\u0105co",
|
||||||
"OptionDescending": "Malej\u0105co",
|
"OptionDescending": "Malej\u0105co",
|
||||||
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
|
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Data Wydania",
|
||||||
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
|
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
|
||||||
"OptionDatePlayed": "Data odtworzenia",
|
"OptionDatePlayed": "Data odtworzenia",
|
||||||
"OptionDateAdded": "Data dodania",
|
"OptionDateAdded": "Data dodania",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Bud\u017cet",
|
"OptionBudget": "Bud\u017cet",
|
||||||
"OptionRevenue": "Doch\u00f3d",
|
"OptionRevenue": "Doch\u00f3d",
|
||||||
"OptionPoster": "Plakat",
|
"OptionPoster": "Plakat",
|
||||||
"HeaderYears": "Lata",
|
|
||||||
"OptionPosterCard": "Plakat",
|
"OptionPosterCard": "Plakat",
|
||||||
"OptionBackdrop": "Zrzut",
|
"OptionBackdrop": "Zrzut",
|
||||||
"OptionTimeline": "O\u015b czasu",
|
"OptionTimeline": "O\u015b czasu",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metawynik",
|
"OptionMetascore": "Metawynik",
|
||||||
"ButtonSelect": "Wybierz",
|
"ButtonSelect": "Wybierz",
|
||||||
"ButtonGroupVersions": "Grupa Wersji",
|
"ButtonGroupVersions": "Grupa Wersji",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Dodaj do Kolekcji",
|
||||||
"PismoMessage": "U\u017cycie Pismo File Mount poprzed licencj\u0119 dotowan\u0105.",
|
"PismoMessage": "U\u017cycie Pismo File Mount poprzed licencj\u0119 dotowan\u0105.",
|
||||||
"TangibleSoftwareMessage": "u\u017cycie Tangible Solutions Java\/C# converters poprzez licecj\u0119 dotowan\u0105.",
|
"TangibleSoftwareMessage": "u\u017cycie Tangible Solutions Java\/C# converters poprzez licecj\u0119 dotowan\u0105.",
|
||||||
"HeaderCredits": "Zas\u0142ugi",
|
"HeaderCredits": "Zas\u0142ugi",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "Obsada & Eikpa",
|
"HeaderCastCrew": "Obsada & Eikpa",
|
||||||
"HeaderAdditionalParts": "Dodatkowe Cz\u0119\u015bci",
|
"HeaderAdditionalParts": "Dodatkowe Cz\u0119\u015bci",
|
||||||
"ButtonSplitVersionsApart": "Podziel Wersje",
|
"ButtonSplitVersionsApart": "Podziel Wersje",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "Zwiastun",
|
||||||
"LabelMissing": "Brakuj\u0105cy",
|
"LabelMissing": "Brakuj\u0105cy",
|
||||||
"LabelOffline": "Offline",
|
"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.",
|
"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",
|
"HeaderProgram": "Program",
|
||||||
"HeaderClients": "Klienci",
|
"HeaderClients": "Klienci",
|
||||||
"LabelCompleted": "Zako\u0144czono",
|
"LabelCompleted": "Zako\u0144czono",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "Nieudane",
|
||||||
"LabelSkipped": "Pomini\u0119te",
|
"LabelSkipped": "Pomini\u0119te",
|
||||||
"HeaderEpisodeOrganization": "Organizacja Odcink\u00f3w",
|
"HeaderEpisodeOrganization": "Organizacja Odcink\u00f3w",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "Seriale:",
|
||||||
"LabelSeasonNumber": "Numer sezonu:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Numer epizodu:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Numer ostatniego odcinka:",
|
"LabelEndingEpisodeNumber": "Numer ostatniego odcinka:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Wymagane tylko dla wielo-odcinkowych plik\u00f3w",
|
"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",
|
"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",
|
"TabNowPlaying": "Odtwarzane teraz",
|
||||||
"TabNavigation": "Nawigacja",
|
"TabNavigation": "Nawigacja",
|
||||||
"TabControls": "Kotrolki",
|
"TabControls": "Kotrolki",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Sceny",
|
"ButtonScenes": "Sceny",
|
||||||
"ButtonSubtitles": "Napisy",
|
"ButtonSubtitles": "Napisy",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Poprzednia \u015bcie\u017cka",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Nast\u0119pna \u015bcie\u017cka",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pauza",
|
"ButtonPause": "Pauza",
|
||||||
"ButtonNext": "Nast\u0119pny",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Playlista jest obecnie pusta.",
|
||||||
"ButtonDismiss": "Odrzu\u0107",
|
"ButtonDismiss": "Odrzu\u0107",
|
||||||
"ButtonMore": "Wi\u0119cej",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.",
|
"ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"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.",
|
"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",
|
"OptionUnidentified": "Niezidentyfikowane",
|
||||||
"OptionMissingParentalRating": "Brak oceny rodzicielskiej",
|
"OptionMissingParentalRating": "Brak oceny rodzicielskiej",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Sezon 0",
|
"OptionSeason0": "Sezon 0",
|
||||||
"LabelReport": "Zg\u0142o\u015b:",
|
"LabelReport": "Zg\u0142o\u015b:",
|
||||||
"OptionReportSongs": "Utwory",
|
"OptionReportSongs": "Utwory",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Wykonawcy",
|
"OptionReportArtists": "Wykonawcy",
|
||||||
"OptionReportAlbums": "Albumy",
|
"OptionReportAlbums": "Albumy",
|
||||||
"OptionReportAdultVideos": "Filmy dla doros\u0142ych",
|
"OptionReportAdultVideos": "Filmy dla doros\u0142ych",
|
||||||
"ButtonMoreItems": "Wi\u0119cej",
|
"ButtonMore": "Wi\u0119cej",
|
||||||
"HeaderActivity": "Aktywno\u015b\u0107",
|
"HeaderActivity": "Aktywno\u015b\u0107",
|
||||||
"ScheduledTaskStartedWithName": "{0} rozpocz\u0119te",
|
"ScheduledTaskStartedWithName": "{0} rozpocz\u0119te",
|
||||||
"ScheduledTaskCancelledWithName": "{0} anulowane",
|
"ScheduledTaskCancelledWithName": "{0} anulowane",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Zresetuj has\u0142o",
|
"HeaderPasswordReset": "Zresetuj has\u0142o",
|
||||||
"HeaderParentalRatings": "Ocena rodzicielska",
|
"HeaderParentalRatings": "Ocena rodzicielska",
|
||||||
"HeaderVideoTypes": "Typy Video",
|
"HeaderVideoTypes": "Typy Video",
|
||||||
|
"HeaderYears": "Lata",
|
||||||
"HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:",
|
"HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:",
|
||||||
"LabelBlockContentWithTags": "Zablokuj materia\u0142 z tagami:",
|
"LabelBlockContentWithTags": "Zablokuj materia\u0142 z tagami:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Ogranicz do jednego osadzonego obrazka",
|
"LabelEnableSingleImageInDidlLimit": "Ogranicz do jednego osadzonego obrazka",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Przysz\u0142e filmy",
|
"HeaderUpcomingMovies": "Przysz\u0142e filmy",
|
||||||
"HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe",
|
"HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe",
|
||||||
"HeaderUpcomingPrograms": "Przysz\u0142e programy",
|
"HeaderUpcomingPrograms": "Przysz\u0142e programy",
|
||||||
|
"ButtonMoreItems": "Wi\u0119cej",
|
||||||
"LabelShowLibraryTileNames": "Pokazuj nazwy bibliotek",
|
"LabelShowLibraryTileNames": "Pokazuj nazwy bibliotek",
|
||||||
"LabelShowLibraryTileNamesHelp": "Okre\u015bla czy okre\u015blenia b\u0119d\u0105 wy\u015bwietlane poni\u017cej biblioteki na stronie g\u0142\u00f3wnej",
|
"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",
|
"OptionEnableTranscodingThrottle": "W\u0142\u0105cz CPU throttling serwera",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Skonfiguruj Program TV",
|
"HeaderSetupTVGuide": "Skonfiguruj Program TV",
|
||||||
"LabelDataProvider": "Dostawca danych:",
|
"LabelDataProvider": "Dostawca danych:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Domy\u015blny Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Napisy",
|
"HeaderSubtitles": "Napisy",
|
||||||
"HeaderVideos": "Wideo",
|
"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:",
|
"LabelHardwareAccelerationType": "Akceleracja sprz\u0119towa:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Dost\u0119pne tylko na wspieranych systemach.",
|
"LabelHardwareAccelerationTypeHelp": "Dost\u0119pne tylko na wspieranych systemach.",
|
||||||
"ButtonServerDashboard": "Panel G\u0142\u00f3wny Serwera",
|
"ButtonServerDashboard": "Panel G\u0142\u00f3wny Serwera",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organizuj",
|
"TabAutoOrganize": "Auto-Organizuj",
|
||||||
"TabPlugins": "Wtyczki",
|
"TabPlugins": "Wtyczki",
|
||||||
"TabHelp": "Pomoc",
|
"TabHelp": "Pomoc",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Jako\u015b\u0107",
|
"ButtonQuality": "Jako\u015b\u0107",
|
||||||
"HeaderNotifications": "Powiadomienia",
|
"HeaderNotifications": "Powiadomienia",
|
||||||
"HeaderSelectPlayer": "Wybierz Odtworzacz",
|
"HeaderSelectPlayer": "Wybierz Odtworzacz",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nowa playlista...",
|
"OptionNewPlaylist": "Nowa playlista...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Ogl\u0105daj nagrania seriali",
|
"ButtonViewSeriesRecording": "Ogl\u0105daj nagrania seriali",
|
||||||
"ValueOriginalAirDate": "data pierwszej transmisji: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Usu\u0144 z playlisty",
|
"ButtonRemoveFromPlaylist": "Usu\u0144 z playlisty",
|
||||||
"HeaderSpecials": "Specjalne",
|
"HeaderSpecials": "Specjalne",
|
||||||
"HeaderTrailers": "Zwiastuny",
|
"HeaderTrailers": "Zwiastuny",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albumy",
|
"HeaderAlbums": "Albumy",
|
||||||
"HeaderGames": "Gry",
|
"HeaderGames": "Gry",
|
||||||
"HeaderBooks": "Ksi\u0105\u017cki",
|
"HeaderBooks": "Ksi\u0105\u017cki",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Sezony",
|
"HeaderSeasons": "Sezony",
|
||||||
"HeaderTracks": "Utwory",
|
"HeaderTracks": "Utwory",
|
||||||
"HeaderItems": "Pozycje",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Udost\u0119pnij",
|
||||||
"HeaderConfirm": "Potwierd\u017a",
|
"HeaderConfirm": "Potwierd\u017a",
|
||||||
"MessageConfirmDeleteTunerDevice": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Sair",
|
||||||
"LabelVisitCommunity": "Visitar a Comunidade",
|
"LabelVisitCommunity": "Visitar a Comunidade",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||||
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
||||||
"RegisterWithPayPal": "Registrar com PayPal",
|
"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",
|
"HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
|
||||||
"LabelSyncTempPath": "Local do arquivo tempor\u00e1rio:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "Conte\u00fado misto",
|
||||||
"FolderTypeMovies": "Filmes",
|
"FolderTypeMovies": "Filmes",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
||||||
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Or\u00e7amento",
|
"OptionBudget": "Or\u00e7amento",
|
||||||
"OptionRevenue": "Faturamento",
|
"OptionRevenue": "Faturamento",
|
||||||
"OptionPoster": "Capa",
|
"OptionPoster": "Capa",
|
||||||
"HeaderYears": "Anos",
|
|
||||||
"OptionPosterCard": "Cart\u00e3o da capa",
|
"OptionPosterCard": "Cart\u00e3o da capa",
|
||||||
"OptionBackdrop": "Imagem de Fundo",
|
"OptionBackdrop": "Imagem de Fundo",
|
||||||
"OptionTimeline": "Linha do tempo",
|
"OptionTimeline": "Linha do tempo",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Selecionar",
|
"ButtonSelect": "Selecionar",
|
||||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
"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",
|
"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.",
|
"TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.",
|
||||||
"HeaderCredits": "Cr\u00e9ditos",
|
"HeaderCredits": "Cr\u00e9ditos",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Reproduzindo Agora",
|
"TabNowPlaying": "Reproduzindo Agora",
|
||||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||||
"TabControls": "Controles",
|
"TabControls": "Controles",
|
||||||
"ButtonFullscreen": "Tela cheia",
|
|
||||||
"ButtonScenes": "Cenas",
|
"ButtonScenes": "Cenas",
|
||||||
"ButtonSubtitles": "Legendas",
|
"ButtonSubtitles": "Legendas",
|
||||||
"ButtonPreviousTrack": "Faixa anterior",
|
"ButtonPreviousTrack": "Faixa anterior",
|
||||||
"ButtonNextTrack": "Faixa seguinte",
|
"ButtonNextTrack": "Faixa seguinte",
|
||||||
"ButtonAudioTracks": "Faixas de \u00c1udio",
|
|
||||||
"ButtonStop": "Parar",
|
"ButtonStop": "Parar",
|
||||||
"ButtonPause": "Pausar",
|
"ButtonPause": "Pausar",
|
||||||
"ButtonNext": "Pr\u00f3xima",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
|
||||||
"ButtonDismiss": "Descartar",
|
"ButtonDismiss": "Descartar",
|
||||||
"ButtonMore": "Mais",
|
|
||||||
"ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.",
|
"ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.",
|
||||||
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
|
"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.",
|
"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",
|
"OptionUnidentified": "N\u00e3o identificada",
|
||||||
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Temporada 0",
|
"OptionSeason0": "Temporada 0",
|
||||||
"LabelReport": "Relat\u00f3rio:",
|
"LabelReport": "Relat\u00f3rio:",
|
||||||
"OptionReportSongs": "M\u00fasicas",
|
"OptionReportSongs": "M\u00fasicas",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artistas",
|
"OptionReportArtists": "Artistas",
|
||||||
"OptionReportAlbums": "\u00c1lbuns",
|
"OptionReportAlbums": "\u00c1lbuns",
|
||||||
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
||||||
"ButtonMoreItems": "Mais",
|
"ButtonMore": "Mais",
|
||||||
"HeaderActivity": "Atividade",
|
"HeaderActivity": "Atividade",
|
||||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||||
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
||||||
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
||||||
"HeaderVideoTypes": "Tipos de V\u00eddeo",
|
"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:",
|
"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:",
|
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
||||||
"HeaderUpcomingSports": "Esportes Por Estrear",
|
"HeaderUpcomingSports": "Esportes Por Estrear",
|
||||||
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
||||||
|
"ButtonMoreItems": "Mais",
|
||||||
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
|
"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",
|
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
|
||||||
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
||||||
"LabelDataProvider": "Provedor de dados:",
|
"LabelDataProvider": "Provedor de dados:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Padding Padr\u00e3o",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Legendas",
|
"HeaderSubtitles": "Legendas",
|
||||||
"HeaderVideos": "V\u00eddeos",
|
"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:",
|
"LabelHardwareAccelerationType": "Acelera\u00e7\u00e3o de hardware:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel somente em sistemas suportados.",
|
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel somente em sistemas suportados.",
|
||||||
"ButtonServerDashboard": "Painel do Servidor",
|
"ButtonServerDashboard": "Painel do Servidor",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organizar",
|
"TabAutoOrganize": "Auto-Organizar",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Ajuda",
|
"TabHelp": "Ajuda",
|
||||||
|
"ButtonFullscreen": "Tela cheia",
|
||||||
|
"ButtonAudioTracks": "Faixas de \u00c1udio",
|
||||||
"ButtonQuality": "Qualidade",
|
"ButtonQuality": "Qualidade",
|
||||||
"HeaderNotifications": "Avisos",
|
"HeaderNotifications": "Avisos",
|
||||||
"HeaderSelectPlayer": "Selecione onde Reproduzir",
|
"HeaderSelectPlayer": "Selecione onde Reproduzir",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Nova lista de reprodu\u00e7\u00e3o",
|
"OptionNewPlaylist": "Nova lista de reprodu\u00e7\u00e3o",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Visualizar grava\u00e7\u00e3o de s\u00e9ries",
|
"ButtonViewSeriesRecording": "Visualizar grava\u00e7\u00e3o de s\u00e9ries",
|
||||||
"ValueOriginalAirDate": "Data original de exibi\u00e7\u00e3o: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remover da lista de reprodu\u00e7\u00e3o",
|
"ButtonRemoveFromPlaylist": "Remover da lista de reprodu\u00e7\u00e3o",
|
||||||
"HeaderSpecials": "Especiais",
|
"HeaderSpecials": "Especiais",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\u00c1lbuns",
|
"HeaderAlbums": "\u00c1lbuns",
|
||||||
"HeaderGames": "Jogos",
|
"HeaderGames": "Jogos",
|
||||||
"HeaderBooks": "Livros",
|
"HeaderBooks": "Livros",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Temporadas",
|
"HeaderSeasons": "Temporadas",
|
||||||
"HeaderTracks": "Faixas",
|
"HeaderTracks": "Faixas",
|
||||||
"HeaderItems": "Itens",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Compartilhar",
|
||||||
"HeaderConfirm": "Confirmar",
|
"HeaderConfirm": "Confirmar",
|
||||||
"MessageConfirmDeleteTunerDevice": "Deseja realmente excluir este dispositivo?",
|
"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?",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Sair",
|
||||||
"LabelVisitCommunity": "Visitar a Comunidade",
|
"LabelVisitCommunity": "Visitar a Comunidade",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
||||||
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
||||||
"RegisterWithPayPal": "Registar com PayPal",
|
"RegisterWithPayPal": "Registar com PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
|
"HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
|
||||||
"LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "Conte\u00fado misto",
|
||||||
"FolderTypeMovies": "Filmes",
|
"FolderTypeMovies": "Filmes",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
|
||||||
"FolderTypePhotos": "Fotos",
|
"FolderTypePhotos": "Fotos",
|
||||||
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
||||||
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascendente",
|
"OptionAscending": "Ascendente",
|
||||||
"OptionDescending": "Descendente",
|
"OptionDescending": "Descendente",
|
||||||
"OptionRuntime": "Dura\u00e7\u00e3o",
|
"OptionRuntime": "Dura\u00e7\u00e3o",
|
||||||
"OptionReleaseDate": "Data de Lan\u00e7amento",
|
"OptionReleaseDate": "Data de Lan\u00e7amento:",
|
||||||
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
|
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
|
||||||
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
|
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
|
||||||
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
|
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Or\u00e7amento",
|
"OptionBudget": "Or\u00e7amento",
|
||||||
"OptionRevenue": "Receita",
|
"OptionRevenue": "Receita",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Anos",
|
|
||||||
"OptionPosterCard": "Cart\u00e3o da capa",
|
"OptionPosterCard": "Cart\u00e3o da capa",
|
||||||
"OptionBackdrop": "Imagem de fundo",
|
"OptionBackdrop": "Imagem de fundo",
|
||||||
"OptionTimeline": "Linha de tempo",
|
"OptionTimeline": "Linha de tempo",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Selecionar",
|
"ButtonSelect": "Selecionar",
|
||||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
"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.",
|
"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.",
|
"TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.",
|
||||||
"HeaderCredits": "Cr\u00e9ditos",
|
"HeaderCredits": "Cr\u00e9ditos",
|
||||||
|
@ -592,8 +588,8 @@
|
||||||
"LabelSkipped": "Ignorado",
|
"LabelSkipped": "Ignorado",
|
||||||
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
|
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
|
||||||
"LabelSeries": "S\u00e9rie:",
|
"LabelSeries": "S\u00e9rie:",
|
||||||
"LabelSeasonNumber": "N\u00famero da temporada:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
|
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
|
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
|
||||||
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes semelhantes",
|
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes semelhantes",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "A reproduzir agora",
|
"TabNowPlaying": "A reproduzir agora",
|
||||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||||
"TabControls": "Controlos",
|
"TabControls": "Controlos",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Cenas",
|
"ButtonScenes": "Cenas",
|
||||||
"ButtonSubtitles": "Legendas",
|
"ButtonSubtitles": "Legendas",
|
||||||
"ButtonPreviousTrack": "Faixa anterior",
|
"ButtonPreviousTrack": "Faixa anterior",
|
||||||
"ButtonNextTrack": "Faixa seguinte",
|
"ButtonNextTrack": "Faixa seguinte",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Parar",
|
"ButtonStop": "Parar",
|
||||||
"ButtonPause": "Pausar",
|
"ButtonPause": "Pausar",
|
||||||
"ButtonNext": "Pr\u00f3xima",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
|
||||||
"ButtonDismiss": "Descartar",
|
"ButtonDismiss": "Descartar",
|
||||||
"ButtonMore": "Mais",
|
|
||||||
"ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.",
|
"ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.",
|
||||||
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
|
"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.",
|
"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",
|
"OptionUnidentified": "N\u00e3o identificada",
|
||||||
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Temporada 0",
|
"OptionSeason0": "Temporada 0",
|
||||||
"LabelReport": "Relat\u00f3rio:",
|
"LabelReport": "Relat\u00f3rio:",
|
||||||
"OptionReportSongs": "M\u00fasicas",
|
"OptionReportSongs": "M\u00fasicas",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artistas",
|
"OptionReportArtists": "Artistas",
|
||||||
"OptionReportAlbums": "\u00c1lbuns",
|
"OptionReportAlbums": "\u00c1lbuns",
|
||||||
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
"OptionReportAdultVideos": "V\u00eddeos adultos",
|
||||||
"ButtonMoreItems": "Mais",
|
"ButtonMore": "Mais",
|
||||||
"HeaderActivity": "Atividade",
|
"HeaderActivity": "Atividade",
|
||||||
"ScheduledTaskStartedWithName": "{0} iniciado",
|
"ScheduledTaskStartedWithName": "{0} iniciado",
|
||||||
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
|
||||||
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
|
||||||
"HeaderVideoTypes": "Tipos de V\u00eddeo",
|
"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:",
|
"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:",
|
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
||||||
"HeaderUpcomingSports": "Esportes Por Estrear",
|
"HeaderUpcomingSports": "Esportes Por Estrear",
|
||||||
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
||||||
|
"ButtonMoreItems": "Mais",
|
||||||
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
|
"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",
|
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
|
||||||
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
|
||||||
"LabelDataProvider": "Provedor de dados:",
|
"LabelDataProvider": "Provedor de dados:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Padding Padr\u00e3o",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Legendas",
|
"HeaderSubtitles": "Legendas",
|
||||||
"HeaderVideos": "V\u00eddeos",
|
"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:",
|
"LabelHardwareAccelerationType": "Acelera\u00e7\u00e3o de hardware:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel apenas em sistemas suportados.",
|
"LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel apenas em sistemas suportados.",
|
||||||
"ButtonServerDashboard": "Painel do Servidor",
|
"ButtonServerDashboard": "Painel do Servidor",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica",
|
"TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica",
|
||||||
"TabPlugins": "Extens\u00f5es",
|
"TabPlugins": "Extens\u00f5es",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifica\u00e7\u00f5es",
|
"HeaderNotifications": "Notifica\u00e7\u00f5es",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Iesire",
|
||||||
"LabelVisitCommunity": "Viziteaza comunitatea",
|
"LabelVisitCommunity": "Viziteaza comunitatea",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configureaza codul pin",
|
"ButtonConfigurePinCode": "Configureaza codul pin",
|
||||||
"HeaderAdultsReadHere": "Adultii Cititi Aici!",
|
"HeaderAdultsReadHere": "Adultii Cititi Aici!",
|
||||||
"RegisterWithPayPal": "Inregistreaza-te cu PayPal",
|
"RegisterWithPayPal": "Inregistreaza-te cu PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
|
"HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
|
||||||
"LabelSyncTempPath": "Cale fisier temporara",
|
"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.",
|
"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",
|
"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.",
|
"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",
|
"HeaderSyncJobInfo": "Activitate de sincronizare",
|
||||||
"FolderTypeMixed": "Continut mixt",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Filme",
|
"FolderTypeMovies": "Filme",
|
||||||
"FolderTypeMusic": "Muzica",
|
"FolderTypeMusic": "Muzica",
|
||||||
"FolderTypeAdultVideos": "Filme Porno",
|
|
||||||
"FolderTypePhotos": "Fotografii",
|
"FolderTypePhotos": "Fotografii",
|
||||||
"FolderTypeMusicVideos": "Videoclipuri",
|
"FolderTypeMusicVideos": "Videoclipuri",
|
||||||
"FolderTypeHomeVideos": "Video Personale",
|
"FolderTypeHomeVideos": "Video Personale",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Crescator",
|
"OptionAscending": "Crescator",
|
||||||
"OptionDescending": "Descrescator",
|
"OptionDescending": "Descrescator",
|
||||||
"OptionRuntime": "Timp Rulare",
|
"OptionRuntime": "Timp Rulare",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Data Aparitie",
|
||||||
"OptionPlayCount": "Contorizari rulari",
|
"OptionPlayCount": "Contorizari rulari",
|
||||||
"OptionDatePlayed": "Data Rulare",
|
"OptionDatePlayed": "Data Rulare",
|
||||||
"OptionDateAdded": "Data Adaugare",
|
"OptionDateAdded": "Data Adaugare",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Buget",
|
"OptionBudget": "Buget",
|
||||||
"OptionRevenue": "Incasari",
|
"OptionRevenue": "Incasari",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430",
|
||||||
"LabelGithub": "GitHub",
|
"LabelGithub": "GitHub",
|
||||||
|
@ -64,7 +63,7 @@
|
||||||
"HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
|
"HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
|
||||||
"HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
|
"HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
|
||||||
"HeaderPaths": "\u041f\u0443\u0442\u0438",
|
"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",
|
"TabPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
|
||||||
"HeaderEasyPinCode": "\u041f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
|
"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!",
|
"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",
|
"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!",
|
"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",
|
"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",
|
"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:",
|
"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.",
|
"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",
|
"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",
|
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||||
"FolderTypeAdultVideos": "\u0414\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445",
|
|
||||||
"FolderTypePhotos": "\u0424\u043e\u0442\u043e",
|
"FolderTypePhotos": "\u0424\u043e\u0442\u043e",
|
||||||
"FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
|
"FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
|
||||||
"FolderTypeHomeVideos": "\u0414\u043e\u043c. \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",
|
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430",
|
"OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430",
|
||||||
"OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
"OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||||
"HeaderYears": "\u0413\u043e\u0434\u044b",
|
|
||||||
"OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430",
|
"OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430",
|
||||||
"OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
|
"OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
|
||||||
"OptionTimeline": "\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f",
|
"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",
|
"OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b",
|
||||||
"TabBasic": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435",
|
"TabBasic": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435",
|
||||||
"TabAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\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",
|
"OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u044e\u0449\u0438\u0439\u0441\u044f",
|
||||||
"OptionEnded": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0441\u044f",
|
"OptionEnded": "\u0417\u0430\u043a\u043e\u043d\u0447\u0435\u043d\u043d\u044b\u0439",
|
||||||
"HeaderAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430",
|
"HeaderAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430",
|
||||||
"OptionSundayShort": "\u0432\u0441\u043a",
|
"OptionSundayShort": "\u0432\u0441\u043a",
|
||||||
"OptionMondayShort": "\u043f\u043d\u0434",
|
"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",
|
"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.",
|
"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",
|
"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...",
|
"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",
|
"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",
|
"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:",
|
"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.",
|
"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:",
|
"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):",
|
"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": "Series recording path (optional):",
|
"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.",
|
"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:",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"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",
|
"LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442",
|
||||||
"LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"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",
|
"HeaderDate": "\u0414\u0430\u0442\u0430",
|
||||||
"HeaderSource": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
"HeaderSource": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||||
"HeaderStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
|
"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",
|
"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",
|
"TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
|
||||||
"TabControls": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
|
"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...",
|
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
||||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\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...",
|
"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...",
|
"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",
|
"ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||||
"ButtonPause": "\u041f\u0430\u0443\u0437\u0430",
|
"ButtonPause": "\u041f\u0430\u0443\u0437\u0430",
|
||||||
"ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
|
"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.",
|
"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.",
|
"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",
|
"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.",
|
"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:",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"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",
|
"OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0",
|
||||||
"LabelReport": "\u041e\u0442\u0447\u0451\u0442:",
|
"LabelReport": "\u041e\u0442\u0447\u0451\u0442:",
|
||||||
"OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
"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",
|
"OptionReportArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
||||||
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||||
"OptionReportAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"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",
|
"HeaderActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||||
"ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430",
|
"ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430",
|
||||||
"ScheduledTaskCancelledWithName": "{0} - \u0431\u044b\u043b\u0430 \u043e\u0442\u043c\u0435\u043d\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",
|
"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",
|
"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",
|
"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:",
|
"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:",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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.",
|
"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",
|
"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",
|
"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:",
|
"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.",
|
"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",
|
"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.",
|
"HeaderSubtitles": "\u0421\u0443\u0431\u0442.",
|
||||||
"HeaderVideos": "\u0412\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b",
|
"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:",
|
"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.",
|
"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",
|
"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",
|
"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",
|
"OptionBirthLocation": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f",
|
||||||
"LabelAllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b",
|
"LabelAllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "\u041d\u043e\u0432\u044b\u0439",
|
||||||
"AttributePremiere": "Premiere",
|
"AttributePremiere": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430",
|
||||||
"AttributeLive": "Live",
|
"AttributeLive": "\u042d\u0444\u0438\u0440",
|
||||||
"LabelHDProgram": "HD",
|
"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",
|
"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.",
|
"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",
|
"TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a",
|
||||||
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||||
"TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430",
|
"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...",
|
"ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...",
|
||||||
"HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
|
"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",
|
"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...",
|
"OptionNewPlaylist": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...",
|
||||||
"MessageAddedToPlaylistSuccess": "\u041e\u041a",
|
"MessageAddedToPlaylistSuccess": "\u041e\u041a",
|
||||||
"ButtonViewSeriesRecording": "\u0421\u043c. \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430",
|
"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",
|
"ButtonRemoveFromPlaylist": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u0430",
|
||||||
"HeaderSpecials": "\u0421\u043f\u0435\u0446.",
|
"HeaderSpecials": "\u0421\u043f\u0435\u0446.",
|
||||||
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b.",
|
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b.",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||||
"HeaderGames": "\u0418\u0433\u0440\u044b",
|
"HeaderGames": "\u0418\u0433\u0440\u044b",
|
||||||
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||||
|
"HeaderEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||||
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b",
|
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b",
|
||||||
"HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438",
|
"HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438",
|
||||||
"HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
|
"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:",
|
"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:",
|
"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",
|
"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}",
|
"EndsAtValue": "\u041a\u043e\u043d\u0435\u0446 \u0432 {0}",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "\u0413\u043e\u0434 \u0432\u044b\u043f\u0443\u0441\u043a\u0430: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {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.",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"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.",
|
"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",
|
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
||||||
"HeaderShare": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
|
|
||||||
"ButtonShareHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435.",
|
|
||||||
"ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
"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",
|
"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?",
|
"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?",
|
"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.",
|
"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",
|
"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.",
|
"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.",
|
"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}",
|
"LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}",
|
||||||
|
@ -2359,10 +2350,12 @@
|
||||||
"LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
"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:",
|
"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:",
|
"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",
|
"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": "This will provide better audio but may require transcoding during playback on some devices.",
|
"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": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
"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": "Health Monitor",
|
"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": "There are no active alerts."
|
"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",
|
"LabelExit": "Exit",
|
||||||
"LabelVisitCommunity": "Visit Community",
|
"LabelVisitCommunity": "Visit Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Izhod",
|
||||||
"LabelVisitCommunity": "Obiscite Skupnost",
|
"LabelVisitCommunity": "Obiscite Skupnost",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Nastavi pin kodo",
|
"ButtonConfigurePinCode": "Nastavi pin kodo",
|
||||||
"HeaderAdultsReadHere": "Odrasli, preberite tukaj!",
|
"HeaderAdultsReadHere": "Odrasli, preberite tukaj!",
|
||||||
"RegisterWithPayPal": "Registriraj se z PayPal-om",
|
"RegisterWithPayPal": "Registriraj se z PayPal-om",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici",
|
"HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici",
|
||||||
"LabelSyncTempPath": "Zacasna pot do datoteke:",
|
"LabelSyncTempPath": "Zacasna pot do datoteke:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||||
"HeaderSyncJobInfo": "Sync Job",
|
"HeaderSyncJobInfo": "Sync Job",
|
||||||
"FolderTypeMixed": "Mixed content",
|
"FolderTypeMixed": "Mesane vsebine",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Ascending",
|
"OptionAscending": "Ascending",
|
||||||
"OptionDescending": "Descending",
|
"OptionDescending": "Descending",
|
||||||
"OptionRuntime": "Runtime",
|
"OptionRuntime": "Runtime",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "Datum Izdaje",
|
||||||
"OptionPlayCount": "Play Count",
|
"OptionPlayCount": "Play Count",
|
||||||
"OptionDatePlayed": "Date Played",
|
"OptionDatePlayed": "Date Played",
|
||||||
"OptionDateAdded": "Date Added",
|
"OptionDateAdded": "Date Added",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Dodaj v Zbirko",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Avsluta",
|
||||||
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
|
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Konfigurera pinkod",
|
"ButtonConfigurePinCode": "Konfigurera pinkod",
|
||||||
"HeaderAdultsReadHere": "Vuxna L\u00e4s H\u00e4r!",
|
"HeaderAdultsReadHere": "Vuxna L\u00e4s H\u00e4r!",
|
||||||
"RegisterWithPayPal": "Registrera med PayPal",
|
"RegisterWithPayPal": "Registrera med PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
|
"HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
|
||||||
"LabelSyncTempPath": "Tempor\u00e4r fils\u00f6kv\u00e4g:",
|
"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.",
|
"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",
|
"FolderTypeMixed": "Blandat inneh\u00e5ll",
|
||||||
"FolderTypeMovies": "Filmer",
|
"FolderTypeMovies": "Filmer",
|
||||||
"FolderTypeMusic": "Musik",
|
"FolderTypeMusic": "Musik",
|
||||||
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
|
||||||
"FolderTypePhotos": "Foton",
|
"FolderTypePhotos": "Foton",
|
||||||
"FolderTypeMusicVideos": "Musikvideor",
|
"FolderTypeMusicVideos": "Musikvideor",
|
||||||
"FolderTypeHomeVideos": "Hemvideor",
|
"FolderTypeHomeVideos": "Hemvideor",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "Stigande",
|
"OptionAscending": "Stigande",
|
||||||
"OptionDescending": "Sjunkande",
|
"OptionDescending": "Sjunkande",
|
||||||
"OptionRuntime": "Speltid",
|
"OptionRuntime": "Speltid",
|
||||||
"OptionReleaseDate": "Releasedatum",
|
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||||
"OptionPlayCount": "Antal visningar",
|
"OptionPlayCount": "Antal visningar",
|
||||||
"OptionDatePlayed": "Senast visad",
|
"OptionDatePlayed": "Senast visad",
|
||||||
"OptionDateAdded": "Inlagd den",
|
"OptionDateAdded": "Inlagd den",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Int\u00e4kter",
|
"OptionRevenue": "Int\u00e4kter",
|
||||||
"OptionPoster": "Affisch",
|
"OptionPoster": "Affisch",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Affischkort",
|
"OptionPosterCard": "Affischkort",
|
||||||
"OptionBackdrop": "Fondbild",
|
"OptionBackdrop": "Fondbild",
|
||||||
"OptionTimeline": "Tidslinje",
|
"OptionTimeline": "Tidslinje",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metabetyg",
|
"OptionMetascore": "Metabetyg",
|
||||||
"ButtonSelect": "V\u00e4lj",
|
"ButtonSelect": "V\u00e4lj",
|
||||||
"ButtonGroupVersions": "Gruppera versioner",
|
"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",
|
"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.",
|
"TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.",
|
||||||
"HeaderCredits": "Tack till",
|
"HeaderCredits": "Tack till",
|
||||||
|
@ -588,12 +584,12 @@
|
||||||
"HeaderProgram": "Program",
|
"HeaderProgram": "Program",
|
||||||
"HeaderClients": "Klienter",
|
"HeaderClients": "Klienter",
|
||||||
"LabelCompleted": "Klar",
|
"LabelCompleted": "Klar",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "Misslyckades",
|
||||||
"LabelSkipped": "Hoppades \u00f6ver",
|
"LabelSkipped": "Hoppades \u00f6ver",
|
||||||
"HeaderEpisodeOrganization": "Katalogisering av avsnitt",
|
"HeaderEpisodeOrganization": "Katalogisering av avsnitt",
|
||||||
"LabelSeries": "Serie",
|
"LabelSeries": "Serie:",
|
||||||
"LabelSeasonNumber": "S\u00e4songsnummer:",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "Avsnittsnummer:",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "Avslutande avsnittsnummer:",
|
"LabelEndingEpisodeNumber": "Avslutande avsnittsnummer:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
|
"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",
|
"OptionRememberOrganizeCorrection": "Spara och applicera den h\u00e4r \u00e4ndringen p\u00e5 framtida filer mad liknande namn",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Nu spelas",
|
"TabNowPlaying": "Nu spelas",
|
||||||
"TabNavigation": "Navigering",
|
"TabNavigation": "Navigering",
|
||||||
"TabControls": "Kontroller",
|
"TabControls": "Kontroller",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scener",
|
"ButtonScenes": "Scener",
|
||||||
"ButtonSubtitles": "Undertexter",
|
"ButtonSubtitles": "Undertexter",
|
||||||
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r",
|
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
|
||||||
"ButtonNextTrack": "N\u00e4sta sp\u00e5r",
|
"ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stopp",
|
"ButtonStop": "Stopp",
|
||||||
"ButtonPause": "Paus",
|
"ButtonPause": "Paus",
|
||||||
"ButtonNext": "N\u00e4sta",
|
"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\".",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.",
|
||||||
"ButtonDismiss": "Avvisa",
|
"ButtonDismiss": "Avvisa",
|
||||||
"ButtonMore": "Mer",
|
|
||||||
"ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.",
|
"ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.",
|
||||||
"LabelChannelStreamQuality": "F\u00f6redragen kvalitet p\u00e5 internetkanaler:",
|
"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.",
|
"LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Oidentifierad",
|
"OptionUnidentified": "Oidentifierad",
|
||||||
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
|
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
|
||||||
"OptionStub": "Stump",
|
"OptionStub": "Stump",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "S\u00e4song 0",
|
"OptionSeason0": "S\u00e4song 0",
|
||||||
"LabelReport": "Rapport:",
|
"LabelReport": "Rapport:",
|
||||||
"OptionReportSongs": "L\u00e5tar",
|
"OptionReportSongs": "L\u00e5tar",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artister",
|
"OptionReportArtists": "Artister",
|
||||||
"OptionReportAlbums": "Album",
|
"OptionReportAlbums": "Album",
|
||||||
"OptionReportAdultVideos": "Vuxen videos",
|
"OptionReportAdultVideos": "Vuxen videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "Mer",
|
||||||
"HeaderActivity": "Aktivitet",
|
"HeaderActivity": "Aktivitet",
|
||||||
"ScheduledTaskStartedWithName": "{0} startad",
|
"ScheduledTaskStartedWithName": "{0} startad",
|
||||||
"ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts",
|
"ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
|
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Videotyper",
|
"HeaderVideoTypes": "Videotyper",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Blockera inneh\u00e5ll med ingen eller ej k\u00e4nd \u00e5ldersgr\u00e4ns:",
|
"HeaderBlockItemsWithNoRating": "Blockera inneh\u00e5ll med ingen eller ej k\u00e4nd \u00e5ldersgr\u00e4ns:",
|
||||||
"LabelBlockContentWithTags": "Blockera inneh\u00e5ll med etiketter:",
|
"LabelBlockContentWithTags": "Blockera inneh\u00e5ll med etiketter:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Aktivera strypning",
|
"OptionEnableTranscodingThrottle": "Aktivera strypning",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
||||||
"OptionSendRecordingsToAutoOrganizeHelp": "Nya inspelningar kommer katalogiseras automatiskt och importeras till ditt mediabibliotek.",
|
|
||||||
"HeaderDefaultPadding": "Tidsmarginaler",
|
"HeaderDefaultPadding": "Tidsmarginaler",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Undertexter",
|
"HeaderSubtitles": "Undertexter",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "h\u00e5rdvaruacceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Endast tillg\u00e4ngligt p\u00e5 h\u00e5rdvara med st\u00f6d.",
|
"LabelHardwareAccelerationTypeHelp": "Endast tillg\u00e4ngligt p\u00e5 h\u00e5rdvara med st\u00f6d.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Katalogisera automatiskt",
|
"TabAutoOrganize": "Katalogisera automatiskt",
|
||||||
"TabPlugins": "Till\u00e4gg",
|
"TabPlugins": "Till\u00e4gg",
|
||||||
"TabHelp": "Hj\u00e4lp",
|
"TabHelp": "Hj\u00e4lp",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Kvalitet",
|
"ButtonQuality": "Kvalitet",
|
||||||
"HeaderNotifications": "Meddelanden",
|
"HeaderNotifications": "Meddelanden",
|
||||||
"HeaderSelectPlayer": "V\u00e4lj spelare",
|
"HeaderSelectPlayer": "V\u00e4lj spelare",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "Ny spellista...",
|
"OptionNewPlaylist": "Ny spellista...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "Visa serieinspelning",
|
"ButtonViewSeriesRecording": "Visa serieinspelning",
|
||||||
"ValueOriginalAirDate": "Ursprungligt s\u00e4ndningsdatum: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Ta bort fr\u00e5n spellista",
|
"ButtonRemoveFromPlaylist": "Ta bort fr\u00e5n spellista",
|
||||||
"HeaderSpecials": "Specialavsnitt",
|
"HeaderSpecials": "Specialavsnitt",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Album",
|
"HeaderAlbums": "Album",
|
||||||
"HeaderGames": "Spel",
|
"HeaderGames": "Spel",
|
||||||
"HeaderBooks": "B\u00f6cker",
|
"HeaderBooks": "B\u00f6cker",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "S\u00e4songer",
|
"HeaderSeasons": "S\u00e4songer",
|
||||||
"HeaderTracks": "Sp\u00e5r",
|
"HeaderTracks": "Sp\u00e5r",
|
||||||
"HeaderItems": "Objekt",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Cikis",
|
||||||
"LabelVisitCommunity": "Bizi Ziyaret Edin",
|
"LabelVisitCommunity": "Bizi Ziyaret Edin",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Budget",
|
"OptionBudget": "Budget",
|
||||||
"OptionRevenue": "Revenue",
|
"OptionRevenue": "Revenue",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Se\u00e7im",
|
"ButtonSelect": "Se\u00e7im",
|
||||||
"ButtonGroupVersions": "Grup Versionlar\u0131",
|
"ButtonGroupVersions": "Grup Versionlar\u0131",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
||||||
"TabNavigation": "Navigasyon",
|
"TabNavigation": "Navigasyon",
|
||||||
"TabControls": "Kontrol",
|
"TabControls": "Kontrol",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Sahneler",
|
"ButtonScenes": "Sahneler",
|
||||||
"ButtonSubtitles": "Altyaz\u0131lar",
|
"ButtonSubtitles": "Altyaz\u0131lar",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Durdur",
|
"ButtonStop": "Durdur",
|
||||||
"ButtonPause": "Duraklat",
|
"ButtonPause": "Duraklat",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u0412\u0438\u0439\u0442\u0438",
|
||||||
"LabelVisitCommunity": "Visit Community",
|
"LabelVisitCommunity": "Visit Community",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
|
"FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
|
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0438",
|
"FolderTypePhotos": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0438",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"OptionRevenue": "\u0417\u0431\u043e\u0440\u0438",
|
"OptionRevenue": "\u0417\u0431\u043e\u0440\u0438",
|
||||||
"OptionPoster": "Poster",
|
"OptionPoster": "Poster",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "Timeline",
|
"OptionTimeline": "Timeline",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "Select",
|
"ButtonSelect": "Select",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438",
|
"TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438",
|
||||||
"TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430",
|
"TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c",
|
"ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c",
|
||||||
"HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
|
"HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438",
|
"HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438",
|
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438",
|
||||||
"HeaderGames": "\u0406\u0433\u0440\u0438",
|
"HeaderGames": "\u0406\u0433\u0440\u0438",
|
||||||
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438",
|
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438",
|
||||||
"HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438",
|
"HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "Tho\u00e1t",
|
||||||
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
|
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "Ng\u00e2n s\u00e1ch",
|
"OptionBudget": "Ng\u00e2n s\u00e1ch",
|
||||||
"OptionRevenue": "Doanh thu",
|
"OptionRevenue": "Doanh thu",
|
||||||
"OptionPoster": "\u00c1p ph\u00edch",
|
"OptionPoster": "\u00c1p ph\u00edch",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Backdrop",
|
||||||
"OptionTimeline": "D\u00f2ng th\u1eddi gian",
|
"OptionTimeline": "D\u00f2ng th\u1eddi gian",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "Metascore",
|
"OptionMetascore": "Metascore",
|
||||||
"ButtonSelect": "L\u1ef1a ch\u1ecdn",
|
"ButtonSelect": "L\u1ef1a ch\u1ecdn",
|
||||||
"ButtonGroupVersions": "Group Versions",
|
"ButtonGroupVersions": "Group Versions",
|
||||||
"ButtonAddToCollection": "Add to collection",
|
"ButtonAddToCollection": "Add to Collection",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u9000\u51fa",
|
||||||
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
|
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a",
|
"ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a",
|
||||||
"HeaderAdultsReadHere": "\u6210\u4eba\u9605\u8bfb\u8fd9\u91cc\uff01",
|
"HeaderAdultsReadHere": "\u6210\u4eba\u9605\u8bfb\u8fd9\u91cc\uff01",
|
||||||
"RegisterWithPayPal": "\u6ce8\u518cPayPal",
|
"RegisterWithPayPal": "\u6ce8\u518cPayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
|
"HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
|
||||||
"LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a",
|
"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",
|
"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",
|
"FolderTypeMixed": "\u6df7\u5408\u5185\u5bb9",
|
||||||
"FolderTypeMovies": "\u7535\u5f71",
|
"FolderTypeMovies": "\u7535\u5f71",
|
||||||
"FolderTypeMusic": "\u97f3\u4e50",
|
"FolderTypeMusic": "\u97f3\u4e50",
|
||||||
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
|
||||||
"FolderTypePhotos": "\u56fe\u7247",
|
"FolderTypePhotos": "\u56fe\u7247",
|
||||||
"FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891",
|
"FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891",
|
||||||
"FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891",
|
"FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "\u5347\u5e8f",
|
"OptionAscending": "\u5347\u5e8f",
|
||||||
"OptionDescending": "\u964d\u5e8f",
|
"OptionDescending": "\u964d\u5e8f",
|
||||||
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
|
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
|
||||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
|
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
|
||||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||||
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
|
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u9884\u7b97",
|
"OptionBudget": "\u9884\u7b97",
|
||||||
"OptionRevenue": "\u6536\u5165",
|
"OptionRevenue": "\u6536\u5165",
|
||||||
"OptionPoster": "\u6d77\u62a5",
|
"OptionPoster": "\u6d77\u62a5",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "\u80cc\u666f",
|
"OptionBackdrop": "\u80cc\u666f",
|
||||||
"OptionTimeline": "\u65f6\u95f4\u8868",
|
"OptionTimeline": "\u65f6\u95f4\u8868",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "\u8bc4\u5206",
|
"OptionMetascore": "\u8bc4\u5206",
|
||||||
"ButtonSelect": "\u9009\u62e9",
|
"ButtonSelect": "\u9009\u62e9",
|
||||||
"ButtonGroupVersions": "\u7248\u672c\u53f7",
|
"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",
|
"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",
|
"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",
|
"HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
|
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
|
||||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
|
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
|
||||||
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
|
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "\u9884\u544a\u7247",
|
||||||
"LabelMissing": "\u7f3a\u5931",
|
"LabelMissing": "\u7f3a\u5931",
|
||||||
"LabelOffline": "\u79bb\u7ebf",
|
"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",
|
"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",
|
"HeaderProgram": "\u7a0b\u5e8f",
|
||||||
"HeaderClients": "\u5ba2\u6237\u7aef",
|
"HeaderClients": "\u5ba2\u6237\u7aef",
|
||||||
"LabelCompleted": "\u5b8c\u6210",
|
"LabelCompleted": "\u5b8c\u6210",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\u5931\u8d25",
|
||||||
"LabelSkipped": "\u8df3\u8fc7",
|
"LabelSkipped": "\u8df3\u8fc7",
|
||||||
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
|
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "\u7535\u89c6\u5267\uff1a",
|
||||||
"LabelSeasonNumber": "\u591a\u5c11\u5b63\uff1a",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "\u591a\u5c11\u96c6\uff1a",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a",
|
"LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a",
|
||||||
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
|
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
||||||
"TabNavigation": "\u5bfc\u822a",
|
"TabNavigation": "\u5bfc\u822a",
|
||||||
"TabControls": "\u63a7\u5236",
|
"TabControls": "\u63a7\u5236",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "\u573a\u666f",
|
"ButtonScenes": "\u573a\u666f",
|
||||||
"ButtonSubtitles": "\u5b57\u5e55",
|
"ButtonSubtitles": "\u5b57\u5e55",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "\u505c\u6b62",
|
"ButtonStop": "\u505c\u6b62",
|
||||||
"ButtonPause": "\u6682\u505c",
|
"ButtonPause": "\u6682\u505c",
|
||||||
"ButtonNext": "\u4e0b\u4e00\u4e2a",
|
"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",
|
"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",
|
"MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002",
|
||||||
"ButtonDismiss": "\u89e3\u6563",
|
"ButtonDismiss": "\u89e3\u6563",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"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",
|
"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",
|
"OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684",
|
||||||
"OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7",
|
"OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7",
|
||||||
"OptionStub": "\u5b58\u6839",
|
"OptionStub": "\u5b58\u6839",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "0\u5b63",
|
"OptionSeason0": "0\u5b63",
|
||||||
"LabelReport": "\u62a5\u544a\uff1a",
|
"LabelReport": "\u62a5\u544a\uff1a",
|
||||||
"OptionReportSongs": "\u6b4c\u66f2",
|
"OptionReportSongs": "\u6b4c\u66f2",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "\u827a\u672f\u5bb6",
|
"OptionReportArtists": "\u827a\u672f\u5bb6",
|
||||||
"OptionReportAlbums": "\u4e13\u8f91",
|
"OptionReportAlbums": "\u4e13\u8f91",
|
||||||
"OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
"OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "\u6d3b\u52a8",
|
"HeaderActivity": "\u6d3b\u52a8",
|
||||||
"ScheduledTaskStartedWithName": "{0} \u5f00\u59cb",
|
"ScheduledTaskStartedWithName": "{0} \u5f00\u59cb",
|
||||||
"ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88",
|
"ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
|
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
|
||||||
"HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7",
|
"HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7",
|
||||||
"HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b",
|
"HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf",
|
"LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "\u5b57\u5e55",
|
"HeaderSubtitles": "\u5b57\u5e55",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "\u81ea\u52a8\u6574\u7406",
|
"TabAutoOrganize": "\u81ea\u52a8\u6574\u7406",
|
||||||
"TabPlugins": "\u63d2\u4ef6",
|
"TabPlugins": "\u63d2\u4ef6",
|
||||||
"TabHelp": "\u5e2e\u52a9",
|
"TabHelp": "\u5e2e\u52a9",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "\u8d28\u91cf",
|
"ButtonQuality": "\u8d28\u91cf",
|
||||||
"HeaderNotifications": "\u901a\u77e5",
|
"HeaderNotifications": "\u901a\u77e5",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "\u65b0\u5efa\u64ad\u653e\u5217\u8868...",
|
"OptionNewPlaylist": "\u65b0\u5efa\u64ad\u653e\u5217\u8868...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "\u67e5\u770b\u7535\u89c6\u5267\u5f55\u50cf",
|
"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",
|
"ButtonRemoveFromPlaylist": "\u4ece\u64ad\u653e\u5217\u8868\u4e2d\u79fb\u9664",
|
||||||
"HeaderSpecials": "\u7279\u96c6",
|
"HeaderSpecials": "\u7279\u96c6",
|
||||||
"HeaderTrailers": "\u9884\u544a\u7247",
|
"HeaderTrailers": "\u9884\u544a\u7247",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "\u4e13\u8f91",
|
"HeaderAlbums": "\u4e13\u8f91",
|
||||||
"HeaderGames": "\u6e38\u620f",
|
"HeaderGames": "\u6e38\u620f",
|
||||||
"HeaderBooks": "\u4e66\u7c4d",
|
"HeaderBooks": "\u4e66\u7c4d",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "\u5b63",
|
"HeaderSeasons": "\u5b63",
|
||||||
"HeaderTracks": "\u97f3\u8f68",
|
"HeaderTracks": "\u97f3\u8f68",
|
||||||
"HeaderItems": "\u9879\u76ee",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u96e2\u958b",
|
||||||
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
|
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
|
||||||
"LabelGithub": "Github",
|
"LabelGithub": "Github",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
|
"ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
|
||||||
"HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
|
"HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
|
||||||
"RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
|
"RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
|
"HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
|
||||||
"LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a",
|
"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",
|
"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",
|
"FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
|
||||||
"FolderTypeMovies": "\u96fb\u5f71",
|
"FolderTypeMovies": "\u96fb\u5f71",
|
||||||
"FolderTypeMusic": "\u97f3\u6a02",
|
"FolderTypeMusic": "\u97f3\u6a02",
|
||||||
"FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
|
||||||
"FolderTypePhotos": "\u76f8\u7247",
|
"FolderTypePhotos": "\u76f8\u7247",
|
||||||
"FolderTypeMusicVideos": "MV",
|
"FolderTypeMusicVideos": "MV",
|
||||||
"FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247",
|
"FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247",
|
||||||
|
@ -205,7 +202,7 @@
|
||||||
"OptionAscending": "\u905e\u5347",
|
"OptionAscending": "\u905e\u5347",
|
||||||
"OptionDescending": "\u905e\u964d",
|
"OptionDescending": "\u905e\u964d",
|
||||||
"OptionRuntime": "\u904b\u884c\u6642\u9593",
|
"OptionRuntime": "\u904b\u884c\u6642\u9593",
|
||||||
"OptionReleaseDate": "Release Date",
|
"OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
|
||||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
||||||
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
|
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
|
||||||
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
|
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u9810\u7b97",
|
"OptionBudget": "\u9810\u7b97",
|
||||||
"OptionRevenue": "\u6536\u5165",
|
"OptionRevenue": "\u6536\u5165",
|
||||||
"OptionPoster": "\u6d77\u5831",
|
"OptionPoster": "\u6d77\u5831",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "\u6d77\u5831\u5361\u7247",
|
"OptionPosterCard": "\u6d77\u5831\u5361\u7247",
|
||||||
"OptionBackdrop": "\u80cc\u666f",
|
"OptionBackdrop": "\u80cc\u666f",
|
||||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
|
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
|
||||||
"ButtonSelect": "\u9078\u64c7",
|
"ButtonSelect": "\u9078\u64c7",
|
||||||
"ButtonGroupVersions": "\u7248\u672c",
|
"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",
|
"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",
|
"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",
|
"HeaderCredits": "\u7a4d\u5206",
|
||||||
|
@ -495,7 +491,7 @@
|
||||||
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
|
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
|
||||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
|
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
|
||||||
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
|
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "\u9810\u544a\u7247",
|
||||||
"LabelMissing": "\u7f3a\u5c11",
|
"LabelMissing": "\u7f3a\u5c11",
|
||||||
"LabelOffline": "\u96e2\u7dda",
|
"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",
|
"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",
|
"HeaderProgram": "\u7a0b\u5f0f",
|
||||||
"HeaderClients": "\u5ba2\u6236\u7aef",
|
"HeaderClients": "\u5ba2\u6236\u7aef",
|
||||||
"LabelCompleted": "\u5df2\u5b8c\u6210",
|
"LabelCompleted": "\u5df2\u5b8c\u6210",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\u5931\u6557",
|
||||||
"LabelSkipped": "\u7565\u904e",
|
"LabelSkipped": "\u7565\u904e",
|
||||||
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
|
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "\u96fb\u8996\u5287\uff1a",
|
||||||
"LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578\uff1a",
|
"LabelSeasonNumber": "Season number:",
|
||||||
"LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578\uff1a",
|
"LabelEpisodeNumber": "Episode number:",
|
||||||
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
|
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
|
||||||
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
|
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
|
||||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "\u5b57\u5e55",
|
"ButtonSubtitles": "\u5b57\u5e55",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "\u9996\u5b63",
|
"OptionSeason0": "\u9996\u5b63",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "\u6b4c\u66f2",
|
"OptionReportSongs": "\u6b4c\u66f2",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
"OptionReportAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "\u5b57\u5e55",
|
"HeaderSubtitles": "\u5b57\u5e55",
|
||||||
"HeaderVideos": "\u5f71\u7247",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "\u4f3a\u670d\u5668\u72c0\u614b",
|
"ButtonServerDashboard": "\u4f3a\u670d\u5668\u72c0\u614b",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "\u901a\u77e5",
|
"HeaderNotifications": "\u901a\u77e5",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "Select Player",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "\u67e5\u770b\u96fb\u8996\u5287\u9304\u5f71",
|
"ButtonViewSeriesRecording": "\u67e5\u770b\u96fb\u8996\u5287\u9304\u5f71",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "\u904a\u6232",
|
"HeaderGames": "\u904a\u6232",
|
||||||
"HeaderBooks": "\u66f8\u7c4d",
|
"HeaderBooks": "\u66f8\u7c4d",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6",
|
"HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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.",
|
"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.",
|
"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",
|
"Share": "Share",
|
||||||
"HeaderShare": "Share",
|
|
||||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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",
|
"LabelExit": "\u96e2\u958b",
|
||||||
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4",
|
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4",
|
||||||
"LabelGithub": "GitHub",
|
"LabelGithub": "GitHub",
|
||||||
|
@ -77,7 +76,6 @@
|
||||||
"ButtonConfigurePinCode": "Configure pin code",
|
"ButtonConfigurePinCode": "Configure pin code",
|
||||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||||
"RegisterWithPayPal": "Register with PayPal",
|
"RegisterWithPayPal": "Register with PayPal",
|
||||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
|
|
||||||
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
|
||||||
"LabelSyncTempPath": "Temporary file path:",
|
"LabelSyncTempPath": "Temporary file path:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"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",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
|
||||||
"FolderTypePhotos": "Photos",
|
"FolderTypePhotos": "Photos",
|
||||||
"FolderTypeMusicVideos": "Music videos",
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
"FolderTypeHomeVideos": "Home videos",
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
@ -219,7 +216,6 @@
|
||||||
"OptionBudget": "\u9810\u7b97",
|
"OptionBudget": "\u9810\u7b97",
|
||||||
"OptionRevenue": "\u6536\u5165",
|
"OptionRevenue": "\u6536\u5165",
|
||||||
"OptionPoster": "\u6d77\u5831",
|
"OptionPoster": "\u6d77\u5831",
|
||||||
"HeaderYears": "Years",
|
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Poster card",
|
||||||
"OptionBackdrop": "\u80cc\u666f",
|
"OptionBackdrop": "\u80cc\u666f",
|
||||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||||
|
@ -329,7 +325,7 @@
|
||||||
"OptionMetascore": "\u8a55\u5206",
|
"OptionMetascore": "\u8a55\u5206",
|
||||||
"ButtonSelect": "\u9078\u64c7",
|
"ButtonSelect": "\u9078\u64c7",
|
||||||
"ButtonGroupVersions": "\u7248\u672c",
|
"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",
|
"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.",
|
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "Credits",
|
||||||
|
@ -732,12 +728,10 @@
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonFullscreen": "Fullscreen",
|
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "Subtitles",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "Previous track",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "Next track",
|
||||||
"ButtonAudioTracks": "Audio Tracks",
|
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "Stop",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "Pause",
|
||||||
"ButtonNext": "Next",
|
"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.",
|
"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.",
|
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||||
"ButtonDismiss": "Dismiss",
|
"ButtonDismiss": "Dismiss",
|
||||||
"ButtonMore": "More",
|
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
||||||
|
@ -1083,7 +1076,6 @@
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
"OptionMissingParentalRating": "Missing parental rating",
|
"OptionMissingParentalRating": "Missing parental rating",
|
||||||
"OptionStub": "Stub",
|
"OptionStub": "Stub",
|
||||||
"HeaderEpisodes": "Episodes",
|
|
||||||
"OptionSeason0": "Season 0",
|
"OptionSeason0": "Season 0",
|
||||||
"LabelReport": "Report:",
|
"LabelReport": "Report:",
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
|
@ -1100,7 +1092,7 @@
|
||||||
"OptionReportArtists": "Artists",
|
"OptionReportArtists": "Artists",
|
||||||
"OptionReportAlbums": "Albums",
|
"OptionReportAlbums": "Albums",
|
||||||
"OptionReportAdultVideos": "Adult videos",
|
"OptionReportAdultVideos": "Adult videos",
|
||||||
"ButtonMoreItems": "More",
|
"ButtonMore": "More",
|
||||||
"HeaderActivity": "Activity",
|
"HeaderActivity": "Activity",
|
||||||
"ScheduledTaskStartedWithName": "{0} started",
|
"ScheduledTaskStartedWithName": "{0} started",
|
||||||
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
"ScheduledTaskCancelledWithName": "{0} was cancelled",
|
||||||
|
@ -1355,6 +1347,7 @@
|
||||||
"HeaderPasswordReset": "Password Reset",
|
"HeaderPasswordReset": "Password Reset",
|
||||||
"HeaderParentalRatings": "Parental Ratings",
|
"HeaderParentalRatings": "Parental Ratings",
|
||||||
"HeaderVideoTypes": "Video Types",
|
"HeaderVideoTypes": "Video Types",
|
||||||
|
"HeaderYears": "Years",
|
||||||
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
|
||||||
"LabelBlockContentWithTags": "Block content with tags:",
|
"LabelBlockContentWithTags": "Block content with tags:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
|
||||||
|
@ -1377,6 +1370,7 @@
|
||||||
"HeaderUpcomingMovies": "Upcoming Movies",
|
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||||
"HeaderUpcomingSports": "Upcoming Sports",
|
"HeaderUpcomingSports": "Upcoming Sports",
|
||||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||||
|
"ButtonMoreItems": "More",
|
||||||
"LabelShowLibraryTileNames": "Show library tile names",
|
"LabelShowLibraryTileNames": "Show library tile names",
|
||||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||||
|
@ -1495,14 +1489,10 @@
|
||||||
"HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357",
|
"HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"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",
|
"HeaderDefaultPadding": "Default Padding",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Videos",
|
"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:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
|
@ -1885,6 +1875,8 @@
|
||||||
"TabAutoOrganize": "Auto-Organize",
|
"TabAutoOrganize": "Auto-Organize",
|
||||||
"TabPlugins": "Plugins",
|
"TabPlugins": "Plugins",
|
||||||
"TabHelp": "Help",
|
"TabHelp": "Help",
|
||||||
|
"ButtonFullscreen": "Fullscreen",
|
||||||
|
"ButtonAudioTracks": "Audio Tracks",
|
||||||
"ButtonQuality": "Quality",
|
"ButtonQuality": "Quality",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e",
|
"HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e",
|
||||||
|
@ -1895,7 +1887,6 @@
|
||||||
"OptionNewPlaylist": "New playlist...",
|
"OptionNewPlaylist": "New playlist...",
|
||||||
"MessageAddedToPlaylistSuccess": "Ok",
|
"MessageAddedToPlaylistSuccess": "Ok",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"ValueOriginalAirDate": "Original air date: {0}",
|
|
||||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||||
"HeaderSpecials": "Specials",
|
"HeaderSpecials": "Specials",
|
||||||
"HeaderTrailers": "Trailers",
|
"HeaderTrailers": "Trailers",
|
||||||
|
@ -2057,6 +2048,7 @@
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
"HeaderBooks": "Books",
|
"HeaderBooks": "Books",
|
||||||
|
"HeaderEpisodes": "Episodes",
|
||||||
"HeaderSeasons": "Seasons",
|
"HeaderSeasons": "Seasons",
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Items",
|
"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",
|
"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.",
|
"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",
|
"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",
|
"ButtonShare": "\u5206\u4eab",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"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",
|
"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",
|
"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",
|
"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.",
|
"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.",
|
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
|
||||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||||
|
@ -2364,5 +2355,7 @@
|
||||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"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.",
|
"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",
|
"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>
|
// <summary>voicecommands class</summary>
|
||||||
define([], function () {
|
define([], function () {
|
||||||
|
|
||||||
|
|
||||||
/// <summary> Process the command. </summary>
|
/// <summary> Process the command. </summary>
|
||||||
/// <param name="commandPath"> Full pathname of the command file. </param>
|
/// <param name="commandPath"> Full pathname of the command file. </param>
|
||||||
/// <param name="result"> The result. </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>
|
/// <summary> An enum constant representing the window. voice input manager option. </summary>
|
||||||
return {
|
return {
|
||||||
startListening: startListening
|
startListening: startListening
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue