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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Valoraci\u00f3 de la comunitat:",
"LabelVoteCount": "Recompte de vots:",
"LabelCriticRating": "Valoraci\u00f3 cr\u00edtica:",
"LabelAwardSummary": "Resum de premis:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

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

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"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.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -223,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Puntuaci\u00f3n de la comunidad",
"LabelVoteCount": "Contador de votos:",
"LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:",
"LabelAwardSummary": "Resumen de premios:",
"LabelWebsite": "Sitio web:",
"LabelTagline": "Lema:",
"LabelOverview": "Resumen:",
@ -224,7 +223,7 @@
"GuestStar": "Estrella invitada",
"Producer": "Productor",
"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.",
"InstallingPackage": "Instalando {0}",
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -150,7 +150,6 @@
"LabelCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4:",
"LabelVoteCount": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05d4\u05e6\u05d1\u05e2\u05d5\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:",
"LabelTagline": "\u05e9\u05d5\u05e8\u05ea \u05ea\u05d9\u05d5\u05d2:",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Besplatne Emby aplikacije",
"FreeAppsFeatureDescription": "U\u017eivajte u slobodnom pristupu Emby aplikacija za svoje ure\u0111aje.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Ocjene zajednice:",
"LabelVoteCount": "Prebrojavanje glasova:",
"LabelCriticRating": "Ocjene kritike:",
"LabelAwardSummary": "Sa\u017eetak nagrada:",
"LabelWebsite": "Web stranica:",
"LabelTagline": "Slogan:",
"LabelOverview": "Pregled:",
@ -224,7 +223,7 @@
"GuestStar": "Zvijezda gost",
"Producer": "Producent",
"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.",
"InstallingPackage": "Instaliranje {0}",
"PackageInstallCompleted": "{0} instaliranje zavr\u0161eno.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Ingyenes Emby alkalmaz\u00e1sok",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "{0} Telep\u00edt\u00e9se",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

@ -150,7 +150,6 @@
"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:",
"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:",
"LabelTagline": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u04e9\u0439\u043b\u0435\u043c:",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:",
"LabelVoteCount": "\ud3c9\uac00 \ud69f\uc218:",
"LabelCriticRating": "Critic \ud3c9\uc810:",
"LabelAwardSummary": "\uc218\uc0c1 \uc694\uc57d:",
"LabelWebsite": "\uc6f9\uc0ac\uc774\ud2b8:",
"LabelTagline": "\ud0dc\uadf8\ub77c\uc778:",
"LabelOverview": "\uc904\uac70\ub9ac:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "\ud504\ub85c\ub4c0\uc11c",
"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.",
"InstallingPackage": "{0} \uc124\uce58 \uc911",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Nemokamos Emby Apps",
"FreeAppsFeatureDescription": "Gaukite nemokamas Emby program\u0117les savo \u012frenginiams.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Bendruomen\u0117s vertinimas:",
"LabelVoteCount": "Bals\u0173 skai\u010dius:",
"LabelCriticRating": "Kritik\u0173 vertinimas:",
"LabelAwardSummary": "Apdovanojim\u0173 ap\u017evalga:",
"LabelWebsite": "Tinklapis:",
"LabelTagline": "\u0160\u016bkis:",
"LabelOverview": "Ap\u017evalga:",
@ -224,7 +223,7 @@
"GuestStar": "Kviestin\u0117 \u017evaig\u017ed\u0117",
"Producer": "Prodiuseris",
"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.",
"InstallingPackage": "\u012ediegiu {0}",
"PackageInstallCompleted": "{0} \u012fdiegimas baigtas.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Fellesskap anmeldelse:",
"LabelVoteCount": "Stemme tall:",
"LabelCriticRating": "Kritiker anmeldelse:",
"LabelAwardSummary": "Pris sammendrag:",
"LabelWebsite": "Nettsted:",
"LabelTagline": "Slagord:",
"LabelOverview": "Oversikt:",
@ -224,7 +223,7 @@
"GuestStar": "Gjeste skuespiller",
"Producer": "Produsent",
"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.",
"InstallingPackage": "Installerer {0}",
"PackageInstallCompleted": "{0} installering fullf\u00f8rt.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:",
"LabelVoteCount": "Liczba g\u0142os\u00f3w:",
"LabelCriticRating": "Ocena krytyk\u00f3w:",
"LabelAwardSummary": "Zdobyte nagrody:",
"LabelWebsite": "Strona internetowa",
"LabelTagline": "Tagi",
"LabelOverview": "Opis:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producent",
"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.",
"InstallingPackage": "Instalowanie {0}",
"PackageInstallCompleted": "Instalacja {0} zako\u0144czona.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
"LabelVoteCount": "Contagem de votos:",
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
"LabelWebsite": "Website:",
"LabelTagline": "Slogan:",
"LabelOverview": "Sinopse:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Produtor",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"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:",
"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:",
"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:",
"LabelTagline": "\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0444\u0440\u0430\u0437\u0430:",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

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

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "\u514d\u8d39 Emby \u5e94\u7528",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a",
"LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a",
"LabelCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206\uff1a",
"LabelAwardSummary": "\u83b7\u5956\u6458\u8981\uff1a",
"LabelWebsite": "\u7f51\u7ad9\uff1a",
"LabelTagline": "\u53e3\u53f7\uff1a",
"LabelOverview": "\u5185\u5bb9\u6982\u8ff0\uff1a",
@ -224,7 +223,7 @@
"GuestStar": "\u7279\u9080\u660e\u661f",
"Producer": "\u5236\u7247\u4eba",
"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.",
"InstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}",
"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.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.",

View file

@ -43,7 +43,7 @@
"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.",
"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.",
"HeaderFreeApps": "Free Emby Apps",
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
@ -150,7 +150,6 @@
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
"LabelCriticRating": "Critic rating:",
"LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
@ -224,7 +223,7 @@
"GuestStar": "Guest star",
"Producer": "Producer",
"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.",
"InstallingPackage": "Installing {0}",
"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