mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update video osd
This commit is contained in:
parent
48b93e98a3
commit
130d4c71b6
45 changed files with 41 additions and 80 deletions
|
@ -1 +1 @@
|
||||||
define(["playbackManager","focusManager","embyRouter","dom"],function(playbackManager,focusManager,embyRouter,dom){"use strict";function notify(){lastInputTime=(new Date).getTime(),handleCommand("unknown")}function notifyMouseMove(){lastInputTime=(new Date).getTime()}function idleTime(){return(new Date).getTime()-lastInputTime}function select(sourceElement){sourceElement.click()}function on(scope,fn){eventListenerCount++,dom.addEventListener(scope,"command",fn,{})}function off(scope,fn){eventListenerCount&&eventListenerCount--,dom.removeEventListener(scope,"command",fn,{})}function checkCommandTime(command){var last=commandTimes[command]||0,now=(new Date).getTime();return!(now-last<1e3)&&(commandTimes[command]=now,!0)}function handleCommand(name,options){lastInputTime=(new Date).getTime();var sourceElement=options?options.sourceElement:null;if(sourceElement&&(sourceElement=focusManager.focusableParent(sourceElement)),sourceElement=sourceElement||document.activeElement||window,eventListenerCount){var customEvent=new CustomEvent("command",{detail:{command:name},bubbles:!0,cancelable:!0}),eventResult=sourceElement.dispatchEvent(customEvent);if(!eventResult)return}switch(name){case"up":focusManager.moveUp(sourceElement);break;case"down":focusManager.moveDown(sourceElement);break;case"left":focusManager.moveLeft(sourceElement);break;case"right":focusManager.moveRight(sourceElement);break;case"home":embyRouter.goHome();break;case"settings":embyRouter.showSettings();break;case"back":embyRouter.back();break;case"forward":break;case"select":select(sourceElement);break;case"pageup":break;case"pagedown":break;case"end":break;case"menu":case"info":break;case"next":playbackManager.isPlaying()&&playbackManager.nextChapter();break;case"previous":playbackManager.isPlaying()&&playbackManager.previousChapter();break;case"guide":embyRouter.showGuide();break;case"recordedtv":embyRouter.showRecordedTV();break;case"record":break;case"livetv":embyRouter.showLiveTV();break;case"mute":playbackManager.setMute(!0);break;case"unmute":playbackManager.setMute(!1);break;case"togglemute":playbackManager.toggleMute();break;case"channelup":playbackManager.nextTrack();break;case"channeldown":playbackManager.previousTrack();break;case"volumedown":playbackManager.volumeDown();break;case"volumeup":playbackManager.volumeUp();break;case"play":playbackManager.unpause();break;case"pause":playbackManager.pause();break;case"playpause":playbackManager.playPause();break;case"stop":checkCommandTime("stop")&&playbackManager.stop();break;case"changezoom":playbackManager.toggleAspectRatio();break;case"changeaudiotrack":break;case"changesubtitletrack":break;case"search":embyRouter.showSearch();break;case"favorites":embyRouter.showFavorites();break;case"fastforward":playbackManager.fastForward();break;case"rewind":playbackManager.rewind();break;case"togglefullscreen":playbackManager.toggleFullscreen();break;case"disabledisplaymirror":playbackManager.enableDisplayMirroring(!1);break;case"enabledisplaymirror":playbackManager.enableDisplayMirroring(!0);break;case"toggledisplaymirror":playbackManager.toggleDisplayMirroring();break;case"movies":break;case"music":break;case"tv":break;case"latestepisodes":break;case"nowplaying":break;case"upcomingtv":break;case"nextup":}}var lastInputTime=(new Date).getTime(),eventListenerCount=0,commandTimes={};return dom.addEventListener(document,"click",notify,{passive:!0}),{trigger:handleCommand,handle:handleCommand,notify:notify,notifyMouseMove:notifyMouseMove,idleTime:idleTime,on:on,off:off}});
|
define(["playbackManager","focusManager","embyRouter","dom"],function(playbackManager,focusManager,embyRouter,dom){"use strict";function notify(){lastInputTime=(new Date).getTime(),handleCommand("unknown")}function notifyMouseMove(){lastInputTime=(new Date).getTime()}function idleTime(){return(new Date).getTime()-lastInputTime}function select(sourceElement){sourceElement.click()}function on(scope,fn){eventListenerCount++,dom.addEventListener(scope,"command",fn,{})}function off(scope,fn){eventListenerCount&&eventListenerCount--,dom.removeEventListener(scope,"command",fn,{})}function checkCommandTime(command){var last=commandTimes[command]||0,now=(new Date).getTime();return!(now-last<1e3)&&(commandTimes[command]=now,!0)}function handleCommand(name,options){lastInputTime=(new Date).getTime();var sourceElement=options?options.sourceElement:null;if(sourceElement&&(sourceElement=focusManager.focusableParent(sourceElement)),sourceElement=sourceElement||document.activeElement||window,eventListenerCount){var customEvent=new CustomEvent("command",{detail:{command:name},bubbles:!0,cancelable:!0}),eventResult=sourceElement.dispatchEvent(customEvent);if(!eventResult)return}switch(name){case"up":focusManager.moveUp(sourceElement);break;case"down":focusManager.moveDown(sourceElement);break;case"left":focusManager.moveLeft(sourceElement);break;case"right":focusManager.moveRight(sourceElement);break;case"home":embyRouter.goHome();break;case"settings":embyRouter.showSettings();break;case"back":embyRouter.back();break;case"forward":break;case"select":select(sourceElement);break;case"pageup":break;case"pagedown":break;case"end":break;case"menu":case"info":break;case"next":playbackManager.nextChapter();break;case"previous":playbackManager.previousChapter();break;case"guide":embyRouter.showGuide();break;case"recordedtv":embyRouter.showRecordedTV();break;case"record":break;case"livetv":embyRouter.showLiveTV();break;case"mute":playbackManager.setMute(!0);break;case"unmute":playbackManager.setMute(!1);break;case"togglemute":playbackManager.toggleMute();break;case"channelup":playbackManager.nextTrack();break;case"channeldown":playbackManager.previousTrack();break;case"volumedown":playbackManager.volumeDown();break;case"volumeup":playbackManager.volumeUp();break;case"play":playbackManager.unpause();break;case"pause":playbackManager.pause();break;case"playpause":playbackManager.playPause();break;case"stop":checkCommandTime("stop")&&playbackManager.stop();break;case"changezoom":playbackManager.toggleAspectRatio();break;case"changeaudiotrack":break;case"changesubtitletrack":break;case"search":embyRouter.showSearch();break;case"favorites":embyRouter.showFavorites();break;case"fastforward":playbackManager.fastForward();break;case"rewind":playbackManager.rewind();break;case"togglefullscreen":playbackManager.toggleFullscreen();break;case"disabledisplaymirror":playbackManager.enableDisplayMirroring(!1);break;case"enabledisplaymirror":playbackManager.enableDisplayMirroring(!0);break;case"toggledisplaymirror":playbackManager.toggleDisplayMirroring();break;case"movies":break;case"music":break;case"tv":break;case"latestepisodes":break;case"nowplaying":break;case"upcomingtv":break;case"nextup":}}var lastInputTime=(new Date).getTime(),eventListenerCount=0,commandTimes={};return dom.addEventListener(document,"click",notify,{passive:!0}),{trigger:handleCommand,handle:handleCommand,notify:notify,notifyMouseMove:notifyMouseMove,idleTime:idleTime,on:on,off:off}});
|
|
@ -1 +1 @@
|
||||||
define([],function(){"use strict";function ResourceLockInstance(){}return ResourceLockInstance.prototype.acquire=function(){this._isHeld=!0},ResourceLockInstance.prototype.isHeld=function(){return this._isHeld===!0},ResourceLockInstance.prototype.release=function(){this._isHeld=!1},ResourceLockInstance});
|
define([],function(){"use strict";function ResourceLockInstance(){}return ResourceLockInstance.prototype.acquire=function(){this._isHeld=!0},ResourceLockInstance.prototype.release=function(){this._isHeld=!1},ResourceLockInstance});
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -2,37 +2,36 @@
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Comparteix",
|
"Share": "Comparteix",
|
||||||
"Add": "Afegeix",
|
"Add": "Afegeix",
|
||||||
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
"ServerUpdateNeeded": "El Servidor Emby necessita ser actualitzat. Per descarregar la darrera versi\u00f3, si et plau, visita {0}",
|
||||||
"LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
|
"LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "Nou",
|
||||||
"Premiere": "Premiere",
|
"Premiere": "Premi\u00e8re",
|
||||||
"Live": "Live",
|
"Live": "Live",
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeteix",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} pistes",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} \u00edtems",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Diu",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "Dil",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "Dim",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "Dmc",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "Dij",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "Div",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "Dis",
|
||||||
"HeaderSelectDate": "Seleccionar Data",
|
"HeaderSelectDate": "Seleccionar Data",
|
||||||
"ButtonOk": "D'acord",
|
"ButtonOk": "D'acord",
|
||||||
"ButtonCancel": "Cancel\u00b7la",
|
"ButtonCancel": "Cancel\u00b7la",
|
||||||
"ButtonGotIt": "Got It",
|
"ButtonGotIt": "Entesos",
|
||||||
"ButtonRestart": "Reiniciar",
|
"ButtonRestart": "Reiniciar",
|
||||||
"RecordingCancelled": "Enregistrament cancel\u00b7lat.",
|
"RecordingCancelled": "Enregistrament cancel\u00b7lat.",
|
||||||
"SeriesCancelled": "Series cancelled.",
|
"SeriesCancelled": "Series cancelled.",
|
||||||
"RecordingScheduled": "Recording scheduled.",
|
"RecordingScheduled": "Recording scheduled.",
|
||||||
"SeriesRecordingScheduled": "Series recording scheduled.",
|
"SeriesRecordingScheduled": "Series recording scheduled.",
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "Nou Enregistrament",
|
||||||
"Sunday": "Diumenge",
|
"Sunday": "Diumenge",
|
||||||
"Monday": "Dilluns",
|
"Monday": "Dilluns",
|
||||||
"Tuesday": "Dimarts",
|
"Tuesday": "Dimarts",
|
||||||
|
@ -84,10 +83,10 @@
|
||||||
"MessageItemsAdded": "Items added.",
|
"MessageItemsAdded": "Items added.",
|
||||||
"OptionNew": "New...",
|
"OptionNew": "New...",
|
||||||
"LabelPlaylist": "Llista de rep.:",
|
"LabelPlaylist": "Llista de rep.:",
|
||||||
"AddToPlaylist": "Afegir a la llista de reproducci\u00f3",
|
"AddToPlaylist": "Afegeix a la llista de reproducci\u00f3",
|
||||||
"HeaderAddToPlaylist": "Afegir a la llista de reproducci\u00f3",
|
"HeaderAddToPlaylist": "Afegir a la llista de reproducci\u00f3",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Subtitles",
|
||||||
"SearchForSubtitles": "Cercar Subt\u00edtols",
|
"SearchForSubtitles": "Cerca Subt\u00edtols",
|
||||||
"LabelLanguage": "Idioma:",
|
"LabelLanguage": "Idioma:",
|
||||||
"Search": "Search",
|
"Search": "Search",
|
||||||
"NoSubtitleSearchResultsFound": "No results found.",
|
"NoSubtitleSearchResultsFound": "No results found.",
|
||||||
|
@ -271,7 +270,7 @@
|
||||||
"SyncJobCreated": "Sync job created.",
|
"SyncJobCreated": "Sync job created.",
|
||||||
"LabelSyncTo": "Sync to:",
|
"LabelSyncTo": "Sync to:",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
"LabelQuality": "Qualitat",
|
"LabelQuality": "Qualitat:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadScheduled": "Download scheduled",
|
||||||
"HeaderSyncRequiresSub": "Sync requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Sync requires an active Emby Premiere subscription.",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Opakovat",
|
"Repeat": "Opakovat",
|
||||||
"TrackCount": "{0} stop",
|
"TrackCount": "{0} stop",
|
||||||
"ItemCount": "{0} polo\u017eek",
|
"ItemCount": "{0} polo\u017eek",
|
||||||
"ReleaseYearValue": "Rok vyd\u00e1n\u00ed: {0}",
|
|
||||||
"OriginalAirDateValue": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}",
|
"OriginalAirDateValue": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}",
|
||||||
"EndsAtValue": "Kon\u010d\u00ed v {0}",
|
"EndsAtValue": "Kon\u010d\u00ed v {0}",
|
||||||
"OptionSundayShort": "Ned",
|
"OptionSundayShort": "Ned",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Gentag",
|
"Repeat": "Gentag",
|
||||||
"TrackCount": "{0} numre",
|
"TrackCount": "{0} numre",
|
||||||
"ItemCount": "{0} elementer",
|
"ItemCount": "{0} elementer",
|
||||||
"ReleaseYearValue": "Udgivelses\u00e5r: {0}",
|
|
||||||
"OriginalAirDateValue": "Originalt sendt: {0}",
|
"OriginalAirDateValue": "Originalt sendt: {0}",
|
||||||
"EndsAtValue": "Slutter {0}",
|
"EndsAtValue": "Slutter {0}",
|
||||||
"OptionSundayShort": "S\u00f8n.",
|
"OptionSundayShort": "S\u00f8n.",
|
||||||
|
@ -44,7 +43,7 @@
|
||||||
"RecordSeries": "Optag serie",
|
"RecordSeries": "Optag serie",
|
||||||
"HeaderCinemaMode": "Biograftilstand",
|
"HeaderCinemaMode": "Biograftilstand",
|
||||||
"HeaderCloudSync": "Sky-Synk",
|
"HeaderCloudSync": "Sky-Synk",
|
||||||
"HeaderDownloadedMedia": "Downloaded Media",
|
"HeaderDownloadedMedia": "Downloadet Medie",
|
||||||
"Downloads": "Downloads",
|
"Downloads": "Downloads",
|
||||||
"HeaderOfflineDownloads": "Offline Medie",
|
"HeaderOfflineDownloads": "Offline Medie",
|
||||||
"HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.",
|
"HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.",
|
||||||
|
@ -380,21 +379,21 @@
|
||||||
"HeaderMyDevice": "Min Enhed",
|
"HeaderMyDevice": "Min Enhed",
|
||||||
"Continue": "Forts\u00e6t",
|
"Continue": "Forts\u00e6t",
|
||||||
"ContinueInSecondsValue": "Forts\u00e6t om {0} sekunder.",
|
"ContinueInSecondsValue": "Forts\u00e6t om {0} sekunder.",
|
||||||
"HeaderRemoteControl": "Remote Control",
|
"HeaderRemoteControl": "Fjernbetjening",
|
||||||
"Disconnect": "Disconnect",
|
"Disconnect": "Afbryd",
|
||||||
"EnableDisplayMirroring": "Enable display mirroring",
|
"EnableDisplayMirroring": "Enable display mirroring",
|
||||||
"HeaderSelectPlayer": "Select Player",
|
"HeaderSelectPlayer": "V\u00e6lg Afspiller",
|
||||||
"Quality": "Quality",
|
"Quality": "Kvalitet",
|
||||||
"Auto": "Auto",
|
"Auto": "Auto",
|
||||||
"AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.",
|
"AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.",
|
||||||
"AspectRatio": "Aspect ratio",
|
"AspectRatio": "Billedformat",
|
||||||
"Original": "Original",
|
"Original": "Standard",
|
||||||
"Fill": "Fill",
|
"Fill": "Udfyld",
|
||||||
"BestFit": "Best fit",
|
"BestFit": "Bedste tilpasning",
|
||||||
"MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
|
"MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
|
||||||
"MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Emby Server administrator for more information.",
|
"MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Emby Server administrator for more information.",
|
||||||
"Accept": "Accept",
|
"Accept": "Godkend",
|
||||||
"Reject": "Reject",
|
"Reject": "Afvis",
|
||||||
"Connect": "Forbind",
|
"Connect": "Forbind",
|
||||||
"LabelDownloadTo": "Download to:"
|
"LabelDownloadTo": "Download til:"
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Wiederholen",
|
"Repeat": "Wiederholen",
|
||||||
"TrackCount": "{0} Titel",
|
"TrackCount": "{0} Titel",
|
||||||
"ItemCount": "{0} Eintr\u00e4ge",
|
"ItemCount": "{0} Eintr\u00e4ge",
|
||||||
"ReleaseYearValue": "Erscheinungsjahr: {0}",
|
|
||||||
"OriginalAirDateValue": "Erstausstrahlung: {0}",
|
"OriginalAirDateValue": "Erstausstrahlung: {0}",
|
||||||
"EndsAtValue": "Endet um {0}",
|
"EndsAtValue": "Endet um {0}",
|
||||||
"OptionSundayShort": "So",
|
"OptionSundayShort": "So",
|
||||||
|
@ -396,5 +395,5 @@
|
||||||
"Accept": "Akzeptieren",
|
"Accept": "Akzeptieren",
|
||||||
"Reject": "Ablehnen",
|
"Reject": "Ablehnen",
|
||||||
"Connect": "Verbinde",
|
"Connect": "Verbinde",
|
||||||
"LabelDownloadTo": "Download to:"
|
"LabelDownloadTo": "Herunterladen nach:"
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7",
|
"Repeat": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "\u0388\u03c4\u03bf\u03c2 \u03ba\u03c5\u03ba\u03bb\u03bf\u03c6\u03bf\u03c1\u03af\u03b1\u03c2: {0} \n",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "\u039a\u03c5\u03c1",
|
"OptionSundayShort": "\u039a\u03c5\u03c1",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repetir",
|
"Repeat": "Repetir",
|
||||||
"TrackCount": "{0} Pistas",
|
"TrackCount": "{0} Pistas",
|
||||||
"ItemCount": "{0} \u00edtems",
|
"ItemCount": "{0} \u00edtems",
|
||||||
"ReleaseYearValue": "A\u00f1o de estreno: {0}",
|
|
||||||
"OriginalAirDateValue": "Fecha de transmisi\u00f3n original: {0}",
|
"OriginalAirDateValue": "Fecha de transmisi\u00f3n original: {0}",
|
||||||
"EndsAtValue": "Termina a las {0}",
|
"EndsAtValue": "Termina a las {0}",
|
||||||
"OptionSundayShort": "Dom",
|
"OptionSundayShort": "Dom",
|
||||||
|
@ -396,5 +395,5 @@
|
||||||
"Accept": "Aceptar",
|
"Accept": "Aceptar",
|
||||||
"Reject": "Rechazar",
|
"Reject": "Rechazar",
|
||||||
"Connect": "Conectar",
|
"Connect": "Conectar",
|
||||||
"LabelDownloadTo": "Download to:"
|
"LabelDownloadTo": "Descargar a:"
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repetir",
|
"Repeat": "Repetir",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "\u00edtems {0}",
|
"ItemCount": "\u00edtems {0}",
|
||||||
"ReleaseYearValue": "A\u00f1o de estreno: {0}",
|
|
||||||
"OriginalAirDateValue": "Fecha de emisi\u00f3n original: {0}",
|
"OriginalAirDateValue": "Fecha de emisi\u00f3n original: {0}",
|
||||||
"EndsAtValue": "Termina a las {0}",
|
"EndsAtValue": "Termina a las {0}",
|
||||||
"OptionSundayShort": "Dom",
|
"OptionSundayShort": "Dom",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "R\u00e9p\u00e9ter",
|
"Repeat": "R\u00e9p\u00e9ter",
|
||||||
"TrackCount": "{0} pistes",
|
"TrackCount": "{0} pistes",
|
||||||
"ItemCount": "{0} articles",
|
"ItemCount": "{0} articles",
|
||||||
"ReleaseYearValue": "Ann\u00e9e de sortie: {0}",
|
|
||||||
"OriginalAirDateValue": "Date de diffusion originale: {0}",
|
"OriginalAirDateValue": "Date de diffusion originale: {0}",
|
||||||
"EndsAtValue": "Se termine \u00e0 {0}",
|
"EndsAtValue": "Se termine \u00e0 {0}",
|
||||||
"OptionSundayShort": "Dim",
|
"OptionSundayShort": "Dim",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "R\u00e9p\u00e9ter",
|
"Repeat": "R\u00e9p\u00e9ter",
|
||||||
"TrackCount": "{0} pistes",
|
"TrackCount": "{0} pistes",
|
||||||
"ItemCount": "{0} \u00e9l\u00e9ments",
|
"ItemCount": "{0} \u00e9l\u00e9ments",
|
||||||
"ReleaseYearValue": "Ann\u00e9e de sortie: {0}",
|
|
||||||
"OriginalAirDateValue": "Date de diffusion originale: {0}",
|
"OriginalAirDateValue": "Date de diffusion originale: {0}",
|
||||||
"EndsAtValue": "Se termine \u00e0 {0}",
|
"EndsAtValue": "Se termine \u00e0 {0}",
|
||||||
"OptionSundayShort": "Dim",
|
"OptionSundayShort": "Dim",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Ponovi",
|
"Repeat": "Ponovi",
|
||||||
"TrackCount": "{0} pjesme",
|
"TrackCount": "{0} pjesme",
|
||||||
"ItemCount": "{0} stavaka",
|
"ItemCount": "{0} stavaka",
|
||||||
"ReleaseYearValue": "Godina izdanja: {0}",
|
|
||||||
"OriginalAirDateValue": "Originalni datum prikazivanja: {0}",
|
"OriginalAirDateValue": "Originalni datum prikazivanja: {0}",
|
||||||
"EndsAtValue": "Zavr\u0161ava u {0}",
|
"EndsAtValue": "Zavr\u0161ava u {0}",
|
||||||
"OptionSundayShort": "Ned",
|
"OptionSundayShort": "Ned",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Ism\u00e9tl\u00e9s",
|
"Repeat": "Ism\u00e9tl\u00e9s",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "V\u00e1rhat\u00f3 befejez\u00e9s {0}",
|
"EndsAtValue": "V\u00e1rhat\u00f3 befejez\u00e9s {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Ripeti",
|
"Repeat": "Ripeti",
|
||||||
"TrackCount": "{0} tracce",
|
"TrackCount": "{0} tracce",
|
||||||
"ItemCount": "{0} elementi",
|
"ItemCount": "{0} elementi",
|
||||||
"ReleaseYearValue": "Anno di uscita: {0}",
|
|
||||||
"OriginalAirDateValue": "Prima messa in onda (originale): {0}",
|
"OriginalAirDateValue": "Prima messa in onda (originale): {0}",
|
||||||
"EndsAtValue": "Finir\u00e0 alle {0}",
|
"EndsAtValue": "Finir\u00e0 alle {0}",
|
||||||
"OptionSundayShort": "Dom",
|
"OptionSundayShort": "Dom",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
|
"Repeat": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
|
||||||
"TrackCount": "{0} \u0436\u043e\u043b\u0448\u044b\u049b",
|
"TrackCount": "{0} \u0436\u043e\u043b\u0448\u044b\u049b",
|
||||||
"ItemCount": "{0} \u0442\u0430\u0440\u043c\u0430\u049b",
|
"ItemCount": "{0} \u0442\u0430\u0440\u043c\u0430\u049b",
|
||||||
"ReleaseYearValue": "\u0428\u044b\u0493\u0430\u0440\u0443 \u0436\u043e\u043b\u044b: {0}",
|
|
||||||
"OriginalAirDateValue": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}",
|
"OriginalAirDateValue": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}",
|
||||||
"EndsAtValue": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443\u044b: {0}",
|
"EndsAtValue": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443\u044b: {0}",
|
||||||
"OptionSundayShort": "\u0436\u0435\u043a",
|
"OptionSundayShort": "\u0436\u0435\u043a",
|
||||||
|
@ -396,5 +395,5 @@
|
||||||
"Accept": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u0443",
|
"Accept": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u0443",
|
||||||
"Reject": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443",
|
"Reject": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443",
|
||||||
"Connect": "\u049a\u043e\u0441\u044b\u043b\u0443",
|
"Connect": "\u049a\u043e\u0441\u044b\u043b\u0443",
|
||||||
"LabelDownloadTo": "Download to:"
|
"LabelDownloadTo": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443:"
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "\ubc18\ubcf5",
|
"Repeat": "\ubc18\ubcf5",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} \ud56d\ubaa9",
|
"ItemCount": "{0} \ud56d\ubaa9",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Gjenta",
|
"Repeat": "Gjenta",
|
||||||
"TrackCount": "{0} spor",
|
"TrackCount": "{0} spor",
|
||||||
"ItemCount": "{0} elementer",
|
"ItemCount": "{0} elementer",
|
||||||
"ReleaseYearValue": "Utgivelse \u00e5r: {0}",
|
|
||||||
"OriginalAirDateValue": "Original utgivelse dato: {0}",
|
"OriginalAirDateValue": "Original utgivelse dato: {0}",
|
||||||
"EndsAtValue": "Ender p\u00e5 {0}",
|
"EndsAtValue": "Ender p\u00e5 {0}",
|
||||||
"OptionSundayShort": "S\u00f8n",
|
"OptionSundayShort": "S\u00f8n",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Herhaling",
|
"Repeat": "Herhaling",
|
||||||
"TrackCount": "{0} nummers",
|
"TrackCount": "{0} nummers",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Jaar van uitgifte: {0}",
|
|
||||||
"OriginalAirDateValue": "Originele uitzenddatum: {0}",
|
"OriginalAirDateValue": "Originele uitzenddatum: {0}",
|
||||||
"EndsAtValue": "Eindigt om {0}",
|
"EndsAtValue": "Eindigt om {0}",
|
||||||
"OptionSundayShort": "Zo",
|
"OptionSundayShort": "Zo",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Powt\u00f3rz",
|
"Repeat": "Powt\u00f3rz",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} pozycji",
|
"ItemCount": "{0} pozycji",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Ndz.",
|
"OptionSundayShort": "Ndz.",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repetir",
|
"Repeat": "Repetir",
|
||||||
"TrackCount": "{0} faixas",
|
"TrackCount": "{0} faixas",
|
||||||
"ItemCount": "{0} itens",
|
"ItemCount": "{0} itens",
|
||||||
"ReleaseYearValue": "Ano do lan\u00e7amento: {0}",
|
|
||||||
"OriginalAirDateValue": "Data de exibi\u00e7\u00e3o original: {0}",
|
"OriginalAirDateValue": "Data de exibi\u00e7\u00e3o original: {0}",
|
||||||
"EndsAtValue": "Termina \u00e0s {0}",
|
"EndsAtValue": "Termina \u00e0s {0}",
|
||||||
"OptionSundayShort": "Dom",
|
"OptionSundayShort": "Dom",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repetir",
|
"Repeat": "Repetir",
|
||||||
"TrackCount": "{0} faixas",
|
"TrackCount": "{0} faixas",
|
||||||
"ItemCount": "{0} itens",
|
"ItemCount": "{0} itens",
|
||||||
"ReleaseYearValue": "Ano de lan\u00e7amento: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "\u041f\u043e\u0432\u0442\u043e\u0440",
|
"Repeat": "\u041f\u043e\u0432\u0442\u043e\u0440",
|
||||||
"TrackCount": "{0} \u0434\u043e\u0440\u043e\u0436(\u043a\u0438\/\u0435\u043a)",
|
"TrackCount": "{0} \u0434\u043e\u0440\u043e\u0436(\u043a\u0438\/\u0435\u043a)",
|
||||||
"ItemCount": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)",
|
"ItemCount": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)",
|
||||||
"ReleaseYearValue": "\u0413\u043e\u0434 \u0432\u044b\u043f\u0443\u0441\u043a\u0430: {0}",
|
|
||||||
"OriginalAirDateValue": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}",
|
"OriginalAirDateValue": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}",
|
||||||
"EndsAtValue": "\u041a\u043e\u043d\u0435\u0446 \u0432 {0}",
|
"EndsAtValue": "\u041a\u043e\u043d\u0435\u0446 \u0432 {0}",
|
||||||
"OptionSundayShort": "\u0432\u0441\u043a",
|
"OptionSundayShort": "\u0432\u0441\u043a",
|
||||||
|
@ -396,5 +395,5 @@
|
||||||
"Accept": "\u041f\u0440\u0438\u043d\u044f\u0442\u044c",
|
"Accept": "\u041f\u0440\u0438\u043d\u044f\u0442\u044c",
|
||||||
"Reject": "\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c",
|
"Reject": "\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c",
|
||||||
"Connect": "\u041f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f",
|
"Connect": "\u041f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f",
|
||||||
"LabelDownloadTo": "Download to:"
|
"LabelDownloadTo": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043d\u0430:"
|
||||||
}
|
}
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Upprepa",
|
"Repeat": "Upprepa",
|
||||||
"TrackCount": "{0} sp\u00e5r",
|
"TrackCount": "{0} sp\u00e5r",
|
||||||
"ItemCount": "{0} objekt",
|
"ItemCount": "{0} objekt",
|
||||||
"ReleaseYearValue": "Utgivnings\u00e5r: {0}",
|
|
||||||
"OriginalAirDateValue": "Ursprungligt s\u00e4ndningsdatum: {0}",
|
"OriginalAirDateValue": "Ursprungligt s\u00e4ndningsdatum: {0}",
|
||||||
"EndsAtValue": "Slutar vid: {0}",
|
"EndsAtValue": "Slutar vid: {0}",
|
||||||
"OptionSundayShort": "S\u00f6n",
|
"OptionSundayShort": "S\u00f6n",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "\u53d1\u5e03\u5e74\u4efd\uff1a{0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "\u7ed3\u675f\u4e8e {0}",
|
"EndsAtValue": "\u7ed3\u675f\u4e8e {0}",
|
||||||
"OptionSundayShort": "\u661f\u671f\u65e5",
|
"OptionSundayShort": "\u661f\u671f\u65e5",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracks",
|
||||||
"ItemCount": "{0} items",
|
"ItemCount": "{0} items",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Sun",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"Repeat": "Repeat",
|
"Repeat": "Repeat",
|
||||||
"TrackCount": "{0}\u500b\u66f2\u76ee",
|
"TrackCount": "{0}\u500b\u66f2\u76ee",
|
||||||
"ItemCount": "{0}\u500b\u9805\u76ee",
|
"ItemCount": "{0}\u500b\u9805\u76ee",
|
||||||
"ReleaseYearValue": "\u63a8\u51fa\u65e5\u671f\uff1a{0}",
|
|
||||||
"OriginalAirDateValue": "\u539f\u59cb\u64ad\u51fa\u65e5\u671f\uff1a{0}",
|
"OriginalAirDateValue": "\u539f\u59cb\u64ad\u51fa\u65e5\u671f\uff1a{0}",
|
||||||
"EndsAtValue": "\u5b8c\u7d50\u65bc{0}",
|
"EndsAtValue": "\u5b8c\u7d50\u65bc{0}",
|
||||||
"OptionSundayShort": "\u65e5",
|
"OptionSundayShort": "\u65e5",
|
||||||
|
|
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
Loading…
Add table
Add a link
Reference in a new issue