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

revise unknown audio stream handling

This commit is contained in:
Luke Pulverenti 2017-10-28 23:52:05 -04:00
parent 870e6cc959
commit f3046c2912
55 changed files with 95 additions and 36 deletions

File diff suppressed because one or more lines are too long

View file

@ -14,6 +14,7 @@
<h2 style="margin:0;">${HeaderAddUpdateImage}</h2> <h2 style="margin:0;">${HeaderAddUpdateImage}</h2>
<button is="emby-button" type="button" class="raised raised-mini btnBrowse" style="margin-left:1.5em;"> <button is="emby-button" type="button" class="raised raised-mini btnBrowse" style="margin-left:1.5em;">
<i class="md-icon">&#xE2C7;</i>
<span>${Browse}</span> <span>${Browse}</span>
</button> </button>
</div> </div>

View file

@ -201,7 +201,7 @@
${Genres} ${Genres}
</h1> </h1>
<button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}"> <button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}">
<i class="md-icon">add</i> <i class="md-icon">&#xE145;</i>
<span>${Add}</span> <span>${Add}</span>
</button> </button>
<div class="paperList" id="listGenres"></div> <div class="paperList" id="listGenres"></div>
@ -211,7 +211,7 @@
${People} ${People}
</h1> </h1>
<button is="emby-button" type="button" id="btnAddPerson" class="raised raised-mini btnAddPerson submit mini" style="margin-left:1em;" title="${Add}"> <button is="emby-button" type="button" id="btnAddPerson" class="raised raised-mini btnAddPerson submit mini" style="margin-left:1em;" title="${Add}">
<i class="md-icon">add</i> <i class="md-icon">&#xE145;</i>
<span>${Add}</span> <span>${Add}</span>
</button> </button>
<div id="peopleList" class="paperList"> <div id="peopleList" class="paperList">
@ -222,7 +222,7 @@
${Studios} ${Studios}
</h1> </h1>
<button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}"> <button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}">
<i class="md-icon">add</i> <i class="md-icon">&#xE145;</i>
<span>${Add}</span> <span>${Add}</span>
</button> </button>
<div class="paperList" id="listStudios"></div> <div class="paperList" id="listStudios"></div>
@ -232,7 +232,7 @@
${Tags} ${Tags}
</h1> </h1>
<button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}"> <button is="emby-button" type="button" class="raised raised-mini btnAddTextItem submit mini" style="margin-left:1em;" title="${Add}">
<i class="md-icon">add</i> <i class="md-icon">&#xE145;</i>
<span>${Add}</span> <span>${Add}</span>
</button> </button>
<div class="paperList" id="listTags"></div> <div class="paperList" id="listTags"></div>

File diff suppressed because one or more lines are too long

View file

@ -1,8 +1,18 @@
<div id="musicRecommendedPage" data-dom-cache="true" data-role="page" class="page libraryPage backdropPage pageWithAbsoluteTabs withTabs" data-backdroptype="musicartist"> <div id="musicRecommendedPage" data-dom-cache="true" data-role="page" class="page libraryPage backdropPage pageWithAbsoluteTabs withTabs" data-backdroptype="musicartist">
<style>
@media all and (max-width: 32em) {
.musicglobalButton {
display: none;
}
}
</style>
<div class="pageTabContent pageTabContent" id="suggestionsTab" data-index="0"> <div class="pageTabContent pageTabContent" id="suggestionsTab" data-index="0">
<div class="verticalSection"> <div class="verticalSection">
<h2 class="sectionTitle sectionTitle-cards padded-left">${HeaderLatestMusic}</h2>
<h2 class="sectionTitle sectionTitle-cards padded-left flex-grow">${HeaderLatestMusic}</h2>
<div is="emby-itemscontainer" id="recentlyAddedSongs" class="itemsContainer padded-left padded-right" style="text-align:left;"> <div is="emby-itemscontainer" id="recentlyAddedSongs" class="itemsContainer padded-left padded-right" style="text-align:left;">
</div> </div>
@ -27,6 +37,8 @@
<div class="pageTabContent pageTabContent" id="albumsTab" data-index="1"> <div class="pageTabContent pageTabContent" id="albumsTab" data-index="1">
<div style="text-align: center; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;padding:0 .5em 1em;"> <div style="text-align: center; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;padding:0 .5em 1em;">
<div class="paging"></div> <div class="paging"></div>
<button is="paper-icon-button-light" class="btnPlayAll musicglobalButton" title="${HeaderPlayAll}"><i class="md-icon">&#xE037;</i></button>
<button is="paper-icon-button-light" class="btnShuffle musicglobalButton" title="${ButtonShuffle}"><i class="md-icon">&#xE043;</i></button>
<button is="paper-icon-button-light" class="btnSelectView autoSize" title="${ButtonSelectView}"><i class="md-icon">view_comfy</i></button> <button is="paper-icon-button-light" class="btnSelectView autoSize" title="${ButtonSelectView}"><i class="md-icon">view_comfy</i></button>
<button is="paper-icon-button-light" class="btnSort autoSize" title="${ButtonSort}"><i class="md-icon">sort_by_alpha</i></button> <button is="paper-icon-button-light" class="btnSort autoSize" title="${ButtonSort}"><i class="md-icon">sort_by_alpha</i></button>
<button is="paper-icon-button-light" class="btnFilter autoSize" title="${ButtonFilter}"><i class="md-icon">filter_list</i></button> <button is="paper-icon-button-light" class="btnFilter autoSize" title="${ButtonFilter}"><i class="md-icon">filter_list</i></button>

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

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642", "LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642",
"LabelFinish": "\u0627\u0646\u0647\u0627\u0621", "LabelFinish": "\u0627\u0646\u0647\u0627\u0621",
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a", "LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0435", "LabelPrevious": "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0435",
"LabelFinish": "\u0413\u0430\u0442\u043e\u0432\u0430", "LabelFinish": "\u0413\u0430\u0442\u043e\u0432\u0430",
"LabelNext": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435", "LabelNext": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", "LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
"LabelFinish": "\u0413\u043e\u0442\u043e\u0432\u043e", "LabelFinish": "\u0413\u043e\u0442\u043e\u0432\u043e",
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449", "LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Finalitzar", "LabelFinish": "Finalitzar",
"LabelNext": "Seg\u00fcent", "LabelNext": "Seg\u00fcent",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "P\u0159edchoz\u00ed", "LabelPrevious": "P\u0159edchoz\u00ed",
"LabelFinish": "Dokon\u010dit", "LabelFinish": "Dokon\u010dit",
"LabelNext": "Dal\u0161\u00ed", "LabelNext": "Dal\u0161\u00ed",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Forrige", "LabelPrevious": "Forrige",
"LabelFinish": "Afslut", "LabelFinish": "Afslut",
"LabelNext": "N\u00e6ste", "LabelNext": "N\u00e6ste",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Vorheriges", "LabelPrevious": "Vorheriges",
"LabelFinish": "Fertig", "LabelFinish": "Fertig",
"LabelNext": "N\u00e4chstes", "LabelNext": "N\u00e4chstes",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2", "LabelPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2",
"LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2", "LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2",
"LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf", "LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Previous", "LabelPrevious": "Previous",
"LabelFinish": "Finish", "LabelFinish": "Finish",
"LabelNext": "Next", "LabelNext": "Next",

View file

