mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update upnext dialog
This commit is contained in:
parent
74dda3183f
commit
36e68899a2
89 changed files with 694 additions and 817 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["globalize","loading","alert","emby-linkbutton"],function(globalize,loading,alert){"use strict";function showNewUserInviteMessage(result){if(!result.IsNewUserInvitation&&!result.IsPending)return Promise.resolve();var message=result.IsNewUserInvitation?globalize.translate("sharedcomponents#MessageInvitationSentToNewUser",result.GuestDisplayName):globalize.translate("sharedcomponents#MessageInvitationSentToUser",result.GuestDisplayName),resolvePromise=function(){return Promise.resolve()};return alert({text:message,title:globalize.translate("sharedcomponents#HeaderInvitationSent")}).then(resolvePromise,resolvePromise)}function inviteGuest(options){var apiClient=options.apiClient;return loading.show(),apiClient.ajax({type:"POST",url:apiClient.getUrl("Connect/Invite"),dataType:"json",data:options.guestOptions||{}}).then(function(result){return loading.hide(),showNewUserInviteMessage(result)},function(response){loading.hide();var rejectPromise=function(){return Promise.reject()};return 404===response.status?alert({text:globalize.translate("sharedcomponents#GuestUserNotFound")}).then(rejectPromise,rejectPromise):(response.status||0)>=500?alert({text:globalize.translate("sharedcomponents#ErrorReachingEmbyConnect")}).then(rejectPromise,rejectPromise):showGuestGeneralErrorMessage().then(rejectPromise,rejectPromise)})}function showGuestGeneralErrorMessage(){var html=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media");var text=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1","https://emby.media/connect");return text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media"),alert({text:text,html:html})}function showLinkUserMessage(username){var html,text;return username?(html=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media"),text=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1","https://emby.media/connect"),text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media")):html=text=globalize.translate("sharedcomponents#DefaultErrorMessage"),alert({text:text,html:html})}function updateUserLink(apiClient,user,newConnectUsername){var currentConnectUsername=user.ConnectUserName||"",enteredConnectUsername=newConnectUsername,linkUrl=apiClient.getUrl("Users/"+user.Id+"/Connect/Link");return currentConnectUsername&&!enteredConnectUsername?apiClient.ajax({type:"DELETE",url:linkUrl}).then(function(){return alert({text:globalize.translate("sharedcomponents#MessageEmbyAccontRemoved"),title:globalize.translate("sharedcomponents#HeaderEmbyAccountRemoved")}).catch(function(){return Promise.resolve()})},function(){return alert({text:globalize.translate("sharedcomponents#ErrorRemovingEmbyConnectAccount")}).then(function(){return Promise.reject()})}):currentConnectUsername!==enteredConnectUsername?apiClient.ajax({type:"POST",url:linkUrl,data:{ConnectUsername:enteredConnectUsername},dataType:"json"}).then(function(result){var msgKey=result.IsPending?"sharedcomponents#MessagePendingEmbyAccountAdded":"sharedcomponents#MessageEmbyAccountAdded";return alert({text:globalize.translate(msgKey),title:globalize.translate("sharedcomponents#HeaderEmbyAccountAdded")}).catch(function(){return Promise.resolve()})},function(){return showLinkUserMessage(".").then(function(){return Promise.reject()})}):Promise.reject()}return{inviteGuest:inviteGuest,updateUserLink:updateUserLink}});
|
define(["globalize","loading","alert","emby-linkbutton"],function(globalize,loading,alert){"use strict";function resolvePromise(){return Promise.resolve()}function rejectPromise(){return Promise.reject()}function showNewUserInviteMessage(result){if(!result.IsNewUserInvitation&&!result.IsPending)return Promise.resolve();var message=result.IsNewUserInvitation?globalize.translate("sharedcomponents#MessageInvitationSentToNewUser",result.GuestDisplayName):globalize.translate("sharedcomponents#MessageInvitationSentToUser",result.GuestDisplayName);return alert({text:message,title:globalize.translate("sharedcomponents#HeaderInvitationSent")}).then(resolvePromise,resolvePromise)}function inviteGuest(options){var apiClient=options.apiClient;return loading.show(),apiClient.ajax({type:"POST",url:apiClient.getUrl("Connect/Invite"),dataType:"json",data:options.guestOptions||{}}).then(function(result){return loading.hide(),showNewUserInviteMessage(result)},function(response){loading.hide();var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise,rejectPromise):404===statusCode?alert({text:globalize.translate("sharedcomponents#GuestUserNotFound")}).then(rejectPromise,rejectPromise):(statusCode||0)>=500?alert({text:globalize.translate("sharedcomponents#ErrorReachingEmbyConnect")}).then(rejectPromise,rejectPromise):showGuestGeneralErrorMessage().then(rejectPromise,rejectPromise)})}function showGuestGeneralErrorMessage(){var html=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media");var text=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1","https://emby.media/connect");return text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media"),alert({text:text,html:html})}function showConnectServerUnreachableErrorMessage(){var text=globalize.translate("sharedcomponents#ErrorConnectServerUnreachable","https://connect.emby.media");return alert({text:text})}function showLinkUserErrorMessage(username,statusCode){var html,text;return 502===statusCode?showConnectServerUnreachableErrorMessage():(username?(html=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media"),text=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1","https://emby.media/connect"),text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media")):html=text=globalize.translate("sharedcomponents#DefaultErrorMessage"),alert({text:text,html:html}))}function updateUserLink(apiClient,user,newConnectUsername){var currentConnectUsername=user.ConnectUserName||"",enteredConnectUsername=newConnectUsername,linkUrl=apiClient.getUrl("Users/"+user.Id+"/Connect/Link");return currentConnectUsername&&!enteredConnectUsername?apiClient.ajax({type:"DELETE",url:linkUrl}).then(function(){return alert({text:globalize.translate("sharedcomponents#MessageEmbyAccontRemoved"),title:globalize.translate("sharedcomponents#HeaderEmbyAccountRemoved")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):alert({text:globalize.translate("sharedcomponents#ErrorRemovingEmbyConnectAccount")}).then(rejectPromise)}):currentConnectUsername!==enteredConnectUsername?apiClient.ajax({type:"POST",url:linkUrl,data:{ConnectUsername:enteredConnectUsername},dataType:"json"}).then(function(result){var msgKey=result.IsPending?"sharedcomponents#MessagePendingEmbyAccountAdded":"sharedcomponents#MessageEmbyAccountAdded";return alert({text:globalize.translate(msgKey),title:globalize.translate("sharedcomponents#HeaderEmbyAccountAdded")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):showLinkUserErrorMessage(".",statusCode).then(rejectPromise)}):Promise.reject()}return{inviteGuest:inviteGuest,updateUserLink:updateUserLink,showLinkUserErrorMessage:showLinkUserErrorMessage,showConnectServerUnreachableErrorMessage:showConnectServerUnreachableErrorMessage}});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Descarregant...",
|
|
||||||
"HeaderWaitingForWifi": "Esperant Wifi",
|
|
||||||
"WifiRequiredToDownload": "Es requereix una connexi\u00f3 Wifi per continuar descarregant.",
|
|
||||||
"HeaderDownloadSettings": "Prefer\u00e8ncies de desc\u00e0rregues",
|
|
||||||
"Hide": "Amaga",
|
|
||||||
"HeaderStartNow": "Comen\u00e7ar Ara",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Reproduint proper v\u00eddeo en {0}",
|
|
||||||
"HeaderSecondsValue": "{0} segons",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Reproduint proper episodi en {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un \u00fanic pagament, o amb una subscripci\u00f3 activa d'Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un \u00fanic pagament, o amb una subscripci\u00f3 activa d'Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripci\u00f3 activa d'Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripci\u00f3 activa d'Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "Si tens una subscripci\u00f3 activa d'Emby Premiere assegura't que l'has configurat al teu tauler de control de l'Emby Server, on pots accedir clicant a l'opci\u00f3 d'Emby Premiere al men\u00fa principal.",
|
"MessageToValidateSupporter": "Si tens una subscripci\u00f3 activa d'Emby Premiere assegura't que l'has configurat al teu tauler de control de l'Emby Server, on pots accedir clicant a l'opci\u00f3 d'Emby Premiere al men\u00fa principal.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Enregistra la s\u00e8rie",
|
"RecordSeries": "Enregistra la s\u00e8rie",
|
||||||
"HeaderCinemaMode": "Mode Cinema",
|
"HeaderCinemaMode": "Mode Cinema",
|
||||||
"HeaderCloudSync": "Sincronitzar amb el N\u00favol",
|
"HeaderCloudSync": "Sincronitzar amb el N\u00favol",
|
||||||
"HeaderDownloadedMedia": "Mitjans Descarregats",
|
|
||||||
"Downloads": "Desc\u00e0rregues",
|
"Downloads": "Desc\u00e0rregues",
|
||||||
"HeaderMyDownloads": "Les meves desc\u00e0rregues",
|
"HeaderMyDownloads": "Les meves desc\u00e0rregues",
|
||||||
"HeaderOfflineDownloads": "Mitjans Sense Connexi\u00f3",
|
"HeaderOfflineDownloads": "Mitjans Sense Connexi\u00f3",
|
||||||
"HeaderOfflineDownloadsDescription": "Descarrega mitjans als teus dispositius per a un f\u00e0cil \u00fas fora de l\u00ednia.",
|
"HeaderOfflineDownloadsDescription": "Descarrega mitjans als teus dispositius per a un f\u00e0cil \u00fas fora de l\u00ednia.",
|
||||||
"CloudSyncFeatureDescription": "Sincronitza els teus mitjans amb el n\u00favol per a copiar, arxivar i convertir f\u00e0cilment.",
|
"CloudSyncFeatureDescription": "Sincronitza els teus mitjans amb el n\u00favol per a copiar, arxivar i convertir f\u00e0cilment.",
|
||||||
"DvrFeatureDescription": "Programa enregistraments de TV en directe individuals, de s\u00e8ries i molt m\u00e9s amb Emby DVR.",
|
"DvrFeatureDescription": "Programa enregistraments de TV en directe individuals, de s\u00e8ries i molt m\u00e9s amb Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel\u00b7la desc\u00e0rrega",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "\u00cdtem desat.",
|
"MessageItemSaved": "\u00cdtem desat.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Descarrega a un altre dispositiu",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Qualitat:",
|
"LabelQuality": "Qualitat:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Desc\u00e0rrega programada",
|
"DownloadingDots": "Descarregant...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Perfil:",
|
"LabelProfile": "Perfil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continua Escoltant",
|
"HeaderContinueListening": "Continua Escoltant",
|
||||||
"HeaderActiveRecordings": "Enregistraments Actius",
|
"HeaderActiveRecordings": "Enregistraments Actius",
|
||||||
"HeaderLatestRecordings": "Darrers Enregistraments",
|
"HeaderLatestRecordings": "Darrers Enregistraments",
|
||||||
"LabelDownloadTo": "Descarrega a:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "A continuaci\u00f3",
|
"HeaderNextUp": "A continuaci\u00f3",
|
||||||
"HeaderLatestFrom": "Novetats a {0}",
|
"HeaderLatestFrom": "Novetats a {0}",
|
||||||
"LabelHomeScreenSectionValue": "Secci\u00f3 {0} de la p\u00e0gina d'inici:",
|
"LabelHomeScreenSectionValue": "Secci\u00f3 {0} de la p\u00e0gina d'inici:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Esperant Wifi",
|
||||||
|
"WifiRequiredToDownload": "Es requereix una connexi\u00f3 Wifi per continuar descarregant.",
|
||||||
|
"HeaderDownloadSettings": "Prefer\u00e8ncies de desc\u00e0rregues",
|
||||||
|
"Hide": "Amaga",
|
||||||
|
"HeaderStartNow": "Comen\u00e7ar Ara",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Reproduint proper v\u00eddeo en {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Reproduint proper episodi en {0}",
|
||||||
|
"HeaderSecondsValue": "{0} segons",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.",
|
"MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Nahr\u00e1t s\u00e9rie",
|
"RecordSeries": "Nahr\u00e1t s\u00e9rie",
|
||||||
"HeaderCinemaMode": "Cinema M\u00f3d",
|
"HeaderCinemaMode": "Cinema M\u00f3d",
|
||||||
"HeaderCloudSync": "Synchronizace s Cloudem",
|
"HeaderCloudSync": "Synchronizace s Cloudem",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline m\u00e9dia",
|
"HeaderOfflineDownloads": "Offline m\u00e9dia",
|
||||||
"HeaderOfflineDownloadsDescription": "St\u00e1hnout m\u00e9dia do va\u0161eho za\u0159\u00edzen\u00ed pro snadn\u00e9 pou\u017eit\u00ed offline.",
|
"HeaderOfflineDownloadsDescription": "St\u00e1hnout m\u00e9dia do va\u0161eho za\u0159\u00edzen\u00ed pro snadn\u00e9 pou\u017eit\u00ed offline.",
|
||||||
"CloudSyncFeatureDescription": "Synchronizujte va\u0161e m\u00e9dia na cloud pro jednodu\u0161\u0161\u00ed z\u00e1lohov\u00e1n\u00ed, archivaci a konverzi.",
|
"CloudSyncFeatureDescription": "Synchronizujte va\u0161e m\u00e9dia na cloud pro jednodu\u0161\u0161\u00ed z\u00e1lohov\u00e1n\u00ed, archivaci a konverzi.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Zru\u0161it synchronizaci",
|
|
||||||
"CancelSyncJobConfirmation": "Zru\u0161en\u00edm synchronizace budou odstran\u011bny ji\u017e synchronizovan\u00e1 media ze za\u0159\u00edzen\u00ed b\u011bhem dal\u0161\u00edho synchroniza\u010dn\u00edho procesu. Chcete opravdu pokra\u010dovat?",
|
|
||||||
"CinemaModeFeatureDescription": "S re\u017eimem Kino z\u00edskate funkci, kter\u00e1 p\u0159ed hlavn\u00edm programem p\u0159ehraje trailery a u\u017eivatelsk\u00e1 intra.",
|
"CinemaModeFeatureDescription": "S re\u017eimem Kino z\u00edskate funkci, kter\u00e1 p\u0159ed hlavn\u00edm programem p\u0159ehraje trailery a u\u017eivatelsk\u00e1 intra.",
|
||||||
"HeaderFreeApps": "Emby Apps zdarma",
|
"HeaderFreeApps": "Emby Apps zdarma",
|
||||||
"FreeAppsFeatureDescription": "U\u017eijte si v\u00fdb\u011br Emby aplikac\u00ed zdarma pro va\u0161e za\u0159\u00edzen\u00ed.",
|
"FreeAppsFeatureDescription": "U\u017eijte si v\u00fdb\u011br Emby aplikac\u00ed zdarma pro va\u0161e za\u0159\u00edzen\u00ed.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
"PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
||||||
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
||||||
"SearchResults": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed",
|
"SearchResults": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} je restartov\u00e1n.",
|
"ServerNameIsRestarting": "Emby Server - {0} je restartov\u00e1n.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} je vyp\u00edn\u00e1n.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} je vyp\u00edn\u00e1n.",
|
||||||
"HeaderDeleteItems": "Odstranit polo\u017eky",
|
"HeaderDeleteItems": "Odstranit polo\u017eky",
|
||||||
"ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
"PleaseRestartServerName": "Pros\u00edm, restartujte Emby Server - {0}.",
|
"PleaseRestartServerName": "Pros\u00edm, restartujte Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "N\u00e1zev Sync \u00falohy:",
|
"LabelSyncJobName": "N\u00e1zev Sync \u00falohy:",
|
||||||
|
"SyncJobCreated": "\u00daloha Sync vytvo\u0159ena",
|
||||||
"LabelQuality": "Kvalita:",
|
"LabelQuality": "Kvalita:",
|
||||||
"LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.",
|
"LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.",
|
||||||
"DownloadScheduled": "Sta\u017een\u00ed napl\u00e1nov\u00e1no",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Synchronizace vy\u017eaduje aktivaci produktu Emby Premiere.",
|
"HeaderSyncRequiresSub": "Synchronizace vy\u017eaduje aktivaci produktu Emby Premiere.",
|
||||||
"LearnMore": "Zjistit v\u00edce",
|
"LearnMore": "Zjistit v\u00edce",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync do:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s op for dette feature med en lille enkeltst\u00e5ende betaling, eller med et aktivt Emby Premiere abonnement.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s op for dette feature med en lille enkeltst\u00e5ende betaling, eller med et aktivt Emby Premiere abonnement.",
|
||||||
"MessageUnlockAppWithSupporter": "L\u00e5s op for dette feature med et aktivt Emby Premiere abonnement.",
|
"MessageUnlockAppWithSupporter": "L\u00e5s op for dette feature med et aktivt Emby Premiere abonnement.",
|
||||||
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere abonnement, skal du v\u00e6re sikker p\u00e5 at Emby Premiere er konfigureret i dit Emby Server-kontrolpanel, som kan tilg\u00e5es ved at klikke p\u00e5 Emby Premiere i hovedmenuen.",
|
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere abonnement, skal du v\u00e6re sikker p\u00e5 at Emby Premiere er konfigureret i dit Emby Server-kontrolpanel, som kan tilg\u00e5es ved at klikke p\u00e5 Emby Premiere i hovedmenuen.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Optag serie",
|
"RecordSeries": "Optag serie",
|
||||||
"HeaderCinemaMode": "Biograftilstand",
|
"HeaderCinemaMode": "Biograftilstand",
|
||||||
"HeaderCloudSync": "Sky-Synk",
|
"HeaderCloudSync": "Sky-Synk",
|
||||||
"HeaderDownloadedMedia": "Downloadet Medie",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Medie",
|
"HeaderOfflineDownloads": "Offline Medie",
|
||||||
"HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.",
|
"HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.",
|
||||||
"CloudSyncFeatureDescription": "Synk dine medier til skyen for nem backup, arkivering og konvertering.",
|
"CloudSyncFeatureDescription": "Synk dine medier til skyen for nem backup, arkivering og konvertering.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Annull\u00e9r synk",
|
|
||||||
"CancelSyncJobConfirmation": "Annullering af synk-jobbet fjerner synkroniserede medier fra enheden under n\u00e6ste synk. Er du sikker p\u00e5 at du vil forts\u00e6tte?",
|
|
||||||
"CinemaModeFeatureDescription": "Biograftilstand giver dig den \u00e6gte biografoplevelse med trailers og brugertilpassede introer, f\u00f8r selve filmen.",
|
"CinemaModeFeatureDescription": "Biograftilstand giver dig den \u00e6gte biografoplevelse med trailers og brugertilpassede introer, f\u00f8r selve filmen.",
|
||||||
"HeaderFreeApps": "Gratis Emby Apps",
|
"HeaderFreeApps": "Gratis Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "God forn\u00f8jelse med gratis adgang til Emby apps til dine enheder.",
|
"FreeAppsFeatureDescription": "God forn\u00f8jelse med gratis adgang til Emby apps til dine enheder.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.",
|
"PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.",
|
||||||
"MessageItemSaved": "Element gemt.",
|
"MessageItemSaved": "Element gemt.",
|
||||||
"SearchResults": "S\u00f8geresultater",
|
"SearchResults": "S\u00f8geresultater",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} genstarter.",
|
"ServerNameIsRestarting": "Emby Server - {0} genstarter.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} lukker ned.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} lukker ned.",
|
||||||
"HeaderDeleteItems": "Slet emner",
|
"HeaderDeleteItems": "Slet emner",
|
||||||
"ConfirmDeleteItems": "Sletning af disse emner vil b\u00e5de fjerne dem fra filsystemet og dit mediebibliotek. Er du sikker p\u00e5 at du vil forts\u00e6tte?",
|
"ConfirmDeleteItems": "Sletning af disse emner vil b\u00e5de fjerne dem fra filsystemet og dit mediebibliotek. Er du sikker p\u00e5 at du vil forts\u00e6tte?",
|
||||||
"PleaseRestartServerName": "Genstart venligst Emby Server - {0}.",
|
"PleaseRestartServerName": "Genstart venligst Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Navn til synkroniserings job:",
|
"LabelSyncJobName": "Navn til synkroniserings job:",
|
||||||
|
"SyncJobCreated": "Synkroniserings job oprettet",
|
||||||
"LabelQuality": "Kvalitet:",
|
"LabelQuality": "Kvalitet:",
|
||||||
"LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.",
|
"LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.",
|
||||||
"DownloadScheduled": "Download planlagt",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Synk p\u00e5kr\u00e6ver et aktivt Emby Premiere abonnement.",
|
"HeaderSyncRequiresSub": "Synk p\u00e5kr\u00e6ver et aktivt Emby Premiere abonnement.",
|
||||||
"LearnMore": "L\u00e6r mere",
|
"LearnMore": "L\u00e6r mere",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download til:",
|
"LabelSyncTo": "Synkroniser til:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "L\u00e4dt herunter...",
|
|
||||||
"HeaderWaitingForWifi": "Warte auf WLAN",
|
|
||||||
"WifiRequiredToDownload": "Um den Download fortzusetzen wird eine WLAN-Verbindung ben\u00f6tigt.",
|
|
||||||
"HeaderDownloadSettings": "Downloadeinstellungen",
|
|
||||||
"Hide": "Verstecke",
|
|
||||||
"HeaderStartNow": "Starte jetzt",
|
|
||||||
"HeaderNextVideoPlayingInValue": "N\u00e4chstes Video wird abgespielt in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Sekunden",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "N\u00e4chste Episode wird abgespielt in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageUnlockAppWithSupporter": "Schalte diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithSupporter": "Schalte diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageToValidateSupporter": "Wenn du eine aktive Emby Premiere Mitgliedschaft hast, stelle bitte sicher, dass du diese \u00fcber das Emby Server Dashboard eingerichtet hast (Hauptmenu -> Emby Premiere).",
|
"MessageToValidateSupporter": "Wenn du eine aktive Emby Premiere Mitgliedschaft hast, stelle bitte sicher, dass du diese \u00fcber das Emby Server Dashboard eingerichtet hast (Hauptmenu -> Emby Premiere).",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Serie aufnehmen",
|
"RecordSeries": "Serie aufnehmen",
|
||||||
"HeaderCinemaMode": "Kinomodus",
|
"HeaderCinemaMode": "Kinomodus",
|
||||||
"HeaderCloudSync": "Cloud Synchronisation",
|
"HeaderCloudSync": "Cloud Synchronisation",
|
||||||
"HeaderDownloadedMedia": "Heruntergeladene Medien",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "Meine Downloads",
|
"HeaderMyDownloads": "Meine Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Medien",
|
"HeaderOfflineDownloads": "Offline Medien",
|
||||||
"HeaderOfflineDownloadsDescription": "Lade Medien auf deine Ger\u00e4te herunter um sie einfach offline zu nutzen.",
|
"HeaderOfflineDownloadsDescription": "Lade Medien auf deine Ger\u00e4te herunter um sie einfach offline zu nutzen.",
|
||||||
"CloudSyncFeatureDescription": "Synchronisiere deine Medien in die Cloud f\u00fcr ein Backup, eine Archivierung und Konvertierung.",
|
"CloudSyncFeatureDescription": "Synchronisiere deine Medien in die Cloud f\u00fcr ein Backup, eine Archivierung und Konvertierung.",
|
||||||
"DvrFeatureDescription": "Plane individuelle Aufnahmen von Live-TV, Serien und mehr mit Emby DVR.",
|
"DvrFeatureDescription": "Plane individuelle Aufnahmen von Live-TV, Serien und mehr mit Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Download abbrechen",
|
|
||||||
"CancelSyncJobConfirmation": "Der Abbruch des Downloadauftrags wird bereits heruntergeladene Medien bei der n\u00e4chsten Hintergrundsynchronisation vom Ger\u00e4t l\u00f6schen. M\u00f6chtest du wirklich fortfahren?",
|
|
||||||
"CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.",
|
"CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.",
|
||||||
"HeaderFreeApps": "Kostenlose Emby Apps",
|
"HeaderFreeApps": "Kostenlose Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Genie\u00dfe Zugriff auf kostenlose Emby Apps f\u00fcr deine Ger\u00e4te.",
|
"FreeAppsFeatureDescription": "Genie\u00dfe Zugriff auf kostenlose Emby Apps f\u00fcr deine Ger\u00e4te.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
"PleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
||||||
"MessageItemSaved": "Element gespeichert",
|
"MessageItemSaved": "Element gespeichert",
|
||||||
"SearchResults": "Suchergebnisse",
|
"SearchResults": "Suchergebnisse",
|
||||||
"DownloadToOtherDevice": "Auf ein anderes Ger\u00e4t herunterladen",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} startet neu.",
|
"ServerNameIsRestarting": "Emby Server - {0} startet neu.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.",
|
||||||
"HeaderDeleteItems": "L\u00f6sche Objekte",
|
"HeaderDeleteItems": "L\u00f6sche Objekte",
|
||||||
"ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und in deiner Medienbibliothek. Bist du wirklich sicher?",
|
"ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und in deiner Medienbibliothek. Bist du wirklich sicher?",
|
||||||
"PleaseRestartServerName": "Bitte starte Emby Server - {0} neu.",
|
"PleaseRestartServerName": "Bitte starte Emby Server - {0} neu.",
|
||||||
"LabelSyncJobName": "Synchronisations-Aufgabe:",
|
"LabelSyncJobName": "Synchronisations-Aufgabe:",
|
||||||
|
"SyncJobCreated": "Synchronisationsaufgabe erstellt",
|
||||||
"LabelQuality": "Qualit\u00e4t:",
|
"LabelQuality": "Qualit\u00e4t:",
|
||||||
"LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrdest du aktuell keine Apps verwenden, die Offline-Downloads unterst\u00fctzen.",
|
"LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrdest du aktuell keine Apps verwenden, die Offline-Downloads unterst\u00fctzen.",
|
||||||
"DownloadScheduled": "Download geplant",
|
"DownloadingDots": "L\u00e4dt herunter...",
|
||||||
"HeaderSyncRequiresSub": "Downloads ben\u00f6tigen ein aktives Emby Premiere Abonnement.",
|
"HeaderSyncRequiresSub": "Downloads ben\u00f6tigen ein aktives Emby Premiere Abonnement.",
|
||||||
"LearnMore": "Erfahre mehr",
|
"LearnMore": "Erfahre mehr",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Weiterh\u00f6ren",
|
"HeaderContinueListening": "Weiterh\u00f6ren",
|
||||||
"HeaderActiveRecordings": "Aktive Aufnahmen",
|
"HeaderActiveRecordings": "Aktive Aufnahmen",
|
||||||
"HeaderLatestRecordings": "Neueste Aufnahmen",
|
"HeaderLatestRecordings": "Neueste Aufnahmen",
|
||||||
"LabelDownloadTo": "Herunterladen nach:",
|
"LabelSyncTo": "Synchronisiere mit:",
|
||||||
"HeaderNextUp": "Als N\u00e4chstes",
|
"HeaderNextUp": "Als N\u00e4chstes",
|
||||||
"HeaderLatestFrom": "Neuestes von {0}",
|
"HeaderLatestFrom": "Neuestes von {0}",
|
||||||
"LabelHomeScreenSectionValue": "Startseitenbereich {0}:",
|
"LabelHomeScreenSectionValue": "Startseitenbereich {0}:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll w\u00e4hrend der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. W\u00e4hle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB\/IDX, etc.) sowie bestimmte ASS\/SSA-Untertitel einbrennen zu lassen.",
|
"BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll w\u00e4hrend der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. W\u00e4hle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB\/IDX, etc.) sowie bestimmte ASS\/SSA-Untertitel einbrennen zu lassen.",
|
||||||
"AllComplexFormats": "Alle komplexen Formate (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "Alle komplexen Formate (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Diese Einstellungen werden auch auf jede Chromecast-Wiedergabe angewendet, die von diesem Ger\u00e4t gestartet wird."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Diese Einstellungen werden auch auf jede Chromecast-Wiedergabe angewendet, die von diesem Ger\u00e4t gestartet wird.",
|
||||||
|
"HeaderWaitingForWifi": "Warte auf WLAN",
|
||||||
|
"WifiRequiredToDownload": "Um den Download fortzusetzen wird eine WLAN-Verbindung ben\u00f6tigt.",
|
||||||
|
"HeaderDownloadSettings": "Downloadeinstellungen",
|
||||||
|
"Hide": "Verstecke",
|
||||||
|
"HeaderStartNow": "Starte jetzt",
|
||||||
|
"HeaderNextVideoPlayingInValue": "N\u00e4chstes Video wird abgespielt in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "N\u00e4chste Episode wird abgespielt in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Sekunden",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03b2\u03ac\u03bb\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03cc\u03c3\u03c4\u03bf\u03c2 \u03ae \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03b2\u03ac\u03bb\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03cc\u03c3\u03c4\u03bf\u03c2 \u03ae \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "\u0394\u03c9\u03c1\u03b5\u03ac\u03bd \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Emby",
|
"HeaderFreeApps": "\u0394\u03c9\u03c1\u03b5\u03ac\u03bd \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Emby",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external ID.",
|
"PleaseEnterNameOrId": "Please enter a name or an external ID.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created.",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -473,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -524,5 +524,6 @@
|
||||||
"HeaderStartNow": "Start Now",
|
"HeaderStartNow": "Start Now",
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
"HeaderSecondsValue": "{0} Seconds"
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Descargando...",
|
|
||||||
"HeaderWaitingForWifi": "Esperando Wifi",
|
|
||||||
"WifiRequiredToDownload": "Se necesita de una conexi\u00f3n Wifi para continuar descargando.",
|
|
||||||
"HeaderDownloadSettings": "Configuraci\u00f3n de Descargas",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
||||||
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
|
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
|
||||||
"MessageToValidateSupporter": "Si tiene una subscripci\u00f3n de Emby Premiere activa, aseg\u00farese de que ha configurado Emby Premiere en el Panel de Control del Servidor Emby, al cual puede acceder dando click en Emby Premiere dentro del men\u00fa principal.",
|
"MessageToValidateSupporter": "Si tiene una subscripci\u00f3n de Emby Premiere activa, aseg\u00farese de que ha configurado Emby Premiere en el Panel de Control del Servidor Emby, al cual puede acceder dando click en Emby Premiere dentro del men\u00fa principal.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Grabar Series",
|
"RecordSeries": "Grabar Series",
|
||||||
"HeaderCinemaMode": "Modo Cine",
|
"HeaderCinemaMode": "Modo Cine",
|
||||||
"HeaderCloudSync": "Sinc. en la Nube",
|
"HeaderCloudSync": "Sinc. en la Nube",
|
||||||
"HeaderDownloadedMedia": "Medios Descargados",
|
|
||||||
"Downloads": "Descargas",
|
"Downloads": "Descargas",
|
||||||
"HeaderMyDownloads": "Mis Descargas",
|
"HeaderMyDownloads": "Mis Descargas",
|
||||||
"HeaderOfflineDownloads": "Medios sin conexion",
|
"HeaderOfflineDownloads": "Medios sin conexion",
|
||||||
"HeaderOfflineDownloadsDescription": "Descargue sus medios en su dispositivo para f\u00e1cil uso mientras esta desconectado.",
|
"HeaderOfflineDownloadsDescription": "Descargue sus medios en su dispositivo para f\u00e1cil uso mientras esta desconectado.",
|
||||||
"CloudSyncFeatureDescription": "Sincronice sus medios a la nube para un f\u00e1cil respaldo, archivo y conversi\u00f3n.",
|
"CloudSyncFeatureDescription": "Sincronice sus medios a la nube para un f\u00e1cil respaldo, archivo y conversi\u00f3n.",
|
||||||
"DvrFeatureDescription": "Programe grabaciones individuales de TV en Vivo, series, y mas con Emby DVR.",
|
"DvrFeatureDescription": "Programe grabaciones individuales de TV en Vivo, series, y mas con Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancelar descarga",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelando el trabajo de descarga eliminara los medios descargados del dispositivo durante el pr\u00f3ximo proceso de sincronizaci\u00f3n. \u00bfEsta seguro de que desea continuar?",
|
|
||||||
"CinemaModeFeatureDescription": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la funci\u00f3n.",
|
"CinemaModeFeatureDescription": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la funci\u00f3n.",
|
||||||
"HeaderFreeApps": "Aplicaciones Emby Gratuitas",
|
"HeaderFreeApps": "Aplicaciones Emby Gratuitas",
|
||||||
"FreeAppsFeatureDescription": "Disfrute acceso gratuito para elegir aplicaciones Emby para sus dispositivos.",
|
"FreeAppsFeatureDescription": "Disfrute acceso gratuito para elegir aplicaciones Emby para sus dispositivos.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.",
|
"PleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.",
|
||||||
"MessageItemSaved": "\u00cdtem guardado.",
|
"MessageItemSaved": "\u00cdtem guardado.",
|
||||||
"SearchResults": "Resultados de la b\u00fasqueda",
|
"SearchResults": "Resultados de la b\u00fasqueda",
|
||||||
"DownloadToOtherDevice": "Descargar a otro dispositivo",
|
|
||||||
"ServerNameIsRestarting": "El Servidor Emby - {0} se esta reiniciando.",
|
"ServerNameIsRestarting": "El Servidor Emby - {0} se esta reiniciando.",
|
||||||
"ServerNameIsShuttingDown": "El Servidor Emby - {0} se esta apagando.",
|
"ServerNameIsShuttingDown": "El Servidor Emby - {0} se esta apagando.",
|
||||||
"HeaderDeleteItems": "Borrar items",
|
"HeaderDeleteItems": "Borrar items",
|
||||||
"ConfirmDeleteItems": "Al borrar estos items ser\u00e1n eliminados tanto del sistema de archivos como de la librer\u00eda de medios. \u00bfEsta seguro que desea continuar?",
|
"ConfirmDeleteItems": "Al borrar estos items ser\u00e1n eliminados tanto del sistema de archivos como de la librer\u00eda de medios. \u00bfEsta seguro que desea continuar?",
|
||||||
"PleaseRestartServerName": "Por favor reinicie el Servidor Emby - {0}.",
|
"PleaseRestartServerName": "Por favor reinicie el Servidor Emby - {0}.",
|
||||||
"LabelSyncJobName": "Nombre del trabajo de sinc:",
|
"LabelSyncJobName": "Nombre del trabajo de sinc:",
|
||||||
|
"SyncJobCreated": "Trabajo de sincronizaci\u00f3n creado",
|
||||||
"LabelQuality": "Calidad:",
|
"LabelQuality": "Calidad:",
|
||||||
"LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte descargas sin conexi\u00f3n.",
|
"LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte descargas sin conexi\u00f3n.",
|
||||||
"DownloadScheduled": "Descarga programada",
|
"DownloadingDots": "Descargando...",
|
||||||
"HeaderSyncRequiresSub": "Descargar requiere de una suscripci\u00f3n activa de Emby Premiere",
|
"HeaderSyncRequiresSub": "Descargar requiere de una suscripci\u00f3n activa de Emby Premiere",
|
||||||
"LearnMore": "Aprenda m\u00e1s",
|
"LearnMore": "Aprenda m\u00e1s",
|
||||||
"LabelProfile": "Perf\u00edl:",
|
"LabelProfile": "Perf\u00edl:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continuar Escuchando",
|
"HeaderContinueListening": "Continuar Escuchando",
|
||||||
"HeaderActiveRecordings": "Grabaciones Activas",
|
"HeaderActiveRecordings": "Grabaciones Activas",
|
||||||
"HeaderLatestRecordings": "Grabaciones Recientes",
|
"HeaderLatestRecordings": "Grabaciones Recientes",
|
||||||
"LabelDownloadTo": "Descargar a:",
|
"LabelSyncTo": "Sincronizar con:",
|
||||||
"HeaderNextUp": "A Continuaci\u00f3n",
|
"HeaderNextUp": "A Continuaci\u00f3n",
|
||||||
"HeaderLatestFrom": "M\u00e1s recientes desde {0}",
|
"HeaderLatestFrom": "M\u00e1s recientes desde {0}",
|
||||||
"LabelHomeScreenSectionValue": "Pagina de inicio secci\u00f3n {0}:",
|
"LabelHomeScreenSectionValue": "Pagina de inicio secci\u00f3n {0}:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determina si el servidor deber\u00eda quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en im\u00e1genes (por ejemplo VOBSUB, PGS, SUB\/IDX, etc.) as\u00ed como ciertos subtitulos ASS\/SSA",
|
"BurnSubtitlesHelp": "Determina si el servidor deber\u00eda quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en im\u00e1genes (por ejemplo VOBSUB, PGS, SUB\/IDX, etc.) as\u00ed como ciertos subtitulos ASS\/SSA",
|
||||||
"AllComplexFormats": "Todos los subtitulos complejos (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "Todos los subtitulos complejos (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estos ajustes tambi\u00e9n aplican a cualquier reproducci\u00f3n de Chromecast iniciada por este dispositivo."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estos ajustes tambi\u00e9n aplican a cualquier reproducci\u00f3n de Chromecast iniciada por este dispositivo.",
|
||||||
|
"HeaderWaitingForWifi": "Esperando Wifi",
|
||||||
|
"WifiRequiredToDownload": "Se necesita de una conexi\u00f3n Wifi para continuar descargando.",
|
||||||
|
"HeaderDownloadSettings": "Configuraci\u00f3n de Descargas",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
"PleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
||||||
"MessageItemSaved": "Elemento grabado.",
|
"MessageItemSaved": "Elemento grabado.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Borrar \u00edtems",
|
"HeaderDeleteItems": "Borrar \u00edtems",
|
||||||
"ConfirmDeleteItems": "Al borrar este \u00edtem se borrar\u00e1 del sistema de archivos y de la biblioteca. \u00bfQuieres continuar?",
|
"ConfirmDeleteItems": "Al borrar este \u00edtem se borrar\u00e1 del sistema de archivos y de la biblioteca. \u00bfQuieres continuar?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Nombre del trabajo de sincronizaci\u00f3n:",
|
"LabelSyncJobName": "Nombre del trabajo de sincronizaci\u00f3n:",
|
||||||
|
"SyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.",
|
||||||
"LabelQuality": "Calidad:",
|
"LabelQuality": "Calidad:",
|
||||||
"LabelSyncNoTargetsHelp": "Parece que no tienes aplicaciones que soporten la sincronizaci\u00f3n.",
|
"LabelSyncNoTargetsHelp": "Parece que no tienes aplicaciones que soporten la sincronizaci\u00f3n.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Aprende m\u00e1s",
|
"LearnMore": "Aprende m\u00e1s",
|
||||||
"LabelProfile": "Perfil:",
|
"LabelProfile": "Perfil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sincronizar en:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique ou avec un abonnement Emby Premiere actif.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique ou avec un abonnement Emby Premiere actif.",
|
||||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premi\u00e8re actif.",
|
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premi\u00e8re actif.",
|
||||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premi\u00e8re actif, assurez-vous d'avoir install\u00e9 Emby Premi\u00e8re sur le tableau de bord de votre serveur Emby, auquel vous pouvez acc\u00e9der en cliquant sur Emby Premi\u00e8re dans le menu principal.",
|
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premi\u00e8re actif, assurez-vous d'avoir install\u00e9 Emby Premi\u00e8re sur le tableau de bord de votre serveur Emby, auquel vous pouvez acc\u00e9der en cliquant sur Emby Premi\u00e8re dans le menu principal.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Mode Cin\u00e9ma",
|
"HeaderCinemaMode": "Mode Cin\u00e9ma",
|
||||||
"HeaderCloudSync": "Synchronisation Cloud",
|
"HeaderCloudSync": "Synchronisation Cloud",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "M\u00e9dia hors ligne",
|
"HeaderOfflineDownloads": "M\u00e9dia hors ligne",
|
||||||
"HeaderOfflineDownloadsDescription": "T\u00e9l\u00e9chargez le m\u00e9dia sur vos appareils pour une utilisation hors ligne facile.",
|
"HeaderOfflineDownloadsDescription": "T\u00e9l\u00e9chargez le m\u00e9dia sur vos appareils pour une utilisation hors ligne facile.",
|
||||||
"CloudSyncFeatureDescription": "Synchronisez vos m\u00e9dias avec le Cloud pour faciliter la sauvegarde, l'archivage et la conversion.",
|
"CloudSyncFeatureDescription": "Synchronisez vos m\u00e9dias avec le Cloud pour faciliter la sauvegarde, l'archivage et la conversion.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Annuler la synchronisation",
|
|
||||||
"CancelSyncJobConfirmation": "L'annulation de la t\u00e2che de synchronisation supprimera le support synchronis\u00e9 du p\u00e9riph\u00e9rique pendant le prochain processus de synchronisation. \u00cates-vous s\u00fbr de vouloir continuer?",
|
|
||||||
"CinemaModeFeatureDescription": "Le Mode Cin\u00e9ma vous donne la v\u00e9ritable exp\u00e9rience cin\u00e9matographique avec des bandes annonces et des intros personnalis\u00e9s avant le film.",
|
"CinemaModeFeatureDescription": "Le Mode Cin\u00e9ma vous donne la v\u00e9ritable exp\u00e9rience cin\u00e9matographique avec des bandes annonces et des intros personnalis\u00e9s avant le film.",
|
||||||
"HeaderFreeApps": "Applications Emby gratuites",
|
"HeaderFreeApps": "Applications Emby gratuites",
|
||||||
"FreeAppsFeatureDescription": "Profitez de l'acc\u00e8s gratuit aux applications Emby pour vos appareils.",
|
"FreeAppsFeatureDescription": "Profitez de l'acc\u00e8s gratuit aux applications Emby pour vos appareils.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "\u00c0 Suivre",
|
"HeaderNextUp": "\u00c0 Suivre",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "T\u00e9l\u00e9chargement...",
|
|
||||||
"HeaderWaitingForWifi": "En attente du Wi-Fi",
|
|
||||||
"WifiRequiredToDownload": "Une connexion Wi-Fi est n\u00e9cessaire pour continuer le t\u00e9l\u00e9chargement.",
|
|
||||||
"HeaderDownloadSettings": "Param\u00e8tres de t\u00e9l\u00e9chargement",
|
|
||||||
"Hide": "Cacher",
|
|
||||||
"HeaderStartNow": "Commencer maintenant",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Lecture de la prochaine vid\u00e9o dans {0}",
|
|
||||||
"HeaderSecondsValue": "{0} secondes",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Lecture du prochain \u00e9pisode dans {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez vous assurer que vous avez configur\u00e9 Emby Premiere dans le tableau de bord de votre serveur Emby auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez vous assurer que vous avez configur\u00e9 Emby Premiere dans le tableau de bord de votre serveur Emby auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Enregistrer la s\u00e9rie",
|
"RecordSeries": "Enregistrer la s\u00e9rie",
|
||||||
"HeaderCinemaMode": "Mode cin\u00e9ma",
|
"HeaderCinemaMode": "Mode cin\u00e9ma",
|
||||||
"HeaderCloudSync": "Synchronisation avec le cloud",
|
"HeaderCloudSync": "Synchronisation avec le cloud",
|
||||||
"HeaderDownloadedMedia": "M\u00e9dia t\u00e9l\u00e9charg\u00e9",
|
|
||||||
"Downloads": "T\u00e9l\u00e9chargements",
|
"Downloads": "T\u00e9l\u00e9chargements",
|
||||||
"HeaderMyDownloads": "Mes t\u00e9l\u00e9chargements",
|
"HeaderMyDownloads": "Mes t\u00e9l\u00e9chargements",
|
||||||
"HeaderOfflineDownloads": "M\u00e9dia hors ligne",
|
"HeaderOfflineDownloads": "M\u00e9dia hors ligne",
|
||||||
"HeaderOfflineDownloadsDescription": "Transf\u00e9rez vos m\u00e9dias vers vos appareils pour une utilisation hors ligne.",
|
"HeaderOfflineDownloadsDescription": "Transf\u00e9rez vos m\u00e9dias vers vos appareils pour une utilisation hors ligne.",
|
||||||
"CloudSyncFeatureDescription": "Synchronisez vos m\u00e9dias vers le cloud pour le sauvegarder, l'archiver et le convertir facilement.",
|
"CloudSyncFeatureDescription": "Synchronisez vos m\u00e9dias vers le cloud pour le sauvegarder, l'archiver et le convertir facilement.",
|
||||||
"DvrFeatureDescription": "Planifiez des enregistrements de TV en direct individuels, des enregistrements de s\u00e9ries et bien plus avec le magn\u00e9toscope Emby.",
|
"DvrFeatureDescription": "Planifiez des enregistrements de TV en direct individuels, des enregistrements de s\u00e9ries et bien plus avec le magn\u00e9toscope Emby.",
|
||||||
"ButtonCancelSyncJob": "Annuler le t\u00e9l\u00e9chargement",
|
|
||||||
"CancelSyncJobConfirmation": "L'annulation du t\u00e9l\u00e9chargement provoquera la suppression des m\u00e9dias t\u00e9l\u00e9charg\u00e9s sur l'appareil lors de la prochaine synchronisation. Voulez-vous vraiment continuer ?",
|
|
||||||
"CinemaModeFeatureDescription": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire des bandes-annonces et des introductions personnalis\u00e9es avant le film principal.",
|
"CinemaModeFeatureDescription": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire des bandes-annonces et des introductions personnalis\u00e9es avant le film principal.",
|
||||||
"HeaderFreeApps": "Applications Emby gratuites",
|
"HeaderFreeApps": "Applications Emby gratuites",
|
||||||
"FreeAppsFeatureDescription": "Profitez d'un acc\u00e8s gratuit aux applications Emby pour vos appareils.",
|
"FreeAppsFeatureDescription": "Profitez d'un acc\u00e8s gratuit aux applications Emby pour vos appareils.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",
|
"PleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",
|
||||||
"MessageItemSaved": "\u00c9l\u00e9ment enregistr\u00e9.",
|
"MessageItemSaved": "\u00c9l\u00e9ment enregistr\u00e9.",
|
||||||
"SearchResults": "R\u00e9sultats de la recherche",
|
"SearchResults": "R\u00e9sultats de la recherche",
|
||||||
"DownloadToOtherDevice": "T\u00e9l\u00e9charger sur un autre appareil",
|
|
||||||
"ServerNameIsRestarting": "Serveur Emby - {0} red\u00e9marre.",
|
"ServerNameIsRestarting": "Serveur Emby - {0} red\u00e9marre.",
|
||||||
"ServerNameIsShuttingDown": "Serveur Emby - {0} s'arr\u00eate.",
|
"ServerNameIsShuttingDown": "Serveur Emby - {0} s'arr\u00eate.",
|
||||||
"HeaderDeleteItems": "Supprimer les \u00e9l\u00e9ments",
|
"HeaderDeleteItems": "Supprimer les \u00e9l\u00e9ments",
|
||||||
"ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments les effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre m\u00e9diath\u00e8que. Voulez-vous vraiment continuer ?",
|
"ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments les effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre m\u00e9diath\u00e8que. Voulez-vous vraiment continuer ?",
|
||||||
"PleaseRestartServerName": "Veuillez red\u00e9marrer le serveur Emby - {0}.",
|
"PleaseRestartServerName": "Veuillez red\u00e9marrer le serveur Emby - {0}.",
|
||||||
"LabelSyncJobName": "Nom de la t\u00e2che de synchronisation :",
|
"LabelSyncJobName": "Nom de la t\u00e2che de synchronisation :",
|
||||||
|
"SyncJobCreated": "T\u00e2che de synchronisation cr\u00e9\u00e9e.",
|
||||||
"LabelQuality": "Qualit\u00e9\u00a0:",
|
"LabelQuality": "Qualit\u00e9\u00a0:",
|
||||||
"LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte le t\u00e9l\u00e9chargement hors ligne.",
|
"LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte le t\u00e9l\u00e9chargement hors ligne.",
|
||||||
"DownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9",
|
"DownloadingDots": "T\u00e9l\u00e9chargement...",
|
||||||
"HeaderSyncRequiresSub": "Le t\u00e9l\u00e9chargement n\u00e9cessite un abonnement Emby Premiere.",
|
"HeaderSyncRequiresSub": "Le t\u00e9l\u00e9chargement n\u00e9cessite un abonnement Emby Premiere.",
|
||||||
"LearnMore": "En savoir plus",
|
"LearnMore": "En savoir plus",
|
||||||
"LabelProfile": "Profil :",
|
"LabelProfile": "Profil :",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continuer l'\u00e9coute",
|
"HeaderContinueListening": "Continuer l'\u00e9coute",
|
||||||
"HeaderActiveRecordings": "Enregistrements actifs",
|
"HeaderActiveRecordings": "Enregistrements actifs",
|
||||||
"HeaderLatestRecordings": "Derniers enregistrements",
|
"HeaderLatestRecordings": "Derniers enregistrements",
|
||||||
"LabelDownloadTo": "T\u00e9l\u00e9charger vers\u00a0:",
|
"LabelSyncTo": "Synchroniser avec :",
|
||||||
"HeaderNextUp": "\u00c0 suivre",
|
"HeaderNextUp": "\u00c0 suivre",
|
||||||
"HeaderLatestFrom": "Derniers dans {0}",
|
"HeaderLatestFrom": "Derniers dans {0}",
|
||||||
"LabelHomeScreenSectionValue": "Section {0} de l'accueil\u00a0:",
|
"LabelHomeScreenSectionValue": "Section {0} de l'accueil\u00a0:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "Utilisateur non trouv\u00e9. Veuillez v\u00e9rifier que le nom est correct et essayez \u00e0 nouveau, ou essayez de renseigner l'adresse courriel.",
|
"GuestUserNotFound": "Utilisateur non trouv\u00e9. Veuillez v\u00e9rifier que le nom est correct et essayez \u00e0 nouveau, ou essayez de renseigner l'adresse courriel.",
|
||||||
"ErrorReachingEmbyConnect": "Une erreur est survenue pendant la connexion au serveur Emby Connect. Veuillez vous assurer que vous avez une connexion internet active puis r\u00e9essayez.",
|
"ErrorReachingEmbyConnect": "Une erreur est survenue pendant la connexion au serveur Emby Connect. Veuillez vous assurer que vous avez une connexion internet active puis r\u00e9essayez.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Avez-vous cr\u00e9\u00e9 un compte Emby\u00a0? Inscrivez-vous sur {0}.",
|
"ErrorAddingEmbyConnectAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Avez-vous cr\u00e9\u00e9 un compte Emby\u00a0? Inscrivez-vous sur {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Veuillez vous assurer que votre compte Emby a bien \u00e9t\u00e9 activ\u00e9 avec les instructions fournies dans le courriel envoy\u00e9 apr\u00e8s la cr\u00e9ation de votre compte. Si vous n'avez pas re\u00e7u ce courriel, veuillez envoyer un courriel \u00e0 {0} avec l'adresse utilis\u00e9e lors de la cr\u00e9ation de votre compte Emby.",
|
"ErrorAddingEmbyConnectAccount2": "Si le probl\u00e8me persiste, veuillez envoyer un courriel \u00e0 {0} avec l'adresse utilis\u00e9e lors de la cr\u00e9ation de votre compte Emby.",
|
||||||
"ErrorAddingGuestAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Vos invit\u00e9s ont-ils cr\u00e9\u00e9 un compte Emby ? Ils peuvent s'inscrire sur {0}.",
|
"ErrorAddingGuestAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Vos invit\u00e9s ont-ils cr\u00e9\u00e9 un compte Emby ? Ils peuvent s'inscrire sur {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Veuillez vous assurer que vos invit\u00e9s ont bien activ\u00e9 leur compte en suivant les instructions fournies dans le courriel envoy\u00e9 apr\u00e8s la cr\u00e9ation de leur compte. S'ils n'ont pas re\u00e7u ce courriel, veuillez envoyer un courriel \u00e0 {0} en pr\u00e9cisant votre adresse courriel ainsi que la leur.",
|
"ErrorAddingGuestAccount2": "Si le probl\u00e8me persiste, veuillez envoyer un courriel \u00e0 {0} en pr\u00e9cisant votre adresse courriel ainsi que la leur.",
|
||||||
"MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.",
|
"MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.",
|
||||||
"MessagePendingEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur. Un courriel sera envoy\u00e9 au propri\u00e9taire du compte. Cette invitation devra \u00eatre confirm\u00e9e en cliquant sur un lien pr\u00e9sent dans le courriel.",
|
"MessagePendingEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur. Un courriel sera envoy\u00e9 au propri\u00e9taire du compte. Cette invitation devra \u00eatre confirm\u00e9e en cliquant sur un lien pr\u00e9sent dans le courriel.",
|
||||||
"HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9",
|
"HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "D\u00e9termine si le serveur doit graver les sous-titres lors de la conversion vid\u00e9o en fonction du format des sous-titres. \u00c9viter la gravure des sous-titres am\u00e9liorera les performances du serveur. S\u00e9lectionnez Auto pour graver les formats bas\u00e9s sur l'image (par exemple, VOBSUB, PGS, SUB\/IDX etc) ainsi que certains sous-titres ASS\/SSA",
|
"BurnSubtitlesHelp": "D\u00e9termine si le serveur doit graver les sous-titres lors de la conversion vid\u00e9o en fonction du format des sous-titres. \u00c9viter la gravure des sous-titres am\u00e9liorera les performances du serveur. S\u00e9lectionnez Auto pour graver les formats bas\u00e9s sur l'image (par exemple, VOBSUB, PGS, SUB\/IDX etc) ainsi que certains sous-titres ASS\/SSA",
|
||||||
"AllComplexFormats": "Tous les formats complexes (ASS, SSA, VOBSUB, PGS, SUB\/IDX etc)",
|
"AllComplexFormats": "Tous les formats complexes (ASS, SSA, VOBSUB, PGS, SUB\/IDX etc)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Ces param\u00e8tres s'appliquent \u00e9galement \u00e0 toute lecture Chromecast d\u00e9marr\u00e9e par cet appareil."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Ces param\u00e8tres s'appliquent \u00e9galement \u00e0 toute lecture Chromecast d\u00e9marr\u00e9e par cet appareil.",
|
||||||
|
"HeaderWaitingForWifi": "En attente du Wi-Fi",
|
||||||
|
"WifiRequiredToDownload": "Une connexion Wi-Fi est n\u00e9cessaire pour continuer le t\u00e9l\u00e9chargement.",
|
||||||
|
"HeaderDownloadSettings": "Param\u00e8tres de t\u00e9l\u00e9chargement",
|
||||||
|
"Hide": "Cacher",
|
||||||
|
"HeaderStartNow": "Commencer maintenant",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Lecture de la prochaine vid\u00e9o dans {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Lecture du prochain \u00e9pisode dans {0}",
|
||||||
|
"HeaderSecondsValue": "{0} secondes",
|
||||||
|
"ErrorConnectServerUnreachable": "Une erreur est survenue pendant l'ex\u00e9cution de l'op\u00e9ration demand\u00e9e. Votre serveur est dans l'incapacit\u00e9 de joindre le serveur d'Emby Connect \u00e0 {0}. Veuillez v\u00e9rifier que votre serveur est bien connect\u00e9 \u00e0 Internet et qu'aucun pare-feu ou autre logiciel de s\u00e9curit\u00e9 ne bloque les communications."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u05e0\u05e2\u05d9\u05dc\u05ea \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05e8\u05db\u05d9\u05e9\u05d4 \u05d7\u05d3 \u05e4\u05e2\u05de\u05d9\u05ea \u05e7\u05d8\u05e0\u05d4, \u05d0\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc Premiere \u05d0\u05de\u05d1\u05d9.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "\u05e0\u05e2\u05d9\u05dc\u05ea \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05e8\u05db\u05d9\u05e9\u05d4 \u05d7\u05d3 \u05e4\u05e2\u05de\u05d9\u05ea \u05e7\u05d8\u05e0\u05d4, \u05d0\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc Premiere \u05d0\u05de\u05d1\u05d9.",
|
||||||
"MessageUnlockAppWithSupporter": "\u05d1\u05d9\u05d8\u05d5\u05dc \u05e0\u05e2\u05d9\u05dc\u05d4 \u05e9\u05dc \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "\u05d1\u05d9\u05d8\u05d5\u05dc \u05e0\u05e2\u05d9\u05dc\u05d4 \u05e9\u05dc \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "\u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere, \u05d5\u05d3\u05d0 \u05e9\u05d4\u05d2\u05d3\u05e8\u05ea \u05d0\u05ea Emby Premiere \u05d1\u05de\u05e8\u05db\u05d6 \u05d4\u05e9\u05dc\u05d9\u05d8\u05d4 \u05e9\u05dc \u200b\u200b\u05d0\u05de\u05d1\u05d9 \u05e9\u05e8\u05ea, \u05e9\u05d1\u05d5 \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d2\u05e9\u05ea \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc Emby Premiere \u05d1\u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e8\u05d0\u05e9\u05d9.",
|
"MessageToValidateSupporter": "\u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere, \u05d5\u05d3\u05d0 \u05e9\u05d4\u05d2\u05d3\u05e8\u05ea \u05d0\u05ea Emby Premiere \u05d1\u05de\u05e8\u05db\u05d6 \u05d4\u05e9\u05dc\u05d9\u05d8\u05d4 \u05e9\u05dc \u200b\u200b\u05d0\u05de\u05d1\u05d9 \u05e9\u05e8\u05ea, \u05e9\u05d1\u05d5 \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d2\u05e9\u05ea \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc Emby Premiere \u05d1\u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e8\u05d0\u05e9\u05d9.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "\u05d4\u05e7\u05dc\u05d8 \u05e1\u05d3\u05e8\u05d4",
|
"RecordSeries": "\u05d4\u05e7\u05dc\u05d8 \u05e1\u05d3\u05e8\u05d4",
|
||||||
"HeaderCinemaMode": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2",
|
"HeaderCinemaMode": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2",
|
||||||
"HeaderCloudSync": "\u05e1\u05e0\u05db\u05e8\u05d5\u05df \u05e2\u05e0\u05df",
|
"HeaderCloudSync": "\u05e1\u05e0\u05db\u05e8\u05d5\u05df \u05e2\u05e0\u05df",
|
||||||
"HeaderDownloadedMedia": "\u05d4\u05d5\u05e8\u05d3\u05ea \u05de\u05d3\u05d9\u05d4",
|
|
||||||
"Downloads": "\u05d4\u05d5\u05e8\u05d3\u05d5\u05ea",
|
"Downloads": "\u05d4\u05d5\u05e8\u05d3\u05d5\u05ea",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "\u05de\u05d3\u05d9\u05d4 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05e0\u05ea",
|
"HeaderOfflineDownloads": "\u05de\u05d3\u05d9\u05d4 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05e0\u05ea",
|
||||||
"HeaderOfflineDownloadsDescription": "\u05d4\u05d5\u05e8\u05d3 \u05de\u05d3\u05d9\u05d4 \u05dc\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df \u05d1\u05e7\u05dc\u05d5\u05ea.",
|
"HeaderOfflineDownloadsDescription": "\u05d4\u05d5\u05e8\u05d3 \u05de\u05d3\u05d9\u05d4 \u05dc\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df \u05d1\u05e7\u05dc\u05d5\u05ea.",
|
||||||
"CloudSyncFeatureDescription": "\u05e1\u05e0\u05db\u05e8\u05df \u05d0\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da \u05dc\u05e2\u05e0\u05df \u05dc\u05e6\u05d5\u05e8\u05da \u05d2\u05d9\u05d1\u05d5\u05d9 \u05e7\u05dc, \u05d0\u05d7\u05e1\u05d5\u05df \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d5\u05d4\u05de\u05e8\u05d4.",
|
"CloudSyncFeatureDescription": "\u05e1\u05e0\u05db\u05e8\u05df \u05d0\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da \u05dc\u05e2\u05e0\u05df \u05dc\u05e6\u05d5\u05e8\u05da \u05d2\u05d9\u05d1\u05d5\u05d9 \u05e7\u05dc, \u05d0\u05d7\u05e1\u05d5\u05df \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d5\u05d4\u05de\u05e8\u05d4.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "\u05d1\u05d9\u05d8\u05d5\u05dc \u05d4\u05d5\u05e8\u05d3\u05d4",
|
|
||||||
"CancelSyncJobConfirmation": "\u05d1\u05d9\u05d8\u05d5\u05dc \u05de\u05e9\u05d9\u05de\u05ea \u05d4\u05e1\u05d9\u05e0\u05db\u05e8\u05d5\u05df \u05ea\u05e1\u05d9\u05e8 \u05de\u05d3\u05d9\u05d4 \u05e9\u05d4\u05d5\u05e8\u05d3\u05d4 \u05de\u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05d1\u05de\u05d4\u05dc\u05da \u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05e1\u05e0\u05db\u05e8\u05d5\u05df \u05d4\u05d1\u05d0. \u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05de\u05e9\u05d9\u05da?",
|
|
||||||
"CinemaModeFeatureDescription": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2 \u05e0\u05d5\u05ea\u05df \u05dc\u05da \u05d0\u05ea \u05d4\u05d7\u05d5\u05d5\u05d9\u05d4 \u05d4\u05e7\u05d5\u05dc\u05e0\u05d5\u05e2 \u05d0\u05de\u05d9\u05ea\u05d9 \u05e2\u05dd \u05e7\u05d3\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05de\u05d5\u05ea\u05d0\u05de\u05d9\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05ea\u05db\u05d5\u05e0\u05d4.",
|
"CinemaModeFeatureDescription": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2 \u05e0\u05d5\u05ea\u05df \u05dc\u05da \u05d0\u05ea \u05d4\u05d7\u05d5\u05d5\u05d9\u05d4 \u05d4\u05e7\u05d5\u05dc\u05e0\u05d5\u05e2 \u05d0\u05de\u05d9\u05ea\u05d9 \u05e2\u05dd \u05e7\u05d3\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05de\u05d5\u05ea\u05d0\u05de\u05d9\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05ea\u05db\u05d5\u05e0\u05d4.",
|
||||||
"HeaderFreeApps": "\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05d0\u05de\u05d1\u05d9 \u05d1\u05d7\u05d9\u05e0\u05dd",
|
"HeaderFreeApps": "\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05d0\u05de\u05d1\u05d9 \u05d1\u05d7\u05d9\u05e0\u05dd",
|
||||||
"FreeAppsFeatureDescription": "\u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d9\u05d4\u05e0\u05d5\u05ea \u05de\u05d2\u05d9\u05e9\u05d4 \u05d7\u05d5\u05e4\u05e9\u05d9\u05ea \u05dc\u05d9\u05d9\u05e9\u05d5\u05de\u05d9 Emby \u05e2\u05d1\u05d5\u05e8 \u05d4\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da.",
|
"FreeAppsFeatureDescription": "\u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d9\u05d4\u05e0\u05d5\u05ea \u05de\u05d2\u05d9\u05e9\u05d4 \u05d7\u05d5\u05e4\u05e9\u05d9\u05ea \u05dc\u05d9\u05d9\u05e9\u05d5\u05de\u05d9 Emby \u05e2\u05d1\u05d5\u05e8 \u05d4\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "\u05d4\u05d6\u05df \u05e9\u05dd \u05d0\u05d5 \u05de\u05d6\u05d4\u05d4 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9.",
|
"PleaseEnterNameOrId": "\u05d4\u05d6\u05df \u05e9\u05dd \u05d0\u05d5 \u05de\u05d6\u05d4\u05d4 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9.",
|
||||||
"MessageItemSaved": "\u05d4\u05e4\u05e8\u05d9\u05d8 \u05e0\u05e9\u05de\u05e8.",
|
"MessageItemSaved": "\u05d4\u05e4\u05e8\u05d9\u05d8 \u05e0\u05e9\u05de\u05e8.",
|
||||||
"SearchResults": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9",
|
"SearchResults": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "\u05e9\u05e8\u05ea Emby - {0} \u05de\u05d5\u05e4\u05e2\u05dc \u05de\u05d7\u05d3\u05e9.",
|
"ServerNameIsRestarting": "\u05e9\u05e8\u05ea Emby - {0} \u05de\u05d5\u05e4\u05e2\u05dc \u05de\u05d7\u05d3\u05e9.",
|
||||||
"ServerNameIsShuttingDown": "\u05e9\u05e8\u05ea Emby - {0} \u05e0\u05db\u05d1\u05d4.",
|
"ServerNameIsShuttingDown": "\u05e9\u05e8\u05ea Emby - {0} \u05e0\u05db\u05d1\u05d4.",
|
||||||
"HeaderDeleteItems": "\u05de\u05d7\u05d9\u05e7\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd",
|
"HeaderDeleteItems": "\u05de\u05d7\u05d9\u05e7\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd",
|
||||||
"ConfirmDeleteItems": "\u05de\u05d7\u05d9\u05e7\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05d0\u05dc\u05d4 \u05ea\u05de\u05d7\u05e7 \u05d0\u05d5\u05ea\u05dd \u05d4\u05df \u05de\u05de\u05e2\u05e8\u05db\u05ea \u05d4\u05e7\u05d1\u05e6\u05d9\u05dd \u05d5\u05d4\u05df \u05de\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da. \u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05de\u05e9\u05d9\u05da?",
|
"ConfirmDeleteItems": "\u05de\u05d7\u05d9\u05e7\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05d0\u05dc\u05d4 \u05ea\u05de\u05d7\u05e7 \u05d0\u05d5\u05ea\u05dd \u05d4\u05df \u05de\u05de\u05e2\u05e8\u05db\u05ea \u05d4\u05e7\u05d1\u05e6\u05d9\u05dd \u05d5\u05d4\u05df \u05de\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da. \u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05de\u05e9\u05d9\u05da?",
|
||||||
"PleaseRestartServerName": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05e9\u05e8\u05ea Emby - {0}.",
|
"PleaseRestartServerName": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05e9\u05e8\u05ea Emby - {0}.",
|
||||||
"LabelSyncJobName": "\u05e1\u05e0\u05db\u05e8\u05df \u05d0\u05ea \u05e9\u05dd \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4:",
|
"LabelSyncJobName": "\u05e1\u05e0\u05db\u05e8\u05df \u05d0\u05ea \u05e9\u05dd \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4:",
|
||||||
|
"SyncJobCreated": "\u05e0\u05d5\u05e6\u05e8\u05d4 \u05e2\u05d1\u05d5\u05d3\u05ea \u05e1\u05d9\u05e0\u05db\u05e8\u05d5\u05df.",
|
||||||
"LabelQuality": "\u05d0\u05d9\u05db\u05d5\u05ea:",
|
"LabelQuality": "\u05d0\u05d9\u05db\u05d5\u05ea:",
|
||||||
"LabelSyncNoTargetsHelp": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d0\u05d9\u05df \u05dc\u05da \u05db\u05e8\u05d2\u05e2 \u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05d4\u05ea\u05d5\u05de\u05db\u05d5\u05ea \u05d1\u05d4\u05d5\u05e8\u05d3\u05d4 \u05d1\u05de\u05e6\u05d1 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df.",
|
"LabelSyncNoTargetsHelp": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d0\u05d9\u05df \u05dc\u05da \u05db\u05e8\u05d2\u05e2 \u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05d4\u05ea\u05d5\u05de\u05db\u05d5\u05ea \u05d1\u05d4\u05d5\u05e8\u05d3\u05d4 \u05d1\u05de\u05e6\u05d1 \u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df.",
|
||||||
"DownloadScheduled": "\u05d4\u05d5\u05e8\u05d3\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "\u05d4\u05e1\u05d9\u05e0\u05db\u05e8\u05d5\u05df \u05d3\u05d5\u05e8\u05e9 \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere.",
|
"HeaderSyncRequiresSub": "\u05d4\u05e1\u05d9\u05e0\u05db\u05e8\u05d5\u05df \u05d3\u05d5\u05e8\u05e9 \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere.",
|
||||||
"LearnMore": "\u05dc\u05de\u05d3 \u05e2\u05d5\u05d3",
|
"LearnMore": "\u05dc\u05de\u05d3 \u05e2\u05d5\u05d3",
|
||||||
"LabelProfile": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc:",
|
"LabelProfile": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "\u05e1\u05e0\u05db\u05e8\u05df \u05dc:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.",
|
||||||
"MessageUnlockAppWithSupporter": "Otklju\u010daj ovu mogu\u0107nost sa pretplatom Emby Premijere.",
|
"MessageUnlockAppWithSupporter": "Otklju\u010daj ovu mogu\u0107nost sa pretplatom Emby Premijere.",
|
||||||
"MessageToValidateSupporter": "Ako imate aktivnu pretplatu Emby Premijere provjerite dali ste postavili Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a kojoj mo\u017eete pristupiti klikom Emby Premijera u glavnom izborniku.",
|
"MessageToValidateSupporter": "Ako imate aktivnu pretplatu Emby Premijere provjerite dali ste postavili Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a kojoj mo\u017eete pristupiti klikom Emby Premijera u glavnom izborniku.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Snimi serije",
|
"RecordSeries": "Snimi serije",
|
||||||
"HeaderCinemaMode": "Kino na\u010din",
|
"HeaderCinemaMode": "Kino na\u010din",
|
||||||
"HeaderCloudSync": "Sink. preko oblaka",
|
"HeaderCloudSync": "Sink. preko oblaka",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Izvanmre\u017eni mediji",
|
"HeaderOfflineDownloads": "Izvanmre\u017eni mediji",
|
||||||
"HeaderOfflineDownloadsDescription": "Preuzimanje medija na svojim ure\u0111ajima za jednostavnu upotrebu izvan mre\u017ee.",
|
"HeaderOfflineDownloadsDescription": "Preuzimanje medija na svojim ure\u0111ajima za jednostavnu upotrebu izvan mre\u017ee.",
|
||||||
"CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.",
|
"CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.",
|
"CinemaModeFeatureDescription": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.",
|
||||||
"HeaderFreeApps": "Besplatne Emby aplikacije",
|
"HeaderFreeApps": "Besplatne Emby aplikacije",
|
||||||
"FreeAppsFeatureDescription": "U\u017eivajte u slobodnom pristupu Emby aplikacija za svoje ure\u0111aje.",
|
"FreeAppsFeatureDescription": "U\u017eivajte u slobodnom pristupu Emby aplikacija za svoje ure\u0111aje.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Unesite naziv ili vanjski Id.",
|
"PleaseEnterNameOrId": "Unesite naziv ili vanjski Id.",
|
||||||
"MessageItemSaved": "Stavka je snimljena.",
|
"MessageItemSaved": "Stavka je snimljena.",
|
||||||
"SearchResults": "Rezultati pretra\u017eivanja",
|
"SearchResults": "Rezultati pretra\u017eivanja",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} se ponovo pokre\u0107e.",
|
"ServerNameIsRestarting": "Emby Server - {0} se ponovo pokre\u0107e.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} se gasi.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} se gasi.",
|
||||||
"HeaderDeleteItems": "Brisanje stavki",
|
"HeaderDeleteItems": "Brisanje stavki",
|
||||||
"ConfirmDeleteItems": "Brisanjem ove stavke \u0107e se izbrisati iz oba datote\u010dnog sustava i medijskoj biblioteci. Jeste li sigurni da \u017eelite nastaviti?",
|
"ConfirmDeleteItems": "Brisanjem ove stavke \u0107e se izbrisati iz oba datote\u010dnog sustava i medijskoj biblioteci. Jeste li sigurni da \u017eelite nastaviti?",
|
||||||
"PleaseRestartServerName": "Ponovno pokrenite Emby Server - {0}.",
|
"PleaseRestartServerName": "Ponovno pokrenite Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Ime sinkronizacijskog posla:",
|
"LabelSyncJobName": "Ime sinkronizacijskog posla:",
|
||||||
|
"SyncJobCreated": "Sinkronizacijski posao je stvoren.",
|
||||||
"LabelQuality": "Kvaliteta:",
|
"LabelQuality": "Kvaliteta:",
|
||||||
"LabelSyncNoTargetsHelp": "Izgleda da trenutno nemate aplikacija koje podr\u017eavaju sinkronizaciju.",
|
"LabelSyncNoTargetsHelp": "Izgleda da trenutno nemate aplikacija koje podr\u017eavaju sinkronizaciju.",
|
||||||
"DownloadScheduled": "Zakazana preuzimanja",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Nau\u010di jo\u0161",
|
"LearnMore": "Nau\u010di jo\u0161",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sinkroniziraj na:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Let\u00f6lt\u00e9s...",
|
|
||||||
"HeaderWaitingForWifi": "Wifi-re v\u00e1r",
|
|
||||||
"WifiRequiredToDownload": "Wifi kapcsolat sz\u00fcks\u00e9ges a let\u00f6lt\u00e9s folytat\u00e1s\u00e1hoz.",
|
|
||||||
"HeaderDownloadSettings": "Let\u00f6lt\u00e9s be\u00e1ll\u00edt\u00e1sok",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Felh\u0151szinkroniz\u00e1ci\u00f3 ",
|
"HeaderCloudSync": "Felh\u0151szinkroniz\u00e1ci\u00f3 ",
|
||||||
"HeaderDownloadedMedia": "Let\u00f6lt\u00f6tt M\u00e9dia",
|
|
||||||
"Downloads": "Let\u00f6lt\u00e9sek",
|
"Downloads": "Let\u00f6lt\u00e9sek",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline M\u00e9dia",
|
"HeaderOfflineDownloads": "Offline M\u00e9dia",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Let\u00f6lt\u00e9s megszak\u00edt\u00e1sa",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "A Cinema Mode igazi mozi \u00e9lm\u00e9nyt ny\u00fajt el\u0151zetessel \u00e9s egyedi intr\u00f3val a film vet\u00edt\u00e9se el\u0151tt.",
|
"CinemaModeFeatureDescription": "A Cinema Mode igazi mozi \u00e9lm\u00e9nyt ny\u00fajt el\u0151zetessel \u00e9s egyedi intr\u00f3val a film vet\u00edt\u00e9se el\u0151tt.",
|
||||||
"HeaderFreeApps": "Ingyenes Emby alkalmaz\u00e1sok",
|
"HeaderFreeApps": "Ingyenes Emby alkalmaz\u00e1sok",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Let\u00f6lt\u00e9s m\u00e1sik eszk\u00f6zre",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u00fajraindul.",
|
"ServerNameIsRestarting": "Emby Server - {0} \u00fajraindul.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "K\u00e9rlek ind\u00edtsd \u00fajra az Emby Server-t - {0}.",
|
"PleaseRestartServerName": "K\u00e9rlek ind\u00edtsd \u00fajra az Emby Server-t - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Min\u0151s\u00e9g:",
|
"LabelQuality": "Min\u0151s\u00e9g:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Let\u00f6lt\u00e9s...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Let\u00f6lt\u00e9s ide:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "K\u00f6vetkezik",
|
"HeaderNextUp": "K\u00f6vetkezik",
|
||||||
"HeaderLatestFrom": "Leg\u00fajabb innen {0}",
|
"HeaderLatestFrom": "Leg\u00fajabb innen {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Wifi-re v\u00e1r",
|
||||||
|
"WifiRequiredToDownload": "Wifi kapcsolat sz\u00fcks\u00e9ges a let\u00f6lt\u00e9s folytat\u00e1s\u00e1hoz.",
|
||||||
|
"HeaderDownloadSettings": "Let\u00f6lt\u00e9s be\u00e1ll\u00edt\u00e1sok",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "In scaricamento...",
|
|
||||||
"HeaderWaitingForWifi": "In attesa di Wifi",
|
|
||||||
"WifiRequiredToDownload": "Una connessione Wifi \u00e8 richiesta per continuare il download",
|
|
||||||
"HeaderDownloadSettings": "Impostazioni Download",
|
|
||||||
"Hide": "Nascondi",
|
|
||||||
"HeaderStartNow": "Inizia Ora",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Il prossimo Video verr\u00e0 riprodotto in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Secondi",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Il prossimo Episodio verr\u00e0 riprodotto in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere",
|
"MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere",
|
||||||
"MessageToValidateSupporter": "Se hai un abbonamento Emby Premiere, assicurati di averlo configurato nel Pannello di Controllo del Server, a cui puoi accedere cliccando su Emby Premiere dal menu principale.",
|
"MessageToValidateSupporter": "Se hai un abbonamento Emby Premiere, assicurati di averlo configurato nel Pannello di Controllo del Server, a cui puoi accedere cliccando su Emby Premiere dal menu principale.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Registra serie TV",
|
"RecordSeries": "Registra serie TV",
|
||||||
"HeaderCinemaMode": "Modalit\u00e0 Cinema",
|
"HeaderCinemaMode": "Modalit\u00e0 Cinema",
|
||||||
"HeaderCloudSync": "Sinc. nel Cloud",
|
"HeaderCloudSync": "Sinc. nel Cloud",
|
||||||
"HeaderDownloadedMedia": "Media Scaricati",
|
|
||||||
"Downloads": "Scaricamenti",
|
"Downloads": "Scaricamenti",
|
||||||
"HeaderMyDownloads": "I Miei Download",
|
"HeaderMyDownloads": "I Miei Download",
|
||||||
"HeaderOfflineDownloads": "Media Offline",
|
"HeaderOfflineDownloads": "Media Offline",
|
||||||
"HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per vederli offline.",
|
"HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per vederli offline.",
|
||||||
"CloudSyncFeatureDescription": "Sincronizza i tuoi media nel cloud per un facile backup, archiviazione e conversione.",
|
"CloudSyncFeatureDescription": "Sincronizza i tuoi media nel cloud per un facile backup, archiviazione e conversione.",
|
||||||
"DvrFeatureDescription": "Pianifica le registrazioni di Live TV, registrazioni di serie e altro ancora con Emby DVR.",
|
"DvrFeatureDescription": "Pianifica le registrazioni di Live TV, registrazioni di serie e altro ancora con Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Annulla download",
|
|
||||||
"CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di download causer\u00e0 la rimozione di tutti i media scaricati dal dispositivo al prossimo processo in background di sincronizzazione. Sei sicuro di voler procedere?",
|
|
||||||
"CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti fa provare la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.",
|
"CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti fa provare la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.",
|
||||||
"HeaderFreeApps": "App Gratuite Emby",
|
"HeaderFreeApps": "App Gratuite Emby",
|
||||||
"FreeAppsFeatureDescription": "Godi dell'accesso gratuito alle App Emby dai tuoi dispositivi.",
|
"FreeAppsFeatureDescription": "Godi dell'accesso gratuito alle App Emby dai tuoi dispositivi.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.",
|
"PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.",
|
||||||
"MessageItemSaved": "Elemento salvato.",
|
"MessageItemSaved": "Elemento salvato.",
|
||||||
"SearchResults": "Risultati della Ricerca",
|
"SearchResults": "Risultati della Ricerca",
|
||||||
"DownloadToOtherDevice": "Scarica su un altro dispositivo",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} si sta riavviando.",
|
"ServerNameIsRestarting": "Emby Server - {0} si sta riavviando.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} si sta arrestando.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} si sta arrestando.",
|
||||||
"HeaderDeleteItems": "Elimina Elementi",
|
"HeaderDeleteItems": "Elimina Elementi",
|
||||||
"ConfirmDeleteItems": "L'eliminazione di questi elementi li canceller\u00e0 sia dal disco che dalla tua libreria multimediale. Sei sicuro di voler continuare?",
|
"ConfirmDeleteItems": "L'eliminazione di questi elementi li canceller\u00e0 sia dal disco che dalla tua libreria multimediale. Sei sicuro di voler continuare?",
|
||||||
"PleaseRestartServerName": "Per favore riavvia Emby Server - {0}.",
|
"PleaseRestartServerName": "Per favore riavvia Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Nome Attivit\u00e0 di Sinc.:",
|
"LabelSyncJobName": "Nome Attivit\u00e0 di Sinc.:",
|
||||||
|
"SyncJobCreated": "Attivit\u00e0 di Sinc. creata",
|
||||||
"LabelQuality": "Qualit\u00e0:",
|
"LabelQuality": "Qualit\u00e0:",
|
||||||
"LabelSyncNoTargetsHelp": "Al momento non hai applicazioni che supportino il download offline.",
|
"LabelSyncNoTargetsHelp": "Al momento non hai applicazioni che supportino il download offline.",
|
||||||
"DownloadScheduled": "Scaricamento pianificato",
|
"DownloadingDots": "In scaricamento...",
|
||||||
"HeaderSyncRequiresSub": "Per usare la funzione Download \u00e8 richiesto un abbonamento Emby Premiere attivo.",
|
"HeaderSyncRequiresSub": "Per usare la funzione Download \u00e8 richiesto un abbonamento Emby Premiere attivo.",
|
||||||
"LearnMore": "saperne di pi\u00f9",
|
"LearnMore": "saperne di pi\u00f9",
|
||||||
"LabelProfile": "Profilo:",
|
"LabelProfile": "Profilo:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continua ad ascoltare",
|
"HeaderContinueListening": "Continua ad ascoltare",
|
||||||
"HeaderActiveRecordings": "Registrazioni Attive",
|
"HeaderActiveRecordings": "Registrazioni Attive",
|
||||||
"HeaderLatestRecordings": "Ultime registrazioni",
|
"HeaderLatestRecordings": "Ultime registrazioni",
|
||||||
"LabelDownloadTo": "Scarica a:",
|
"LabelSyncTo": "Sincronizza su:",
|
||||||
"HeaderNextUp": "Prossimo",
|
"HeaderNextUp": "Prossimo",
|
||||||
"HeaderLatestFrom": "Ultime da {0}",
|
"HeaderLatestFrom": "Ultime da {0}",
|
||||||
"LabelHomeScreenSectionValue": "Pagina iniziale Sezione {0}:",
|
"LabelHomeScreenSectionValue": "Pagina iniziale Sezione {0}:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normale",
|
"Normal": "Normale",
|
||||||
"BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorer\u00e0 le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB \/ IDX, ecc.) cos\u00ec come alcuni sottotitoli ASS \/ SSA",
|
"BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorer\u00e0 le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB \/ IDX, ecc.) cos\u00ec come alcuni sottotitoli ASS \/ SSA",
|
||||||
"AllComplexFormats": "Tutti i formati complessi (ASS, SSA, VOBSUB, PGS, SUB \/ IDX, ecc.)",
|
"AllComplexFormats": "Tutti i formati complessi (ASS, SSA, VOBSUB, PGS, SUB \/ IDX, ecc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Queste impostazioni si applicano anche a qualsiasi riproduzione di Chromecast avviata da questo dispositivo."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Queste impostazioni si applicano anche a qualsiasi riproduzione di Chromecast avviata da questo dispositivo.",
|
||||||
|
"HeaderWaitingForWifi": "In attesa di Wifi",
|
||||||
|
"WifiRequiredToDownload": "Una connessione Wifi \u00e8 richiesta per continuare il download",
|
||||||
|
"HeaderDownloadSettings": "Impostazioni Download",
|
||||||
|
"Hide": "Nascondi",
|
||||||
|
"HeaderStartNow": "Inizia Ora",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Il prossimo Video verr\u00e0 riprodotto in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Il prossimo Episodio verr\u00e0 riprodotto in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Secondi",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u0430...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"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": "\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 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b 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. \u0411\u04b1\u043b \u0431\u0430\u0441\u0442\u044b \u043c\u04d9\u0437\u0456\u0440\u0434\u0435 Emby Premiere \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u043d\u04b1\u049b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b.",
|
"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 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b 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. \u0411\u04b1\u043b \u0431\u0430\u0441\u0442\u044b \u043c\u04d9\u0437\u0456\u0440\u0434\u0435 Emby Premiere \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u043d\u04b1\u049b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0436\u0430\u0437\u0443",
|
"RecordSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0436\u0430\u0437\u0443",
|
||||||
"HeaderCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456",
|
"HeaderCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456",
|
||||||
"HeaderCloudSync": "\u0411\u04b1\u043b\u0442 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
|
"HeaderCloudSync": "\u0411\u04b1\u043b\u0442 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
|
||||||
"HeaderDownloadedMedia": "\u0416\u04af\u043a\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
|
|
||||||
"Downloads": "\u0416\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440",
|
"Downloads": "\u0416\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440",
|
||||||
"HeaderMyDownloads": "\u041c\u0435\u043d\u0456\u04a3 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0456\u043c",
|
"HeaderMyDownloads": "\u041c\u0435\u043d\u0456\u04a3 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0456\u043c",
|
||||||
"HeaderOfflineDownloads": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a",
|
"HeaderOfflineDownloads": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a",
|
||||||
"HeaderOfflineDownloadsDescription": "\u041e\u04a3\u0430\u0439 \u0434\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0493\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u04a3\u044b\u0437.",
|
"HeaderOfflineDownloadsDescription": "\u041e\u04a3\u0430\u0439 \u0434\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0493\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u04a3\u044b\u0437.",
|
||||||
"CloudSyncFeatureDescription": "\u0421\u0430\u049b\u0442\u044b\u049b \u043a\u04e9\u0448\u0456\u0440\u043c\u0435\u043d\u0456, \u043c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u04b1\u043b\u0442\u043f\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.",
|
"CloudSyncFeatureDescription": "\u0421\u0430\u049b\u0442\u044b\u049b \u043a\u04e9\u0448\u0456\u0440\u043c\u0435\u043d\u0456, \u043c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u04b1\u043b\u0442\u043f\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.",
|
||||||
"DvrFeatureDescription": "Emby DVR \u043a\u0435\u0441\u0442\u0435\u0441\u0456\u043d\u0435 \u0436\u0435\u043a\u0435 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b, \u0442\u043e\u043f\u0442\u0430\u043c\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b, \u0436\u04d9\u043d\u0435 \u043e\u043d\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
"DvrFeatureDescription": "Emby DVR \u043a\u0435\u0441\u0442\u0435\u0441\u0456\u043d\u0435 \u0436\u0435\u043a\u0435 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b, \u0442\u043e\u043f\u0442\u0430\u043c\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b, \u0436\u04d9\u043d\u0435 \u043e\u043d\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||||
"ButtonCancelSyncJob": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
|
||||||
"CancelSyncJobConfirmation": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u044b \u043a\u0435\u043b\u0435\u0441\u0456 \u04e9\u04a3\u0434\u0456\u043a \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u043e\u044f\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u0441\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
|
||||||
"CinemaModeFeatureDescription": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
"CinemaModeFeatureDescription": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
||||||
"HeaderFreeApps": "\u0422\u0435\u0433\u0456\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b",
|
"HeaderFreeApps": "\u0422\u0435\u0433\u0456\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b",
|
||||||
"FreeAppsFeatureDescription": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437 \u04af\u0448\u0456\u043d Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u04a3\u044b\u0437.",
|
"FreeAppsFeatureDescription": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437 \u04af\u0448\u0456\u043d Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u04a3\u044b\u0437.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
"PleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||||
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||||
"SearchResults": "\u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456",
|
"SearchResults": "\u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456",
|
||||||
"DownloadToOtherDevice": "\u0411\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0436\u04af\u043a\u0442\u0435\u0443",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430.",
|
"ServerNameIsRestarting": "Emby Server - {0} \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u0443\u0434\u0430.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u0443\u0434\u0430.",
|
||||||
"HeaderDeleteItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e",
|
"HeaderDeleteItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e",
|
||||||
"ConfirmDeleteItems": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0436\u043e\u0439\u044b\u043b\u0430\u0434. \u0421\u0456\u0437 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430? \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
"ConfirmDeleteItems": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0436\u043e\u0439\u044b\u043b\u0430\u0434. \u0421\u0456\u0437 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430? \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
||||||
"PleaseRestartServerName": "Emby Server \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 - {0}.",
|
"PleaseRestartServerName": "Emby Server \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 - {0}.",
|
||||||
"LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:",
|
"LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:",
|
||||||
|
"SyncJobCreated": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0436\u0430\u0441\u0430\u043b\u0434\u044b",
|
||||||
"LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:",
|
"LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:",
|
||||||
"LabelSyncNoTargetsHelp": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u049b\u0430\u0439\u0431\u0456\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0430\u0493\u044b\u043c\u0434\u0430 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u043c\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u044b\u043f \u043a\u04e9\u0440\u0456\u043d\u0435\u0434\u0456.",
|
"LabelSyncNoTargetsHelp": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u049b\u0430\u0439\u0431\u0456\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0430\u0493\u044b\u043c\u0434\u0430 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u043c\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u044b\u043f \u043a\u04e9\u0440\u0456\u043d\u0435\u0434\u0456.",
|
||||||
"DownloadScheduled": "\u0416\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d",
|
"DownloadingDots": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u0430...",
|
||||||
"HeaderSyncRequiresSub": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\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",
|
"HeaderSyncRequiresSub": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\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",
|
||||||
"LearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
|
"LearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
|
||||||
"LabelProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b:",
|
"LabelProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "\u0422\u044b\u04a3\u0434\u0430\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443",
|
"HeaderContinueListening": "\u0422\u044b\u04a3\u0434\u0430\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||||
"HeaderActiveRecordings": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
"HeaderActiveRecordings": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
||||||
"HeaderLatestRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
"HeaderLatestRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
||||||
"LabelDownloadTo": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443:",
|
"LabelSyncTo": "\u041e\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:",
|
||||||
"HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
|
"HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
|
||||||
"HeaderLatestFrom": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}",
|
"HeaderLatestFrom": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}",
|
||||||
"LabelHomeScreenSectionValue": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 {0}-\u0431\u04e9\u043b\u0456\u043c:",
|
"LabelHomeScreenSectionValue": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 {0}-\u0431\u04e9\u043b\u0456\u043c:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"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.",
|
"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.",
|
||||||
"ErrorReachingEmbyConnect": "Emby Connect \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d\u0435 \u0436\u0435\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
"ErrorReachingEmbyConnect": "Emby Connect \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d\u0435 \u0436\u0435\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? {0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0456\u04a3\u0456\u0437.",
|
"ErrorAddingEmbyConnectAccount1": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? {0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0456\u04a3\u0456\u0437.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "\u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u044d-\u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u0441\u0456\u0437 \u043e\u0441\u044b \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.",
|
"ErrorAddingEmbyConnectAccount2": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0456 \u0434\u0435 \u043c\u04d9\u0441\u0435\u043b\u0435\u04a3\u0456\u0437 \u0431\u043e\u043b\u0441\u0430, Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.",
|
||||||
"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": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0456 \u0434\u0435 \u043c\u04d9\u0441\u0435\u043b\u0435\u04a3\u0456\u0437 \u0431\u043e\u043b\u0441\u0430, \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0436\u04d9\u043d\u0435 \u043e\u043b\u0430\u0440\u0434\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.",
|
||||||
"MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.",
|
"MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.",
|
||||||
"MessagePendingEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456. \u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0438\u0435\u0441\u0456\u043d\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456. \u042d-\u043f\u043e\u0448\u0442\u0430\u0434\u0430\u0493\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u043d\u04b1\u049b\u044b\u043f \u0448\u0430\u049b\u044b\u0440\u0443\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
"MessagePendingEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456. \u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0438\u0435\u0441\u0456\u043d\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456. \u042d-\u043f\u043e\u0448\u0442\u0430\u0434\u0430\u0493\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u043d\u04b1\u049b\u044b\u043f \u0448\u0430\u049b\u044b\u0440\u0443\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||||
"HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456",
|
"HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "\u041a\u04d9\u0434\u0456\u043c\u0433\u0456",
|
"Normal": "\u041a\u04d9\u0434\u0456\u043c\u0433\u0456",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "\u0411\u0430\u0440\u043b\u044b\u049b \u043a\u04af\u0440\u0434\u0435\u043b\u0456 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0436\u04d9\u043d\u0435 \u0442.\u0431.)",
|
"AllComplexFormats": "\u0411\u0430\u0440\u043b\u044b\u049b \u043a\u04af\u0440\u0434\u0435\u043b\u0456 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0436\u04d9\u043d\u0435 \u0442.\u0431.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u0411\u04b1\u043b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043a\u0435\u0437-\u043a\u0435\u043b\u0433\u0435\u043d Chromecast \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u0411\u04b1\u043b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043a\u0435\u0437-\u043a\u0435\u043b\u0433\u0435\u043d Chromecast \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
|
||||||
|
"HeaderWaitingForWifi": "WiFi \u04af\u0448\u0456\u043d \u043a\u04af\u0442\u0443\u0434\u0435",
|
||||||
|
"WifiRequiredToDownload": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d WiFi \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.",
|
||||||
|
"HeaderDownloadSettings": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
|
||||||
|
"Hide": "\u0416\u0430\u0441\u044b\u0440\u0443",
|
||||||
|
"HeaderStartNow": "\u049a\u0430\u0437\u0456\u0440 \u0431\u0430\u0441\u0442\u0430\u0443",
|
||||||
|
"HeaderNextVideoPlayingInValue": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0435\u0439\u043d\u0435 {0} \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c {0} \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b",
|
||||||
|
"HeaderSecondsValue": "{0} \u0441\u0435\u043a\u04e9\u043d\u0434",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "\ub3d9\uae30\ud654 \uc791\uc5c5 \uc774\ub984:",
|
"LabelSyncJobName": "\ub3d9\uae30\ud654 \uc791\uc5c5 \uc774\ub984:",
|
||||||
|
"SyncJobCreated": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||||
"LabelQuality": "\ud488\uc9c8:",
|
"LabelQuality": "\ud488\uc9c8:",
|
||||||
"LabelSyncNoTargetsHelp": "\ud604\uc7ac \ub3d9\uae30\ud654\ub97c \uc9c0\uc6d0\ud558\ub294 \uc571\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
"LabelSyncNoTargetsHelp": "\ud604\uc7ac \ub3d9\uae30\ud654\ub97c \uc9c0\uc6d0\ud558\ub294 \uc571\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "\ub354 \uc54c\uc544\ubcf4\uae30",
|
"LearnMore": "\ub354 \uc54c\uc544\ubcf4\uae30",
|
||||||
"LabelProfile": "\ud504\ub85c\ud30c\uc77c:",
|
"LabelProfile": "\ud504\ub85c\ud30c\uc77c:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "\ub3d9\uae30\ud654 \uc7a5\uce58:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 nedideliu vienkartiniu mokes\u010diu arba \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 nedideliu vienkartiniu mokes\u010diu arba \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
||||||
"MessageUnlockAppWithSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
"MessageUnlockAppWithSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
||||||
"MessageToValidateSupporter": "Jei turite aktyvi\u0105 Emby Premiere prenumerat\u0105, sutvarkykite Emby Premiere savo Emby Serverio skydelyje. Tai galite atlikti paspaud\u0117 Emby Premiere u\u017era\u0161\u0105 pagrindiniame meniu.",
|
"MessageToValidateSupporter": "Jei turite aktyvi\u0105 Emby Premiere prenumerat\u0105, sutvarkykite Emby Premiere savo Emby Serverio skydelyje. Tai galite atlikti paspaud\u0117 Emby Premiere u\u017era\u0161\u0105 pagrindiniame meniu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "\u012era\u0161yti laid\u0105",
|
"RecordSeries": "\u012era\u0161yti laid\u0105",
|
||||||
"HeaderCinemaMode": "Kinoteatro re\u017eimas",
|
"HeaderCinemaMode": "Kinoteatro re\u017eimas",
|
||||||
"HeaderCloudSync": "Sinch. su debesimi",
|
"HeaderCloudSync": "Sinch. su debesimi",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Atsiuntimai",
|
"Downloads": "Atsiuntimai",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Vietin\u0117 medija",
|
"HeaderOfflineDownloads": "Vietin\u0117 medija",
|
||||||
"HeaderOfflineDownloadsDescription": "Atsisi\u0173sti medij\u0105 \u012f savo \u012frenginius lengvai prieigai be interneto.",
|
"HeaderOfflineDownloadsDescription": "Atsisi\u0173sti medij\u0105 \u012f savo \u012frenginius lengvai prieigai be interneto.",
|
||||||
"CloudSyncFeatureDescription": "Sinchronizuokite savo medij\u0105 su debesimi lengvam i\u0161saugojimui, archyvavimui ir konvertavimui.",
|
"CloudSyncFeatureDescription": "Sinchronizuokite savo medij\u0105 su debesimi lengvam i\u0161saugojimui, archyvavimui ir konvertavimui.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Kinoteatro re\u017eimas papildomai rodo anonsus ir kit\u0105 med\u017eiag\u0105 prie\u0161 film\u0105.",
|
"CinemaModeFeatureDescription": "Kinoteatro re\u017eimas papildomai rodo anonsus ir kit\u0105 med\u017eiag\u0105 prie\u0161 film\u0105.",
|
||||||
"HeaderFreeApps": "Nemokamos Emby Apps",
|
"HeaderFreeApps": "Nemokamos Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Gaukite nemokamas Emby program\u0117les savo \u012frenginiams.",
|
"FreeAppsFeatureDescription": "Gaukite nemokamas Emby program\u0117les savo \u012frenginiams.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "\u012eveskite vard\u0105 arba i\u0161orin\u012f ID.",
|
"PleaseEnterNameOrId": "\u012eveskite vard\u0105 arba i\u0161orin\u012f ID.",
|
||||||
"MessageItemSaved": "Elementas i\u0161saugotas.",
|
"MessageItemSaved": "Elementas i\u0161saugotas.",
|
||||||
"SearchResults": "Paie\u0161kos rezultatai",
|
"SearchResults": "Paie\u0161kos rezultatai",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Serveris - {0} leid\u017eiamas i\u0161 naujo.",
|
"ServerNameIsRestarting": "Emby Serveris - {0} leid\u017eiamas i\u0161 naujo.",
|
||||||
"ServerNameIsShuttingDown": "Emby Serveris - {0} i\u0161sijungia.",
|
"ServerNameIsShuttingDown": "Emby Serveris - {0} i\u0161sijungia.",
|
||||||
"HeaderDeleteItems": "I\u0161trinti elementus",
|
"HeaderDeleteItems": "I\u0161trinti elementus",
|
||||||
"ConfirmDeleteItems": "Tai atlikus \u0161ie elementai bus i\u0161trinti ir i\u0161 bibliotekos, ir i\u0161 fail\u0173 sistemos. Ar tikrai norite t\u0119sti?",
|
"ConfirmDeleteItems": "Tai atlikus \u0161ie elementai bus i\u0161trinti ir i\u0161 bibliotekos, ir i\u0161 fail\u0173 sistemos. Ar tikrai norite t\u0119sti?",
|
||||||
"PleaseRestartServerName": "Pra\u0161au paleisti Emby Server\u012f i\u0161 naujo - {0}.",
|
"PleaseRestartServerName": "Pra\u0161au paleisti Emby Server\u012f i\u0161 naujo - {0}.",
|
||||||
"LabelSyncJobName": "Sinchronizavimo darbo pavadinimas:",
|
"LabelSyncJobName": "Sinchronizavimo darbo pavadinimas:",
|
||||||
|
"SyncJobCreated": "Sinchronizavimo darbas u\u017esakytas.",
|
||||||
"LabelQuality": "Kokyb\u0117:",
|
"LabelQuality": "Kokyb\u0117:",
|
||||||
"LabelSyncNoTargetsHelp": "Atrodo, kad neturite joki\u0173 program\u0117li\u0173, kurios palaikyt\u0173 sinchronizavim\u0105.",
|
"LabelSyncNoTargetsHelp": "Atrodo, kad neturite joki\u0173 program\u0117li\u0173, kurios palaikyt\u0173 sinchronizavim\u0105.",
|
||||||
"DownloadScheduled": "Siuntimas numatytas",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Su\u017einoti daugiau",
|
"LearnMore": "Su\u017einoti daugiau",
|
||||||
"LabelProfile": "Profilis:",
|
"LabelProfile": "Profilis:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sinchronizuoti \u012f:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s opp denne funksjonen med et engangskj\u00f8p, eller med et aktivt Emby Premiere abonnement.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s opp denne funksjonen med et engangskj\u00f8p, eller med et aktivt Emby Premiere abonnement.",
|
||||||
"MessageUnlockAppWithSupporter": "L\u00e5s opp denne funksjonen med et aktivt Emby Premiere abonnement.",
|
"MessageUnlockAppWithSupporter": "L\u00e5s opp denne funksjonen med et aktivt Emby Premiere abonnement.",
|
||||||
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere-abonnement, m\u00e5 du s\u00f8rge for at du har konfigurert Emby Premiere i Emby Server Dashboard, som du f\u00e5r tilgang til ved \u00e5 klikke Emby Premiere i hovedmenyen.",
|
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere-abonnement, m\u00e5 du s\u00f8rge for at du har konfigurert Emby Premiere i Emby Server Dashboard, som du f\u00e5r tilgang til ved \u00e5 klikke Emby Premiere i hovedmenyen.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Ta opp serien",
|
"RecordSeries": "Ta opp serien",
|
||||||
"HeaderCinemaMode": "Kino Modus",
|
"HeaderCinemaMode": "Kino Modus",
|
||||||
"HeaderCloudSync": "Sky synkronisering",
|
"HeaderCloudSync": "Sky synkronisering",
|
||||||
"HeaderDownloadedMedia": "Last ned Media",
|
|
||||||
"Downloads": "Nedlastinger",
|
"Downloads": "Nedlastinger",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Last ned media til din enhet for enkel offline bruk",
|
"HeaderOfflineDownloadsDescription": "Last ned media til din enhet for enkel offline bruk",
|
||||||
"CloudSyncFeatureDescription": "Synkroniser mediene til skyen for sikkerhetskopiering, arkivering og konvertering.",
|
"CloudSyncFeatureDescription": "Synkroniser mediene til skyen for sikkerhetskopiering, arkivering og konvertering.",
|
||||||
"DvrFeatureDescription": "Planlegg enkelt Live opptak, serieopptak og mer med Emby DVR.",
|
"DvrFeatureDescription": "Planlegg enkelt Live opptak, serieopptak og mer med Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Avbryt nedlasting",
|
|
||||||
"CancelSyncJobConfirmation": "Hvis du kansellerer nedlastingen, vil du ogs\u00e5 fjerne nedlastede medier fra enheten under den neste bakgrunnssynkroniseringsprosessen. Er du sikker p\u00e5 at du vil fortsette?",
|
|
||||||
"CinemaModeFeatureDescription": "Kinomodus gir deg den ekte kinoopplevelsen med trailere og tilpassede introer f\u00f8r funksjonen.",
|
"CinemaModeFeatureDescription": "Kinomodus gir deg den ekte kinoopplevelsen med trailere og tilpassede introer f\u00f8r funksjonen.",
|
||||||
"HeaderFreeApps": "Gratis Emby Applikasjoner",
|
"HeaderFreeApps": "Gratis Emby Applikasjoner",
|
||||||
"FreeAppsFeatureDescription": "Nyt gratis tilgang til Emby Applikasjoner p\u00e5 din enhet",
|
"FreeAppsFeatureDescription": "Nyt gratis tilgang til Emby Applikasjoner p\u00e5 din enhet",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
"PleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
||||||
"MessageItemSaved": "Element lagret.",
|
"MessageItemSaved": "Element lagret.",
|
||||||
"SearchResults": "S\u00f8keresultater",
|
"SearchResults": "S\u00f8keresultater",
|
||||||
"DownloadToOtherDevice": "Last ned til en annen enhet",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} starter om.",
|
"ServerNameIsRestarting": "Emby Server - {0} starter om.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} avsluttes.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} avsluttes.",
|
||||||
"HeaderDeleteItems": "Slett elementer",
|
"HeaderDeleteItems": "Slett elementer",
|
||||||
"ConfirmDeleteItems": "Slette disse elementene vil slette dem fra b\u00e5de filsystemet og mediebiblioteket . Er du sikker p\u00e5 at du vil fortsette?",
|
"ConfirmDeleteItems": "Slette disse elementene vil slette dem fra b\u00e5de filsystemet og mediebiblioteket . Er du sikker p\u00e5 at du vil fortsette?",
|
||||||
"PleaseRestartServerName": "Vennligst start gj\u00f8r en omstart av Emby Server - {0}",
|
"PleaseRestartServerName": "Vennligst start gj\u00f8r en omstart av Emby Server - {0}",
|
||||||
"LabelSyncJobName": "Navn p\u00e5 synkroniseringsjobb:",
|
"LabelSyncJobName": "Navn p\u00e5 synkroniseringsjobb:",
|
||||||
|
"SyncJobCreated": "Synkroniseringsjobb p\u00e5begynt.",
|
||||||
"LabelQuality": "Kvalitet:",
|
"LabelQuality": "Kvalitet:",
|
||||||
"LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.",
|
"LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.",
|
||||||
"DownloadScheduled": "Last ned planlegger",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Synkronisering krever et aktivt Emby Premiere-abonnement.",
|
"HeaderSyncRequiresSub": "Synkronisering krever et aktivt Emby Premiere-abonnement.",
|
||||||
"LearnMore": "L\u00e6re mer",
|
"LearnMore": "L\u00e6re mer",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Forsett og h\u00f8re p\u00e5",
|
"HeaderContinueListening": "Forsett og h\u00f8re p\u00e5",
|
||||||
"HeaderActiveRecordings": "Aktive opptak",
|
"HeaderActiveRecordings": "Aktive opptak",
|
||||||
"HeaderLatestRecordings": "Siste opptak",
|
"HeaderLatestRecordings": "Siste opptak",
|
||||||
"LabelDownloadTo": "Last ned til:",
|
"LabelSyncTo": "Synkroniser til:",
|
||||||
"HeaderNextUp": "Neste",
|
"HeaderNextUp": "Neste",
|
||||||
"HeaderLatestFrom": "Siste fra {0}",
|
"HeaderLatestFrom": "Siste fra {0}",
|
||||||
"LabelHomeScreenSectionValue": "Hjemskjerm seksjon {0}",
|
"LabelHomeScreenSectionValue": "Hjemskjerm seksjon {0}",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.",
|
||||||
"MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.",
|
"MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.",
|
||||||
"MessageToValidateSupporter": "Als u een actieve Emby Premiere abonnement heeft, zorg er dan voor dat u deze activeert in uw Emby Server Dashboard door te klikken op Emby Premiere in het hoofdmenu.",
|
"MessageToValidateSupporter": "Als u een actieve Emby Premiere abonnement heeft, zorg er dan voor dat u deze activeert in uw Emby Server Dashboard door te klikken op Emby Premiere in het hoofdmenu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Series Opnemen",
|
"RecordSeries": "Series Opnemen",
|
||||||
"HeaderCinemaMode": "Bioscoop mode",
|
"HeaderCinemaMode": "Bioscoop mode",
|
||||||
"HeaderCloudSync": "Cloud Synchronisatie",
|
"HeaderCloudSync": "Cloud Synchronisatie",
|
||||||
"HeaderDownloadedMedia": "Gedownloade Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media naar je apparaten voor gemakkelijk offlineebruik.",
|
"HeaderOfflineDownloadsDescription": "Download media naar je apparaten voor gemakkelijk offlineebruik.",
|
||||||
"CloudSyncFeatureDescription": "Synchroniseer uw media naar de cloud voor eenvoudige backup, archivering en conversie.",
|
"CloudSyncFeatureDescription": "Synchroniseer uw media naar de cloud voor eenvoudige backup, archivering en conversie.",
|
||||||
"DvrFeatureDescription": "Plan individuele Live TV opnames, serie opnames en meer met Emby DVR.",
|
"DvrFeatureDescription": "Plan individuele Live TV opnames, serie opnames en meer met Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Annuleer synchronisatie",
|
|
||||||
"CancelSyncJobConfirmation": "Als u de synchroniseertaak annuleert wordt de gesynchroniseerde media bij de volgende synchroniseertaak van het apparaat verwijderd. Weet u zeker dat u door wilt gaan?",
|
|
||||||
"CinemaModeFeatureDescription": "Bioscoop mode geeft u de ware bioscoopervaring met trailers en aangepaste intro's voor de weergave van uw keuze.",
|
"CinemaModeFeatureDescription": "Bioscoop mode geeft u de ware bioscoopervaring met trailers en aangepaste intro's voor de weergave van uw keuze.",
|
||||||
"HeaderFreeApps": "Gratis Emby Apps",
|
"HeaderFreeApps": "Gratis Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Geniet van gratis toegang tot Emby apps voor uw apparaten.",
|
"FreeAppsFeatureDescription": "Geniet van gratis toegang tot Emby apps voor uw apparaten.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
"PleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
||||||
"MessageItemSaved": "Item opgeslagen.",
|
"MessageItemSaved": "Item opgeslagen.",
|
||||||
"SearchResults": "Zoekresultaten",
|
"SearchResults": "Zoekresultaten",
|
||||||
"DownloadToOtherDevice": "Naar ander apparaat downloaden",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is opnieuw aan het opstarten.",
|
"ServerNameIsRestarting": "Emby Server - {0} is opnieuw aan het opstarten.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is aan het afsluiten.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is aan het afsluiten.",
|
||||||
"HeaderDeleteItems": "Verwijder items",
|
"HeaderDeleteItems": "Verwijder items",
|
||||||
"ConfirmDeleteItems": "Het verwijderen van deze items verwijdert ze van het bestandssysteem en uit uw bibliotheek. Weet u zeker dat u verder wilt gaan?",
|
"ConfirmDeleteItems": "Het verwijderen van deze items verwijdert ze van het bestandssysteem en uit uw bibliotheek. Weet u zeker dat u verder wilt gaan?",
|
||||||
"PleaseRestartServerName": "Herstart Emby Server - {0} aub.",
|
"PleaseRestartServerName": "Herstart Emby Server - {0} aub.",
|
||||||
"LabelSyncJobName": "Naam synchroniseer taak:",
|
"LabelSyncJobName": "Naam synchroniseer taak:",
|
||||||
|
"SyncJobCreated": "Synchronisatie taak gemaakt.",
|
||||||
"LabelQuality": "Kwaliteit",
|
"LabelQuality": "Kwaliteit",
|
||||||
"LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.",
|
"LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.",
|
||||||
"DownloadScheduled": "Download gepland",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Sync Vereist een actief Premiere lidmaatschap.",
|
"HeaderSyncRequiresSub": "Sync Vereist een actief Premiere lidmaatschap.",
|
||||||
"LearnMore": "Meer informatie",
|
"LearnMore": "Meer informatie",
|
||||||
"LabelProfile": "profiel:",
|
"LabelProfile": "profiel:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Luisteren hervatten",
|
"HeaderContinueListening": "Luisteren hervatten",
|
||||||
"HeaderActiveRecordings": "Actieve Opnames",
|
"HeaderActiveRecordings": "Actieve Opnames",
|
||||||
"HeaderLatestRecordings": "Nieuwste Opnames",
|
"HeaderLatestRecordings": "Nieuwste Opnames",
|
||||||
"LabelDownloadTo": "Downloaden naar:",
|
"LabelSyncTo": "Synchroniseer naar:",
|
||||||
"HeaderNextUp": "Volgende",
|
"HeaderNextUp": "Volgende",
|
||||||
"HeaderLatestFrom": "Laatste van {0}",
|
"HeaderLatestFrom": "Laatste van {0}",
|
||||||
"LabelHomeScreenSectionValue": "Beginscherm sectie {0}:",
|
"LabelHomeScreenSectionValue": "Beginscherm sectie {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Trwa pobieranie...",
|
|
||||||
"HeaderWaitingForWifi": "Oczekiwanie na sie\u0107 WiFi",
|
|
||||||
"WifiRequiredToDownload": "Po\u0142\u0105czenie WiFi jest wymagane, aby kontynuowa\u0107 pobieranie.",
|
|
||||||
"HeaderDownloadSettings": "Ustawienia pobierania",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
||||||
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
|
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
|
||||||
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
|
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Nagraj seryjnie",
|
"RecordSeries": "Nagraj seryjnie",
|
||||||
"HeaderCinemaMode": "Tryb Kinowy",
|
"HeaderCinemaMode": "Tryb Kinowy",
|
||||||
"HeaderCloudSync": "Synchronizacja z chmur\u0105",
|
"HeaderCloudSync": "Synchronizacja z chmur\u0105",
|
||||||
"HeaderDownloadedMedia": "Pobrane media",
|
|
||||||
"Downloads": "Pobrane",
|
"Downloads": "Pobrane",
|
||||||
"HeaderMyDownloads": "Moje pobrania",
|
"HeaderMyDownloads": "Moje pobrania",
|
||||||
"HeaderOfflineDownloads": "Media w trybie offline",
|
"HeaderOfflineDownloads": "Media w trybie offline",
|
||||||
"HeaderOfflineDownloadsDescription": "Pobieraj media na swoje urz\u0105dzenia, aby z nich korzysta\u0107 w trybie offline.",
|
"HeaderOfflineDownloadsDescription": "Pobieraj media na swoje urz\u0105dzenia, aby z nich korzysta\u0107 w trybie offline.",
|
||||||
"CloudSyncFeatureDescription": "Synchronizuj media z chmur\u0105, w celu wykonywania kopii zapasowej, archiwizacji i konwersji.",
|
"CloudSyncFeatureDescription": "Synchronizuj media z chmur\u0105, w celu wykonywania kopii zapasowej, archiwizacji i konwersji.",
|
||||||
"DvrFeatureDescription": "Zaplanuj pojedyncze nagrania program\u00f3w telewizyjnych, nagrywanie seriali i wi\u0119cej za pomoc\u0105 nagrywarki Emby.",
|
"DvrFeatureDescription": "Zaplanuj pojedyncze nagrania program\u00f3w telewizyjnych, nagrywanie seriali i wi\u0119cej za pomoc\u0105 nagrywarki Emby.",
|
||||||
"ButtonCancelSyncJob": "Anuluj pobieranie",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Darmowe aplikacje Emby",
|
"HeaderFreeApps": "Darmowe aplikacje Emby",
|
||||||
"FreeAppsFeatureDescription": "Korzystaj z darmowego dost\u0119pu do aplikacji Emby na swoich urz\u0105dzeniach.",
|
"FreeAppsFeatureDescription": "Korzystaj z darmowego dost\u0119pu do aplikacji Emby na swoich urz\u0105dzeniach.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.",
|
"PleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.",
|
||||||
"MessageItemSaved": "Obiekt zapisany.",
|
"MessageItemSaved": "Obiekt zapisany.",
|
||||||
"SearchResults": "Wyniki wyszukiwania",
|
"SearchResults": "Wyniki wyszukiwania",
|
||||||
"DownloadToOtherDevice": "Pobierz na inne urz\u0105dzenie",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} jest uruchamiany ponownie.",
|
"ServerNameIsRestarting": "Emby Server - {0} jest uruchamiany ponownie.",
|
||||||
"ServerNameIsShuttingDown": "Serwer Emby - {0} jest zamykany.",
|
"ServerNameIsShuttingDown": "Serwer Emby - {0} jest zamykany.",
|
||||||
"HeaderDeleteItems": "Usu\u0144 pliki",
|
"HeaderDeleteItems": "Usu\u0144 pliki",
|
||||||
"ConfirmDeleteItems": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
|
"ConfirmDeleteItems": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
|
||||||
"PleaseRestartServerName": "Prosz\u0119 ponownie uruchomi\u0107 serwer Emby - {0}",
|
"PleaseRestartServerName": "Prosz\u0119 ponownie uruchomi\u0107 serwer Emby - {0}",
|
||||||
"LabelSyncJobName": "Nazwa zadania synchronizacji",
|
"LabelSyncJobName": "Nazwa zadania synchronizacji",
|
||||||
|
"SyncJobCreated": "Utworzono zadanie synchronizacji.",
|
||||||
"LabelQuality": "Jako\u015b\u0107:",
|
"LabelQuality": "Jako\u015b\u0107:",
|
||||||
"LabelSyncNoTargetsHelp": "Wygl\u0105da na to, \u017ce nie posiadasz \u017cadnych aplikacji obs\u0142uguj\u0105cych pobieranie w trybie offline.",
|
"LabelSyncNoTargetsHelp": "Wygl\u0105da na to, \u017ce nie posiadasz \u017cadnych aplikacji obs\u0142uguj\u0105cych pobieranie w trybie offline.",
|
||||||
"DownloadScheduled": "Zaplanowano pobieranie",
|
"DownloadingDots": "Trwa pobieranie...",
|
||||||
"HeaderSyncRequiresSub": "Pobieranie wymaga aktywnej subskrypcji Emby Premium.",
|
"HeaderSyncRequiresSub": "Pobieranie wymaga aktywnej subskrypcji Emby Premium.",
|
||||||
"LearnMore": "Dowiedz si\u0119 wi\u0119cej",
|
"LearnMore": "Dowiedz si\u0119 wi\u0119cej",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Kontynuuj s\u0142uchanie",
|
"HeaderContinueListening": "Kontynuuj s\u0142uchanie",
|
||||||
"HeaderActiveRecordings": "Nagrania aktywne",
|
"HeaderActiveRecordings": "Nagrania aktywne",
|
||||||
"HeaderLatestRecordings": "Nagrania ostatnio dodane",
|
"HeaderLatestRecordings": "Nagrania ostatnio dodane",
|
||||||
"LabelDownloadTo": "Pobieraj do:",
|
"LabelSyncTo": "Synchronizuj do:",
|
||||||
"HeaderNextUp": "Do obejrzenia",
|
"HeaderNextUp": "Do obejrzenia",
|
||||||
"HeaderLatestFrom": "Ostatnio dodane z {0}",
|
"HeaderLatestFrom": "Ostatnio dodane z {0}",
|
||||||
"LabelHomeScreenSectionValue": "Sekcja ekranu startowego {0}:",
|
"LabelHomeScreenSectionValue": "Sekcja ekranu startowego {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "U\u017cytkownik nie istnieje. Upewnij si\u0119, \u017ce nazwa jest poprawna lub spr\u00f3buj wprowadzaj\u0105c adres pocztowy.",
|
"GuestUserNotFound": "U\u017cytkownik nie istnieje. Upewnij si\u0119, \u017ce nazwa jest poprawna lub spr\u00f3buj wprowadzaj\u0105c adres pocztowy.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "Konto Emby zosta\u0142o dodane do u\u017cytkownika.",
|
"MessageEmbyAccountAdded": "Konto Emby zosta\u0142o dodane do u\u017cytkownika.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Dodano konto Emby",
|
"HeaderEmbyAccountAdded": "Dodano konto Emby",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Oczekiwanie na sie\u0107 WiFi",
|
||||||
|
"WifiRequiredToDownload": "Po\u0142\u0105czenie WiFi jest wymagane, aby kontynuowa\u0107 pobieranie.",
|
||||||
|
"HeaderDownloadSettings": "Ustawienia pobierania",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Transferindo...",
|
|
||||||
"HeaderWaitingForWifi": "Esperando por Wifi",
|
|
||||||
"WifiRequiredToDownload": "\u00c9 necess\u00e1ria uma conex\u00e3o Wifi para continuar a transferir.",
|
|
||||||
"HeaderDownloadSettings": "Configura\u00e7\u00f5es de Download",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie esta funcionalidade com uma pequena compra \u00fanica, ou com uma assinatura ativa do Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie esta funcionalidade com uma pequena compra \u00fanica, ou com uma assinatura ativa do Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Desbloqueie esta funcionalidade com uma assinatura ativa do Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "Desbloqueie esta funcionalidade com uma assinatura ativa do Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "Se tiver uma assinatura ativa do Emby Premiere, assegure-se que configurou o Emby Premiere no Painel do Servidor Emby, que pode ser acessado clicando Emby Premiere no menu principal.",
|
"MessageToValidateSupporter": "Se tiver uma assinatura ativa do Emby Premiere, assegure-se que configurou o Emby Premiere no Painel do Servidor Emby, que pode ser acessado clicando Emby Premiere no menu principal.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Gravar s\u00e9rie",
|
"RecordSeries": "Gravar s\u00e9rie",
|
||||||
"HeaderCinemaMode": "Modo Cinema",
|
"HeaderCinemaMode": "Modo Cinema",
|
||||||
"HeaderCloudSync": "Sincroniza\u00e7\u00e3o na Nuvem",
|
"HeaderCloudSync": "Sincroniza\u00e7\u00e3o na Nuvem",
|
||||||
"HeaderDownloadedMedia": "M\u00eddia Baixada",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "Meus Downloads",
|
"HeaderMyDownloads": "Meus Downloads",
|
||||||
"HeaderOfflineDownloads": "M\u00eddia Offline",
|
"HeaderOfflineDownloads": "M\u00eddia Offline",
|
||||||
"HeaderOfflineDownloadsDescription": "Download sua m\u00eddia para seus dispositivos para uso offline f\u00e1cil.",
|
"HeaderOfflineDownloadsDescription": "Download sua m\u00eddia para seus dispositivos para uso offline f\u00e1cil.",
|
||||||
"CloudSyncFeatureDescription": "Sincronize sua m\u00eddia para a nuvem para backup, arquivamento e convers\u00e3o f\u00e1ceis.",
|
"CloudSyncFeatureDescription": "Sincronize sua m\u00eddia para a nuvem para backup, arquivamento e convers\u00e3o f\u00e1ceis.",
|
||||||
"DvrFeatureDescription": "Agendar grava\u00e7\u00f5es individuais de TV ao vivo, grava\u00e7\u00f5es de s\u00e9ries e mais com o Emby DVR.",
|
"DvrFeatureDescription": "Agendar grava\u00e7\u00f5es individuais de TV ao vivo, grava\u00e7\u00f5es de s\u00e9ries e mais com o Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancelar download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelar a tarefa de download remover\u00e1 as m\u00eddias transferidas do dispositivo durante o pr\u00f3ximo processo de sincroniza\u00e7\u00e3o. Deseja realmente continuar?",
|
|
||||||
"CinemaModeFeatureDescription": "Modo Cinema oferece a voc\u00ea uma verdadeira experi\u00eancia de cinema com trailers e intros customizados antes da funcionalidade.",
|
"CinemaModeFeatureDescription": "Modo Cinema oferece a voc\u00ea uma verdadeira experi\u00eancia de cinema com trailers e intros customizados antes da funcionalidade.",
|
||||||
"HeaderFreeApps": "Apps Emby gr\u00e1tis",
|
"HeaderFreeApps": "Apps Emby gr\u00e1tis",
|
||||||
"FreeAppsFeatureDescription": "Aproveite acesso gr\u00e1tis a apps Emby para seus dispositivos.",
|
"FreeAppsFeatureDescription": "Aproveite acesso gr\u00e1tis a apps Emby para seus dispositivos.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
"PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
||||||
"MessageItemSaved": "Item salvo.",
|
"MessageItemSaved": "Item salvo.",
|
||||||
"SearchResults": "Resultados da Busca",
|
"SearchResults": "Resultados da Busca",
|
||||||
"DownloadToOtherDevice": "Transferir para outro dispositivo",
|
|
||||||
"ServerNameIsRestarting": "Servidor Emby - {0} est\u00e1 reiniciando.",
|
"ServerNameIsRestarting": "Servidor Emby - {0} est\u00e1 reiniciando.",
|
||||||
"ServerNameIsShuttingDown": "Servidor Emby - {0} est\u00e1 desligando.",
|
"ServerNameIsShuttingDown": "Servidor Emby - {0} est\u00e1 desligando.",
|
||||||
"HeaderDeleteItems": "Excluir Itens",
|
"HeaderDeleteItems": "Excluir Itens",
|
||||||
"ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca de m\u00eddias. Deseja realmente continuar?",
|
"ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca de m\u00eddias. Deseja realmente continuar?",
|
||||||
"PleaseRestartServerName": "Por favor reinicie o Servidor Emby - {0}.",
|
"PleaseRestartServerName": "Por favor reinicie o Servidor Emby - {0}.",
|
||||||
"LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:",
|
"LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:",
|
||||||
|
"SyncJobCreated": "Tarefa de sincroniza\u00e7\u00e3o criada",
|
||||||
"LabelQuality": "Qualidade:",
|
"LabelQuality": "Qualidade:",
|
||||||
"LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta o download offline.",
|
"LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta o download offline.",
|
||||||
"DownloadScheduled": "Download agendado",
|
"DownloadingDots": "Transferindo...",
|
||||||
"HeaderSyncRequiresSub": "O Download requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.",
|
"HeaderSyncRequiresSub": "O Download requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.",
|
||||||
"LearnMore": "Saiba mais",
|
"LearnMore": "Saiba mais",
|
||||||
"LabelProfile": "Perfil:",
|
"LabelProfile": "Perfil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continuar Escutando",
|
"HeaderContinueListening": "Continuar Escutando",
|
||||||
"HeaderActiveRecordings": "Grava\u00e7\u00f5es Ativas",
|
"HeaderActiveRecordings": "Grava\u00e7\u00f5es Ativas",
|
||||||
"HeaderLatestRecordings": "Grava\u00e7\u00f5es Recentes",
|
"HeaderLatestRecordings": "Grava\u00e7\u00f5es Recentes",
|
||||||
"LabelDownloadTo": "Baixar para:",
|
"LabelSyncTo": "Sincronizar para:",
|
||||||
"HeaderNextUp": "Pr\u00f3ximos",
|
"HeaderNextUp": "Pr\u00f3ximos",
|
||||||
"HeaderLatestFrom": "Mais recentes de {0}",
|
"HeaderLatestFrom": "Mais recentes de {0}",
|
||||||
"LabelHomeScreenSectionValue": "Se\u00e7\u00e3o {0} da tela In\u00edcio:",
|
"LabelHomeScreenSectionValue": "Se\u00e7\u00e3o {0} da tela In\u00edcio:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no v\u00eddeo ao convert\u00ea-lo, dependendo do formato da legenda. Evitar a grava\u00e7\u00e3o da legenda ir\u00e1 melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB\/IDX, etc.) assim como algumas legendas ASS\/SSA.",
|
"BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no v\u00eddeo ao convert\u00ea-lo, dependendo do formato da legenda. Evitar a grava\u00e7\u00e3o da legenda ir\u00e1 melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB\/IDX, etc.) assim como algumas legendas ASS\/SSA.",
|
||||||
"AllComplexFormats": "Todos os formatos complexos (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "Todos os formatos complexos (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estas configura\u00e7\u00f5es tamb\u00e9m se aplicam para qualquer reprodu\u00e7\u00e3o do Chromecast para este dispositivo."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estas configura\u00e7\u00f5es tamb\u00e9m se aplicam para qualquer reprodu\u00e7\u00e3o do Chromecast para este dispositivo.",
|
||||||
|
"HeaderWaitingForWifi": "Esperando por Wifi",
|
||||||
|
"WifiRequiredToDownload": "\u00c9 necess\u00e1ria uma conex\u00e3o Wifi para continuar a transferir.",
|
||||||
|
"HeaderDownloadSettings": "Configura\u00e7\u00f5es de Download",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
"PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
||||||
"MessageItemSaved": "Item salvo.",
|
"MessageItemSaved": "Item salvo.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Remover Itens",
|
"HeaderDeleteItems": "Remover Itens",
|
||||||
"ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca multim\u00e9dia. Deseja realmente continuar?",
|
"ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca multim\u00e9dia. Deseja realmente continuar?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.",
|
"LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Saiba mais",
|
"LearnMore": "Saiba mais",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f...",
|
|
||||||
"HeaderWaitingForWifi": "\u0412 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0438 WiFi",
|
|
||||||
"WifiRequiredToDownload": "WiFi-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.",
|
|
||||||
"HeaderDownloadSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
|
||||||
"Hide": "\u0421\u043a\u0440\u044b\u0442\u044c",
|
|
||||||
"HeaderStartNow": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e",
|
|
||||||
"HeaderNextVideoPlayingInValue": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0432\u0438\u0434\u0435\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {0}",
|
|
||||||
"HeaderSecondsValue": "{0} \u0441",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u044d\u043f\u0438\u0437\u043e\u0434 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
|
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
|
||||||
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\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, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e Emby Premiere \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e \u0449\u0435\u043b\u0447\u043a\u0443 \u043f\u043e Emby Premiere \u0432 \u0433\u043b\u0430\u0432\u043d\u043e\u043c \u043c\u0435\u043d\u044e.",
|
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\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, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e Emby Premiere \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e \u0449\u0435\u043b\u0447\u043a\u0443 \u043f\u043e Emby Premiere \u0432 \u0433\u043b\u0430\u0432\u043d\u043e\u043c \u043c\u0435\u043d\u044e.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b",
|
"RecordSeries": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b",
|
||||||
"HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
"HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
||||||
"HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
"HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||||
"HeaderDownloadedMedia": "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
|
||||||
"Downloads": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
"Downloads": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
||||||
"HeaderMyDownloads": "\u041c\u043e\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
"HeaderMyDownloads": "\u041c\u043e\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
||||||
"HeaderOfflineDownloads": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
"HeaderOfflineDownloads": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||||
"HeaderOfflineDownloadsDescription": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u043d\u0430 \u0432\u0430\u0448\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435.",
|
"HeaderOfflineDownloadsDescription": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u043d\u0430 \u0432\u0430\u0448\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435.",
|
||||||
"CloudSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u043e\u0431\u043b\u0430\u043a\u043e\u043c \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0438\u0445 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f.",
|
"CloudSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u043e\u0431\u043b\u0430\u043a\u043e\u043c \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0438\u0445 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f.",
|
||||||
"DvrFeatureDescription": "\u0412\u043a\u043b\u044e\u0447\u0430\u0439\u0442\u0435 \u0432 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u044d\u0444\u0438\u0440\u0430, \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0438 \u0442.\u0434. \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0432\u0438\u0434\u0435\u043e\u0440\u0435\u043a\u043e\u0440\u0434\u0435\u0440\u0430 Emby.",
|
"DvrFeatureDescription": "\u0412\u043a\u043b\u044e\u0447\u0430\u0439\u0442\u0435 \u0432 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u044d\u0444\u0438\u0440\u0430, \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0438 \u0442.\u0434. \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0432\u0438\u0434\u0435\u043e\u0440\u0435\u043a\u043e\u0440\u0434\u0435\u0440\u0430 Emby.",
|
||||||
"ButtonCancelSyncJob": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443",
|
|
||||||
"CancelSyncJobConfirmation": "\u041e\u0442\u043c\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0438\u0437\u044a\u044f\u0442\u0438\u044e \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u0444\u043e\u043d\u043e\u0432\u043e\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c?",
|
|
||||||
"CinemaModeFeatureDescription": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442 \u0432\u0430\u043c \u0432\u043f\u0435\u0447\u0430\u0442\u043b\u0435\u043d\u0438\u0435 \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 \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
|
"CinemaModeFeatureDescription": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442 \u0432\u0430\u043c \u0432\u043f\u0435\u0447\u0430\u0442\u043b\u0435\u043d\u0438\u0435 \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 \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
|
||||||
"HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"FreeAppsFeatureDescription": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432.",
|
"FreeAppsFeatureDescription": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
"PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
||||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
||||||
"SearchResults": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430",
|
"SearchResults": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430",
|
||||||
"DownloadToOtherDevice": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043d\u0430 \u0434\u0440. \u0443\u0441\u0442\u0440-\u0432\u043e",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.",
|
"ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0443.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0443.",
|
||||||
"HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432",
|
"HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432",
|
||||||
"ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
|
"ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
|
||||||
"PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}.",
|
"PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
|
"LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
|
||||||
|
"SyncJobCreated": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043e",
|
||||||
"LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:",
|
"LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:",
|
||||||
"LabelSyncNoTargetsHelp": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0447\u0442\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u0430\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430, \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f.",
|
"LabelSyncNoTargetsHelp": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0447\u0442\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u0430\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430, \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f.",
|
||||||
"DownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e",
|
"DownloadingDots": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f...",
|
||||||
"HeaderSyncRequiresSub": "\u0414\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\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.",
|
"HeaderSyncRequiresSub": "\u0414\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\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.",
|
||||||
"LearnMore": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...",
|
"LearnMore": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...",
|
||||||
"LabelProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c:",
|
"LabelProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u043d\u0438\u044f",
|
"HeaderContinueListening": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u043d\u0438\u044f",
|
||||||
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||||
"HeaderLatestRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
"HeaderLatestRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||||
"LabelDownloadTo": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043d\u0430:",
|
"LabelSyncTo": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441:",
|
||||||
"HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
|
"HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
|
||||||
"HeaderLatestFrom": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 {0}",
|
"HeaderLatestFrom": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 {0}",
|
||||||
"LabelHomeScreenSectionValue": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b {0}:",
|
"LabelHomeScreenSectionValue": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0438\u043c\u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043e \u0432\u0435\u0440\u043d\u043e \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0432\u0435\u0441\u0442\u0438 \u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.",
|
"GuestUserNotFound": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0438\u043c\u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043e \u0432\u0435\u0440\u043d\u043e \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0432\u0435\u0441\u0442\u0438 \u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.",
|
||||||
"ErrorReachingEmbyConnect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"ErrorReachingEmbyConnect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0421\u043e\u0437\u0434\u0430\u043b\u0438 \u043b\u0438 \u0432\u044b \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby? \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u0439\u0442\u0435\u0441\u044c \u043d\u0430 {0}.",
|
"ErrorAddingEmbyConnectAccount1": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0421\u043e\u0437\u0434\u0430\u043b\u0438 \u043b\u0438 \u0432\u044b \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby? \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u0439\u0442\u0435\u0441\u044c \u043d\u0430 {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443\u0447\u0435\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0430, \u0441\u043b\u0435\u0434\u0443\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c \u0432 \u043f\u0438\u0441\u044c\u043c\u0435, \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u044d\u0442\u043e \u043f\u0438\u0441\u044c\u043c\u043e, \u0442\u043e\u0433\u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0} \u0441 \u0430\u0434\u0440\u0435\u0441\u0430 \u042d-\u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0432 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby.",
|
"ErrorAddingEmbyConnectAccount2": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0432\u0441\u0451 \u0435\u0449\u0451 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u044b, \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0} \u0441 \u0430\u0434\u0440\u0435\u0441\u0430 \u042d-\u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0432 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby.",
|
||||||
"ErrorAddingGuestAccount1": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0421\u043e\u0437\u0434\u0430\u043b \u043b\u0438 \u0432\u0430\u0448 \u0433\u043e\u0441\u0442\u044c \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby? \u041e\u043d \u0441\u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 {0}.",
|
"ErrorAddingGuestAccount1": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0421\u043e\u0437\u0434\u0430\u043b \u043b\u0438 \u0432\u0430\u0448 \u0433\u043e\u0441\u0442\u044c \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby? \u041e\u043d \u0441\u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 {0}.",
|
||||||
"ErrorAddingGuestAccount2": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448 \u0433\u043e\u0441\u0442\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043b \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044e, \u0441\u043b\u0435\u0434\u0443\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c \u0432 \u043f\u0438\u0441\u044c\u043c\u0435, \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u0415\u0441\u043b\u0438 \u043e\u043d \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0442\u0430\u043a\u043e\u0435 \u043f\u0438\u0441\u044c\u043c\u043e, \u0442\u043e\u0433\u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0}, \u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043d\u0430\u0440\u044f\u0434\u0443 \u0441 \u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u043e\u043c.",
|
"ErrorAddingGuestAccount2": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0432\u0441\u0451 \u0435\u0449\u0451 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u044b, \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0}, \u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043d\u0430\u0440\u044f\u0434\u0443 \u0441 \u0438\u0445 \u0430\u0434\u0440\u0435\u0441\u0430\u043c\u0438.",
|
||||||
"MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
"MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||||
"MessagePendingEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0438\u0441\u044c\u043c\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u043f\u0438\u0441\u044c\u043c\u0435.",
|
"MessagePendingEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0438\u0441\u044c\u043c\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u043f\u0438\u0441\u044c\u043c\u0435.",
|
||||||
"HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430",
|
"HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "\u041e\u0431\u044b\u0447\u043d\u044b\u0439",
|
"Normal": "\u041e\u0431\u044b\u0447\u043d\u044b\u0439",
|
||||||
"BurnSubtitlesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0434\u043e\u043b\u0436\u0435\u043d \u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432. \u0418\u0437\u0431\u0435\u0433\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0443\u043b\u0443\u0447\u0448\u0438\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0410\u0432\u0442\u043e\u00bb \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043d\u0430 \u0433\u0440\u0430\u0444\u0438\u043a\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432 (\u043d\u043f\u0440, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.), \u0430 \u0442\u0430\u043a\u0436\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445\u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 ASS\/SSA.",
|
"BurnSubtitlesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0434\u043e\u043b\u0436\u0435\u043d \u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432. \u0418\u0437\u0431\u0435\u0433\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0443\u043b\u0443\u0447\u0448\u0438\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0410\u0432\u0442\u043e\u00bb \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043d\u0430 \u0433\u0440\u0430\u0444\u0438\u043a\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432 (\u043d\u043f\u0440, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.), \u0430 \u0442\u0430\u043a\u0436\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445\u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 ASS\/SSA.",
|
||||||
"AllComplexFormats": "\u0412\u0441\u0435 \u043a\u043e\u043c\u043b\u0435\u043a\u0441\u043d\u044b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u044b (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.)",
|
"AllComplexFormats": "\u0412\u0441\u0435 \u043a\u043e\u043c\u043b\u0435\u043a\u0441\u043d\u044b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u044b (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u042d\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u044b \u043a \u043b\u044e\u0431\u043e\u043c\u0443 Chromecast-\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u043e\u043c\u0443 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u042d\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u044b \u043a \u043b\u044e\u0431\u043e\u043c\u0443 Chromecast-\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u043e\u043c\u0443 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c.",
|
||||||
|
"HeaderWaitingForWifi": "\u0412 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0438 WiFi",
|
||||||
|
"WifiRequiredToDownload": "WiFi-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.",
|
||||||
|
"HeaderDownloadSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
||||||
|
"Hide": "\u0421\u043a\u0440\u044b\u0442\u044c",
|
||||||
|
"HeaderStartNow": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e",
|
||||||
|
"HeaderNextVideoPlayingInValue": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0432\u0438\u0434\u0435\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u044d\u043f\u0438\u0437\u043e\u0434 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {0}",
|
||||||
|
"HeaderSecondsValue": "{0} \u0441",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Kvaliteta:",
|
"LabelQuality": "Kvaliteta:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s upp denna feature med ett eng\u00e5ngsk\u00f6p, eller med ett aktivt Emby Premium-medlemskap.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s upp denna feature med ett eng\u00e5ngsk\u00f6p, eller med ett aktivt Emby Premium-medlemskap.",
|
||||||
"MessageUnlockAppWithSupporter": "L\u00e5s upp den h\u00e4r funktionen med en aktiv Emby Premium prenumeration.",
|
"MessageUnlockAppWithSupporter": "L\u00e5s upp den h\u00e4r funktionen med en aktiv Emby Premium prenumeration.",
|
||||||
"MessageToValidateSupporter": "Om du har ett aktivt Emby Premium-medlemskap, se till att du har st\u00e4llt in Emby Premium i Emby Server Dashboard, som du kommer \u00e5t genom att klicka p\u00e5 Emby Premium i huvudmenyn.",
|
"MessageToValidateSupporter": "Om du har ett aktivt Emby Premium-medlemskap, se till att du har st\u00e4llt in Emby Premium i Emby Server Dashboard, som du kommer \u00e5t genom att klicka p\u00e5 Emby Premium i huvudmenyn.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Spela in serie",
|
"RecordSeries": "Spela in serie",
|
||||||
"HeaderCinemaMode": "Biol\u00e4ge",
|
"HeaderCinemaMode": "Biol\u00e4ge",
|
||||||
"HeaderCloudSync": "Molnsynkronisering",
|
"HeaderCloudSync": "Molnsynkronisering",
|
||||||
"HeaderDownloadedMedia": "H\u00e4mtad media",
|
|
||||||
"Downloads": "H\u00e4mtningar",
|
"Downloads": "H\u00e4mtningar",
|
||||||
"HeaderMyDownloads": "Mina nedladdningar",
|
"HeaderMyDownloads": "Mina nedladdningar",
|
||||||
"HeaderOfflineDownloads": "Offlinemedia",
|
"HeaderOfflineDownloads": "Offlinemedia",
|
||||||
"HeaderOfflineDownloadsDescription": "Ladda ner media till dina enheter f\u00f6r att sen spela upp dom enkelt offline.",
|
"HeaderOfflineDownloadsDescription": "Ladda ner media till dina enheter f\u00f6r att sen spela upp dom enkelt offline.",
|
||||||
"CloudSyncFeatureDescription": "Synka din media till molnet f\u00f6r l\u00e4tttillg\u00e4ngligt backup, arkivering och konvertering.",
|
"CloudSyncFeatureDescription": "Synka din media till molnet f\u00f6r l\u00e4tttillg\u00e4ngligt backup, arkivering och konvertering.",
|
||||||
"DvrFeatureDescription": "Schemal\u00e4gg individuella LiveTV-inspelningar, serie-inspelningar och mer med Emby DVR.",
|
"DvrFeatureDescription": "Schemal\u00e4gg individuella LiveTV-inspelningar, serie-inspelningar och mer med Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Avbryt synkronisering",
|
|
||||||
"CancelSyncJobConfirmation": "Om synkroniseringen avbryts kommer synkad media tas bort under n\u00e4sta synkprocess. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
|
||||||
"CinemaModeFeatureDescription": "Biol\u00e4get ger dig en bioupplevelse med trailers och anpassade intros f\u00f6re varje film.",
|
"CinemaModeFeatureDescription": "Biol\u00e4get ger dig en bioupplevelse med trailers och anpassade intros f\u00f6re varje film.",
|
||||||
"HeaderFreeApps": "Gratis Emby appar",
|
"HeaderFreeApps": "Gratis Emby appar",
|
||||||
"FreeAppsFeatureDescription": "F\u00e5 fri tillg\u00e5ng till Emby appar f\u00f6r dina enheter.",
|
"FreeAppsFeatureDescription": "F\u00e5 fri tillg\u00e5ng till Emby appar f\u00f6r dina enheter.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
"PleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
||||||
"MessageItemSaved": "Objektet har sparats.",
|
"MessageItemSaved": "Objektet har sparats.",
|
||||||
"SearchResults": "S\u00f6kresultat",
|
"SearchResults": "S\u00f6kresultat",
|
||||||
"DownloadToOtherDevice": "Ladda ner till annan enhet",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} startas om.",
|
"ServerNameIsRestarting": "Emby Server - {0} startas om.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} st\u00e4ngs ner.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} st\u00e4ngs ner.",
|
||||||
"HeaderDeleteItems": "Ta bort objekt",
|
"HeaderDeleteItems": "Ta bort objekt",
|
||||||
"ConfirmDeleteItems": "Tar du bort dessa objekt tas dom ocks\u00e5 bort ifr\u00e5n b\u00e5de ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
"ConfirmDeleteItems": "Tar du bort dessa objekt tas dom ocks\u00e5 bort ifr\u00e5n b\u00e5de ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
||||||
"PleaseRestartServerName": "V\u00e4nligen starta om Emby Server - {0}.",
|
"PleaseRestartServerName": "V\u00e4nligen starta om Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Synkjobb:",
|
"LabelSyncJobName": "Synkjobb:",
|
||||||
|
"SyncJobCreated": "Synkroniseringsjobb har skapats.",
|
||||||
"LabelQuality": "Kvalitet",
|
"LabelQuality": "Kvalitet",
|
||||||
"LabelSyncNoTargetsHelp": "Det verkar som att du inte har n\u00e5gra appar som st\u00f6djer synkronisering.",
|
"LabelSyncNoTargetsHelp": "Det verkar som att du inte har n\u00e5gra appar som st\u00f6djer synkronisering.",
|
||||||
"DownloadScheduled": "Nedladdningsschema",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Synkronisering kr\u00e4ver en aktiv Emby Premium prenumeration.",
|
"HeaderSyncRequiresSub": "Synkronisering kr\u00e4ver en aktiv Emby Premium prenumeration.",
|
||||||
"LearnMore": "L\u00e4s mer",
|
"LearnMore": "L\u00e4s mer",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Forts\u00e4tt lyssna p\u00e5",
|
"HeaderContinueListening": "Forts\u00e4tt lyssna p\u00e5",
|
||||||
"HeaderActiveRecordings": "P\u00e5g\u00e5ende inspelningar",
|
"HeaderActiveRecordings": "P\u00e5g\u00e5ende inspelningar",
|
||||||
"HeaderLatestRecordings": "Senaste inspelningar",
|
"HeaderLatestRecordings": "Senaste inspelningar",
|
||||||
"LabelDownloadTo": "Ladda ner till:",
|
"LabelSyncTo": "Synka till:",
|
||||||
"HeaderNextUp": "N\u00e4sta p\u00e5 tur",
|
"HeaderNextUp": "N\u00e4sta p\u00e5 tur",
|
||||||
"HeaderLatestFrom": "Senaste fr\u00e5n {0}",
|
"HeaderLatestFrom": "Senaste fr\u00e5n {0}",
|
||||||
"LabelHomeScreenSectionValue": "Hemsk\u00e4rmsdel {0}:",
|
"LabelHomeScreenSectionValue": "Hemsk\u00e4rmsdel {0}:",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Avg\u00f6r ifall servern ska \"br\u00e4nna in\" undertexterna under videokonverteringen, beroende p\u00e5 undertextsformatet. Att undvika inbr\u00e4nning av undertexter kommer att f\u00f6rb\u00e4ttra prestandan p\u00e5 servern. V\u00e4lj Auto f\u00f6r att br\u00e4nna image-baserade formats (ex. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA undertexter.",
|
"BurnSubtitlesHelp": "Avg\u00f6r ifall servern ska \"br\u00e4nna in\" undertexterna under videokonverteringen, beroende p\u00e5 undertextsformatet. Att undvika inbr\u00e4nning av undertexter kommer att f\u00f6rb\u00e4ttra prestandan p\u00e5 servern. V\u00e4lj Auto f\u00f6r att br\u00e4nna image-baserade formats (ex. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA undertexter.",
|
||||||
"AllComplexFormats": "Alla komplexa format (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "Alla komplexa format (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Dessa inst\u00e4llningar g\u00e4ller ocks\u00e5 f\u00f6r alla uppspelningar p\u00e5 Chromecast som startas av den h\u00e4r enheten."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Dessa inst\u00e4llningar g\u00e4ller ocks\u00e5 f\u00f6r alla uppspelningar p\u00e5 Chromecast som startas av den h\u00e4r enheten.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "\u79bb\u7ebf\u5a92\u4f53",
|
"HeaderOfflineDownloads": "\u79bb\u7ebf\u5a92\u4f53",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "\u53d6\u6d88\u540c\u6b65",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "\u514d\u8d39 Emby \u5e94\u7528",
|
"HeaderFreeApps": "\u514d\u8d39 Emby \u5e94\u7528",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
"PleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
||||||
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
||||||
"SearchResults": "\u641c\u7d22\u7ed3\u679c",
|
"SearchResults": "\u641c\u7d22\u7ed3\u679c",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u91cd\u542f\u4e2d\u3002",
|
"ServerNameIsRestarting": "Emby Server - {0} \u91cd\u542f\u4e2d\u3002",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "\u5220\u9664\u9879\u76ee",
|
"HeaderDeleteItems": "\u5220\u9664\u9879\u76ee",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "\u8d28\u91cf\uff1a",
|
"LabelQuality": "\u8d28\u91cf\uff1a",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "\u4e86\u89e3\u66f4\u591a",
|
"LearnMore": "\u4e86\u89e3\u66f4\u591a",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "\u540c\u6b65\u5230\uff1a",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
|
@ -1,13 +1,4 @@
|
||||||
{
|
{
|
||||||
"DownloadingDots": "Downloading...",
|
|
||||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"HeaderStartNow": "Start Now",
|
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
|
@ -46,15 +37,12 @@
|
||||||
"RecordSeries": "\u9304\u88fd\u6574\u500b\u7cfb\u5217",
|
"RecordSeries": "\u9304\u88fd\u6574\u500b\u7cfb\u5217",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema Mode",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Cloud Sync",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderMyDownloads": "My Downloads",
|
"HeaderMyDownloads": "My Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline Media",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||||
"ButtonCancelSyncJob": "Cancel download",
|
|
||||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
|
@ -269,16 +257,16 @@
|
||||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Search Results",
|
||||||
"DownloadToOtherDevice": "Download to other device",
|
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Delete Items",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Learn more",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profile:",
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
"HeaderContinueListening": "Continue Listening",
|
"HeaderContinueListening": "Continue Listening",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "Active Recordings",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "Latest Recordings",
|
||||||
"LabelDownloadTo": "Download to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"HeaderNextUp": "Next Up",
|
"HeaderNextUp": "Next Up",
|
||||||
"HeaderLatestFrom": "Latest from {0}",
|
"HeaderLatestFrom": "Latest from {0}",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
|
@ -485,9 +473,9 @@
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||||
|
@ -528,5 +516,14 @@
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
|
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||||
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
|
"HeaderDownloadSettings": "Download Settings",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"HeaderStartNow": "Start Now",
|
||||||
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
|
"HeaderSecondsValue": "{0} Seconds",
|
||||||
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed."
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["dom","events"],function(dom,events){"use strict";function getTouches(e){return e.changedTouches||e.targetTouches||e.touches}function TouchHelper(elem,options){options=options||{};var touchTarget,touchStartX,touchStartY,self=this,swipeXThreshold=options.swipeXThreshold||50,swipeYThreshold=options.swipeYThreshold||50,swipeXMaxY=30,excludeTagNames=options.ignoreTagNames||[],touchStart=function(e){var touch=getTouches(e)[0];if(touchTarget=null,touchStartX=0,touchStartY=0,touch){var currentTouchTarget=touch.target;if(dom.parentWithTag(currentTouchTarget,excludeTagNames))return;touchTarget=currentTouchTarget,touchStartX=touch.clientX,touchStartY=touch.clientY}},touchEnd=function(e){var isTouchMove="touchmove"===e.type;if(touchTarget){var deltaX,deltaY,clientX,clientY,touch=getTouches(e)[0];touch?(clientX=touch.clientX||0,clientY=touch.clientY||0,deltaX=clientX-(touchStartX||0),deltaY=clientY-(touchStartY||0)):(deltaX=0,deltaY=0),deltaX>swipeXThreshold&&Math.abs(deltaY)<swipeXMaxY?events.trigger(self,"swiperight",[touchTarget]):deltaX<0-swipeXThreshold&&Math.abs(deltaY)<swipeXMaxY?events.trigger(self,"swipeleft",[touchTarget]):deltaY<0-swipeYThreshold&&Math.abs(deltaX)<swipeXMaxY?events.trigger(self,"swipeup",[touchTarget,{deltaY:deltaY,deltaX:deltaX,clientX:clientX,clientY:clientY}]):deltaY>swipeYThreshold&&Math.abs(deltaX)<swipeXMaxY&&events.trigger(self,"swipedown",[touchTarget,{deltaY:deltaY,deltaX:deltaX,clientX:clientX,clientY:clientY}]),isTouchMove&&options.preventDefaultOnMove&&e.preventDefault()}isTouchMove||(touchTarget=null,touchStartX=0,touchStartY=0)};this.touchStart=touchStart,this.touchEnd=touchEnd,dom.addEventListener(elem,"touchstart",touchStart,{passive:!0}),options.triggerOnMove&&dom.addEventListener(elem,"touchmove",touchEnd,{passive:!options.preventDefaultOnMove}),dom.addEventListener(elem,"touchend",touchEnd,{passive:!0}),dom.addEventListener(elem,"touchcancel",touchEnd,{passive:!0})}return TouchHelper.prototype.destroy=function(){var elem=this.elem;if(elem){var touchStart=this.touchStart,touchEnd=this.touchEnd;dom.removeEventListener(elem,"touchstart",touchStart,{passive:!0}),dom.removeEventListener(elem,"touchmove",touchEnd,{passive:!0}),dom.removeEventListener(elem,"touchend",touchEnd,{passive:!0}),dom.removeEventListener(elem,"touchcancel",touchEnd,{passive:!0})}this.touchStart=null,this.touchEnd=null,this.elem=null},TouchHelper});
|
define(["dom","events"],function(dom,events){"use strict";function getTouches(e){return e.changedTouches||e.targetTouches||e.touches}function TouchHelper(elem,options){options=options||{};var touchTarget,touchStartX,touchStartY,lastDeltaX,lastDeltaY,thresholdYMet,self=this,swipeXThreshold=options.swipeXThreshold||50,swipeYThreshold=options.swipeYThreshold||50,swipeXMaxY=30,excludeTagNames=options.ignoreTagNames||[],touchStart=function(e){var touch=getTouches(e)[0];if(touchTarget=null,touchStartX=0,touchStartY=0,lastDeltaX=null,lastDeltaY=null,thresholdYMet=!1,touch){var currentTouchTarget=touch.target;if(dom.parentWithTag(currentTouchTarget,excludeTagNames))return;touchTarget=currentTouchTarget,touchStartX=touch.clientX,touchStartY=touch.clientY}},touchEnd=function(e){var isTouchMove="touchmove"===e.type;if(touchTarget){var deltaX,deltaY,clientX,clientY,touch=getTouches(e)[0];touch?(clientX=touch.clientX||0,clientY=touch.clientY||0,deltaX=clientX-(touchStartX||0),deltaY=clientY-(touchStartY||0)):(deltaX=0,deltaY=0);var currentDeltaX=null==lastDeltaX?deltaX:deltaX-lastDeltaX,currentDeltaY=null==lastDeltaY?deltaY:deltaY-lastDeltaY;lastDeltaX=deltaX,lastDeltaY=deltaY,deltaX>swipeXThreshold&&Math.abs(deltaY)<swipeXMaxY?events.trigger(self,"swiperight",[touchTarget]):deltaX<0-swipeXThreshold&&Math.abs(deltaY)<swipeXMaxY?events.trigger(self,"swipeleft",[touchTarget]):(deltaY<0-swipeYThreshold||thresholdYMet)&&Math.abs(deltaX)<swipeXMaxY?(thresholdYMet=!0,events.trigger(self,"swipeup",[touchTarget,{deltaY:deltaY,deltaX:deltaX,clientX:clientX,clientY:clientY,currentDeltaX:currentDeltaX,currentDeltaY:currentDeltaY}])):(deltaY>swipeYThreshold||thresholdYMet)&&Math.abs(deltaX)<swipeXMaxY&&(thresholdYMet=!0,events.trigger(self,"swipedown",[touchTarget,{deltaY:deltaY,deltaX:deltaX,clientX:clientX,clientY:clientY,currentDeltaX:currentDeltaX,currentDeltaY:currentDeltaY}])),isTouchMove&&options.preventDefaultOnMove&&e.preventDefault()}isTouchMove||(touchTarget=null,touchStartX=0,touchStartY=0,lastDeltaX=null,lastDeltaY=null,thresholdYMet=!1)};this.touchStart=touchStart,this.touchEnd=touchEnd,dom.addEventListener(elem,"touchstart",touchStart,{passive:!0}),options.triggerOnMove&&dom.addEventListener(elem,"touchmove",touchEnd,{passive:!options.preventDefaultOnMove}),dom.addEventListener(elem,"touchend",touchEnd,{passive:!0}),dom.addEventListener(elem,"touchcancel",touchEnd,{passive:!0})}return TouchHelper.prototype.destroy=function(){var elem=this.elem;if(elem){var touchStart=this.touchStart,touchEnd=this.touchEnd;dom.removeEventListener(elem,"touchstart",touchStart,{passive:!0}),dom.removeEventListener(elem,"touchmove",touchEnd,{passive:!0}),dom.removeEventListener(elem,"touchend",touchEnd,{passive:!0}),dom.removeEventListener(elem,"touchcancel",touchEnd,{passive:!0})}this.touchStart=null,this.touchEnd=null,this.elem=null},TouchHelper});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
<div id="itemDetailPage" data-role="page" class="page libraryPage itemDetailPage noSecondaryNavPage selfBackdropPage" data-theme="b" data-backbutton="true">
|
<div id="itemDetailPage" data-role="page" class="page libraryPage itemDetailPage noSecondaryNavPage selfBackdropPage" data-theme="b" data-backbutton="true">
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@media all and (min-width: 800px) {
|
@media all and (min-width: 1000px) {
|
||||||
|
|
||||||
.itemBackdrop {
|
.itemBackdrop {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["jQuery","loading"],function($,loading){"use strict";function getApiClient(){return ApiClient}function onUpdateUserComplete(result){if(loading.hide(),result.UserLinkResult){var msgKey=result.UserLinkResult.IsPending?"MessagePendingEmbyAccountAdded":"MessageEmbyAccountAdded";Dashboard.alert({message:Globalize.translate(msgKey),title:Globalize.translate("HeaderEmbyAccountAdded"),callback:function(){Dashboard.navigate("wizardlibrary.html")}})}else Dashboard.navigate("wizardlibrary.html")}function submit(form){loading.show();var apiClient=getApiClient();apiClient.ajax({type:"POST",data:{Name:form.querySelector("#txtUsername").value,ConnectUserName:form.querySelector("#txtConnectUserName").value},url:apiClient.getUrl("Startup/User"),dataType:"json"}).then(onUpdateUserComplete,function(){showEmbyConnectErrorMessage(form.querySelector("#txtConnectUserName").value)})}function showEmbyConnectErrorMessage(username){var msg;username?(msg=Globalize.translate("ErrorAddingEmbyConnectAccount1",'<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),msg+="<br/><br/>"+Globalize.translate("ErrorAddingEmbyConnectAccount2","apps@emby.media")):msg=Globalize.translate("DefaultErrorMessage"),Dashboard.alert({message:msg})}function onSubmit(){var form=this;return submit(form),!1}$(document).on("pageinit","#wizardUserPage",function(){$(".wizardUserForm").off("submit",onSubmit).on("submit",onSubmit)}).on("pageshow","#wizardUserPage",function(){loading.show();var page=this,apiClient=getApiClient();apiClient.getJSON(apiClient.getUrl("Startup/User")).then(function(user){page.querySelector("#txtUsername").value=user.Name||"",page.querySelector("#txtConnectUserName").value=user.ConnectUserName||"",loading.hide()})})});
|
define(["loading","connectHelper","globalize","dashboardcss","emby-input","emby-button"],function(loading,connectHelper,globalize){"use strict";function getApiClient(){return ApiClient}function nextWizardPage(){Dashboard.navigate("wizardlibrary.html")}function onUpdateUserComplete(result){if(loading.hide(),result.UserLinkResult){var msgKey=result.UserLinkResult.IsPending?"MessagePendingEmbyAccountAdded":"MessageEmbyAccountAdded";Dashboard.alert({message:globalize.translate(msgKey),title:globalize.translate("HeaderEmbyAccountAdded"),callback:nextWizardPage})}else nextWizardPage()}function submit(form){loading.show();var apiClient=getApiClient();apiClient.ajax({type:"POST",data:{Name:form.querySelector("#txtUsername").value,ConnectUserName:form.querySelector("#txtConnectUserName").value},url:apiClient.getUrl("Startup/User"),dataType:"json"}).then(onUpdateUserComplete,function(response){response?response.status:0;connectHelper.showLinkUserErrorMessage(form.querySelector("#txtConnectUserName").value)})}function onSubmit(e){var form=this;return submit(form),e.preventDefault(),!1}function onViewShow(){loading.show();var page=this,apiClient=getApiClient();apiClient.getJSON(apiClient.getUrl("Startup/User")).then(function(user){page.querySelector("#txtUsername").value=user.Name||"",page.querySelector("#txtConnectUserName").value=user.ConnectUserName||"",loading.hide()})}return function(view,params){view.querySelector(".wizardUserForm").addEventListener("submit",onSubmit),view.addEventListener("viewshow",onViewShow)}});
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Artistes preferits",
|
"HeaderFavoriteArtists": "Artistes preferits",
|
||||||
"HeaderFavoriteSongs": "Can\u00e7ons Preferides",
|
"HeaderFavoriteSongs": "Can\u00e7ons Preferides",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Gestern",
|
"Yesterday": "Gestern",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -625,7 +625,7 @@
|
||||||
"HeaderDirectPlayProfile": "Direktwiedergabe Profil",
|
"HeaderDirectPlayProfile": "Direktwiedergabe Profil",
|
||||||
"HeaderTranscodingProfile": "Transcoding Profil",
|
"HeaderTranscodingProfile": "Transcoding Profil",
|
||||||
"HeaderCodecProfile": "Codec Profil",
|
"HeaderCodecProfile": "Codec Profil",
|
||||||
"HeaderContainerProfile": "Container Profil",
|
"HeaderContainerProfile": "Containerprofil",
|
||||||
"OptionProfileVideo": "Video",
|
"OptionProfileVideo": "Video",
|
||||||
"OptionProfileAudio": "Audio",
|
"OptionProfileAudio": "Audio",
|
||||||
"OptionProfileVideoAudio": "Video Audio",
|
"OptionProfileVideoAudio": "Video Audio",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1791,8 +1791,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1820,8 +1820,6 @@
|
||||||
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
|
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "\u05d0\u05de\u05e0\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd",
|
"HeaderFavoriteArtists": "\u05d0\u05de\u05e0\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd",
|
||||||
"HeaderFavoriteSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd",
|
"HeaderFavoriteSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Kedvenc M\u0171v\u00e9szek",
|
"HeaderFavoriteArtists": "Kedvenc M\u0171v\u00e9szek",
|
||||||
"HeaderFavoriteSongs": "Kedvenc Dalok",
|
"HeaderFavoriteSongs": "Kedvenc Dalok",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o local dos seus ficheiros. Por favor, assegure-se que o local \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.",
|
"ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o local dos seus ficheiros. Por favor, assegure-se que o local \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "Utilizador n\u00e3o encontrado. Por favor, certifique-se que o nome est\u00e1 correto e tente novamente ou tente digitar o endere\u00e7o de e-mail.",
|
"GuestUserNotFound": "Utilizador n\u00e3o encontrado. Por favor, certifique-se que o nome est\u00e1 correto e tente novamente ou tente digitar o endere\u00e7o de e-mail.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Ob\u013e\u00faben\u00e9 pesni\u010dky",
|
"HeaderFavoriteSongs": "Ob\u013e\u00faben\u00e9 pesni\u010dky",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Ladda endast ner undertexter som matchar mina videofiler exakt",
|
"OptionRequirePerfectSubtitleMatch": "Ladda endast ner undertexter som matchar mina videofiler exakt",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "Det gick inte att l\u00e4gga till Emby Connect-kontot. Har din g\u00e4st ett Emby-konto? Dom kan skapa ett p\u00e5 {0}",
|
"ErrorAddingGuestAccount1": "Det gick inte att l\u00e4gga till Emby Connect-kontot. Har din g\u00e4st ett Emby-konto? Dom kan skapa ett p\u00e5 {0}",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "Anv\u00e4ndaren kunde inte hittas. Se till s\u00e5 att namnet \u00e4r korrekt och f\u00f6rs\u00f6k igen, eller pr\u00f6va att ange emailadressen ist\u00e4llet.",
|
"GuestUserNotFound": "Anv\u00e4ndaren kunde inte hittas. Se till s\u00e5 att namnet \u00e4r korrekt och f\u00f6rs\u00f6k igen, eller pr\u00f6va att ange emailadressen ist\u00e4llet.",
|
||||||
"Yesterday": "Ig\u00e5r",
|
"Yesterday": "Ig\u00e5r",
|
||||||
"DownloadImagesInAdvanceWarning": "Nedladdning av alla bilder i f\u00f6rv\u00e4g kommer resutera i l\u00e4ngre scanningstider av biblioteket.",
|
"DownloadImagesInAdvanceWarning": "Nedladdning av alla bilder i f\u00f6rv\u00e4g kommer resutera i l\u00e4ngre scanningstider av biblioteket.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "\u6700\u7231\u4f5c\u5bb6",
|
"HeaderFavoriteArtists": "\u6700\u7231\u4f5c\u5bb6",
|
||||||
"HeaderFavoriteSongs": "\u6700\u7231\u6b4c",
|
"HeaderFavoriteSongs": "\u6700\u7231\u6b4c",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "\u6628\u5929",
|
"Yesterday": "\u6628\u5929",
|
||||||
"DownloadImagesInAdvanceWarning": "\u9884\u5148\u4e0b\u8f7d\u6240\u6709\u56fe\u7247\u5c06\u4f1a\u66f4\u4e45\u5a92\u4f53\u5e93\u626b\u63cf\u65f6\u95f4\u3002",
|
"DownloadImagesInAdvanceWarning": "\u9884\u5148\u4e0b\u8f7d\u6240\u6709\u56fe\u7247\u5c06\u4f1a\u66f4\u4e45\u5a92\u4f53\u5e93\u626b\u63cf\u65f6\u95f4\u3002",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1795,8 +1795,8 @@
|
||||||
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
"PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
"ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
|
@ -1825,7 +1825,7 @@
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
"ErrorAddingGuestAccount2": "If you're still having a problem, please send an email to {0}.",
|
||||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.",
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
.ui-body-b .raised{background:#404040;color:#fff}.ui-body-a .raised{background:#fff;color:inherit}.ui-body-a .button-submit{background:#52B54B;color:#fff}.ui-body-a .button-cancel{background:#fff;color:inherit}.ui-body-a .button-accent,.ui-body-b .button-accent,.ui-body-b .button-submit{background:#52B54B;color:#fff}.button-accent-flat{color:#52B54B!important}.clearLink{text-decoration:none;font-weight:inherit!important;vertical-align:middle;color:inherit!important}.ui-body-b .fieldDescription,.ui-body-b .inputLabelUnfocused,.ui-body-b .paperListLabel,.ui-body-b .selectLabelUnfocused,.ui-body-b .textareaLabelUnfocused{color:#aaa}.ui-body-b .paperList{background-color:#222326}.ui-body-a div.formDialogHeader{background-color:#52B54B;color:#fff}.ui-body-a div.formDialogFooter{background-color:#f0f0f0;border-top:1px solid #ddd;color:inherit}.ui-body-a .formDialogHeader a{color:#fff!important;text-transform:uppercase}
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="wizardUserPage" data-role="page" class="page standalonePage wizardPage" data-require="scripts/wizarduserpage,emby-input,emby-button">
|
<div id="wizardUserPage" data-role="page" class="page standalonePage wizardPage">
|
||||||
|
|
||||||
<div class="padded-left padded-right padded-top">
|
<div class="padded-left padded-right padded-top">
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue