1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update audio playback

This commit is contained in:
Luke Pulverenti 2017-05-27 07:41:25 -04:00
parent c9e2f5a871
commit b4112621f5
49 changed files with 66 additions and 103 deletions

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

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
define([],function(){"use strict";function addUniquePlaylistItemId(item){item.PlaylistItemId||(item.PlaylistItemId="playlistItem"+currentId,currentId++)}function findPlaylistIndex(playlistItemId,list){for(var i=0,length=list.length;i<length;i++)if(list[i].PlaylistItemId===playlistItemId)return i;return-1}function PlayQueueManager(){this._playlist=[]}function moveInArray(array,from,to){array.splice(to,0,array.splice(from,1)[0])}var currentId=0;return PlayQueueManager.prototype.getPlaylist=function(){return this._playlist.slice(0)},PlayQueueManager.prototype.setPlaylist=function(items){items=items.slice(0);for(var i=0,length=items.length;i<length;i++)addUniquePlaylistItemId(items[i]);this._playlist=items},PlayQueueManager.prototype.queue=function(items){for(var i=0,length=items.length;i<length;i++)addUniquePlaylistItemId(items[i]),this._playlist.push(items[i])},PlayQueueManager.prototype.queueNext=function(items){this.queue(items)},PlayQueueManager.prototype.getCurrentPlaylistIndex=function(){return findPlaylistIndex(this.getCurrentPlaylistItemId(),this._playlist)},PlayQueueManager.prototype.getCurrentPlaylistItemId=function(){return this._currentPlaylistItemId},PlayQueueManager.prototype.setPlaylistState=function(playlistItemId,playlistIndex){this._currentPlaylistItemId=playlistItemId},PlayQueueManager.prototype.removeFromPlaylist=function(playlistItemIds){var playlist=this.getPlaylist();if(playlist.length<=playlistItemIds.length)return{result:"empty"};var currentPlaylistItemId=this.getCurrentPlaylistItemId(),isCurrentIndex=playlistItemIds.indexOf(currentPlaylistItemId)!==-1;return this._playlist=playlist.filter(function(item){return playlistItemIds.indexOf(item.PlaylistItemId)===-1}),{result:"removed",isCurrentIndex:isCurrentIndex}},PlayQueueManager.prototype.movePlaylistItem=function(playlistItemId,newIndex){for(var oldIndex,playlist=this.getPlaylist(),i=0,length=playlist.length;i<length;i++)if(playlist[i].PlaylistItemId===playlistItemId){oldIndex=i;break}if(oldIndex===-1||oldIndex===newIndex)return{result:"noop"};if(newIndex>=playlist.length)throw new Error("newIndex out of bounds");return moveInArray(playlist,oldIndex,newIndex),this._playlist=playlist,{result:"moved",playlistItemId:playlistItemId,newIndex:newIndex}},PlayQueueManager.prototype.reset=function(){this._playlist=[],this._currentPlaylistItemId=null},PlayQueueManager});

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Valoraci\u00f3 de la comunitat:", "LabelCommunityRating": "Valoraci\u00f3 de la comunitat:",
"LabelVoteCount": "Recompte de vots:", "LabelVoteCount": "Recompte de vots:",
"LabelCriticRating": "Valoraci\u00f3 cr\u00edtica:", "LabelCriticRating": "Valoraci\u00f3 cr\u00edtica:",
"LabelAwardSummary": "Resum de premis:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Hodnocen\u00ed komunity:", "LabelCommunityRating": "Hodnocen\u00ed komunity:",
"LabelVoteCount": "Po\u010det hlas\u016f:", "LabelVoteCount": "Po\u010det hlas\u016f:",
"LabelCriticRating": "Hodnocen\u00ed kritik\u016f:", "LabelCriticRating": "Hodnocen\u00ed kritik\u016f:",
"LabelAwardSummary": "P\u0159ehled ocen\u011bn\u00ed:",
"LabelWebsite": "Webov\u00e9 str\u00e1nky:", "LabelWebsite": "Webov\u00e9 str\u00e1nky:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "P\u0159ehled:", "LabelOverview": "P\u0159ehled:",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "F\u00e6llesskabsvurdering:", "LabelCommunityRating": "F\u00e6llesskabsvurdering:",
"LabelVoteCount": "Antal stemmer:", "LabelVoteCount": "Antal stemmer:",
"LabelCriticRating": "Kritikervurdering:", "LabelCriticRating": "Kritikervurdering:",
"LabelAwardSummary": "Resum\u00e9 af priser:",
"LabelWebsite": "Hjemmeside:", "LabelWebsite": "Hjemmeside:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Oversigt:", "LabelOverview": "Oversigt:",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Community Bewertung:", "LabelCommunityRating": "Community Bewertung:",
"LabelVoteCount": "Stimmen:", "LabelVoteCount": "Stimmen:",
"LabelCriticRating": "Kritiker Bewertung:", "LabelCriticRating": "Kritiker Bewertung:",
"LabelAwardSummary": "Auszeichnungen:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "\u00dcbersicht:", "LabelOverview": "\u00dcbersicht:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -223,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Calificaci\u00f3n de la comunidad:", "LabelCommunityRating": "Calificaci\u00f3n de la comunidad:",
"LabelVoteCount": "Cantidad de votos:", "LabelVoteCount": "Cantidad de votos:",
"LabelCriticRating": "Calificaci\u00f3n de la cr\u00edtica:", "LabelCriticRating": "Calificaci\u00f3n de la cr\u00edtica:",
"LabelAwardSummary": "Res\u00famen de premios:",
"LabelWebsite": "Sitio web:", "LabelWebsite": "Sitio web:",
"LabelTagline": "Eslogan", "LabelTagline": "Eslogan",
"LabelOverview": "Sinopsis:", "LabelOverview": "Sinopsis:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Puntuaci\u00f3n de la comunidad", "LabelCommunityRating": "Puntuaci\u00f3n de la comunidad",
"LabelVoteCount": "Contador de votos:", "LabelVoteCount": "Contador de votos:",
"LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:", "LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:",
"LabelAwardSummary": "Resumen de premios:",
"LabelWebsite": "Sitio web:", "LabelWebsite": "Sitio web:",
"LabelTagline": "Lema:", "LabelTagline": "Lema:",
"LabelOverview": "Resumen:", "LabelOverview": "Resumen:",
@ -224,7 +223,7 @@
"GuestStar": "Estrella invitada", "GuestStar": "Estrella invitada",
"Producer": "Productor", "Producer": "Productor",
"Writer": "Escritor", "Writer": "Escritor",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Instalando {0}", "InstallingPackage": "Instalando {0}",
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.", "PackageInstallCompleted": "{0} instalaci\u00f3n completada.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Note de la communaut\u00e9", "LabelCommunityRating": "Note de la communaut\u00e9",
"LabelVoteCount": "Nombre de votes", "LabelVoteCount": "Nombre de votes",
"LabelCriticRating": "Note des critiques", "LabelCriticRating": "Note des critiques",
"LabelAwardSummary": "R\u00e9compenses",
"LabelWebsite": "Site Web", "LabelWebsite": "Site Web",
"LabelTagline": "Slogan", "LabelTagline": "Slogan",
"LabelOverview": "Synopsis", "LabelOverview": "Synopsis",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4:", "LabelCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4:",
"LabelVoteCount": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05d4\u05e6\u05d1\u05e2\u05d5\u05ea:", "LabelVoteCount": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05d4\u05e6\u05d1\u05e2\u05d5\u05ea:",
"LabelCriticRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05d9\u05e7\u05d5\u05e8\u05ea:", "LabelCriticRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05d9\u05e7\u05d5\u05e8\u05ea:",
"LabelAwardSummary": "\u05e1\u05d9\u05db\u05d5\u05dd \u05e4\u05e8\u05e1:",
"LabelWebsite": "\u05d0\u05ea\u05e8:", "LabelWebsite": "\u05d0\u05ea\u05e8:",
"LabelTagline": "\u05e9\u05d5\u05e8\u05ea \u05ea\u05d9\u05d5\u05d2:", "LabelTagline": "\u05e9\u05d5\u05e8\u05ea \u05ea\u05d9\u05d5\u05d2:",
"LabelOverview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea:", "LabelOverview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Ocjene zajednice:", "LabelCommunityRating": "Ocjene zajednice:",
"LabelVoteCount": "Prebrojavanje glasova:", "LabelVoteCount": "Prebrojavanje glasova:",
"LabelCriticRating": "Ocjene kritike:", "LabelCriticRating": "Ocjene kritike:",
"LabelAwardSummary": "Sa\u017eetak nagrada:",
"LabelWebsite": "Web stranica:", "LabelWebsite": "Web stranica:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "Pregled:", "LabelOverview": "Pregled:",
@ -224,7 +223,7 @@
"GuestStar": "Zvijezda gost", "GuestStar": "Zvijezda gost",
"Producer": "Producent", "Producer": "Producent",
"Writer": "Pisac", "Writer": "Pisac",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Instaliranje {0}", "InstallingPackage": "Instaliranje {0}",
"PackageInstallCompleted": "{0} instaliranje zavr\u0161eno.", "PackageInstallCompleted": "{0} instaliranje zavr\u0161eno.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:", "LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "\u00cdr\u00f3", "Writer": "\u00cdr\u00f3",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "{0} Telep\u00edt\u00e9se", "InstallingPackage": "{0} Telep\u00edt\u00e9se",
"PackageInstallCompleted": "{0} telep\u00edt\u00e9se befejezve.", "PackageInstallCompleted": "{0} telep\u00edt\u00e9se befejezve.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Voto del pubblico:", "LabelCommunityRating": "Voto del pubblico:",
"LabelVoteCount": "Numero di voti:", "LabelVoteCount": "Numero di voti:",
"LabelCriticRating": "Voto della critica:", "LabelCriticRating": "Voto della critica:",
"LabelAwardSummary": "Sintesi premi:",
"LabelWebsite": "Sito Web:", "LabelWebsite": "Sito Web:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "Trama:", "LabelOverview": "Trama:",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:", "LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
"LabelVoteCount": "\u0414\u0430\u0443\u044b\u0441 \u0435\u0441\u0435\u0431\u0456:", "LabelVoteCount": "\u0414\u0430\u0443\u044b\u0441 \u0435\u0441\u0435\u0431\u0456:",
"LabelCriticRating": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:", "LabelCriticRating": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
"LabelAwardSummary": "\u041c\u0430\u0440\u0430\u043f\u0430\u0442 \u0430\u049b\u043f\u0430\u0440\u044b:",
"LabelWebsite": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b:", "LabelWebsite": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b:",
"LabelTagline": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u04e9\u0439\u043b\u0435\u043c:", "LabelTagline": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u04e9\u0439\u043b\u0435\u043c:",
"LabelOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443:", "LabelOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:", "LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:",
"LabelVoteCount": "\ud3c9\uac00 \ud69f\uc218:", "LabelVoteCount": "\ud3c9\uac00 \ud69f\uc218:",
"LabelCriticRating": "Critic \ud3c9\uc810:", "LabelCriticRating": "Critic \ud3c9\uc810:",
"LabelAwardSummary": "\uc218\uc0c1 \uc694\uc57d:",
"LabelWebsite": "\uc6f9\uc0ac\uc774\ud2b8:", "LabelWebsite": "\uc6f9\uc0ac\uc774\ud2b8:",
"LabelTagline": "\ud0dc\uadf8\ub77c\uc778:", "LabelTagline": "\ud0dc\uadf8\ub77c\uc778:",
"LabelOverview": "\uc904\uac70\ub9ac:", "LabelOverview": "\uc904\uac70\ub9ac:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "\ud504\ub85c\ub4c0\uc11c", "Producer": "\ud504\ub85c\ub4c0\uc11c",
"Writer": "\uc791\uac00", "Writer": "\uc791\uac00",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "{0} \uc124\uce58 \uc911", "InstallingPackage": "{0} \uc124\uce58 \uc911",
"PackageInstallCompleted": "{0} \uc124\uce58 \uc644\ub8cc.", "PackageInstallCompleted": "{0} \uc124\uce58 \uc644\ub8cc.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Bendruomen\u0117s vertinimas:", "LabelCommunityRating": "Bendruomen\u0117s vertinimas:",
"LabelVoteCount": "Bals\u0173 skai\u010dius:", "LabelVoteCount": "Bals\u0173 skai\u010dius:",
"LabelCriticRating": "Kritik\u0173 vertinimas:", "LabelCriticRating": "Kritik\u0173 vertinimas:",
"LabelAwardSummary": "Apdovanojim\u0173 ap\u017evalga:",
"LabelWebsite": "Tinklapis:", "LabelWebsite": "Tinklapis:",
"LabelTagline": "\u0160\u016bkis:", "LabelTagline": "\u0160\u016bkis:",
"LabelOverview": "Ap\u017evalga:", "LabelOverview": "Ap\u017evalga:",
@ -224,7 +223,7 @@
"GuestStar": "Kviestin\u0117 \u017evaig\u017ed\u0117", "GuestStar": "Kviestin\u0117 \u017evaig\u017ed\u0117",
"Producer": "Prodiuseris", "Producer": "Prodiuseris",
"Writer": "Ra\u0161ytojas", "Writer": "Ra\u0161ytojas",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "\u012ediegiu {0}", "InstallingPackage": "\u012ediegiu {0}",
"PackageInstallCompleted": "{0} \u012fdiegimas baigtas.", "PackageInstallCompleted": "{0} \u012fdiegimas baigtas.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Fellesskap anmeldelse:", "LabelCommunityRating": "Fellesskap anmeldelse:",
"LabelVoteCount": "Stemme tall:", "LabelVoteCount": "Stemme tall:",
"LabelCriticRating": "Kritiker anmeldelse:", "LabelCriticRating": "Kritiker anmeldelse:",
"LabelAwardSummary": "Pris sammendrag:",
"LabelWebsite": "Nettsted:", "LabelWebsite": "Nettsted:",
"LabelTagline": "Slagord:", "LabelTagline": "Slagord:",
"LabelOverview": "Oversikt:", "LabelOverview": "Oversikt:",
@ -224,7 +223,7 @@
"GuestStar": "Gjeste skuespiller", "GuestStar": "Gjeste skuespiller",
"Producer": "Produsent", "Producer": "Produsent",
"Writer": "Manus", "Writer": "Manus",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installerer {0}", "InstallingPackage": "Installerer {0}",
"PackageInstallCompleted": "{0} installering fullf\u00f8rt.", "PackageInstallCompleted": "{0} installering fullf\u00f8rt.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Beoordeling gemeenschap:", "LabelCommunityRating": "Beoordeling gemeenschap:",
"LabelVoteCount": "Aantal stemmen:", "LabelVoteCount": "Aantal stemmen:",
"LabelCriticRating": "Beoordeling critici:", "LabelCriticRating": "Beoordeling critici:",
"LabelAwardSummary": "Samenvatting prijzen:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overzicht:", "LabelOverview": "Overzicht:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:", "LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:",
"LabelVoteCount": "Liczba g\u0142os\u00f3w:", "LabelVoteCount": "Liczba g\u0142os\u00f3w:",
"LabelCriticRating": "Ocena krytyk\u00f3w:", "LabelCriticRating": "Ocena krytyk\u00f3w:",
"LabelAwardSummary": "Zdobyte nagrody:",
"LabelWebsite": "Strona internetowa", "LabelWebsite": "Strona internetowa",
"LabelTagline": "Tagi", "LabelTagline": "Tagi",
"LabelOverview": "Opis:", "LabelOverview": "Opis:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producent", "Producer": "Producent",
"Writer": "Scenarzysta", "Writer": "Scenarzysta",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Instalowanie {0}", "InstallingPackage": "Instalowanie {0}",
"PackageInstallCompleted": "Instalacja {0} zako\u0144czona.", "PackageInstallCompleted": "Instalacja {0} zako\u0144czona.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:", "LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
"LabelVoteCount": "Contagem de votos:", "LabelVoteCount": "Contagem de votos:",
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:", "LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "Sinopse:", "LabelOverview": "Sinopse:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:", "LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
"LabelVoteCount": "Contagem de votos:", "LabelVoteCount": "Contagem de votos:",
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:", "LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "Sinopse:", "LabelOverview": "Sinopse:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Produtor", "Producer": "Produtor",
"Writer": "Escritor", "Writer": "Escritor",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:", "LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:",
"LabelVoteCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432:", "LabelVoteCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432:",
"LabelCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432:", "LabelCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432:",
"LabelAwardSummary": "\u0421\u0432\u043e\u0434\u043a\u0430 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u0438\u0439:",
"LabelWebsite": "\u0412\u0435\u0431\u0441\u0430\u0439\u0442:", "LabelWebsite": "\u0412\u0435\u0431\u0441\u0430\u0439\u0442:",
"LabelTagline": "\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0444\u0440\u0430\u0437\u0430:", "LabelTagline": "\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0444\u0440\u0430\u0437\u0430:",
"LabelOverview": "\u041e\u0431\u0437\u043e\u0440:", "LabelOverview": "\u041e\u0431\u0437\u043e\u0440:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:", "LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:",
"LabelVoteCount": "Antal r\u00f6ster:", "LabelVoteCount": "Antal r\u00f6ster:",
"LabelCriticRating": "Kritikerbetyg:", "LabelCriticRating": "Kritikerbetyg:",
"LabelAwardSummary": "Sammanfattning av utm\u00e4rkelser:",
"LabelWebsite": "Hemsida:", "LabelWebsite": "Hemsida:",
"LabelTagline": "Slogan:", "LabelTagline": "Slogan:",
"LabelOverview": "Synopsis:", "LabelOverview": "Synopsis:",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "\u53d6\u6d88\u540c\u6b65",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a", "LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a",
"LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a", "LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a",
"LabelCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206\uff1a", "LabelCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206\uff1a",
"LabelAwardSummary": "\u83b7\u5956\u6458\u8981\uff1a",
"LabelWebsite": "\u7f51\u7ad9\uff1a", "LabelWebsite": "\u7f51\u7ad9\uff1a",
"LabelTagline": "\u53e3\u53f7\uff1a", "LabelTagline": "\u53e3\u53f7\uff1a",
"LabelOverview": "\u5185\u5bb9\u6982\u8ff0\uff1a", "LabelOverview": "\u5185\u5bb9\u6982\u8ff0\uff1a",
@ -224,7 +223,7 @@
"GuestStar": "\u7279\u9080\u660e\u661f", "GuestStar": "\u7279\u9080\u660e\u661f",
"Producer": "\u5236\u7247\u4eba", "Producer": "\u5236\u7247\u4eba",
"Writer": "\u7f16\u5267", "Writer": "\u7f16\u5267",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}", "InstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}",
"PackageInstallCompleted": "{0} \u5b89\u88c5\u5b8c\u6210\u3002", "PackageInstallCompleted": "{0} \u5b89\u88c5\u5b8c\u6210\u3002",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206", "LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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", "ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?", "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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:", "LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "Writer", "Writer": "Writer",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long