@ -24,6 +24,7 @@
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
"DeleteMedia": "Delete media", "DeleteMedia": "Delete media",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"HeaderPlayAll": "Play All",
"HeaderUpcomingNews": "Upcoming News", "HeaderUpcomingNews": "Upcoming News",
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Cancel", "ButtonCancel": "Cancel",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Terminar", "LabelFinish": "Terminar",
"LabelNext": "Siguiente", "LabelNext": "Siguiente",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Terminar", "LabelFinish": "Terminar",
"LabelNext": "Siguiente", "LabelNext": "Siguiente",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Terminar", "LabelFinish": "Terminar",
"LabelNext": "Siguiente", "LabelNext": "Siguiente",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u0642\u0628\u0644\u06cc", "LabelPrevious": "\u0642\u0628\u0644\u06cc",
"LabelFinish": "\u067e\u0627\u06cc\u0627\u0646", "LabelFinish": "\u067e\u0627\u06cc\u0627\u0646",
"LabelNext": "\u0628\u0639\u062f\u06cc", "LabelNext": "\u0628\u0639\u062f\u06cc",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Edellinen", "LabelPrevious": "Edellinen",
"LabelFinish": "Valmis", "LabelFinish": "Valmis",
"LabelNext": "Seuraava", "LabelNext": "Seuraava",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Pr\u00e9c\u00e9dent", "LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer", "LabelFinish": "Terminer",
"LabelNext": "Suivant", "LabelNext": "Suivant",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Lire tout",
"LabelPrevious": "Pr\u00e9c\u00e9dent", "LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer", "LabelFinish": "Terminer",
"LabelNext": "Suivant", "LabelNext": "Suivant",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Vorher", "LabelPrevious": "Vorher",
"LabelFinish": "Beende", "LabelFinish": "Beende",
"LabelNext": "N\u00f6chst", "LabelNext": "N\u00f6chst",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd", "LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd",
"LabelFinish": "\u05e1\u05d9\u05d9\u05dd", "LabelFinish": "\u05e1\u05d9\u05d9\u05dd",
"LabelNext": "\u05d4\u05d1\u05d0", "LabelNext": "\u05d4\u05d1\u05d0",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u092a\u093f\u091b\u0932\u093e", "LabelPrevious": "\u092a\u093f\u091b\u0932\u093e",
"LabelFinish": "\u0938\u092e\u093e\u092a\u094d\u0924", "LabelFinish": "\u0938\u092e\u093e\u092a\u094d\u0924",
"LabelNext": "\u0905\u0917\u0932\u093e", "LabelNext": "\u0905\u0917\u0932\u093e",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Prethodni", "LabelPrevious": "Prethodni",
"LabelFinish": "Kraj", "LabelFinish": "Kraj",
"LabelNext": "Sljede\u0107i", "LabelNext": "Sljede\u0107i",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "El\u0151z\u0151", "LabelPrevious": "El\u0151z\u0151",
"LabelFinish": "Befejez", "LabelFinish": "Befejez",
"LabelNext": "K\u00f6vetkez\u0151", "LabelNext": "K\u00f6vetkez\u0151",
@ -160,7 +161,7 @@
"TabSongs": "Dalok", "TabSongs": "Dalok",
"TabAlbums": "Albumok", "TabAlbums": "Albumok",
"TabArtists": "El\u0151ad\u00f3k", "TabArtists": "El\u0151ad\u00f3k",
"TabAlbumArtists": "Album M\u0171v\u00e9szek", "TabAlbumArtists": "Album El\u0151ad\u00f3k",
"TabMusicVideos": "Zenei Vide\u00f3k", "TabMusicVideos": "Zenei Vide\u00f3k",
"ButtonSort": "Rendez\u00e9s", "ButtonSort": "Rendez\u00e9s",
"OptionPlayed": "Megn\u00e9zett", "OptionPlayed": "Megn\u00e9zett",
@ -401,7 +402,7 @@
"HeaderThemeSongs": "F\u0151c\u00edm dalok", "HeaderThemeSongs": "F\u0151c\u00edm dalok",
"HeaderScenes": "Jelenetek", "HeaderScenes": "Jelenetek",
"HeaderAwardsAndReviews": "D\u00edjak \u00e9s Jel\u00f6l\u00e9sek", "HeaderAwardsAndReviews": "D\u00edjak \u00e9s Jel\u00f6l\u00e9sek",
"HeaderMusicVideos": "Music Videos", "HeaderMusicVideos": "Zenei vide\u00f3k",
"HeaderSpecialFeatures": "Special Features", "HeaderSpecialFeatures": "Special Features",
"HeaderCastCrew": "Szerepl\u0151k \u00e9s St\u00e1b", "HeaderCastCrew": "Szerepl\u0151k \u00e9s St\u00e1b",
"HeaderAdditionalParts": "Additional Parts", "HeaderAdditionalParts": "Additional Parts",
@ -732,7 +733,7 @@
"ViewTypeMusicSongs": "Dalok", "ViewTypeMusicSongs": "Dalok",
"ViewTypeMusicFavorites": "Kedvencek", "ViewTypeMusicFavorites": "Kedvencek",
"ViewTypeMusicFavoriteAlbums": "Kedvenc Albumok", "ViewTypeMusicFavoriteAlbums": "Kedvenc Albumok",
"ViewTypeMusicFavoriteArtists": "Kedvenc M\u0171v\u00e9szek", "ViewTypeMusicFavoriteArtists": "Kedvenc El\u0151ad\u00f3k",
"ViewTypeMusicFavoriteSongs": "Kedvenc Dalok", "ViewTypeMusicFavoriteSongs": "Kedvenc Dalok",
"HeaderMyViews": "Saj\u00e1t N\u00e9zetek", "HeaderMyViews": "Saj\u00e1t N\u00e9zetek",
"OptionDisplayAdultContent": "Feln\u0151tt tartalom megjelen\u00edt\u00e9se", "OptionDisplayAdultContent": "Feln\u0151tt tartalom megjelen\u00edt\u00e9se",
@ -805,7 +806,7 @@
"OptionProtocolHttp": "Http", "OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming", "OptionProtocolHls": "Http Live Streaming",
"LabelContext": "Context:", "LabelContext": "Context:",
"TabPlaylists": "Playlists", "TabPlaylists": "Lej\u00e1tsz\u00e1si list\u00e1k",
"ButtonClose": "Bez\u00e1r", "ButtonClose": "Bez\u00e1r",
"LabelAllLanguages": "\u00d6sszes nyelv", "LabelAllLanguages": "\u00d6sszes nyelv",
"LabelSource": "Source:", "LabelSource": "Source:",
@ -842,7 +843,7 @@
"OptionReportEpisodes": "Epiz\u00f3dok", "OptionReportEpisodes": "Epiz\u00f3dok",
"OptionReportCollections": "Gy\u0171jtem\u00e9nyek", "OptionReportCollections": "Gy\u0171jtem\u00e9nyek",
"OptionReportBooks": "K\u00f6nyvek", "OptionReportBooks": "K\u00f6nyvek",
"OptionReportArtists": "M\u0171v\u00e9szek", "OptionReportArtists": "El\u0151ad\u00f3k",
"OptionReportAlbums": "Albumok", "OptionReportAlbums": "Albumok",
"ButtonMore": "Tov\u00e1bb", "ButtonMore": "Tov\u00e1bb",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
@ -874,7 +875,7 @@
"HeaderPersonInfo": "Person Info", "HeaderPersonInfo": "Person Info",
"HeaderConfirmDeletion": "Confirm Deletion", "HeaderConfirmDeletion": "Confirm Deletion",
"LabelAlbumArtist": "Album artist:", "LabelAlbumArtist": "Album artist:",
"LabelAlbumArtists": "Album artists:", "LabelAlbumArtists": "Album el\u0151ad\u00f3k:",
"LabelAlbum": "Album:", "LabelAlbum": "Album:",
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:", "LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
"LabelReleaseDate": "Megjelen\u00e9s d\u00e1tuma:", "LabelReleaseDate": "Megjelen\u00e9s d\u00e1tuma:",
@ -1048,7 +1049,7 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion", "OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
"HeaderPlaylists": "Playlists", "HeaderPlaylists": "Lej\u00e1tsz\u00e1si list\u00e1k",
"HeaderViewStyles": "View Styles", "HeaderViewStyles": "View Styles",
"TabPhotos": "F\u00e9nyk\u00e9pek", "TabPhotos": "F\u00e9nyk\u00e9pek",
"HeaderWelcomeToEmby": "Welcome to Emby", "HeaderWelcomeToEmby": "Welcome to Emby",
@ -1419,8 +1420,8 @@
"OptionGameSystems": "Game systems", "OptionGameSystems": "Game systems",
"OptionMusicArtists": "Music artists", "OptionMusicArtists": "Music artists",
"OptionMusicAlbums": "Music albums", "OptionMusicAlbums": "Music albums",
"OptionMusicVideos": "Music videos", "OptionMusicVideos": "Zenei vide\u00f3k",
"OptionSongs": "Songs", "OptionSongs": "Dalok",
"OptionHomeVideos": "H\u00e1zi vide\u00f3k \u00e9s f\u00e9nyk\u00e9pek", "OptionHomeVideos": "H\u00e1zi vide\u00f3k \u00e9s f\u00e9nyk\u00e9pek",
"OptionBooks": "Books", "OptionBooks": "Books",
"ButtonUp": "Up", "ButtonUp": "Up",
@ -1448,7 +1449,7 @@
"ButtonChangeContentType": "Tartalom t\u00edpus\u00e1nak megv\u00e1ltoztat\u00e1sa", "ButtonChangeContentType": "Tartalom t\u00edpus\u00e1nak megv\u00e1ltoztat\u00e1sa",
"HeaderMediaLocations": "Media Locations", "HeaderMediaLocations": "Media Locations",
"LabelContentTypeValue": "Content type: {0}", "LabelContentTypeValue": "Content type: {0}",
"FolderTypeUnset": "Unset (mixed content)", "FolderTypeUnset": "Kategoriz\u00e1latlan (vegyes tartalom) ",
"BirthPlaceValue": "Sz\u00fclet\u00e9si hely: {0}", "BirthPlaceValue": "Sz\u00fclet\u00e9si hely: {0}",
"DeathDateValue": "Died: {0}", "DeathDateValue": "Died: {0}",
"BirthDateValue": "Sz\u00fcletett: {0}", "BirthDateValue": "Sz\u00fcletett: {0}",
@ -1492,9 +1493,9 @@
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albums",
"ValueOneSong": "1 song", "ValueOneSong": "1 song",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} dal",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 music video",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} zenei vide\u00f3",
"HeaderOffline": "Offline", "HeaderOffline": "Offline",
"HeaderUnaired": "Unaired", "HeaderUnaired": "Unaired",
"HeaderMissing": "Missing", "HeaderMissing": "Missing",
@ -1705,7 +1706,7 @@
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.", "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? You can sign up at {0}.",
"ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingEmbyConnectAccount2": "If you're still having a problem, please send an email to {0}.",
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
"HeaderFavoriteArtists": "Kedvenc M\u0171v\u00e9szek", "HeaderFavoriteArtists": "Kedvenc El\u0151ad\u00f3k",
"HeaderFavoriteSongs": "Kedvenc Dalok", "HeaderFavoriteSongs": "Kedvenc Dalok",
"HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "HeaderConfirmPluginInstallation": "Confirm Plugin Installation",
"PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Sebelumnya", "LabelPrevious": "Sebelumnya",
"LabelFinish": "Selesai", "LabelFinish": "Selesai",
"LabelNext": "Berikutnya", "LabelNext": "Berikutnya",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Riproduci Tutti",
"LabelPrevious": "Precedente", "LabelPrevious": "Precedente",
"LabelFinish": "Finito", "LabelFinish": "Finito",
"LabelNext": "Prossimo", "LabelNext": "Prossimo",
@ -262,8 +263,8 @@
"HeaderFeatureAccess": "Accesso alle funzionalit\u00e0", "HeaderFeatureAccess": "Accesso alle funzionalit\u00e0",
"OptionAllowMediaPlayback": "Consenti la riproduzione dei media", "OptionAllowMediaPlayback": "Consenti la riproduzione dei media",
"OptionAllowBrowsingLiveTv": "Consenti accesso alla TV in Diretta", "OptionAllowBrowsingLiveTv": "Consenti accesso alla TV in Diretta",
"HeaderMediaDeletion": "Media Deletion", "HeaderMediaDeletion": "Eliminazione Media",
"AllowDeletionFromAll": "Allow media deletion from all libraries", "AllowDeletionFromAll": "Consenti l'eliminazione dei media da tutte le librerie",
"OptionAllowManageLiveTv": "Consenti la gestione delle registrazioni TV", "OptionAllowManageLiveTv": "Consenti la gestione delle registrazioni TV",
"OptionAllowRemoteControlOthers": "Consenti il controllo remoto di altri utenti", "OptionAllowRemoteControlOthers": "Consenti il controllo remoto di altri utenti",
"OptionAllowRemoteSharedDevices": "Consenti il controllo remoto dei dispositivi condivisi", "OptionAllowRemoteSharedDevices": "Consenti il controllo remoto dei dispositivi condivisi",
@ -386,7 +387,7 @@
"HeaderLatestGames": "Ultimi giochi", "HeaderLatestGames": "Ultimi giochi",
"TabGameSystems": "Sistemi di gioco", "TabGameSystems": "Sistemi di gioco",
"TabFolders": "Cartelle", "TabFolders": "Cartelle",
"LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSpecialSeasonsDisplayName": "Nome della stagione speciale:",
"LabelEnableRealtimeMonitor": "Abilita monitoraggio in tempo reale", "LabelEnableRealtimeMonitor": "Abilita monitoraggio in tempo reale",
"LabelEnableRealtimeMonitorHelp": "Le modifiche saranno applicate immediatamente, sui file system supportati.", "LabelEnableRealtimeMonitorHelp": "Le modifiche saranno applicate immediatamente, sui file system supportati.",
"ButtonScanLibrary": "Scansione libreria", "ButtonScanLibrary": "Scansione libreria",
@ -445,8 +446,8 @@
"LabelPublicHttpPortHelp": "Numero di porta pubblica che dovrebbe essere mappato sulla porta HTTP locale.", "LabelPublicHttpPortHelp": "Numero di porta pubblica che dovrebbe essere mappato sulla porta HTTP locale.",
"LabelPublicHttpsPort": "Numero porta HTTPS pubblica", "LabelPublicHttpsPort": "Numero porta HTTPS pubblica",
"LabelPublicHttpsPortHelp": "Numero della porta pubblica che dovrebbe essere mappato sulla porta HTTPS locale.", "LabelPublicHttpsPortHelp": "Numero della porta pubblica che dovrebbe essere mappato sulla porta HTTPS locale.",
"RequireHttps": "Require https for external connections", "RequireHttps": "Richiedi https per connessioni esterne",
"RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", "RequireHttpsHelp": "Se abilitato, le connessione attraverso http verranno reinderizzate tramite https.",
"LabelHttpsPort": "Porta HTTPS locale", "LabelHttpsPort": "Porta HTTPS locale",
"LabelHttpsPortHelp": "Numero di porta TCP da associare al server https di Emby", "LabelHttpsPortHelp": "Numero di porta TCP da associare al server https di Emby",
"LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte", "LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b", "LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443", "LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456", "LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\uc774\uc804", "LabelPrevious": "\uc774\uc804",
"LabelFinish": "\ub05d\ub0b4\uae30", "LabelFinish": "\ub05d\ub0b4\uae30",
"LabelNext": "\ub2e4\uc74c", "LabelNext": "\ub2e4\uc74c",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Ankstesnis", "LabelPrevious": "Ankstesnis",
"LabelFinish": "Baigti", "LabelFinish": "Baigti",
"LabelNext": "Kitas", "LabelNext": "Kitas",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Sebelumnya", "LabelPrevious": "Sebelumnya",
"LabelFinish": "Habis", "LabelFinish": "Habis",
"LabelNext": "Seterusnya", "LabelNext": "Seterusnya",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Forrige", "LabelPrevious": "Forrige",
"LabelFinish": "Ferdig", "LabelFinish": "Ferdig",
"LabelNext": "Neste", "LabelNext": "Neste",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Vorige", "LabelPrevious": "Vorige",
"LabelFinish": "Voltooien", "LabelFinish": "Voltooien",
"LabelNext": "Volgende", "LabelNext": "Volgende",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Odtwarzaj wszystko",
"LabelPrevious": "Wstecz", "LabelPrevious": "Wstecz",
"LabelFinish": "Zako\u0144cz", "LabelFinish": "Zako\u0144cz",
"LabelNext": "Dalej", "LabelNext": "Dalej",
@ -501,7 +502,7 @@
"ServerUpToDate": "Serwer Emby jest aktualny", "ServerUpToDate": "Serwer Emby jest aktualny",
"LabelComponentsUpdated": "Nast\u0119puj\u0105ce elementy zosta\u0142y zainstalowane lub zaktualizowane:", "LabelComponentsUpdated": "Nast\u0119puj\u0105ce elementy zosta\u0142y zainstalowane lub zaktualizowane:",
"MessagePleaseRestartServerToFinishUpdating": "Uruchom serwer ponownie, aby zako\u0144czy\u0107 stosowanie aktualizacji.", "MessagePleaseRestartServerToFinishUpdating": "Uruchom serwer ponownie, aby zako\u0144czy\u0107 stosowanie aktualizacji.",
"LabelDownMixAudioScale": "Wzmocnienie audio podczas downmixingu:", "LabelDownMixAudioScale": "Wzmocnienie d\u017awi\u0119ku podczas miksowania w d\u00f3\u0142:",
"LabelDownMixAudioScaleHelp": "Umo\u017cliwia zwi\u0119kszenie g\u0142o\u015bno\u015bci d\u017awi\u0119ku podczas miksowania w d\u00f3\u0142. Ustaw 1, aby zachowa\u0107 oryginaln\u0105 warto\u015b\u0107 g\u0142o\u015bno\u015bci.", "LabelDownMixAudioScaleHelp": "Umo\u017cliwia zwi\u0119kszenie g\u0142o\u015bno\u015bci d\u017awi\u0119ku podczas miksowania w d\u00f3\u0142. Ustaw 1, aby zachowa\u0107 oryginaln\u0105 warto\u015b\u0107 g\u0142o\u015bno\u015bci.",
"LabelCurrentEmailAddress": "Aktualny adres pocztowy", "LabelCurrentEmailAddress": "Aktualny adres pocztowy",
"LabelCurrentEmailAddressHelp": "Aktualny adres pocztowy, na kt\u00f3ry zosta\u0142 przes\u0142any nowy klucz.", "LabelCurrentEmailAddressHelp": "Aktualny adres pocztowy, na kt\u00f3ry zosta\u0142 przes\u0142any nowy klucz.",
@ -1031,7 +1032,7 @@
"HeaderThisUserIsCurrentlyDisabled": "Ten u\u017cytkownik jest aktualnie zablokowany", "HeaderThisUserIsCurrentlyDisabled": "Ten u\u017cytkownik jest aktualnie zablokowany",
"MessageReenableUser": "Zobacz poni\u017cej aby aktywowa\u0107 ponownie", "MessageReenableUser": "Zobacz poni\u017cej aby aktywowa\u0107 ponownie",
"OptionTVMovies": "Seriale i Filmy", "OptionTVMovies": "Seriale i Filmy",
"OptionEnableTranscodingThrottle": "W\u0142\u0105cz CPU throttling serwera", "OptionEnableTranscodingThrottle": "Aktywuj dynamiczne taktowanie procesora",
"OptionEnableTranscodingThrottleHelp": "Dynamiczne taktowanie procesora dostosuje pr\u0119dko\u015b\u0107 transkodowania tak, aby zminimalizowa\u0107 u\u017cycie procesora serwera podczas odtwarzania.", "OptionEnableTranscodingThrottleHelp": "Dynamiczne taktowanie procesora dostosuje pr\u0119dko\u015b\u0107 transkodowania tak, aby zminimalizowa\u0107 u\u017cycie procesora serwera podczas odtwarzania.",
"LabelUploadSpeedLimit": "Limit pr\u0119dko\u015bci wysy\u0142ania (Mbps):", "LabelUploadSpeedLimit": "Limit pr\u0119dko\u015bci wysy\u0142ania (Mbps):",
"OptionAllowSyncTranscoding": "Zezwalaj na pobieranie wymagaj\u0105ce transkodowania", "OptionAllowSyncTranscoding": "Zezwalaj na pobieranie wymagaj\u0105ce transkodowania",
@ -1181,7 +1182,7 @@
"LabelTag": "Znacznik:", "LabelTag": "Znacznik:",
"ButtonSelectView": "Wybierz widok", "ButtonSelectView": "Wybierz widok",
"HeaderSelectDate": "Wybierz Dat\u0119", "HeaderSelectDate": "Wybierz Dat\u0119",
"ServerUpdateNeeded": "Ten serwer Emby wymaga aktualizacji. Do pobrania najnowszej wersji odwied\u017a {0}", "ServerUpdateNeeded": "Ten serwer Emby wymaga aktualizacji. W celu pobrania najnowszej wersji odwied\u017a {0}",
"LabelFromHelp": "Przyk\u0142ad: {0} (na serwerze)", "LabelFromHelp": "Przyk\u0142ad: {0} (na serwerze)",
"HeaderMyMedia": "Moje Media", "HeaderMyMedia": "Moje Media",
"MessageErrorLoadingSupporterInfo": "Podczas wczytywania danych subskrypcji Emby Premium wyst\u0105pi\u0142 b\u0142\u0105d. Spr\u00f3buj ponownie p\u00f3\u017aniej.", "MessageErrorLoadingSupporterInfo": "Podczas wczytywania danych subskrypcji Emby Premium wyst\u0105pi\u0142 b\u0142\u0105d. Spr\u00f3buj ponownie p\u00f3\u017aniej.",
@ -1638,8 +1639,8 @@
"MessageUnsetContentHelp": "Zawarto\u015b\u0107 b\u0119dzie wy\u015bwietlana jako proste foldery. W celu uzyskania najlepszych wynik\u00f3w, u\u017cyj menad\u017cera metadanych do ustawienia typu zawarto\u015bci podfolder\u00f3w.", "MessageUnsetContentHelp": "Zawarto\u015b\u0107 b\u0119dzie wy\u015bwietlana jako proste foldery. W celu uzyskania najlepszych wynik\u00f3w, u\u017cyj menad\u017cera metadanych do ustawienia typu zawarto\u015bci podfolder\u00f3w.",
"LabelProfile": "Profil:", "LabelProfile": "Profil:",
"LabelBitrateMbps": "Przep\u0142ywno\u015b\u0107 (Mbps):", "LabelBitrateMbps": "Przep\u0142ywno\u015b\u0107 (Mbps):",
"EmbyIntroDownloadMessage": "Aby pobra\u0107 i zainstalowa\u0107 serwer Emby odwied\u017a {0}.", "EmbyIntroDownloadMessage": "W celu pobrania i instalacji serwera Emby odwied\u017a {0}.",
"EmbyIntroDownloadMessageWithoutLink": "Aby pobra\u0107 i zainstalowa\u0107 darmowy serwer Emby odwied\u017a witryn\u0119 internetow\u0105 Emby.", "EmbyIntroDownloadMessageWithoutLink": "W celu pobrania i instalacji darmowego serwera Emby, odwied\u017a witryn\u0119 internetow\u0105 Emby.",
"ButtonNewServer": "Nowy serwer", "ButtonNewServer": "Nowy serwer",
"MyDevice": "Moje urz\u0105dzenie", "MyDevice": "Moje urz\u0105dzenie",
"ButtonRemote": "Zdalny", "ButtonRemote": "Zdalny",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Finalizar", "LabelFinish": "Finalizar",
"LabelNext": "Pr\u00f3ximo", "LabelNext": "Pr\u00f3ximo",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anterior", "LabelPrevious": "Anterior",
"LabelFinish": "Terminar", "LabelFinish": "Terminar",
"LabelNext": "Seguinte", "LabelNext": "Seguinte",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Anteriorul", "LabelPrevious": "Anteriorul",
"LabelFinish": "Termin\u0103", "LabelFinish": "Termin\u0103",
"LabelNext": "Urm\u0103torul", "LabelNext": "Urm\u0103torul",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435", "LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
"LabelFinish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c", "LabelFinish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c",
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435", "LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Predch\u00e1dzaj\u00face", "LabelPrevious": "Predch\u00e1dzaj\u00face",
"LabelFinish": "Ukon\u010di\u0165", "LabelFinish": "Ukon\u010di\u0165",
"LabelNext": "\u010ealej", "LabelNext": "\u010ealej",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Nazaj", "LabelPrevious": "Nazaj",
"LabelFinish": "Konec", "LabelFinish": "Konec",
"LabelNext": "Naprej", "LabelNext": "Naprej",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "F\u00f6reg\u00e5ende", "LabelPrevious": "F\u00f6reg\u00e5ende",
"LabelFinish": "Klart", "LabelFinish": "Klart",
"LabelNext": "N\u00e4sta", "LabelNext": "N\u00e4sta",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u00d6nceki", "LabelPrevious": "\u00d6nceki",
"LabelFinish": "Bitir", "LabelFinish": "Bitir",
"LabelNext": "Sonraki", "LabelNext": "Sonraki",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u041d\u0430\u0437\u0430\u0434", "LabelPrevious": "\u041d\u0430\u0437\u0430\u0434",
"LabelFinish": "Finish", "LabelFinish": "Finish",
"LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434", "LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "Tr\u01b0\u1edbc", "LabelPrevious": "Tr\u01b0\u1edbc",
"LabelFinish": "K\u1ebft th\u00fac", "LabelFinish": "K\u1ebft th\u00fac",
"LabelNext": "Ti\u1ebfp theo", "LabelNext": "Ti\u1ebfp theo",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u4e0a\u4e00\u4e2a", "LabelPrevious": "\u4e0a\u4e00\u4e2a",
"LabelFinish": "\u5b8c\u6210", "LabelFinish": "\u5b8c\u6210",
"LabelNext": "\u4e0b\u4e00\u4e2a", "LabelNext": "\u4e0b\u4e00\u4e2a",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u524d\u4e00\u500b", "LabelPrevious": "\u524d\u4e00\u500b",
"LabelFinish": "\u5b8c\u6210", "LabelFinish": "\u5b8c\u6210",
"LabelNext": "\u4e0b\u4e00\u500b", "LabelNext": "\u4e0b\u4e00\u500b",

View file

@ -1,4 +1,5 @@
{ {
"HeaderPlayAll": "Play All",
"LabelPrevious": "\u4e0a\u4e00\u500b", "LabelPrevious": "\u4e0a\u4e00\u500b",
"LabelFinish": "\u5b8c\u6210", "LabelFinish": "\u5b8c\u6210",
"LabelNext": "\u4e0b\u4e00\u500b", "LabelNext": "\u4e0b\u4e00\u500b",

View file

@ -8,6 +8,7 @@
<span>${HeaderUsers}</span> <span>${HeaderUsers}</span>
</h2> </h2>
<button is="emby-button" type="button" class="raised btnAddUser submit raised-mini sectionTitleButton" style="margin-left:1em;" title="${ButtonAddUser}"> <button is="emby-button" type="button" class="raised btnAddUser submit raised-mini sectionTitleButton" style="margin-left:1em;" title="${ButtonAddUser}">
<i class="md-icon">&#xE145;</i>
<span>${ButtonAdd}</span> <span>${ButtonAdd}</span>
</button> </button>
</div> </div>
@ -20,6 +21,7 @@
${HeaderGuests} ${HeaderGuests}
</h2> </h2>
<button is="emby-button" type="button" class="raised btnInvite submit raised-mini" style="margin-left:1em;" title="${ButtonInviteUser}"> <button is="emby-button" type="button" class="raised btnInvite submit raised-mini" style="margin-left:1em;" title="${ButtonInviteUser}">
<i class="md-icon">&#xE145;</i>
<span>${ButtonAdd}</span> <span>${ButtonAdd}</span>
</button> </button>
</div> </div>