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

Merge pull request #2099 from MediaBrowser/dev

Dev
This commit is contained in:
Luke 2016-08-25 14:26:39 -04:00 committed by GitHub
commit f6630e4df4
76 changed files with 992 additions and 991 deletions

View file

@ -14,12 +14,12 @@
}, },
"devDependencies": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.4.186", "version": "1.4.188",
"_release": "1.4.186", "_release": "1.4.188",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.4.186", "tag": "1.4.188",
"commit": "58f6ba7c53f72e861456632e6c278b6d9da2bf9b" "commit": "9bfd0321b48bbe058008848619521d3d5b23bbe7"
}, },
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1", "_target": "^1.2.1",

View file

@ -71,18 +71,24 @@ define([], function () {
} }
var windowSize; var windowSize;
function resetWindowSize() { var windowSizeEventsBound;
windowSize = { function clearWindowSize() {
innerHeight: window.innerHeight, console.log('clearWindowSize');
innerWidth: window.innerWidth windowSize = null;
};
} }
function getWindowSize() { function getWindowSize() {
if (!windowSize) { if (!windowSize) {
resetWindowSize(); windowSize = {
addEventListenerWithOptions(window, "orientationchange", resetWindowSize, { passive: true }); innerHeight: window.innerHeight,
addEventListenerWithOptions(window, 'resize', resetWindowSize, { passive: true }); innerWidth: window.innerWidth
};
if (!windowSizeEventsBound) {
windowSizeEventsBound = true;
addEventListenerWithOptions(window, "orientationchange", clearWindowSize, { passive: true });
addEventListenerWithOptions(window, 'resize', clearWindowSize, { passive: true });
}
} }
return windowSize; return windowSize;

View file

@ -128,7 +128,7 @@ define(['serverNotifications', 'playbackManager', 'events', 'globalize', 'requir
Recursive: true, Recursive: true,
Limit: 3, Limit: 3,
IsFolder: false, Filters: "IsNotFolder",
SortBy: "DateCreated", SortBy: "DateCreated",
SortOrder: "Descending", SortOrder: "Descending",
Ids: newItems.join(',') Ids: newItems.join(',')

View file

@ -3,12 +3,12 @@
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sync to:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"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.",
"LabelQuality": "Quality:", "LabelQuality": "Qualitat",
"LearnMore": "Learn more", "LearnMore": "Learn more",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Perfil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sincronitza nom\u00e9s els v\u00eddeos no vists",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Automatically sync new content",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Item limit:",
@ -40,7 +40,7 @@
"ButtonOk": "D'acord", "ButtonOk": "D'acord",
"ButtonCancel": "Cancel\u00b7la", "ButtonCancel": "Cancel\u00b7la",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "Reiniciar",
"RecordingCancelled": "Enregistrament cancel\u00b7lat.", "RecordingCancelled": "Enregistrament cancel\u00b7lat.",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -243,7 +243,7 @@
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation completed.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} installation failed.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "Instal\u00b7laci\u00f3 {0} cancel\u00b7lada.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Present",
"ValueOneSong": "1 song", "ValueOneSong": "1 song",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} songs",
@ -252,13 +252,13 @@
"ValueOneSeries": "1 series", "ValueOneSeries": "1 series",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} series",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episode",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episodis",
"ValueOneGame": "1 game", "ValueOneGame": "1 game",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} games",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albums",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 v\u00eddeo musical",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} v\u00eddeos musicals",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Please enter a name or an external Id.",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "\u00daloha Sync vytvo\u0159ena",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sync do:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "N\u00e1zev Sync \u00falohy:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.",
"LabelQuality": "Quality:", "LabelQuality": "Kvalita:",
"LearnMore": "Learn more", "LearnMore": "Zjistit v\u00edce",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Datov\u00fd tok (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synchronizovat pouze neshl\u00e9dnut\u00e1 videa",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Automaticky synchronizovat nov\u00fd obsah",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Limit polo\u017eek:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Pouze neshl\u00e9dnut\u00e1 videa budou synchronizov\u00e1ny. Videa budou odstran\u011bny ze za\u0159\u00edzen\u00ed, jakmile je zhl\u00e9dnete.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Voliteln\u00e9. Nastaven\u00ed limitu k po\u010dtu polo\u017eek, kter\u00e9 budou synchronizovan\u00e9.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nov\u00fd p\u0159idan\u00fd obsah bude automaticky synchronizov\u00e1n s va\u0161\u00edm za\u0159\u00edzen\u00edm.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Share",
"Add": "P\u0159idat", "Add": "P\u0159idat",
@ -240,35 +240,35 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producent", "Producer": "Producent",
"Writer": "Napsal", "Writer": "Napsal",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Instalace {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "Instalace {0} dokon\u010dena.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "Instalace {0} selhala!!!",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "Instalace {0} zru\u0161ena.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Sou\u010dasnost",
"ValueOneSong": "1 song", "ValueOneSong": "1 song",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} song\u016f",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} film\u016f",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 seri\u00e1l",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} seri\u00e1l\u016f",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 epizoda",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} epizod",
"ValueOneGame": "1 game", "ValueOneGame": "1 hra",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} her",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} alb",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 hudebn\u00ed klip",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} hudebn\u00edch klip\u016f",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Zadejte jedno nebo v\u00edce vyhled\u00e1vac\u00edch krit\u00e9ri\u00ed. Odstra\u0148te krit\u00e9ria pro vyhled\u00e1n\u00ed v\u00edce v\u00fdsledk\u016f.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
"MessageItemSaved": "Polo\u017eka ulo\u017eena.", "MessageItemSaved": "Polo\u017eka ulo\u017eena.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Odstranit polo\u017eky",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,19 +1,19 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Synkroniserings job oprettet",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synkroniser til:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Navn til synkroniserings job:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.",
"LabelQuality": "Quality:", "LabelQuality": "Kvalitet:",
"LearnMore": "Learn more", "LearnMore": "L\u00e6r mere",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synkroniser kun usete videoer",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Synkroniser automatisk nyt indhold",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "V\u00e6lg en enhed at synkroniserer til.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Maks. filer:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Kun usete videoer vil blive synkroniseret, og videoer vil blive fjernet fra enheden n\u00e5r de er blevet set.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Valgfri. S\u00e6t en gr\u00e6nse for antallet af filer der synkroniseres.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Del", "Share": "Del",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Annuller", "ButtonCancel": "Annuller",
"ButtonGotIt": "Forst\u00e5et", "ButtonGotIt": "Forst\u00e5et",
"ButtonRestart": "Restart", "ButtonRestart": "Genstart",
"RecordingCancelled": "Optagelse annulleret.", "RecordingCancelled": "Optagelse annulleret.",
"RecordingScheduled": "Optagelse planlagt.", "RecordingScheduled": "Optagelse planlagt.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,28 +240,28 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producent", "Producer": "Producent",
"Writer": "Forfatter", "Writer": "Forfatter",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installerer {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installation udf\u00f8rt.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} installationen mislykkedes.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} installation afbrudt.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Nu",
"ValueOneSong": "1 song", "ValueOneSong": "1 sang",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} sange",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} film",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} serier",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episode",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episoder",
"ValueOneGame": "1 game", "ValueOneGame": "1 spil",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} spil",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} album",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 musikvideo",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} musikvideoer",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Indtast et eller flere s\u00f8gekriterier.Fjern kriterier for at f\u00e5 flere s\u00f8geresultater.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.",
"MessageItemSaved": "Element gemt.", "MessageItemSaved": "Element gemt.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",

View file

@ -1,25 +1,25 @@
{ {
"SyncJobCreated": "Synchronisationsaufgabe erstellt.", "SyncJobCreated": "Synchronisations-Aufgabe erstellt.",
"LabelSyncTo": "Synchronisiere mit:", "LabelSyncTo": "Synchronisiere mit:",
"LabelSyncJobName": "Name der Synchronisationsaufgabe:", "LabelSyncJobName": "Synchronisations-Aufgabe:",
"LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrdest du aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.", "LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrden Sie aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.",
"LabelQuality": "Qualit\u00e4t:", "LabelQuality": "Qualit\u00e4t:",
"LearnMore": "Erfahre mehr", "LearnMore": "Erfahre mehr",
"DownloadScheduled": "Download geplant", "DownloadScheduled": "Download geplant",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Datenrate (Mbps):",
"LabelProfile": "Profil:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos", "SyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos.",
"AutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch", "AutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch",
"PleaseSelectDeviceToSyncTo": "Bitte w\u00e4hlen Sie ein zu synchronisierendes Ger\u00e4t.", "PleaseSelectDeviceToSyncTo": "Bitte w\u00e4hlen Sie ein zu synchronisierendes Ger\u00e4t.",
"LabelItemLimit": "Maximale Anzahl:", "LabelItemLimit": "Maximale Anzahl:",
"SyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.", "SyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.",
"LabelItemLimitHelp": "Optional. Legen Sie die maximale Anzahl der zu synchronisierenden Eintr\u00e4ge fest.", "LabelItemLimitHelp": "Optional. Legen Sie die maximale Anzahl der zu synchronisierenden Eintr\u00e4ge fest.",
"AutomaticallySyncNewContentHelp": "Neu zu diesen Ordner hinzugef\u00fcgte Inhalte werden automatisch mit dem Ger\u00e4t synchronisiert.", "AutomaticallySyncNewContentHelp": "Neu zu diesem Ordner hinzugef\u00fcgte Inhalte werden automatisch mit dem Ger\u00e4t synchronisiert.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Teilen", "Share": "Teilen",
"Add": "Hinzuf\u00fcgen", "Add": "Hinzuf\u00fcgen",
"ServerUpdateNeeded": "Dieser Emby Server muss aktualisiert werden. Um die neueste Version herunterzuladen, besuche bitte {0}", "ServerUpdateNeeded": "Dieser Emby Server muss aktualisiert werden. Um die neueste Version herunterzuladen, besuchen sie bitte {0}",
"LiveTvGuideRequiresUnlock": "Dein TV-Guide ist derzeit begrenzt auf {0} Kan\u00e4le. Klicke auf die \"Freischalten\" Schaltfl\u00e4che um weitere Informationen zu erhalten.", "LiveTvGuideRequiresUnlock": "Ihr TV-Guide ist begrenzt auf {0} Kan\u00e4le. Klicken Sie auf die Freischalten Schaltfl\u00e4che um weitere Informationen zu erhalten.",
"AttributeNew": "Neu", "AttributeNew": "Neu",
"AttributePremiere": "Premiere", "AttributePremiere": "Premiere",
"AttributeLive": "Live", "AttributeLive": "Live",
@ -59,8 +59,8 @@
"RecordOnAllChannels": "Auf allen Kan\u00e4len aufzeichnen", "RecordOnAllChannels": "Auf allen Kan\u00e4len aufzeichnen",
"RecordAnytime": "Zu jeder Zeit aufzeichnen", "RecordAnytime": "Zu jeder Zeit aufzeichnen",
"RecordOnlyNewEpisodes": "Nehme nur neue Episoden auf", "RecordOnlyNewEpisodes": "Nehme nur neue Episoden auf",
"HeaderBecomeProjectSupporter": "Hol dir Emby Premiere", "HeaderBecomeProjectSupporter": "Holen Sie Emby Premium",
"HeaderEnjoyDayTrial": "Genie\u00dfe eine 14-t\u00e4gige Testversion", "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
"OptionConvertRecordingsToStreamingFormat": "Konvertiere Aufnahmen automatisch in ein streaming freundliches Format.", "OptionConvertRecordingsToStreamingFormat": "Konvertiere Aufnahmen automatisch in ein streaming freundliches Format.",
"OptionConvertRecordingsToStreamingFormatHelp": "Aufnahmen werden als MP4 konvertiert um eine bessere Wiedergabe auf Ihren Ger\u00e4ten zu gew\u00e4hrleisten.", "OptionConvertRecordingsToStreamingFormatHelp": "Aufnahmen werden als MP4 konvertiert um eine bessere Wiedergabe auf Ihren Ger\u00e4ten zu gew\u00e4hrleisten.",
@ -72,7 +72,7 @@
"Advanced": "Erweitert", "Advanced": "Erweitert",
"Delete": "L\u00f6schen", "Delete": "L\u00f6schen",
"HeaderDeleteItem": "L\u00f6sche Element", "HeaderDeleteItem": "L\u00f6sche Element",
"ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chtest du wirklich fortfahren?", "ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chten Sie wirklich fortfahren?",
"Refresh": "Aktualisieren", "Refresh": "Aktualisieren",
"RefreshQueued": "Warteschlange aktualisieren.", "RefreshQueued": "Warteschlange aktualisieren.",
"AddToCollection": "Zur Sammlung hinzuf\u00fcgen", "AddToCollection": "Zur Sammlung hinzuf\u00fcgen",
@ -80,7 +80,7 @@
"NewCollection": "Neue Collection", "NewCollection": "Neue Collection",
"LabelCollection": "Sammlung:", "LabelCollection": "Sammlung:",
"Help": "Hilfe", "Help": "Hilfe",
"NewCollectionHelp": "Sammlungen erm\u00f6glichen personalisierte Gruppen von Filmen oder anderen Medien.", "NewCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
"SearchForCollectionInternetMetadata": "Suche im Internet nach Bildmaterial und Metadaten", "SearchForCollectionInternetMetadata": "Suche im Internet nach Bildmaterial und Metadaten",
"LabelName": "Name:", "LabelName": "Name:",
"NewCollectionNameExample": "Beispiel: Star Wars Collection", "NewCollectionNameExample": "Beispiel: Star Wars Collection",
@ -107,11 +107,11 @@
"SearchForMissingMetadata": "Suche nach fehlenden Metadaten", "SearchForMissingMetadata": "Suche nach fehlenden Metadaten",
"LabelRefreshMode": "Aktualisierungsmodus:", "LabelRefreshMode": "Aktualisierungsmodus:",
"NoItemsFound": "Keine Eintr\u00e4ge gefunden.", "NoItemsFound": "Keine Eintr\u00e4ge gefunden.",
"HeaderSaySomethingLike": "Sage etwas wie...", "HeaderSaySomethingLike": "Sagen Sie etwas wie...",
"ButtonTryAgain": "Erneut versuchen", "ButtonTryAgain": "Erneut versuchen",
"HeaderYouSaid": "Du sagtest....", "HeaderYouSaid": "Sie sagten....",
"MessageWeDidntRecognizeCommand": "Entschuldigung, dieses Kommando konnten wir nicht erkennen.", "MessageWeDidntRecognizeCommand": "Entschuldigung, dieses Kommando konnten wir nicht erkennen.",
"MessageIfYouBlockedVoice": "Wenn du die Sprachsteuerung f\u00fcr die App nicht erlaubt hast, musst du dies vor einem erneuten Versuch \u00e4ndern.", "MessageIfYouBlockedVoice": "Wenn Sie die Sprachsteuerung f\u00fcr die App nicht erlaubt haben so m\u00fcssen Sie dies zuvor \u00e4ndern bevor Sie es erneut probieren.",
"ValueDiscNumber": "Disc {0}", "ValueDiscNumber": "Disc {0}",
"Unrated": "Nicht bewertet", "Unrated": "Nicht bewertet",
"Favorite": "Favorit", "Favorite": "Favorit",
@ -140,9 +140,9 @@
"MarkUnplayed": "Markiere \"als ungesehen\"", "MarkUnplayed": "Markiere \"als ungesehen\"",
"GroupVersions": "Gruppiere Versionen", "GroupVersions": "Gruppiere Versionen",
"PleaseSelectTwoItems": "Bitte w\u00e4hle mindestens zwei Optionen aus.", "PleaseSelectTwoItems": "Bitte w\u00e4hle mindestens zwei Optionen aus.",
"TheSelectedItemsWillBeGrouped": "Die ausgew\u00e4hlten Videos werden in einem virtuellen Element gruppiert. Emby Anwendungen w\u00e4hlen automatisch die beste Version anhand des Ger\u00e4tes und der Netzwerkgeschwindigkeit. Bist du sicher, dass du fortfahren m\u00f6chtest?", "TheSelectedItemsWillBeGrouped": "Die ausgew\u00e4hlten Videos werden in einem virtuellen Element gruppiert. Emby Anwendungen w\u00e4hlen automatisch die beste Version anhand des Ger\u00e4tes und der Netzwerkgeschwindigkeit. Sind Sie sich sicher, dass Sie fortfahren m\u00f6chten?",
"TryMultiSelect": "Versuche Mehrfachauswahl", "TryMultiSelect": "Versuche Mehrfachauswahl",
"TryMultiSelectMessage": "F\u00fcr eine Mehrfachauswahl klicke und halte ein Poster. W\u00e4hle die Eintr\u00e4ge die du bearbeiten m\u00f6chten. Versuch es!", "TryMultiSelectMessage": "F\u00fcr eine Mehrfachauswahl klicken und halten Sie ein Poster. W\u00e4hlen Sie die Eintr\u00e4ge die Sie bearbeiten m\u00f6chten. Versuchen SIe es!",
"HeaderConfirmRecordingCancellation": "Best\u00e4tige Aufzeichnungsabbruch", "HeaderConfirmRecordingCancellation": "Best\u00e4tige Aufzeichnungsabbruch",
"MessageConfirmRecordingCancellation": "Bis du dir sicher, diese Aufzeichnung abzubrechen?", "MessageConfirmRecordingCancellation": "Bis du dir sicher, diese Aufzeichnung abzubrechen?",
"Error": "Fehler", "Error": "Fehler",
@ -153,7 +153,7 @@
"LabelOriginalTitle": "Original Titel:", "LabelOriginalTitle": "Original Titel:",
"LabelSortTitle": "Sortierungs Titel:", "LabelSortTitle": "Sortierungs Titel:",
"LabelDateAdded": "Hinzugef\u00fcgt am:", "LabelDateAdded": "Hinzugef\u00fcgt am:",
"ConfigureDateAdded": "Bestimme in den Bibliotheks-Einstellungen des Emby Server Dashboards, wie das Feld \"Hinzugef\u00fcgt am\" interpretiert werden soll.", "ConfigureDateAdded": "Bestimmen Sie in den Bibliotheks-Einstellungen des Emby Server Dashboards, wie das Feld \"Hinzugef\u00fcgt am\" interpretiert werden soll.",
"LabelStatus": "Status:", "LabelStatus": "Status:",
"LabelArtists": "Interpreten:", "LabelArtists": "Interpreten:",
"LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;", "LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;",
@ -221,7 +221,7 @@
"Continuing": "Fortdauernd", "Continuing": "Fortdauernd",
"Ended": "Beendent", "Ended": "Beendent",
"HeaderEnabledFields": "Aktiviere Felder", "HeaderEnabledFields": "Aktiviere Felder",
"HeaderEnabledFieldsHelp": "W\u00e4hle Felder ab um das \u00c4ndern von Daten zu verhindern.", "HeaderEnabledFieldsHelp": "W\u00e4hlen Sie Felder ab um das \u00c4ndern von Daten zu verhindern.",
"Backdrops": "Hintergr\u00fcnde", "Backdrops": "Hintergr\u00fcnde",
"Images": "Bilder", "Images": "Bilder",
"Keywords": "Stichworte", "Keywords": "Stichworte",
@ -261,14 +261,14 @@
"ValueMusicVideoCount": "{0} Musikvideos", "ValueMusicVideoCount": "{0} Musikvideos",
"ValueMinutes": "{0} Minuten", "ValueMinutes": "{0} Minuten",
"HeaderIdentifyItemHelp": "Gib ein oder mehrere Suchkriterien ein. Entferne Kriterien um die Suchergebnisse zu erweitern.", "HeaderIdentifyItemHelp": "Gib ein oder mehrere Suchkriterien ein. Entferne Kriterien um die Suchergebnisse zu erweitern.",
"PleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe ID an.", "PleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
"MessageItemSaved": "Element gespeichert", "MessageItemSaved": "Element gespeichert",
"SearchResults": "Suchergebnisse", "SearchResults": "Suchergebnisse",
"SyncToOtherDevice": "Mit einem anderen Ger\u00e4t synchronisieren", "SyncToOtherDevice": "Mit einem anderen Ger\u00e4t synchronisieren",
"MakeAvailableOffline": "Offline verf\u00fcgbar machen", "MakeAvailableOffline": "Offline verf\u00fcgbar machen",
"ServerNameIsRestarting": "Emby Server - {0} startet neu.", "ServerNameIsRestarting": "Emby Server - {0} startet neu.",
"ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.", "ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.",
"HeaderDeleteItems": "Objekte l\u00f6schen", "HeaderDeleteItems": "L\u00f6sche Objekte",
"ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und in deiner Medienbibliothek. Bist du wirklich sicher?", "ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und Ihrer Medienbibliothek. Sind Sie sich wirklich sicher?",
"PleaseRestartServerName": "Bitte starte Emby Server - {0} neu." "PleaseRestartServerName": "Bitte starte Emby Server - {0} neu."
} }

View file

@ -14,7 +14,7 @@
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Item limit:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Share",
"Add": "Add", "Add": "Add",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sincronizar con:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Nombre del trabajo de sinc:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte sinc.",
"LabelQuality": "Quality:", "LabelQuality": "Calidad:",
"LearnMore": "Learn more", "LearnMore": "Aprenda m\u00e1s",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Descarga programada",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Tasa de bits (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Perf\u00edl:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sincronizar \u00fanicamente videos no vistos",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente nuevos contenidos",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Por favor seleccione un dispositivo con el que desea sincronizar.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "L\u00edmite de \u00cdtems:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Solamente los videos a\u00fan no vistos ser\u00e1n sincronizados, se eliminar\u00e1n los videos del dispositivo conforme \u00e9stos sean vistos.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Opcional. Establece un l\u00edmite en el n\u00famero de \u00edtems que ser\u00e1n sincronizados.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Los contenidos nuevos agregados a esta carpeta ser\u00e1n sincronizados autom\u00e1ticamente con el dispositivo.",
"ValueSpecialEpisodeName": "Especial - {0}", "ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Compartir", "Share": "Compartir",
"Add": "Agregar", "Add": "Agregar",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Cancelar", "ButtonCancel": "Cancelar",
"ButtonGotIt": "Hecho", "ButtonGotIt": "Hecho",
"ButtonRestart": "Restart", "ButtonRestart": "Reiniciar",
"RecordingCancelled": "Grabaci\u00f3n cancelada.", "RecordingCancelled": "Grabaci\u00f3n cancelada.",
"RecordingScheduled": "Grabaci\u00f3n programada.", "RecordingScheduled": "Grabaci\u00f3n programada.",
"SeriesRecordingScheduled": "Grabaci\u00f3n de series programadas.", "SeriesRecordingScheduled": "Grabaci\u00f3n de series programadas.",
@ -244,7 +244,7 @@
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.", "PackageInstallCompleted": "{0} instalaci\u00f3n completada.",
"PackageInstallFailed": "{0} instalaci\u00f3n fallida.", "PackageInstallFailed": "{0} instalaci\u00f3n fallida.",
"PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.", "PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.",
"SeriesYearToPresent": "{0}-Actualidad", "SeriesYearToPresent": "{0}-Presente",
"ValueOneSong": "1 canci\u00f3n", "ValueOneSong": "1 canci\u00f3n",
"ValueSongCount": "{0} canciones", "ValueSongCount": "{0} canciones",
"ValueOneMovie": "1 pel\u00edcula", "ValueOneMovie": "1 pel\u00edcula",
@ -259,16 +259,16 @@
"ValueAlbumCount": "{0} \u00e1lbumes", "ValueAlbumCount": "{0} \u00e1lbumes",
"ValueOneMusicVideo": "1 video musical", "ValueOneMusicVideo": "1 video musical",
"ValueMusicVideoCount": "{0} videos musicales", "ValueMusicVideoCount": "{0} videos musicales",
"ValueMinutes": "{0} min.", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Introduzca uno o mas criterios de b\u00fasqueda. Elimine criterios para incrementar los resultados de la b\u00fasqueda.", "HeaderIdentifyItemHelp": "Introduzca uno o m\u00e1s criterios de b\u00fasqueda. Elimine criterios para expandir los resultados.",
"PleaseEnterNameOrId": "Por favor introduzca un nombre o un Id. externo.", "PleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.",
"MessageItemSaved": "\u00cdtem guardado.", "MessageItemSaved": "\u00cdtem guardado.",
"SearchResults": "Resultados de la b\u00fasqueda", "SearchResults": "Resultados de la b\u00fasqueda",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sincronizar a otro dispositivo",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Hacer disponible sin conexi\u00f3n",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "El Servidor Emby - {0} se esta reiniciando.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "El Servidor Emby - {0} se esta apagando.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Borrar items",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Al borrar estos items ser\u00e1n eliminados tanto del sistema de archivos como de la librer\u00eda de medios. \u00bfEsta seguro que desea continuar?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Por favor reinicie el Servidor Emby - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sincronizar en:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Nombre del trabajo de sincronizaci\u00f3n:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Parece que no tienes aplicaciones que soporten la sincronizaci\u00f3n.",
"LabelQuality": "Quality:", "LabelQuality": "Calidad:",
"LearnMore": "Learn more", "LearnMore": "Aprende m\u00e1s",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Tasa de bits (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Perfil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sincronizar los v\u00eddeos no vistos s\u00f3lo",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente contenido nuevo",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Por favor selecciona el dispositivo donde quieres sincronizar.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "L\u00edmite de \u00edtems:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "S\u00f3lo se sincronizar\u00e1n los v\u00eddeos no vistos, conforme los vayas viendo se eliminar\u00e1n del dispositivo.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Opcional. Pon un l\u00edmite de cantidad de \u00edtems que se sincronizar\u00e1n.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "El contenido nuevo a\u00f1adido se sincronizar\u00e1 autom\u00e1ticamente en el dispositivo.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Compartir", "Share": "Compartir",
"Add": "A\u00f1adir", "Add": "A\u00f1adir",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Cancelar", "ButtonCancel": "Cancelar",
"ButtonGotIt": "Lo tengo", "ButtonGotIt": "Lo tengo",
"ButtonRestart": "Restart", "ButtonRestart": "Reiniciar",
"RecordingCancelled": "Grabaci\u00f3n cancelada.", "RecordingCancelled": "Grabaci\u00f3n cancelada.",
"RecordingScheduled": "Grabaci\u00f3n programada.", "RecordingScheduled": "Grabaci\u00f3n programada.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,35 +240,35 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Productor", "Producer": "Productor",
"Writer": "Escritor", "Writer": "Escritor",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Instalando {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} instalaci\u00f3n completada.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} instalaci\u00f3n fallida.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Presente",
"ValueOneSong": "1 song", "ValueOneSong": "1 canci\u00f3n",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} canciones",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 pel\u00edcula",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} pel\u00edculas",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} series",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episodio",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episodios",
"ValueOneGame": "1 game", "ValueOneGame": "1 juego",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} juegos",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 \u00e1lbum",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} \u00e1lbumes",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 v\u00eddeo musical",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} v\u00eddeos musicales",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Asigna uno o m\u00e1s criterios de b\u00fasqueda. Quita criterios para aumentar el n\u00famero de resultados de b\u00fasqueda",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
"MessageItemSaved": "Elemento grabado.", "MessageItemSaved": "Elemento grabado.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Borrar \u00edtems",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Al borrar este \u00edtem se borrar\u00e1 del sistema de archivos y de la biblioteca. \u00bfQuieres continuar?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Job de synchronisation cr\u00e9\u00e9.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synchronis\u00e9 avec:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Nom du job de synchronisation:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.",
"LabelQuality": "Quality:", "LabelQuality": "Qualit\u00e9:",
"LearnMore": "Learn more", "LearnMore": "En savoir plus",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9e",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "D\u00e9bit (Mbps) :",
"LabelProfile": "Profile:", "LabelProfile": "Profil :",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synchroniser seulement les vid\u00e9os non lues.",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Synchroniser automatiquement le nouveau contenu",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Veuillez s\u00e9lectionner un p\u00e9riph\u00e9rique avec lequel se synchroniser.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Maximum d'\u00e9l\u00e9ments :",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Seulement les vid\u00e9os non lus seront synchronis\u00e9es et seront supprim\u00e9es du p\u00e9riph\u00e9rique au fur et \u00e0 mesure qu'elles sont lus.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Optionnel : d\u00e9finit le nombre maximum d'\u00e9l\u00e9ments qui seront synchronis\u00e9s.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Les nouveaux contenus ajout\u00e9s \u00e0 cette cat\u00e9gorie seront automatiquement synchronis\u00e9s avec l'appareil.",
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}", "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
"Share": "Partager", "Share": "Partager",
"Add": "Ajouter", "Add": "Ajouter",
@ -93,7 +93,7 @@
"SearchForSubtitles": "Rechercher des sous-titres", "SearchForSubtitles": "Rechercher des sous-titres",
"LabelLanguage": "Langue:", "LabelLanguage": "Langue:",
"Search": "Recherche", "Search": "Recherche",
"NoSubtitleSearchResultsFound": "Aucun appareil trouv\u00e9", "NoSubtitleSearchResultsFound": "Aucun r\u00e9sultat trouv\u00e9.",
"File": "Fichier", "File": "Fichier",
"MessageAreYouSureDeleteSubtitles": "\u00cates-vous s\u00fbr de vouloir supprimer ce fichier de sous-titres ?", "MessageAreYouSureDeleteSubtitles": "\u00cates-vous s\u00fbr de vouloir supprimer ce fichier de sous-titres ?",
"ConfirmDeletion": "Confirmer la suppression", "ConfirmDeletion": "Confirmer la suppression",
@ -247,10 +247,10 @@
"SeriesYearToPresent": "{0}-Pr\u00e9sent", "SeriesYearToPresent": "{0}-Pr\u00e9sent",
"ValueOneSong": "1 chanson", "ValueOneSong": "1 chanson",
"ValueSongCount": "{0} chansons", "ValueSongCount": "{0} chansons",
"ValueOneMovie": "1 film", "ValueOneMovie": "1 Film",
"ValueMovieCount": "{0} films", "ValueMovieCount": "{0} films",
"ValueOneSeries": "1 s\u00e9rie", "ValueOneSeries": "1 S\u00e9rie",
"ValueSeriesCount": "{0} s\u00e9ries", "ValueSeriesCount": "{0} series",
"ValueOneEpisode": "1 \u00e9pisode", "ValueOneEpisode": "1 \u00e9pisode",
"ValueEpisodeCount": "{0} \u00e9pisodes", "ValueEpisodeCount": "{0} \u00e9pisodes",
"ValueOneGame": "1 jeu", "ValueOneGame": "1 jeu",
@ -258,7 +258,7 @@
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albums",
"ValueOneMusicVideo": "1 vid\u00e9o musicale", "ValueOneMusicVideo": "1 vid\u00e9o musicale",
"ValueMusicVideoCount": "{0} vid\u00e9oclips", "ValueMusicVideoCount": "{0} music Videos",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Entrez un ou plusieurs crit\u00e8res de recherche. Retirez des crit\u00e8res pour \u00e9largir les r\u00e9sultats de la recherche.", "HeaderIdentifyItemHelp": "Entrez un ou plusieurs crit\u00e8res de recherche. Retirez des crit\u00e8res pour \u00e9largir les r\u00e9sultats de la recherche.",
"PleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.", "PleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",

View file

@ -3,7 +3,7 @@
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sync to:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"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.",
"LabelQuality": "Quality:", "LabelQuality": "Min\u0151s\u00e9g:",
"LearnMore": "Learn more", "LearnMore": "Learn more",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
@ -11,12 +11,12 @@
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sync unwatched videos only",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Automatically sync new content",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Elemsz\u00e1m limit:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Megoszt\u00e1s",
"Add": "Hozz\u00e1ad", "Add": "Hozz\u00e1ad",
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {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.",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "M\u00e9gsem", "ButtonCancel": "M\u00e9gsem",
"ButtonGotIt": "\u00c9rtettem", "ButtonGotIt": "\u00c9rtettem",
"ButtonRestart": "Restart", "ButtonRestart": "\u00dajraind\u00edt\u00e1s",
"RecordingCancelled": "Recording cancelled.", "RecordingCancelled": "Recording cancelled.",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,15 +240,15 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producer", "Producer": "Producer",
"Writer": "\u00cdr\u00f3", "Writer": "\u00cdr\u00f3",
"InstallingPackage": "Installing {0}", "InstallingPackage": "{0} Telep\u00edt\u00e9se",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} telep\u00edt\u00e9se befejezve.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} telep\u00edt\u00e9se nem siker\u00fclt.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} telep\u00edt\u00e9se megszak\u00edtva.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Napjainkig",
"ValueOneSong": "1 song", "ValueOneSong": "1 song",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} songs",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 movie",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} film",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 series",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} series",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episode",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Attivit\u00e0 di Sincronizz. Creata",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sincronizza su:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Nome Attivit\u00e0 di Sincroniz.:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Sembra che al momento non avete applicazioni che supportano la sincronizzazione.",
"LabelQuality": "Quality:", "LabelQuality": "Qualit\u00e0:",
"LearnMore": "Learn more", "LearnMore": "saperne di pi\u00f9",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profilo:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sincronizza solo i video non visti",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Sincronizza automaticamente nuovi contenuti",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Selezionare un dispositivo per la sincronizzazione",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "limite elementi:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Solo i video non visti saranno sincronizzati, e video saranno rimossi dal dispositivo in cui sono guardato.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno sincronizzati.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nuovi contenuti aggiunto verranno sincronizzati automaticamente al dispositivo.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Share",
"Add": "Aggiungi", "Add": "Aggiungi",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Annulla", "ButtonCancel": "Annulla",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "Riavvia",
"RecordingCancelled": "Registrazione eliminata.", "RecordingCancelled": "Registrazione eliminata.",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,28 +240,28 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Produttore", "Producer": "Produttore",
"Writer": "Scrittore", "Writer": "Scrittore",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installazione di {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} completamento dell'installazione.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} installazione non \u00e8 riuscita.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} installazione annullata.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Presenti",
"ValueOneSong": "1 song", "ValueOneSong": "1 canzone",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} Canzoni",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} film",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} serie",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episodio",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episodi",
"ValueOneGame": "1 game", "ValueOneGame": "1 gioco",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} giochi",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} album",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 video musicale",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} video musicali",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri di aumentare i risultati di ricerca.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Inserisci il nome o id esterno.",
"MessageItemSaved": "Elemento salvato.", "MessageItemSaved": "Elemento salvato.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0436\u0430\u0441\u0430\u043b\u0434\u044b.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "\u041e\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.",
"LabelQuality": "Quality:", "LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:",
"LearnMore": "Learn more", "LearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "\u0416\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d.",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "\u049a\u0430\u0440\u049b\u044b\u043d\u044b (\u041c\u0431\u0438\u0442\/\u0441):",
"LabelProfile": "Profile:", "LabelProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u04af\u043d\u0434-\u0456\u0440\u0443",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u043d\u0434-\u0434\u0456, \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u049b\u04b1\u0440-\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: \u04ae\u043d\u0434-\u0442\u0456\u043d \u0442\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u043d\u044b \u0448\u0435\u0433\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "\u041e\u0441\u044b \u049b\u0430\u043b\u044c\u0430\u0493\u0430 \u0436\u0430\u04a3\u0430\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u0441\u044b \u049b\u04b1\u0440-\u043c\u0435\u043d \u04af\u043d\u0434-\u0434\u0456.",
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}", "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"Add": "\u04ae\u0441\u0442\u0435\u0443", "Add": "\u04ae\u0441\u0442\u0435\u0443",
@ -244,7 +244,7 @@
"PackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.", "PackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.",
"PackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.", "PackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.",
"PackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", "PackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.",
"SeriesYearToPresent": "{0} - \u049b\u0430\u0437\u0456\u0440", "SeriesYearToPresent": "{0} - \u049b\u0430\u0437\u0456\u0440\u0434\u0435",
"ValueOneSong": "1 \u04d9\u0443\u0435\u043d", "ValueOneSong": "1 \u04d9\u0443\u0435\u043d",
"ValueSongCount": "{0} \u04d9\u0443\u0435\u043d", "ValueSongCount": "{0} \u04d9\u0443\u0435\u043d",
"ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c", "ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c",
@ -257,8 +257,8 @@
"ValueGameCount": "{0} \u043e\u0439\u044b\u043d", "ValueGameCount": "{0} \u043e\u0439\u044b\u043d",
"ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c", "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c",
"ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c", "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c",
"ValueOneMusicVideo": "1 \u043c\u0443\u0437. \u0431\u0435\u0439\u043d\u0435", "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435",
"ValueMusicVideoCount": "{0} \u043c\u0443\u0437. \u0431\u0435\u0439\u043d\u0435", "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435",
"ValueMinutes": "{0} \u043c\u0438\u043d", "ValueMinutes": "{0} \u043c\u0438\u043d",
"HeaderIdentifyItemHelp": "\u0406\u0437\u0434\u0435\u0443\u0434\u0456\u04a3 \u0431\u0456\u0440 \u043d\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0448\u0430\u0440\u0442\u044b\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456\u043d \u043a\u04e9\u0431\u0435\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u0448\u0430\u0440\u0442\u0442\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.", "HeaderIdentifyItemHelp": "\u0406\u0437\u0434\u0435\u0443\u0434\u0456\u04a3 \u0431\u0456\u0440 \u043d\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0448\u0430\u0440\u0442\u044b\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456\u043d \u043a\u04e9\u0431\u0435\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u0448\u0430\u0440\u0442\u0442\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
"PleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", "PleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "\ub3d9\uae30\ud654 \uc7a5\uce58:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "\ub3d9\uae30\ud654 \uc791\uc5c5 \uc774\ub984:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "\ud604\uc7ac \ub3d9\uae30\ud654\ub97c \uc9c0\uc6d0\ud558\ub294 \uc571\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.",
"LabelQuality": "Quality:", "LabelQuality": "\ud488\uc9c8:",
"LearnMore": "Learn more", "LearnMore": "\ub354 \uc54c\uc544\ubcf4\uae30",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "\ube44\ud2b8\ub808\uc774\ud2b8 (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "\ud504\ub85c\ud30c\uc77c:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "\uc2dc\uccad\ud558\uc9c0 \uc54a\uc740 \ube44\ub514\uc624\ub9cc \ub3d9\uae30\ud654",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "\uc0c8 \ucf58\ud150\ud2b8 \uc790\ub3d9 \ub3d9\uae30\ud654",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "\ub3d9\uae30\ud654 \ud560 \uc7a5\uce58\ub97c \uc120\ud0dd\ud558\uc138\uc694.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "\ud56d\ubaa9 \uc81c\ud55c:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "\uc2dc\uccad\ud558\uc9c0 \uc54a\uc740 \ube44\ub514\uc624\ub9cc \ub3d9\uae30\ud654\ub418\uba70 \uc2dc\uccad\ud55c \ube44\ub514\uc624\ub294 \uc7a5\uce58\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "\uc120\ud0dd\uc0ac\ud56d. \ub3d9\uae30\ud654 \ud560 \ud56d\ubaa9 \uc218\ub97c \uc81c\ud55c\ud569\ub2c8\ub2e4.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "\uc0c8 \ucf58\ud150\ud2b8\uac00 \uc7a5\uce58\ub85c \ub3d9\uae30\ud654\ub418\uc5b4 \uc790\ub3d9\uc73c\ub85c \ucd94\uac00\ub429\ub2c8\ub2e4.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Share",
"Add": "\ucd94\uac00", "Add": "\ucd94\uac00",
@ -40,7 +40,7 @@
"ButtonOk": "OK", "ButtonOk": "OK",
"ButtonCancel": "\ucde8\uc18c", "ButtonCancel": "\ucde8\uc18c",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "\ub2e4\uc2dc \uc2dc\uc791",
"RecordingCancelled": "\ub179\ud654\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "RecordingCancelled": "\ub179\ud654\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,26 +240,26 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "\ud504\ub85c\ub4c0\uc11c", "Producer": "\ud504\ub85c\ub4c0\uc11c",
"Writer": "\uc791\uac00", "Writer": "\uc791\uac00",
"InstallingPackage": "Installing {0}", "InstallingPackage": "{0} \uc124\uce58 \uc911",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} \uc124\uce58 \uc644\ub8cc.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} \uc124\uce58 \uc2e4\ud328.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} \uc124\uce58 \ucde8\uc18c.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Present",
"ValueOneSong": "1 song", "ValueOneSong": "1 \ub178\ub798",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} \ub178\ub798",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 \uc601\ud654",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} \uc601\ud654",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 \uc2dc\ub9ac\uc988",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} \uc2dc\ub9ac\uc988",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 \uc5d0\ud53c\uc18c\ub4dc",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} \uc5d0\ud53c\uc18c\ub4dc",
"ValueOneGame": "1 game", "ValueOneGame": "1 \uac8c\uc784",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} \uac8c\uc784",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 \uc568\ubc94",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} \uc568\ubc94",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 \ubba4\uc9c1 \ube44\ub514\uc624",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} \ubba4\uc9c1 \ube44\ub514\uc624",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} \ubd84",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Please enter a name or an external Id.",
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Synkroniseringsjobb p\u00e5begynt.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synkroniser til:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Navn p\u00e5 synkroniseringsjobb:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.",
"LabelQuality": "Quality:", "LabelQuality": "Kvalitet:",
"LearnMore": "Learn more", "LearnMore": "L\u00e6re mer",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synkroniser kun usette videoer",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Automatisk synkroniser nytt innhold",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Velg enhet \u00e5 synkronisere til.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Begrenset antall:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Kun usette videoer blir synkronisert, og videoer blir fjernet fra enheten s\u00e5 snart de er sett.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Valgfri. Sett en grense for hvor mange enheter som skal synkroniseres.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nytt innhold blir automatisk synkronisert til enheten.",
"ValueSpecialEpisodeName": "Spesial - {0}", "ValueSpecialEpisodeName": "Spesial - {0}",
"Share": "Del", "Share": "Del",
"Add": "Legg til", "Add": "Legg til",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Avbryt", "ButtonCancel": "Avbryt",
"ButtonGotIt": "Har det", "ButtonGotIt": "Har det",
"ButtonRestart": "Restart", "ButtonRestart": "Omstart",
"RecordingCancelled": "Opptak er Avbrutt.", "RecordingCancelled": "Opptak er Avbrutt.",
"RecordingScheduled": "Opptak planlegger", "RecordingScheduled": "Opptak planlegger",
"SeriesRecordingScheduled": "Serie opptak planlagt.", "SeriesRecordingScheduled": "Serie opptak planlagt.",
@ -93,7 +93,7 @@
"SearchForSubtitles": "S\u00f8k etter undertekster", "SearchForSubtitles": "S\u00f8k etter undertekster",
"LabelLanguage": "Spr\u00e5k:", "LabelLanguage": "Spr\u00e5k:",
"Search": "S\u00f8k", "Search": "S\u00f8k",
"NoSubtitleSearchResultsFound": "Ingen resultater funnet.", "NoSubtitleSearchResultsFound": "Ingen resulterer funnet.",
"File": "Fil", "File": "Fil",
"MessageAreYouSureDeleteSubtitles": "Er du sikker p\u00e5 at du vil slette denne undertekst filen?", "MessageAreYouSureDeleteSubtitles": "Er du sikker p\u00e5 at du vil slette denne undertekst filen?",
"ConfirmDeletion": "Bekreft Kansellering", "ConfirmDeletion": "Bekreft Kansellering",
@ -240,35 +240,35 @@
"GuestStar": "Gjeste skuespiller", "GuestStar": "Gjeste skuespiller",
"Producer": "Produsent", "Producer": "Produsent",
"Writer": "Manus", "Writer": "Manus",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installerer {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} installering fullf\u00f8rt.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} installasjon feilet.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} installasjon avbrutt.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-N\u00e5",
"ValueOneSong": "1 song", "ValueOneSong": "1 sang",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} sanger",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} filmer",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} serier",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episode",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episoder",
"ValueOneGame": "1 game", "ValueOneGame": "1 spill",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} spill",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} album",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 musikkvideo",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} musikkvideoer",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} minutter",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Oppgi ett eller flere s\u00f8ke kriterier. Fjern kriterie for \u00e5 \u00f8ke s\u00f8ke resultater.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
"MessageItemSaved": "Element lagret.", "MessageItemSaved": "Element lagret.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Slett elementer",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Slette disse elementene vil slette dem fra b\u00e5de filsystemet og mediebiblioteket . Er du sikker p\u00e5 at du vil fortsette?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Synchronisatie taak gemaakt.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synchroniseer naar:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Naam synchroniseer taak:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.",
"LabelQuality": "Quality:", "LabelQuality": "Kwaliteit",
"LearnMore": "Learn more", "LearnMore": "Meer informatie",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "profiel:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synchroniseer alleen onbekeken video's",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Nieuwe inhoud automatisch synchroniseren",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Selecteer een apparaat om mee te synchroniseren.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Item limiet:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Alleen onbekeken video's zullen worden gesynchroniseerd en van het apparaat worden verwijderd als ze bekeken zijn.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Optioneel. Een limiet stellen aan het aantal items die zullen worden gesynchroniseerd.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nieuwe inhoud zal automatisch met het apparaat gesynchroniseerd worden.",
"ValueSpecialEpisodeName": "Speciaal - {0}", "ValueSpecialEpisodeName": "Speciaal - {0}",
"Share": "Delen", "Share": "Delen",
"Add": "Toevoegen", "Add": "Toevoegen",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Annuleren", "ButtonCancel": "Annuleren",
"ButtonGotIt": "Begrepen", "ButtonGotIt": "Begrepen",
"ButtonRestart": "Restart", "ButtonRestart": "Herstart",
"RecordingCancelled": "Opname geannuleerd.", "RecordingCancelled": "Opname geannuleerd.",
"RecordingScheduled": "Opname schema", "RecordingScheduled": "Opname schema",
"SeriesRecordingScheduled": "Serieopname gepland.", "SeriesRecordingScheduled": "Serieopname gepland.",
@ -244,17 +244,17 @@
"PackageInstallCompleted": "{0} installatie voltooid.", "PackageInstallCompleted": "{0} installatie voltooid.",
"PackageInstallFailed": "{0} installatie is mislukt.", "PackageInstallFailed": "{0} installatie is mislukt.",
"PackageInstallCancelled": "{0} installatie geannuleerd.", "PackageInstallCancelled": "{0} installatie geannuleerd.",
"SeriesYearToPresent": "{0}-Aanwezig", "SeriesYearToPresent": "{0}-Heden",
"ValueOneSong": "1 nummer", "ValueOneSong": "1 titel",
"ValueSongCount": "{0} nummers", "ValueSongCount": "{0} titels",
"ValueOneMovie": "1 film", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} films", "ValueMovieCount": "{0} films",
"ValueOneSeries": "1 serie", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} series",
"ValueOneEpisode": "1 aflevering", "ValueOneEpisode": "1 aflevering",
"ValueEpisodeCount": "{0} afleveringen", "ValueEpisodeCount": "{0} afleveringen",
"ValueOneGame": "1 spel", "ValueOneGame": "1 game",
"ValueGameCount": "{0} spellen", "ValueGameCount": "{0} games",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albums",
"ValueOneMusicVideo": "1 muziek video", "ValueOneMusicVideo": "1 muziek video",
@ -268,7 +268,7 @@
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Verwijder items",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Het verwijderen van deze items verwijdert ze van het bestandssysteem en uit uw bibliotheek. Weet u zeker dat u verder wilt gaan?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Utworzono zadanie synchronizacji.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synchronizuj do:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Nazwa zadania synchronizacji",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Wygl\u0105da na to, \u017ce nie masz \u017cadnych aplikacji wspieraj\u0105cych synchronizacj\u0119.",
"LabelQuality": "Quality:", "LabelQuality": "Jako\u015b\u0107:",
"LearnMore": "Learn more", "LearnMore": "Dowiedz si\u0119 wi\u0119cej",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Przep\u0142ywno\u015b\u0107 (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synchronizuj tylko nieobejrzane filmy",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Automatycznie synchronizuj now\u0105 zawarto\u015b\u0107",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Wybierz urz\u0105dzenie do synchronizacji",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Limit pozycji:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Tylko nieobejrzane filmy zostan\u0105 zsynchronizowane a obejrzane b\u0119d\u0105 sukcesywnie usuwane z urz\u0105dzenia.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nowododana zawarto\u015b\u0107 zostanie automatycznie zsynchronizowana z urz\u0105dzeniem.",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share", "Share": "Share",
"Add": "Dodaj", "Add": "Dodaj",
@ -29,13 +29,13 @@
"ReleaseYearValue": "Release year: {0}", "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": "Ndz.",
"OptionMondayShort": "Mon", "OptionMondayShort": "Pon.",
"OptionTuesdayShort": "Tue", "OptionTuesdayShort": "Wt.",
"OptionWednesdayShort": "Wed", "OptionWednesdayShort": "\u015ar.",
"OptionThursdayShort": "Thu", "OptionThursdayShort": "Czw.",
"OptionFridayShort": "Fri", "OptionFridayShort": "Pi\u0105.",
"OptionSaturdayShort": "Sat", "OptionSaturdayShort": "Sob.",
"HeaderSelectDate": "Wybierz Dat\u0119", "HeaderSelectDate": "Wybierz Dat\u0119",
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Anuluj", "ButtonCancel": "Anuluj",
@ -75,7 +75,7 @@
"ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?", "ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
"Refresh": "Od\u015bwie\u017c", "Refresh": "Od\u015bwie\u017c",
"RefreshQueued": "Refresh queued.", "RefreshQueued": "Refresh queued.",
"AddToCollection": "Add to collection", "AddToCollection": "Dodaj do kolekcji",
"HeaderAddToCollection": "Dodaj do Kolekcji", "HeaderAddToCollection": "Dodaj do Kolekcji",
"NewCollection": "Nowa Kolekcja", "NewCollection": "Nowa Kolekcja",
"LabelCollection": "Collection:", "LabelCollection": "Collection:",
@ -240,35 +240,35 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "Producent", "Producer": "Producent",
"Writer": "Scenarzysta", "Writer": "Scenarzysta",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Instalowanie {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "Instalacja {0} zako\u0144czona.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "Instalacja {0} nieudana.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "Instalacja {0} anulowana.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Obecnych",
"ValueOneSong": "1 song", "ValueOneSong": "1 utw\u00f3r",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} utwory",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} filmy",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serial",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} seriale",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 odcinek",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} odcinki",
"ValueOneGame": "1 game", "ValueOneGame": "1 gra",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} gry",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albumy",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 teledysk",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} teledyski",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Wpisz kryteria wyszukiwania. Zmniejszaj\u0105c ilo\u015b\u0107 kryteri\u00f3w zwi\u0119kszysz ilo\u015b\u0107 wynik\u00f3w.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.",
"MessageItemSaved": "Obiekt zapisany.", "MessageItemSaved": "Obiekt zapisany.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Usu\u0144 pliki",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Tarefas de sincroniza\u00e7\u00e3o criadas.", "SyncJobCreated": "Tarefa de sincroniza\u00e7\u00e3o criada.",
"LabelSyncTo": "Sincronizar para:", "LabelSyncTo": "Sincronizar para:",
"LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:", "LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:",
"LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui atualmente apps que suportam sincroniza\u00e7\u00e3o.", "LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.",
"LabelQuality": "Qualidade:", "LabelQuality": "Qualidade:",
"LearnMore": "Saiba mais", "LearnMore": "Saiba mais",
"DownloadScheduled": "Download agendado", "DownloadScheduled": "Download agendado",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Taxa (Mbps):",
"LabelProfile": "Perfil:", "LabelProfile": "Perfil:",
"SyncUnwatchedVideosOnly": "Sincronizar apenas v\u00eddeos n\u00e3o assistidos", "SyncUnwatchedVideosOnly": "Sincronizar apenas v\u00eddeos n\u00e3o assistidos",
"AutomaticallySyncNewContent": "Sincronizar novo conte\u00fado automaticamente", "AutomaticallySyncNewContent": "Sincronizar novo conte\u00fado automaticamente",
"PleaseSelectDeviceToSyncTo": "Por favor selecione um dispositivo para sincronizar.", "PleaseSelectDeviceToSyncTo": "Por favor, selecione um dispositivo para sincronizar.",
"LabelItemLimit": "Limites de Itens:", "LabelItemLimit": "Limite de itens:",
"SyncUnwatchedVideosOnlyHelp": "Apenas v\u00eddeos n\u00e3o assistidos ser\u00e3o sincronizados, e v\u00eddeos ser\u00e3o removidos do dispositivo \u00e0 medida que forem assistidos.", "SyncUnwatchedVideosOnlyHelp": "Apenas v\u00eddeos n\u00e3o assistidos ser\u00e3o sincronizados, e os v\u00eddeos ser\u00e3o removidos do dispositivo assim que forem assistidos.",
"LabelItemLimitHelp": "Opcional. Defina um limite para o n\u00famero de itens a serem sincronizados.", "LabelItemLimitHelp": "Opcional. Defina o n\u00famero limite de itens que ser\u00e3o sincronizados.",
"AutomaticallySyncNewContentHelp": "Novo conte\u00fado adicionado \u00e0 esta pasta ser\u00e1 automaticamente sincronizado para o dispositivo.", "AutomaticallySyncNewContentHelp": "Novo conte\u00fado adicionado a esta pasta ser\u00e1 automaticamente sincronizado com o dispositivo.",
"ValueSpecialEpisodeName": "Especial - {0}", "ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Compartilhar", "Share": "Compartilhar",
"Add": "Adicionar", "Add": "Adicionar",
@ -241,9 +241,9 @@
"Producer": "Produtor", "Producer": "Produtor",
"Writer": "Escritor", "Writer": "Escritor",
"InstallingPackage": "Instalando {0}", "InstallingPackage": "Instalando {0}",
"PackageInstallCompleted": "Instala\u00e7\u00e3o completa de {0}", "PackageInstallCompleted": "Instala\u00e7\u00e3o de {0} conclu\u00edda.",
"PackageInstallFailed": "Falha na instala\u00e7\u00e3o de {0}.", "PackageInstallFailed": "Instala\u00e7\u00e3o de {0} falhou.",
"PackageInstallCancelled": "Instala\u00e7\u00e3o cancelada de {0}.", "PackageInstallCancelled": "Instala\u00e7\u00e3o de {0} cancelada.",
"SeriesYearToPresent": "{0}-Presente", "SeriesYearToPresent": "{0}-Presente",
"ValueOneSong": "1 m\u00fasica", "ValueOneSong": "1 m\u00fasica",
"ValueSongCount": "{0} m\u00fasicas", "ValueSongCount": "{0} m\u00fasicas",
@ -257,18 +257,18 @@
"ValueGameCount": "{0} jogos", "ValueGameCount": "{0} jogos",
"ValueOneAlbum": "1 \u00e1lbum", "ValueOneAlbum": "1 \u00e1lbum",
"ValueAlbumCount": "{0} \u00e1lbuns", "ValueAlbumCount": "{0} \u00e1lbuns",
"ValueOneMusicVideo": "1 v\u00eddeoclipe", "ValueOneMusicVideo": "1 v\u00eddeo musical",
"ValueMusicVideoCount": "{0} v\u00eddeoclipes", "ValueMusicVideoCount": "{0} v\u00eddeos musicais",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Digite um ou mais crit\u00e9rios de busca. Remova um crit\u00e9rio para aumentar os resultados da busca.", "HeaderIdentifyItemHelp": "Digite um ou mais crit\u00e9rios de busca. Exclua o crit\u00e9rio para aumentar os resultados da busca.",
"PleaseEnterNameOrId": "Por favor, digite um nome ou um id externo.", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
"MessageItemSaved": "Item salvo.", "MessageItemSaved": "Item salvo.",
"SearchResults": "Resultados da Busca", "SearchResults": "Resultados da Busca",
"SyncToOtherDevice": "Sincronizar para outro dispositivo", "SyncToOtherDevice": "Sincronizar para outro dispositivo",
"MakeAvailableOffline": "Disponibilizar offline", "MakeAvailableOffline": "Disponibilizar Offline",
"ServerNameIsRestarting": "Servidor Emby - {0} est\u00e1 reiniciando.", "ServerNameIsRestarting": "Servidor Emby - {0} est\u00e1 reiniciando.",
"ServerNameIsShuttingDown": "Servidor Emby - {0} est\u00e1 desligando.", "ServerNameIsShuttingDown": "Servidor Emby - {0} est\u00e1 desligando.",
"HeaderDeleteItems": "Apagar Itens", "HeaderDeleteItems": "Excluir Itens",
"ConfirmDeleteItems": "Apagar estes itens ir\u00e1 remov\u00ea-los do sistema de arquivos e da biblioteca de m\u00eddia. Tem certeza que deseja continuar?", "ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca de m\u00eddias. Deseja realmente continuar?",
"PleaseRestartServerName": "Por favor reinicie o Servidor Emby - {0}." "PleaseRestartServerName": "Por favor reinicie o Servidor Emby - {0}."
} }

View file

@ -2,9 +2,9 @@
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Sync job created.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sync to:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.",
"LabelQuality": "Quality:", "LabelQuality": "Quality:",
"LearnMore": "Learn more", "LearnMore": "Saiba mais",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profile:",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Cancelar", "ButtonCancel": "Cancelar",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "Reiniciar",
"RecordingCancelled": "Grava\u00e7\u00e3o cancelada.", "RecordingCancelled": "Grava\u00e7\u00e3o cancelada.",
"RecordingScheduled": "Grava\u00e7\u00e3o agendada.", "RecordingScheduled": "Grava\u00e7\u00e3o agendada.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -260,15 +260,15 @@
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 music video",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} music videos",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Digite um ou mais crit\u00e9rios de busca. Exclua o crit\u00e9rio para aumentar os resultados da busca.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
"MessageItemSaved": "Item salvo.", "MessageItemSaved": "Item salvo.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Remover Itens",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca multim\u00e9dia. Deseja realmente continuar?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043e.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e, \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e.",
"LabelQuality": "Quality:", "LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:",
"LearnMore": "Learn more", "LearnMore": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "\u041f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c, \u041c\u0431\u0438\u0442\/\u0441:",
"LabelProfile": "Profile:", "LabelProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440-\u0432\u0430.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041f\u0440\u0435\u0434\u0435\u043b \u0447\u0438\u0441\u043b\u0430 \u0441\u0438\u043d\u0445\u0440-\u0435\u043c\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443, \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.",
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
@ -40,9 +40,9 @@
"ButtonOk": "\u041e\u041a", "ButtonOk": "\u041e\u041a",
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", "ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
"ButtonGotIt": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e", "ButtonGotIt": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e",
"ButtonRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", "ButtonRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a",
"RecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.", "RecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
"RecordingScheduled": "\u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430.", "RecordingScheduled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e.",
"SeriesRecordingScheduled": "\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430.", "SeriesRecordingScheduled": "\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430.",
"HeaderNewRecording": "\u041d\u043e\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c", "HeaderNewRecording": "\u041d\u043e\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c",
"Sunday": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "Sunday": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
@ -257,8 +257,8 @@
"ValueGameCount": "{0} \u0438\u0433\u0440(\u044b)", "ValueGameCount": "{0} \u0438\u0433\u0440(\u044b)",
"ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c", "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c",
"ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c(\u0430\/\u043e\u0432)", "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c(\u0430\/\u043e\u0432)",
"ValueOneMusicVideo": "1 \u043c\u0443\u0437-\u043e\u0435 \u0432\u0438\u0434\u0435\u043e", "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e",
"ValueMusicVideoCount": "{0} \u043c\u0443\u0437-\u044b\u0445 \u0432\u0438\u0434\u0435\u043e", "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0432\u0438\u0434\u0435\u043e",
"ValueMinutes": "{0} \u043c\u0438\u043d", "ValueMinutes": "{0} \u043c\u0438\u043d",
"HeaderIdentifyItemHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043e\u0434\u043d\u043e \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0439 \u043f\u043e\u0438\u0441\u043a\u0430. \u0418\u0437\u044b\u043c\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0440\u0430\u0441\u0442\u0438\u0442\u044c \u043d\u0430\u0439\u0434\u0435\u043d\u043d\u044b\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b.", "HeaderIdentifyItemHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043e\u0434\u043d\u043e \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0439 \u043f\u043e\u0438\u0441\u043a\u0430. \u0418\u0437\u044b\u043c\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0440\u0430\u0441\u0442\u0438\u0442\u044c \u043d\u0430\u0439\u0434\u0435\u043d\u043d\u044b\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b.",
"PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.", "PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
@ -269,6 +269,6 @@
"ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.", "ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.",
"ServerNameIsShuttingDown": "Emby Server - {0} \u0432\u044b\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f.", "ServerNameIsShuttingDown": "Emby Server - {0} \u0432\u044b\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f.",
"HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432", "HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432",
"ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d\u0438 \u0443\u0434\u0430\u043b\u044f\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", "ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
"PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}." "PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}."
} }

View file

@ -3,13 +3,13 @@
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Sync to:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"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.",
"LabelQuality": "Quality:", "LabelQuality": "Kvaliteta:",
"LearnMore": "Learn more", "LearnMore": "Learn more",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profile:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Sync unwatched videos only",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Samodejno sinhroniziraj nove vsebine",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Item limit:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",

View file

@ -1,20 +1,20 @@
{ {
"SyncJobCreated": "Sync job created.", "SyncJobCreated": "Synkroniseringsjobb har skapats.",
"LabelSyncTo": "Sync to:", "LabelSyncTo": "Synka till:",
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Synkjobb:",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "Det verkar som att du inte har n\u00e5gra appar som st\u00f6djer synkronisering.",
"LabelQuality": "Quality:", "LabelQuality": "Kvalitet",
"LearnMore": "Learn more", "LearnMore": "L\u00e4s mer",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Nedladdningsschema",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Hastighet (Mbps)",
"LabelProfile": "Profile:", "LabelProfile": "Profil:",
"SyncUnwatchedVideosOnly": "Sync unwatched videos only", "SyncUnwatchedVideosOnly": "Synkronisera endast osedda videos",
"AutomaticallySyncNewContent": "Automatically sync new content", "AutomaticallySyncNewContent": "Synkronisera automatiskt nytt inneh\u00e5ll",
"PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", "PleaseSelectDeviceToSyncTo": "V\u00e4lj en enhet att synkronisera till.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Max antal objekt:",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "SyncUnwatchedVideosOnlyHelp": "Endast osedda videos kommer att synkroniseras, och videos kommer att tas bort fr\u00e5n enheten n\u00e4r de har tittats p\u00e5.",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", "LabelItemLimitHelp": "Valfritt. St\u00e4ll in antalet objekt som ska synkroniseras.",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "AutomaticallySyncNewContentHelp": "Nytt inneh\u00e5ll kommer automatiskt att synkroniseras till den h\u00e4r enheten.",
"ValueSpecialEpisodeName": "Specialavsnitt - {0}", "ValueSpecialEpisodeName": "Specialavsnitt - {0}",
"Share": "Dela", "Share": "Dela",
"Add": "L\u00e4gg till", "Add": "L\u00e4gg till",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "Avbryt", "ButtonCancel": "Avbryt",
"ButtonGotIt": "F\u00f6rst\u00e5tt", "ButtonGotIt": "F\u00f6rst\u00e5tt",
"ButtonRestart": "Restart", "ButtonRestart": "Starta om",
"RecordingCancelled": "Inspelning avbruten.", "RecordingCancelled": "Inspelning avbruten.",
"RecordingScheduled": "Inspelning schemalagd", "RecordingScheduled": "Inspelning schemalagd",
"SeriesRecordingScheduled": "Serieinspelning schemalagd.", "SeriesRecordingScheduled": "Serieinspelning schemalagd.",
@ -61,7 +61,7 @@
"RecordOnlyNewEpisodes": "Spela bara in nya avsnitt", "RecordOnlyNewEpisodes": "Spela bara in nya avsnitt",
"HeaderBecomeProjectSupporter": "Skaffa Emby Premium", "HeaderBecomeProjectSupporter": "Skaffa Emby Premium",
"HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod", "HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
"MessageActiveSubscriptionRequiredSeriesRecordings": "En aktiv Emby Premium prenumeration kr\u00e4vs f\u00f6r att skapa automatiska serieinspelningar.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Ett aktivt Emby Premium-medlemskap kr\u00e4vs f\u00f6r att skapa automatiska TV-serieinspelningar.",
"OptionConvertRecordingsToStreamingFormat": "Konvertera inspelningar automatiskt till ett str\u00f6mningsv\u00e4nligt format", "OptionConvertRecordingsToStreamingFormat": "Konvertera inspelningar automatiskt till ett str\u00f6mningsv\u00e4nligt format",
"OptionConvertRecordingsToStreamingFormatHelp": "Inspelningar omkodas till MP4 f\u00f6r problemfri str\u00f6mning till dina enheter.", "OptionConvertRecordingsToStreamingFormatHelp": "Inspelningar omkodas till MP4 f\u00f6r problemfri str\u00f6mning till dina enheter.",
"FeatureRequiresEmbyPremiere": "Den h\u00e4r funktionen kr\u00e4ver en aktiv Emby Premium prenumeration.", "FeatureRequiresEmbyPremiere": "Den h\u00e4r funktionen kr\u00e4ver en aktiv Emby Premium prenumeration.",
@ -72,7 +72,7 @@
"Advanced": "Avancerat", "Advanced": "Avancerat",
"Delete": "Ta bort", "Delete": "Ta bort",
"HeaderDeleteItem": "Radera objekt", "HeaderDeleteItem": "Radera objekt",
"ConfirmDeleteItem": "Genom att ta bort det h\u00e4r objektet s\u00e5 tas det bort b\u00e5de fr\u00e5n disk och ifr\u00e5n ditt mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?", "ConfirmDeleteItem": "Tar du bort det h\u00e4r objeketet tas det ocks\u00e5 bort fr\u00e5n bpde ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
"Refresh": "Uppdatera", "Refresh": "Uppdatera",
"RefreshQueued": "Uppdatering k\u00f6ad.", "RefreshQueued": "Uppdatering k\u00f6ad.",
"AddToCollection": "L\u00e4gg till samling", "AddToCollection": "L\u00e4gg till samling",
@ -221,7 +221,7 @@
"Continuing": "P\u00e5g\u00e5ende", "Continuing": "P\u00e5g\u00e5ende",
"Ended": "Avslutad", "Ended": "Avslutad",
"HeaderEnabledFields": "Aktiverade f\u00e4lt", "HeaderEnabledFields": "Aktiverade f\u00e4lt",
"HeaderEnabledFieldsHelp": "Avmarkera ett f\u00e4lt f\u00f6r att l\u00e5sa det och f\u00f6r att f\u00f6rhindra datan fr\u00e5n att \u00e4ndras.", "HeaderEnabledFieldsHelp": "Bocka ur ett f\u00e4lt f\u00f6r att l\u00e5sa det och undvik att dess data \u00e4ndras.",
"Backdrops": "Fondbilder", "Backdrops": "Fondbilder",
"Images": "Bilder", "Images": "Bilder",
"Keywords": "Nyckelord", "Keywords": "Nyckelord",
@ -244,31 +244,31 @@
"PackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.", "PackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.",
"PackageInstallFailed": "Installationen av {0} misslyckades.", "PackageInstallFailed": "Installationen av {0} misslyckades.",
"PackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.", "PackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0} -nu",
"ValueOneSong": "1 song", "ValueOneSong": "1 l\u00e5t",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} l\u00e5tar",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 film",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} filmer",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 serie",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} serier",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 avsnitt",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} avsnitt",
"ValueOneGame": "1 game", "ValueOneGame": "1 spel",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} spel",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} album",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 musikvideo",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} musikvideor",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Ange ett eller flera s\u00f6kkriterier. Ta bort kriterier f\u00f6r att f\u00e5 fler tr\u00e4ffar.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Ange ett namn eller externt id.",
"MessageItemSaved": "Objektet har sparats.", "MessageItemSaved": "Objektet har sparats.",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "G\u00f6r tillg\u00e4nglig offline",
"ServerNameIsRestarting": "Emby Server - {0} is restarting.", "ServerNameIsRestarting": "Emby Server - {0} is restarting.",
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
"HeaderDeleteItems": "Delete Items", "HeaderDeleteItems": "Ta bort objekt",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Tar du bort dessa objekt tas dom ocks\u00e5 bort ifr\u00e5n b\u00e5de ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
"PleaseRestartServerName": "Please restart Emby Server - {0}." "PleaseRestartServerName": "Please restart Emby Server - {0}."
} }

View file

@ -245,21 +245,21 @@
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} installation failed.",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} installation cancelled.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Present",
"ValueOneSong": "1 song", "ValueOneSong": "1 \u043f\u0456\u0441\u043d\u044f",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} \u043f\u0456\u0441\u0435\u043d\u044c",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 \u0444\u0456\u043b\u044c\u043c",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} \u0444\u0456\u043b\u044c\u043c\u0456\u0432",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 \u0441\u0435\u0440\u0456\u044f",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} \u0441\u0435\u0440\u0456\u0439",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 \u0435\u043f\u0456\u0437\u043e\u0434",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} \u0435\u043f\u0456\u0437\u043e\u0434\u0456\u0432",
"ValueOneGame": "1 game", "ValueOneGame": "1 \u0433\u0440\u0430",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} \u0456\u0433\u0440",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c\u0456\u0432",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u0438\u0447\u043d\u0438\u0439 \u043a\u043b\u0456\u043f",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u0438\u0447\u043d\u0438\u0445 \u043a\u043b\u0456\u043f\u0456\u0432",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} \u0445\u0432\u0438\u043b\u0438\u043d",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Please enter a name or an external Id.",
"MessageItemSaved": "Item saved.", "MessageItemSaved": "Item saved.",

View file

@ -4,7 +4,7 @@
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"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.",
"LabelQuality": "Quality:", "LabelQuality": "Quality:",
"LearnMore": "Learn more", "LearnMore": "\u4e86\u89e3\u66f4\u591a",
"DownloadScheduled": "Download scheduled", "DownloadScheduled": "Download scheduled",
"LabelBitrateMbps": "Bitrate (Mbps):", "LabelBitrateMbps": "Bitrate (Mbps):",
"LabelProfile": "Profile:", "LabelProfile": "Profile:",
@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "\u53d6\u6d88", "ButtonCancel": "\u53d6\u6d88",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "\u91cd\u542f",
"RecordingCancelled": "\u5f55\u5236\u5df2\u53d6\u6d88\u3002", "RecordingCancelled": "\u5f55\u5236\u5df2\u53d6\u6d88\u3002",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -240,13 +240,13 @@
"GuestStar": "Guest star", "GuestStar": "Guest star",
"Producer": "\u5236\u7247\u4eba", "Producer": "\u5236\u7247\u4eba",
"Writer": "\u7f16\u5267", "Writer": "\u7f16\u5267",
"InstallingPackage": "Installing {0}", "InstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} \u5b89\u88c5\u5b8c\u6210\u3002",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} \u5b89\u88c5\u5931\u8d25\u3002",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} \u5b89\u88c5\u88ab\u53d6\u6d88\u3002",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Present",
"ValueOneSong": "1 song", "ValueOneSong": "1\u9996\u6b4c",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} \u9996\u6b4c",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 movie",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} movies",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 series",
@ -255,13 +255,13 @@
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} episodes",
"ValueOneGame": "1 game", "ValueOneGame": "1 game",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} games",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1\u5f20\u4e13\u8f91",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} \u5f20\u4e13\u8f91",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1\u4e2a\u97f3\u4e50\u89c6\u9891",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} \u4e2a\u97f3\u4e50\u89c6\u9891",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "\u8f93\u5165\u4e00\u4e2a\u6216\u591a\u4e2a\u641c\u7d22\u6761\u4ef6\u3002\u5220\u9664\u6761\u4ef6\u53ef\u5f97\u5230\u66f4\u591a\u641c\u7d22\u7ed3\u679c\u3002",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002", "MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
"SearchResults": "Search Results", "SearchResults": "Search Results",
"SyncToOtherDevice": "Sync to other device", "SyncToOtherDevice": "Sync to other device",

View file

@ -40,7 +40,7 @@
"ButtonOk": "Ok", "ButtonOk": "Ok",
"ButtonCancel": "\u53d6\u6d88", "ButtonCancel": "\u53d6\u6d88",
"ButtonGotIt": "Got It", "ButtonGotIt": "Got It",
"ButtonRestart": "Restart", "ButtonRestart": "\u91cd\u65b0\u555f\u52d5",
"RecordingCancelled": "Recording cancelled.", "RecordingCancelled": "Recording cancelled.",
"RecordingScheduled": "Recording scheduled.", "RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.",
@ -246,19 +246,19 @@
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} installation cancelled.",
"SeriesYearToPresent": "{0}-Present", "SeriesYearToPresent": "{0}-Present",
"ValueOneSong": "1 song", "ValueOneSong": "1 song",
"ValueSongCount": "{0} songs", "ValueSongCount": "{0} \u9996\u6b4c",
"ValueOneMovie": "1 movie", "ValueOneMovie": "1 movie",
"ValueMovieCount": "{0} movies", "ValueMovieCount": "{0} movies",
"ValueOneSeries": "1 series", "ValueOneSeries": "1 \u5287\u96c6",
"ValueSeriesCount": "{0} series", "ValueSeriesCount": "{0} \u5287\u96c6",
"ValueOneEpisode": "1 episode", "ValueOneEpisode": "1 episode",
"ValueEpisodeCount": "{0} episodes", "ValueEpisodeCount": "{0} \u5287\u96c6",
"ValueOneGame": "1 game", "ValueOneGame": "1 game",
"ValueGameCount": "{0} games", "ValueGameCount": "{0} \u904a\u6232",
"ValueOneAlbum": "1 album", "ValueOneAlbum": "1 album",
"ValueAlbumCount": "{0} albums", "ValueAlbumCount": "{0} albums",
"ValueOneMusicVideo": "1 music video", "ValueOneMusicVideo": "1\u500b MV",
"ValueMusicVideoCount": "{0} music videos", "ValueMusicVideoCount": "{0} \u500b MV",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
"PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseEnterNameOrId": "Please enter a name or an external Id.",

View file

@ -32,14 +32,14 @@
"iron-component-page": "polymerElements/iron-component-page#^1.1.6" "iron-component-page": "polymerElements/iron-component-page#^1.1.6"
}, },
"private": true, "private": true,
"homepage": "https://github.com/Polymer/polymer", "homepage": "https://github.com/polymer/polymer",
"_release": "1.6.1", "_release": "1.6.1",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "v1.6.1", "tag": "v1.6.1",
"commit": "1f197d9d7874b1e5808b2a5c26f34446a7d912fc" "commit": "1f197d9d7874b1e5808b2a5c26f34446a7d912fc"
}, },
"_source": "git://github.com/Polymer/polymer.git", "_source": "git://github.com/polymer/polymer.git",
"_target": "^1.2.0", "_target": "^1.1.0",
"_originalSource": "Polymer/polymer" "_originalSource": "polymer/polymer"
} }

View file

@ -1,4 +1,4 @@
<div id="dlnaProfilePage" data-role="page" class="page type-interior dlnaPage withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Dlna%20profiles" data-require="jQuery,jqmlistview,emby-collapse,jqmpopup,scripts/dlnaprofile,jqmcheckbox,emby-button"> <div id="dlnaProfilePage" data-role="page" class="page type-interior dlnaPage withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Dlna%20profiles" data-require="jQuery,emby-collapse,jqmpopup,scripts/dlnaprofile,jqmcheckbox,emby-button">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
@ -17,20 +17,17 @@
<br /> <br />
<div class="tabContent tabInfo"> <div class="tabContent tabInfo">
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="txtName">${LabelName}</label>
<label for="txtName">${LabelName}</label> <input type="text" id="txtName" required="required" />
<input type="text" id="txtName" required="required" /> </div>
</li> <br />
</ul> <div>
<label for="selectUser">${LabelUserLibrary}</label>
<ul data-role="listview" class="ulForm"> <select id="selectUser" data-mini="true"></select>
<li> <div class="fieldDescription">${LabelUserLibraryHelp}</div>
<label for="selectUser">${LabelUserLibrary}</label> </div>
<select id="selectUser" data-mini="true"></select> <br />
<div class="fieldDescription">${LabelUserLibraryHelp}</div>
</li>
</ul>
<fieldset data-role="controlgroup"> <fieldset data-role="controlgroup">
<legend>${LabelSupportedMediaTypes}</legend> <legend>${LabelSupportedMediaTypes}</legend>
@ -51,53 +48,60 @@
<br /> <br />
<p>${HeaderIdentificationCriteriaHelp}</p> <p>${HeaderIdentificationCriteriaHelp}</p>
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="txtIdFriendlyName">${LabelFriendlyName}</label>
<label for="txtIdFriendlyName">${LabelFriendlyName}</label> <input type="text" id="txtIdFriendlyName" />
<input type="text" id="txtIdFriendlyName" /> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> </div>
</li> <br />
<li> <div>
<label for="txtIdManufacturer">${LabelManufacturer}</label> <label for="txtIdManufacturer">${LabelManufacturer}</label>
<input type="text" id="txtIdManufacturer" /> <input type="text" id="txtIdManufacturer" />
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
</li> </div>
<li> <br />
<label for="txtIdManufacturerUrl">${LabelManufacturerUrl}</label> <div>
<input type="text" id="txtIdManufacturerUrl" /> <label for="txtIdManufacturerUrl">${LabelManufacturerUrl}</label>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <input type="text" id="txtIdManufacturerUrl" />
</li> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
<li> </div>
<label for="txtIdModelName">${LabelModelName}</label> <br />
<input type="text" id="txtIdModelName" /> <div>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <label for="txtIdModelName">${LabelModelName}</label>
</li> <input type="text" id="txtIdModelName" />
<li> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
<label for="txtIdModelNumber">${LabelModelNumber}</label> </div>
<input type="text" id="txtIdModelNumber" /> <br />
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <div>
</li> <label for="txtIdModelNumber">${LabelModelNumber}</label>
<li> <input type="text" id="txtIdModelNumber" />
<label for="txtIdModelDesription">${LabelModelDescription}</label> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
<input type="text" id="txtIdModelDesription" /> </div>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <br />
</li> <div>
<li> <label for="txtIdModelDesription">${LabelModelDescription}</label>
<label for="txtIdModelUrl">${LabelModelUrl}</label> <input type="text" id="txtIdModelDesription" />
<input type="text" id="txtIdModelUrl" /> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> </div>
</li> <br />
<li> <div>
<label for="txtIdSerialNumber">${LabelSerialNumber}</label> <label for="txtIdModelUrl">${LabelModelUrl}</label>
<input type="text" id="txtIdSerialNumber" /> <input type="text" id="txtIdModelUrl" />
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
</li> </div>
<li> <br />
<label for="txtIdDeviceDescription">${LabelDeviceDescription}</label> <div>
<input type="text" id="txtIdDeviceDescription" /> <label for="txtIdSerialNumber">${LabelSerialNumber}</label>
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div> <input type="text" id="txtIdSerialNumber" />
</li> <div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
</ul> </div>
<br />
<div>
<label for="txtIdDeviceDescription">${LabelDeviceDescription}</label>
<input type="text" id="txtIdDeviceDescription" />
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
</div>
<br />
<div> <div>
<h2 style="vertical-align:middle;display:inline-block;">${HeaderHttpHeaders}</h2> <h2 style="vertical-align:middle;display:inline-block;">${HeaderHttpHeaders}</h2>
@ -113,84 +117,87 @@
<div is="emby-collapse" title="${HeaderDisplaySettings}"> <div is="emby-collapse" title="${HeaderDisplaySettings}">
<div class="collapseContent"> <div class="collapseContent">
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="chkRequiresPlainFolders">${OptionPlainStorageFolders}</label>
<label for="chkRequiresPlainFolders">${OptionPlainStorageFolders}</label> <input type="checkbox" id="chkRequiresPlainFolders" data-mini="true" />
<input type="checkbox" id="chkRequiresPlainFolders" data-mini="true" /> <div class="fieldDescription">${OptionPlainStorageFoldersHelp}</div>
<div class="fieldDescription">${OptionPlainStorageFoldersHelp}</div> </div>
</li> <br />
<li> <div>
<label for="chkRequiresPlainVideoItems">${OptionPlainVideoItems}</label> <label for="chkRequiresPlainVideoItems">${OptionPlainVideoItems}</label>
<input type="checkbox" id="chkRequiresPlainVideoItems" data-mini="true" /> <input type="checkbox" id="chkRequiresPlainVideoItems" data-mini="true" />
<div class="fieldDescription">${OptionPlainVideoItemsHelp}</div> <div class="fieldDescription">${OptionPlainVideoItemsHelp}</div>
</li> </div>
</ul>
</div> </div>
</div> </div>
<div is="emby-collapse" title="${HeaderImageSettings}"> <div is="emby-collapse" title="${HeaderImageSettings}">
<div class="collapseContent"> <div class="collapseContent">
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="chkEnableAlbumArtInDidl">${LabelEmbedAlbumArtDidl}</label>
<label for="chkEnableAlbumArtInDidl">${LabelEmbedAlbumArtDidl}</label> <input type="checkbox" id="chkEnableAlbumArtInDidl" data-mini="true" />
<input type="checkbox" id="chkEnableAlbumArtInDidl" data-mini="true" /> <div class="fieldDescription">${LabelEmbedAlbumArtDidlHelp}</div>
<div class="fieldDescription">${LabelEmbedAlbumArtDidlHelp}</div> </div>
</li> <br />
<li> <div>
<label for="chkEnableSingleImageLimit">${LabelEnableSingleImageInDidlLimit}</label> <label for="chkEnableSingleImageLimit">${LabelEnableSingleImageInDidlLimit}</label>
<input type="checkbox" id="chkEnableSingleImageLimit" data-mini="true" /> <input type="checkbox" id="chkEnableSingleImageLimit" data-mini="true" />
<div class="fieldDescription">${LabelEnableSingleImageInDidlLimitHelp}</div> <div class="fieldDescription">${LabelEnableSingleImageInDidlLimitHelp}</div>
</li> </div>
<li> <br />
<label for="txtAlbumArtPn">${LabelAlbumArtPN}</label> <div>
<input type="text" id="txtAlbumArtPn" /> <label for="txtAlbumArtPn">${LabelAlbumArtPN}</label>
<div class="fieldDescription">${LabelAlbumArtHelp}</div> <input type="text" id="txtAlbumArtPn" />
</li> <div class="fieldDescription">${LabelAlbumArtHelp}</div>
<li> </div>
<label for="txtAlbumArtMaxWidth">${LabelAlbumArtMaxWidth}</label> <br />
<input type="number" id="txtAlbumArtMaxWidth" pattern="[0-9]*" min="1" /> <div>
<div class="fieldDescription">${LabelAlbumArtMaxWidthHelp}</div> <label for="txtAlbumArtMaxWidth">${LabelAlbumArtMaxWidth}</label>
</li> <input type="number" id="txtAlbumArtMaxWidth" pattern="[0-9]*" min="1" />
<li> <div class="fieldDescription">${LabelAlbumArtMaxWidthHelp}</div>
<label for="txtAlbumArtMaxHeight">${LabelAlbumArtMaxHeight}</label> </div>
<input type="number" id="txtAlbumArtMaxHeight" pattern="[0-9]*" min="1" /> <br />
<div class="fieldDescription">${LabelAlbumArtMaxHeightHelp}</div> <div>
</li> <label for="txtAlbumArtMaxHeight">${LabelAlbumArtMaxHeight}</label>
<li> <input type="number" id="txtAlbumArtMaxHeight" pattern="[0-9]*" min="1" />
<label for="txtIconMaxWidth">${LabelIconMaxWidth}</label> <div class="fieldDescription">${LabelAlbumArtMaxHeightHelp}</div>
<input type="number" id="txtIconMaxWidth" pattern="[0-9]*" min="1" /> </div>
<div class="fieldDescription">${LabelIconMaxWidthHelp}</div> <br />
</li> <div>
<li> <label for="txtIconMaxWidth">${LabelIconMaxWidth}</label>
<label for="txtIconMaxHeight">${LabelIconMaxHeight}</label> <input type="number" id="txtIconMaxWidth" pattern="[0-9]*" min="1" />
<input type="number" id="txtIconMaxHeight" pattern="[0-9]*" min="1" /> <div class="fieldDescription">${LabelIconMaxWidthHelp}</div>
<div class="fieldDescription">${LabelIconMaxHeightHelp}</div> </div>
</li> <br />
</ul> <div>
<label for="txtIconMaxHeight">${LabelIconMaxHeight}</label>
<input type="number" id="txtIconMaxHeight" pattern="[0-9]*" min="1" />
<div class="fieldDescription">${LabelIconMaxHeightHelp}</div>
</div>
</div> </div>
</div> </div>
<div is="emby-collapse" title="${HeaderPlaybackSettings}"> <div is="emby-collapse" title="${HeaderPlaybackSettings}">
<div class="collapseContent"> <div class="collapseContent">
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="txtMaxAllowedBitrate">${LabelMaxStreamingBitrate}</label>
<label for="txtMaxAllowedBitrate">${LabelMaxStreamingBitrate}</label> <input type="number" id="txtMaxAllowedBitrate" pattern="[0-9]*" min="1" />
<input type="number" id="txtMaxAllowedBitrate" pattern="[0-9]*" min="1" /> <div class="fieldDescription">${LabelMaxStreamingBitrateHelp}</div>
<div class="fieldDescription">${LabelMaxStreamingBitrateHelp}</div> </div>
</li> <br />
<li> <div>
<label for="txtMusicStreamingTranscodingBitrate">${LabelMusicStreamingTranscodingBitrate}</label> <label for="txtMusicStreamingTranscodingBitrate">${LabelMusicStreamingTranscodingBitrate}</label>
<input type="number" id="txtMusicStreamingTranscodingBitrate" pattern="[0-9]*" min="1" /> <input type="number" id="txtMusicStreamingTranscodingBitrate" pattern="[0-9]*" min="1" />
<div class="fieldDescription">${LabelMusicStreamingTranscodingBitrateHelp}</div> <div class="fieldDescription">${LabelMusicStreamingTranscodingBitrateHelp}</div>
</li> </div>
<li style="display:none;"> <br />
<label for="chkIgnoreTranscodeByteRangeRequests">${OptionIgnoreTranscodeByteRangeRequests}</label> <div style="display:none;">
<input type="checkbox" id="chkIgnoreTranscodeByteRangeRequests" data-mini="true" /> <label for="chkIgnoreTranscodeByteRangeRequests">${OptionIgnoreTranscodeByteRangeRequests}</label>
<div class="fieldDescription">${OptionIgnoreTranscodeByteRangeRequestsHelp}</div> <input type="checkbox" id="chkIgnoreTranscodeByteRangeRequests" data-mini="true" />
</li> <div class="fieldDescription">${OptionIgnoreTranscodeByteRangeRequestsHelp}</div>
</ul> </div>
</div> </div>
</div> </div>
@ -198,60 +205,69 @@
<div class="collapseContent"> <div class="collapseContent">
<p>${HeaderProfileServerSettingsHelp}</p> <p>${HeaderProfileServerSettingsHelp}</p>
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="txtInfoFriendlyName">${LabelFriendlyName}</label>
<label for="txtInfoFriendlyName">${LabelFriendlyName}</label> <input type="text" id="txtInfoFriendlyName" />
<input type="text" id="txtInfoFriendlyName" /> </div>
</li> <br />
<li> <div>
<label for="txtInfoManufacturer">${LabelManufacturer}</label> <label for="txtInfoManufacturer">${LabelManufacturer}</label>
<input type="text" id="txtInfoManufacturer" /> <input type="text" id="txtInfoManufacturer" />
</li> </div>
<li> <br />
<label for="txtInfoManufacturerUrl">${LabelManufacturerUrl}</label> <div>
<input type="text" id="txtInfoManufacturerUrl" /> <label for="txtInfoManufacturerUrl">${LabelManufacturerUrl}</label>
</li> <input type="text" id="txtInfoManufacturerUrl" />
<li> </div>
<label for="txtInfoModelName">${LabelModelName}</label> <br />
<input type="text" id="txtInfoModelName" /> <div>
</li> <label for="txtInfoModelName">${LabelModelName}</label>
<li> <input type="text" id="txtInfoModelName" />
<label for="txtInfoModelNumber">${LabelModelNumber}</label> </div>
<input type="text" id="txtInfoModelNumber" /> <br />
</li> <div>
<li> <label for="txtInfoModelNumber">${LabelModelNumber}</label>
<label for="txtInfoModelDesription">${LabelModelDescription}</label> <input type="text" id="txtInfoModelNumber" />
<input type="text" id="txtInfoModelDesription" /> </div>
</li> <br />
<li> <div>
<label for="txtInfoModelUrl">${LabelModelUrl}</label> <label for="txtInfoModelDesription">${LabelModelDescription}</label>
<input type="text" id="txtInfoModelUrl" /> <input type="text" id="txtInfoModelDesription" />
</li> </div>
<li> <br />
<label for="txtInfoSerialNumber">${LabelSerialNumber}</label> <div>
<input type="text" id="txtInfoSerialNumber" /> <label for="txtInfoModelUrl">${LabelModelUrl}</label>
</li> <input type="text" id="txtInfoModelUrl" />
<li> </div>
<label for="txtProtocolInfo">${LabelProtocolInfo}</label> <br />
<input type="text" id="txtProtocolInfo" /> <div>
<div class="fieldDescription">${LabelProtocolInfoHelp}</div> <label for="txtInfoSerialNumber">${LabelSerialNumber}</label>
</li> <input type="text" id="txtInfoSerialNumber" />
<li> </div>
<label for="txtXDlnaCap">${LabelXDlnaCap}</label> <br />
<input type="text" id="txtXDlnaCap" /> <div>
<div class="fieldDescription">${LabelXDlnaCapHelp}</div> <label for="txtProtocolInfo">${LabelProtocolInfo}</label>
</li> <input type="text" id="txtProtocolInfo" />
<li> <div class="fieldDescription">${LabelProtocolInfoHelp}</div>
<label for="txtXDlnaDoc">${LabelXDlnaDoc}</label> </div>
<input type="text" id="txtXDlnaDoc" /> <br />
<div class="fieldDescription">${LabelXDlnaDocHelp}</div> <div>
</li> <label for="txtXDlnaCap">${LabelXDlnaCap}</label>
<li> <input type="text" id="txtXDlnaCap" />
<label for="txtSonyAggregationFlags">${LabelSonyAggregationFlags}</label> <div class="fieldDescription">${LabelXDlnaCapHelp}</div>
<input type="text" id="txtSonyAggregationFlags" /> </div>
<div class="fieldDescription">${LabelSonyAggregationFlagsHelp}</div> <br />
</li> <div>
</ul> <label for="txtXDlnaDoc">${LabelXDlnaDoc}</label>
<input type="text" id="txtXDlnaDoc" />
<div class="fieldDescription">${LabelXDlnaDocHelp}</div>
</div>
<br />
<div>
<label for="txtSonyAggregationFlags">${LabelSonyAggregationFlags}</label>
<input type="text" id="txtSonyAggregationFlags" />
<div class="fieldDescription">${LabelSonyAggregationFlagsHelp}</div>
</div>
</div> </div>
</div> </div>

View file

@ -1,4 +1,4 @@
<div id="metadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage withTabs" data-require="jqmlistview,scripts/metadataconfigurationpage,paper-checkbox,emby-button"> <div id="metadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage withTabs" data-require="scripts/metadataconfigurationpage,emby-checkbox,emby-button,emby-select">
<div data-role="content"> <div data-role="content">
@ -6,32 +6,37 @@
<form class="metadataConfigurationForm"> <form class="metadataConfigurationForm">
<ul data-role="listview" class="ulForm"> <div class="checkboxContainer checkboxContainer-withDescription">
<li> <label>
<paper-checkbox id="chkEnableInternetProviders">${LabelDownloadInternetMetadata}</paper-checkbox> <input is="emby-checkbox" type="checkbox" id="chkEnableInternetProviders" />
<div class="fieldDescription paperCheckboxFieldDescription">${LabelDownloadInternetMetadataHelp}</div> <span>${LabelDownloadInternetMetadata}</span>
</li> </label>
<li> <div class="fieldDescription checkboxFieldDescription">${LabelDownloadInternetMetadataHelp}</div>
<paper-checkbox id="chkSaveLocal">${LabelSaveLocalMetadata}</paper-checkbox> </div>
<div class="fieldDescription paperCheckboxFieldDescription">${LabelSaveLocalMetadataHelp}</div> <div class="checkboxContainer checkboxContainer-withDescription">
</li> <label>
<li> <input is="emby-checkbox" type="checkbox" id="chkSaveLocal" />
<paper-checkbox id="chkDownloadImagesInAdvance">${OptionDownloadImagesInAdvance}</paper-checkbox> <span>${LabelSaveLocalMetadata}</span>
<div class="fieldDescription paperCheckboxFieldDescription">${OptionDownloadImagesInAdvanceHelp}</div> </label>
<br /> <div class="fieldDescription checkboxFieldDescription">${LabelSaveLocalMetadataHelp}</div>
</li> </div>
<li> <div class="checkboxContainer checkboxContainer-withDescription">
<label for="selectLanguage" class="selectLabel">${LabelMetadataDownloadLanguage}</label> <label>
<select name="selectLanguage" id="selectLanguage" data-mini="true" required="required"></select> <input is="emby-checkbox" type="checkbox" id="chkDownloadImagesInAdvance" />
</li> <span>${OptionDownloadImagesInAdvance}</span>
<li> </label>
<label for="selectCountry" class="selectLabel">${LabelCountry}</label> <div class="fieldDescription checkboxFieldDescription">${OptionDownloadImagesInAdvanceHelp}</div>
<select name="selectCountry" id="selectCountry" data-mini="true" required="required"></select> </div>
</li> <div class="selectContainer">
<li> <select is="emby-select" id="selectLanguage" label="${LabelMetadataDownloadLanguage}" required="required"></select>
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button> </div>
</li> <div class="selectContainer">
</ul> <select is="emby-select" id="selectCountry" label="${LabelCountry}" required="required"></select>
</div>
<br />
<div>
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
</div>
</form> </form>
</div> </div>

View file

@ -1,4 +1,4 @@
<div id="metadataNfoPage" data-role="page" class="page type-interior metadataConfigurationPage withTabs" data-require="jqmlistview,scripts/metadatanfo,paper-checkbox,emby-button"> <div id="metadataNfoPage" data-role="page" class="page type-interior metadataConfigurationPage withTabs" data-require="scripts/metadatanfo,emby-checkbox,emby-button,emby-select">
<div data-role="content"> <div data-role="content">
@ -7,44 +7,42 @@
<p>${HeaderKodiMetadataHelp}</p> <p>${HeaderKodiMetadataHelp}</p>
<br /> <br />
<ul class="ulForm" data-role="listview"> <div class="selectContainer">
<select is="emby-select" name="selectUser" id="selectUser" label="${LabelKodiMetadataUser}"></select>
<div class="fieldDescription">${LabelKodiMetadataUserHelp}</div>
</div>
<li> <div class="selectContainer">
<label for="selectUser" class="selectLabel">${LabelKodiMetadataUser}</label> <select is="emby-select" name="selectReleaseDateFormat" id="selectReleaseDateFormat" label="${LabelKodiMetadataDateFormat}">
<select name="selectUser" id="selectUser" data-mini="true"></select> <option value="yyyy-MM-dd">yyyy-MM-dd</option>
<div class="fieldDescription">${LabelKodiMetadataUserHelp}</div> </select>
</li> <div class="fieldDescription">${LabelKodiMetadataDateFormatHelp}</div>
</div>
<li> <div class="checkboxContainer checkboxContainer-withDescription">
<label for="selectReleaseDateFormat" class="selectLabel">${LabelKodiMetadataDateFormat}</label> <label>
<select name="selectReleaseDateFormat" id="selectReleaseDateFormat" data-mini="true"> <input type="checkbox" is="emby-checkbox" id="chkSaveImagePaths" />
<option value="yyyy-MM-dd">yyyy-MM-dd</option> <span>${LabelKodiMetadataSaveImagePaths}</span>
</select> </label>
<div class="fieldDescription">${LabelKodiMetadataDateFormatHelp}</div> <div class="fieldDescription checkboxFieldDescription">${LabelKodiMetadataSaveImagePathsHelp}</div>
</li> </div>
<li> <div class="checkboxContainer checkboxContainer-withDescription">
<br /> <label>
<paper-checkbox id="chkSaveImagePaths">${LabelKodiMetadataSaveImagePaths}</paper-checkbox> <input type="checkbox" is="emby-checkbox" id="chkEnablePathSubstitution" />
<div class="fieldDescription paperCheckboxFieldDescription">${LabelKodiMetadataSaveImagePathsHelp}</div> <span>${LabelKodiMetadataEnablePathSubstitution}</span>
</li> </label>
<li> <div class="fieldDescription checkboxFieldDescription">
<paper-checkbox id="chkEnablePathSubstitution">${LabelKodiMetadataEnablePathSubstitution}</paper-checkbox> <div>${LabelKodiMetadataEnablePathSubstitutionHelp}</div>
<div class="fieldDescription paperCheckboxFieldDescription"> <div style="margin-top: .5em;"><a href="librarypathmapping.html">${LabelKodiMetadataEnablePathSubstitutionHelp2}</a></div>
<div>${LabelKodiMetadataEnablePathSubstitutionHelp}</div> </div>
<div style="margin-top: .5em;"><a href="librarypathmapping.html">${LabelKodiMetadataEnablePathSubstitutionHelp2}</a></div> </div>
</div> <div class="checkboxContainer checkboxContainer-withDescription">
</li> <label>
<li> <input type="checkbox" is="emby-checkbox" id="chkEnableExtraThumbs" />
<paper-checkbox id="chkEnableExtraThumbs">${LabelKodiMetadataEnableExtraThumbs}</paper-checkbox> <span>${LabelKodiMetadataEnableExtraThumbs}</span>
<div class="fieldDescription paperCheckboxFieldDescription">${LabelKodiMetadataEnableExtraThumbsHelp}</div> </label>
</li> <div class="fieldDescription checkboxFieldDescription">${LabelKodiMetadataEnableExtraThumbsHelp}</div>
</ul> </div>
<br /> <div><button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button></div>
<ul data-role="listview" class="ulForm">
<li>
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
</li>
</ul>
</form> </form>
</div> </div>

View file

@ -1,4 +1,4 @@
<div id="playbackConfigurationPage" data-role="page" class="page type-interior playbackConfigurationPage withTabs" data-require="jqmlistview,scripts/playbackconfiguration,emby-input,emby-button"> <div id="playbackConfigurationPage" data-role="page" class="page type-interior playbackConfigurationPage withTabs" data-require="scripts/playbackconfiguration,emby-input,emby-button">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
@ -25,12 +25,7 @@
<br /> <br />
<ul data-role="listview" class="ulForm"> <div><button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button></div>
<li>
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
</li>
</ul>
</form> </form>
</div> </div>
</div> </div>

View file

@ -1,4 +1,4 @@
define(['jQuery'], function ($) { define(['jQuery', 'fnchecked'], function ($) {
function load(page, config, allCultures, allCountries) { function load(page, config, allCultures, allCountries) {
if (!config || !allCultures || !allCountries) { if (!config || !allCultures || !allCountries) {

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u062e\u0631\u0648\u062c", "LabelExit": "\u062e\u0631\u0648\u062c",
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", "LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628", "LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u0412\u044b\u0445\u0430\u0434", "LabelExit": "\u0412\u044b\u0445\u0430\u0434",
"LabelVisitCommunity": "\u041d\u0430\u0432\u0435\u0434\u0432\u0430\u043d\u043d\u0435 \u0441\u0443\u043f\u043e\u043b\u043a\u0456", "LabelVisitCommunity": "\u041d\u0430\u0432\u0435\u0434\u0432\u0430\u043d\u043d\u0435 \u0441\u0443\u043f\u043e\u043b\u043a\u0456",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u0418\u0437\u0445\u043e\u0434", "LabelExit": "\u0418\u0437\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Sortir", "LabelExit": "Sortir",
"LabelVisitCommunity": "Visita la Comunitat", "LabelVisitCommunity": "Visita la Comunitat",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Zav\u0159\u00edt", "LabelExit": "Zav\u0159\u00edt",
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu", "LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Afslut", "LabelExit": "Afslut",
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab", "LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max. Bitrate Audio-Datei:", "LabelMaxAudioFileBitrate": "Max. Bitrate Audio-Datei:",
"LabelMaxAudioFileBitrateHelp": "Audio-Dateien mit einer h\u00f6heren Bitrate werden durch den Emby-server konvertiert. W\u00e4hle f\u00fcr eine bessere Qualit\u00e4t einen h\u00f6heren Wert aus, um Speicherplatz zu sparen einen niedrigeren.", "LabelMaxAudioFileBitrateHelp": "Audio-Dateien mit einer h\u00f6heren Bitrate werden durch den Emby-server konvertiert. W\u00e4hle f\u00fcr eine bessere Qualit\u00e4t einen h\u00f6heren Wert aus, um Speicherplatz zu sparen einen niedrigeren.",
"LabelVaapiDevice": "VAAPI Ger\u00e4t:",
"LabelVaapiDeviceHelp": "Das ist der Render-Node der f\u00fcr die Hardwarebeschleunigung genutzt wird. F\u00fcr Dual-Grafikkarten-Systeme macht es Sinn :1 oder einen anderen Wert zu setzen.",
"LabelExit": "Beenden", "LabelExit": "Beenden",
"LabelVisitCommunity": "Besuche die Community", "LabelVisitCommunity": "Besuche die Community",
"LabelGithub": "Github", "LabelGithub": "Github",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2", "LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Exit", "LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,16 +1,11 @@
{ {
"LabelExit": "Exit", "LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard", "LabelStandard": "Standard",
"LabelApiDocumentation": "Api Documentation", "LabelApiDocumentation": "Api Documentation",
"LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library", "LabelBrowseLibrary": "Browse Library",
"LabelConfigureServer": "Configure Emby", "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server", "LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous", "LabelPrevious": "Previous",
"LabelFinish": "Finish", "LabelFinish": "Finish",
"LabelNext": "Next", "LabelNext": "Next",
@ -29,7 +24,6 @@
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish</b> to view the <b>Server Dashboard</b>.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish</b> to view the <b>Server Dashboard</b>.",
"LabelConfigureSettings": "Configure settings", "LabelConfigureSettings": "Configure settings",
"LabelEnableVideoImageExtraction": "Enable video image extraction", "LabelEnableVideoImageExtraction": "Enable video image extraction",
"VideoImageExtractionHelp": "For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.",
"LabelEnableChapterImageExtractionForMovies": "Extract chapter image extraction for Movies", "LabelEnableChapterImageExtractionForMovies": "Extract chapter image extraction for Movies",
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", "LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping", "LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
@ -65,7 +59,6 @@
"CategorySync": "Sync", "CategorySync": "Sync",
"TabPlaylist": "Playlist", "TabPlaylist": "Playlist",
"HeaderEasyPinCode": "Easy Pin Code", "HeaderEasyPinCode": "Easy Pin Code",
"HeaderGrownupsOnly": "Grown-ups Only!",
"HeaderInstalledServices": "Installed Services", "HeaderInstalledServices": "Installed Services",
"HeaderAvailableServices": "Available Services", "HeaderAvailableServices": "Available Services",
"MessageNoServicesInstalled": "No services are currently installed.", "MessageNoServicesInstalled": "No services are currently installed.",
@ -100,7 +93,6 @@
"HeaderSetupLibrary": "Setup your media libraries", "HeaderSetupLibrary": "Setup your media libraries",
"ButtonAddMediaFolder": "Add media folder", "ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:", "LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:", "LabelCountry": "Country:",
"LabelLanguage": "Language:", "LabelLanguage": "Language:",
"LabelTimeLimitHours": "Time limit (hours):", "LabelTimeLimitHours": "Time limit (hours):",
@ -279,10 +271,8 @@
"OptionMissingImdbId": "Missing IMDb Id", "OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id", "OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview", "OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File/Metadata Years Mismatched",
"TabGeneral": "General", "TabGeneral": "General",
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Emby Premiere Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Get Emby Premiere", "TabBecomeSupporter": "Get Emby Premiere",
@ -369,15 +359,12 @@
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", "ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:", "LabelMetadataDownloadLanguage": "Preferred download language:",
"LabelImageSavingConvention": "Image saving convention:",
"LabelImageSavingConventionHelp": "Emby recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.",
"ButtonSignIn": "Sign In", "ButtonSignIn": "Sign In",
"TitleSignIn": "Sign In", "TitleSignIn": "Sign In",
"HeaderPleaseSignIn": "Please sign in", "HeaderPleaseSignIn": "Please sign in",
"LabelUser": "User:", "LabelUser": "User:",
"LabelPassword": "Password:", "LabelPassword": "Password:",
"ButtonManualLogin": "Manual Login", "ButtonManualLogin": "Manual Login",
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide", "TabGuide": "Guide",
"TabChannels": "Channels", "TabChannels": "Channels",
"TabCollections": "Collections", "TabCollections": "Collections",
@ -389,9 +376,7 @@
"TabMyLibrary": "My Library", "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording", "ButtonCancelRecording": "Cancel Recording",
"LabelPrePaddingMinutes": "Pre-padding minutes:", "LabelPrePaddingMinutes": "Pre-padding minutes:",
"OptionPrePaddingRequired": "Pre-padding is required in order to record.",
"LabelPostPaddingMinutes": "Post-padding minutes:", "LabelPostPaddingMinutes": "Post-padding minutes:",
"OptionPostPaddingRequired": "Post-padding is required in order to record.",
"HeaderWhatsOnTV": "What's On", "HeaderWhatsOnTV": "What's On",
"TabStatus": "Status", "TabStatus": "Status",
"TabSettings": "Settings", "TabSettings": "Settings",
@ -418,8 +403,6 @@
"LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderServices": "Services", "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
"LabelCustomizeOptionsPerMediaType": "Customize for media type:", "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb", "OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu", "OptionDownloadMenuImage": "Menu",
@ -452,7 +435,6 @@
"OptionWakeFromSleep": "Wake from sleep", "OptionWakeFromSleep": "Wake from sleep",
"LabelEveryXMinutes": "Every:", "LabelEveryXMinutes": "Every:",
"HeaderTvTuners": "Tuners", "HeaderTvTuners": "Tuners",
"HeaderGallery": "Gallery",
"HeaderLatestGames": "Latest Games", "HeaderLatestGames": "Latest Games",
"HeaderRecentlyPlayedGames": "Recently Played Games", "HeaderRecentlyPlayedGames": "Recently Played Games",
"TabGameSystems": "Game Systems", "TabGameSystems": "Game Systems",
@ -496,15 +478,6 @@
"OptionEpisodeSortName": "Episode Sort Name", "OptionEpisodeSortName": "Episode Sort Name",
"OptionSeriesSortName": "Series Name", "OptionSeriesSortName": "Series Name",
"OptionTvdbRating": "Tvdb Rating", "OptionTvdbRating": "Tvdb Rating",
"OptionAutomaticTranscodingHelp": "The server will decide quality and speed",
"OptionHighSpeedTranscodingHelp": "Lower quality, but faster encoding",
"OptionHighQualityTranscodingHelp": "Higher quality, but slower encoding",
"OptionMaxQualityTranscodingHelp": "Best quality with slower encoding and high CPU usage",
"OptionHighSpeedTranscoding": "Higher speed",
"OptionHighQualityTranscoding": "Higher quality",
"OptionMaxQualityTranscoding": "Max quality",
"OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging",
"OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.",
"EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.",
"HeaderAddTitles": "Add Titles", "HeaderAddTitles": "Add Titles",
"LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayTo": "Enable DLNA Play To",
@ -525,7 +498,6 @@
"LinkCommunity": "Community", "LinkCommunity": "Community",
"LinkGithub": "Github", "LinkGithub": "Github",
"LinkApi": "Api", "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:", "LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
"LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguage": "Preferred display language:",
@ -546,7 +518,6 @@
"LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.", "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
"LabelHttpsPort": "Local https port number:", "LabelHttpsPort": "Local https port number:",
"LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External domain:", "LabelExternalDDNS": "External domain:",
@ -572,7 +543,6 @@
"LabelCompleted": "Completed", "LabelCompleted": "Completed",
"LabelFailed": "Failed", "LabelFailed": "Failed",
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number:", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number:", "LabelEpisodeNumber": "Episode number:",
@ -582,7 +552,6 @@
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
@ -610,7 +579,6 @@
"OptionMove": "Move", "OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder", "LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News", "HeaderLatestNews": "Latest News",
"HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks", "HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices", "HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations", "HeaderPendingInstallations": "Pending Installations",
@ -731,8 +699,6 @@
"LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.",
"HeaderResponseProfile": "Response Profile", "HeaderResponseProfile": "Response Profile",
"LabelType": "Type:", "LabelType": "Type:",
"LabelPersonRole": "Role:",
"LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:", "LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:", "LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:", "LabelProfileAudioCodecs": "Audio codecs:",
@ -752,7 +718,6 @@
"OptionPlainVideoItems": "Display all videos as plain video items", "OptionPlainVideoItems": "Display all videos as plain video items",
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:", "LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
"HeaderIdentification": "Identification", "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play", "TabDirectPlay": "Direct Play",
"TabContainers": "Containers", "TabContainers": "Containers",
@ -778,8 +743,6 @@
"LabelMaxStreamingBitrate": "Max streaming bitrate:", "LabelMaxStreamingBitrate": "Max streaming bitrate:",
"LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
"LabelMaxChromecastBitrate": "Max Chromecast bitrate:", "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
"LabelMaxStaticBitrate": "Max sync bitrate:",
"LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelMusicStaticBitrate": "Music sync bitrate:", "LabelMusicStaticBitrate": "Music sync bitrate:",
"LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
"LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
@ -822,7 +785,6 @@
"LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles", "TabSubtitles": "Subtitles",
"TabChapters": "Chapters", "TabChapters": "Chapters",
"HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:", "LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:", "LabelOpenSubtitlesPassword": "Open Subtitles password:",
"LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
@ -865,7 +827,6 @@
"OptionYes": "Yes", "OptionYes": "Yes",
"OptionNo": "No", "OptionNo": "No",
"HeaderOptions": "Options", "HeaderOptions": "Options",
"HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:", "LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection3": "Home page section 3:",
@ -895,8 +856,6 @@
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available", "OptionBestAvailableStreamQuality": "Best available",
"LabelEnableChannelContentDownloadingFor": "Enable channel content downloading for:",
"LabelEnableChannelContentDownloadingForHelp": "Some channels support downloading content prior to viewing. Enable this in low bandwidth enviornments to download channel content during off hours. Content is downloaded as part of the channel download scheduled task.",
"LabelChannelDownloadPath": "Channel content download path:", "LabelChannelDownloadPath": "Channel content download path:",
"LabelChannelDownloadPathHelp": "Specify a custom download path if desired. Leave empty to download to an internal program data folder.", "LabelChannelDownloadPathHelp": "Specify a custom download path if desired. Leave empty to download to an internal program data folder.",
"LabelChannelDownloadAge": "Delete content after: (days)", "LabelChannelDownloadAge": "Delete content after: (days)",
@ -1065,7 +1024,6 @@
"OptionReportBooks": "Books", "OptionReportBooks": "Books",
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMore": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
@ -1123,8 +1081,6 @@
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
"HeaderPersonInfo": "Person Info", "HeaderPersonInfo": "Person Info",
"HeaderConfirmDeletion": "Confirm Deletion", "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"LabelAlbumArtist": "Album artist:", "LabelAlbumArtist": "Album artist:",
"LabelAlbumArtists": "Album artists:", "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:", "LabelAlbum": "Album:",
@ -1134,7 +1090,6 @@
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
"LabelCriticRatingSummary": "Critic rating summary:", "LabelCriticRatingSummary": "Critic rating summary:",
"LabelAwardSummary": "Award summary:", "LabelAwardSummary": "Award summary:",
"LabelWebsite": "Website:",
"LabelTagline": "Tagline:", "LabelTagline": "Tagline:",
"LabelOverview": "Overview:", "LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:", "LabelShortOverview": "Short overview:",
@ -1173,9 +1128,6 @@
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1210,8 +1162,6 @@
"LabelExternalPlayers": "External players:", "LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
"LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
"LabelEnableItemPreviews": "Enable item previews",
"LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"HeaderSubtitleProfile": "Subtitle Profile", "HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles", "HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@ -1241,7 +1191,6 @@
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
"ValueSpecialEpisodeName": "Special - {0}",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@ -1289,7 +1238,6 @@
"HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailer": "Trailer", "ButtonTrailer": "Trailer",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers", "OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users", "HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up", "ButtonSignUp": "Sign up",
@ -1339,8 +1287,6 @@
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More", "ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):", "LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
@ -1385,7 +1331,6 @@
"ButtonUnlockGuide": "Unlock Guide", "ButtonUnlockGuide": "Unlock Guide",
"LabelEnableFullScreen": "Enable fullscreen mode", "LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough", "LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
"OptionSyncToSDCard": "Synced to external SD card",
"LabelEmail": "Email:", "LabelEmail": "Email:",
"LabelUsername": "Username:", "LabelUsername": "Username:",
"HeaderSignUp": "Sign Up", "HeaderSignUp": "Sign Up",
@ -1407,7 +1352,6 @@
"HeaderExternalServices": "External Services", "HeaderExternalServices": "External Services",
"LabelTunerIpAddress": "Tuner IP Address:", "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services", "TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers", "HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information", "AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:", "LabelZipCode": "Zip Code:",
@ -1420,25 +1364,16 @@
"ButtonRepeat": "Repeat", "ButtonRepeat": "Repeat",
"LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTuner": "Enable this tuner",
"LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
"HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified", "HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary", "HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop", "HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo", "HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image", "HeaderUserPrimaryImage": "User Image",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
"ButtonProfile": "Profile", "ButtonProfile": "Profile",
"ButtonDisplaySettingsHelp": "Your Emby display settings",
"ButtonHomeScreenSettingsHelp": "Configure the display of your home screen",
"ButtonPlaybackSettingsHelp": "Specify your audio and subtitle preferences, streaming quality, and more.",
"ButtonProfileHelp": "Set your profile image and password.", "ButtonProfileHelp": "Set your profile image and password.",
"HeaderHomeScreenSettings": "Home Screen settings", "HeaderHomeScreenSettings": "Home Screen settings",
"HeaderProfile": "Profile", "HeaderProfile": "Profile",
"HeaderLanguage": "Language", "HeaderLanguage": "Language",
"ButtonSyncSettings": "Sync settings",
"ButtonSyncSettingsHelp": "Configure your sync settings",
"LabelTranscodingThreadCount": "Transcoding thread count:", "LabelTranscodingThreadCount": "Transcoding thread count:",
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max", "OptionMax": "Max",
@ -1525,7 +1460,6 @@
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"LabelFromHelp": "Example: {0} (on the server)", "LabelFromHelp": "Example: {0} (on the server)",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"LabelAutomaticUpdateLevel": "Automatic update level:", "LabelAutomaticUpdateLevel": "Automatic update level:",
@ -1567,8 +1501,6 @@
"SyncJobStatusCompletedWithError": "Synced with errors", "SyncJobStatusCompletedWithError": "Synced with errors",
"SyncJobItemStatusReadyToTransfer": "Ready to Transfer", "SyncJobItemStatusReadyToTransfer": "Ready to Transfer",
"LabelCollection": "Collection", "LabelCollection": "Collection",
"NewCollectionNameExample": "Example: Star Wars Collection",
"OptionSearchForInternetMetadata": "Search the internet for artwork and metadata",
"LabelSelectCollection": "Select collection:", "LabelSelectCollection": "Select collection:",
"HeaderDevices": "Devices", "HeaderDevices": "Devices",
"ButtonScheduledTasks": "Scheduled tasks", "ButtonScheduledTasks": "Scheduled tasks",
@ -1635,7 +1567,6 @@
"MessageSeriesCancelled": "Series cancelled.", "MessageSeriesCancelled": "Series cancelled.",
"HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion",
"MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?",
"MessageRecordingDeleted": "Recording deleted.",
"MessageRecordingSaved": "Recording saved.", "MessageRecordingSaved": "Recording saved.",
"OptionWeekend": "Weekends", "OptionWeekend": "Weekends",
"OptionWeekday": "Weekdays", "OptionWeekday": "Weekdays",
@ -1656,8 +1587,6 @@
"MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?",
"HeaderError": "Error", "HeaderError": "Error",
"MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.",
"MessagePleaseSelectOneItem": "Please select at least one item.",
"MessagePleaseSelectTwoItems": "Please select at least two items.",
"HeaderLibraryFolders": "Media Folders", "HeaderLibraryFolders": "Media Folders",
"HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoriteMovies": "Favorite Movies",
"HeaderFavoriteShows": "Favorite Shows", "HeaderFavoriteShows": "Favorite Shows",
@ -1673,7 +1602,6 @@
"HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.",
"HeaderSelectChannelDownloadPath": "Select Channel Download Path", "HeaderSelectChannelDownloadPath": "Select Channel Download Path",
"HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.",
"OptionNewCollection": "New...",
"LabelChapterDownloaders": "Chapter downloaders:", "LabelChapterDownloaders": "Chapter downloaders:",
"LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.",
"HeaderFavoriteAlbums": "Favorite Albums", "HeaderFavoriteAlbums": "Favorite Albums",
@ -1772,9 +1700,7 @@
"ButtonBrowseOnlineImages": "Browse online images", "ButtonBrowseOnlineImages": "Browse online images",
"HeaderDeleteItem": "Delete Item", "HeaderDeleteItem": "Delete Item",
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
"HeaderDeleteItems": "Delete Items",
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
"MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageValueNotCorrect": "The value entered is not correct. Please try again.",
"MessageItemSaved": "Item saved.", "MessageItemSaved": "Item saved.",
"MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.",
@ -1784,7 +1710,6 @@
"HeaderEnabledFields": "Enabled Fields", "HeaderEnabledFields": "Enabled Fields",
"HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.",
"HeaderLiveTV": "Live TV", "HeaderLiveTV": "Live TV",
"MissingLocalTrailer": "Missing local trailer.",
"MissingPrimaryImage": "Missing primary image.", "MissingPrimaryImage": "Missing primary image.",
"MissingBackdropImage": "Missing backdrop image.", "MissingBackdropImage": "Missing backdrop image.",
"MissingLogoImage": "Missing logo image.", "MissingLogoImage": "Missing logo image.",
@ -1810,14 +1735,10 @@
"HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.",
"HeaderAlert": "Alert", "HeaderAlert": "Alert",
"MessagePleaseRestart": "Please restart to finish updating.", "MessagePleaseRestart": "Please restart to finish updating.",
"MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.",
"ButtonHide": "Hide", "ButtonHide": "Hide",
"MessageSettingsSaved": "Settings saved.", "MessageSettingsSaved": "Settings saved.",
"MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.",
"LabelInstallingPackage": "Installing {0}", "LabelInstallingPackage": "Installing {0}",
"LabelPackageInstallCompleted": "{0} installation completed.",
"LabelPackageInstallFailed": "{0} installation failed.",
"LabelPackageInstallCancelled": "{0} installation cancelled.",
"TabLibrary": "Library", "TabLibrary": "Library",
"TabDLNA": "DLNA", "TabDLNA": "DLNA",
"TabLiveTV": "Live TV", "TabLiveTV": "Live TV",
@ -1831,8 +1752,6 @@
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
"MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.",
"HeaderVideoError": "Video Error", "HeaderVideoError": "Video Error",
"LabelSelectPlaylist": "Playlist:",
"OptionNewPlaylist": "New playlist...",
"MessageAddedToPlaylistSuccess": "Ok", "MessageAddedToPlaylistSuccess": "Ok",
"ButtonViewSeriesRecording": "View series recording", "ButtonViewSeriesRecording": "View series recording",
"HeaderSpecials": "Specials", "HeaderSpecials": "Specials",
@ -1852,7 +1771,6 @@
"HeaderPlayers": "Players", "HeaderPlayers": "Players",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc",
"OptionCollections": "Collections", "OptionCollections": "Collections",
"OptionSeries": "Series", "OptionSeries": "Series",
"OptionSeasons": "Seasons", "OptionSeasons": "Seasons",
@ -1874,7 +1792,6 @@
"LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.",
"LabelImageFetchers": "Image fetchers:", "LabelImageFetchers": "Image fetchers:",
"LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.",
"ButtonPlayAllFromHere": "Play all from here",
"LabelDynamicExternalId": "{0} Id:", "LabelDynamicExternalId": "{0} Id:",
"PersonTypePerson": "Person", "PersonTypePerson": "Person",
"LabelTitleDisplayOrder": "Title display order:", "LabelTitleDisplayOrder": "Title display order:",
@ -1926,7 +1843,6 @@
"HeaderUnknownDate": "Unknown Date", "HeaderUnknownDate": "Unknown Date",
"HeaderUnknownYear": "Unknown Year", "HeaderUnknownYear": "Unknown Year",
"ValueMinutes": "{0} min", "ValueMinutes": "{0} min",
"ButtonPlayExternalPlayer": "Play with external player",
"HeaderSelectExternalPlayer": "Select External Player", "HeaderSelectExternalPlayer": "Select External Player",
"HeaderExternalPlayerPlayback": "External Player Playback", "HeaderExternalPlayerPlayback": "External Player Playback",
"ButtonImDone": "I'm Done", "ButtonImDone": "I'm Done",
@ -1956,10 +1872,6 @@
"HeaderUnaired": "Unaired", "HeaderUnaired": "Unaired",
"HeaderMissing": "Missing", "HeaderMissing": "Missing",
"ButtonWebsite": "Website", "ButtonWebsite": "Website",
"TooltipFavorite": "Favorite",
"TooltipLike": "Like",
"TooltipDislike": "Dislike",
"TooltipPlayed": "Played",
"ValueSeriesYearToPresent": "{0}-Present", "ValueSeriesYearToPresent": "{0}-Present",
"ValueAwards": "Awards: {0}", "ValueAwards": "Awards: {0}",
"ValueBudget": "Budget: {0}", "ValueBudget": "Budget: {0}",
@ -2096,7 +2008,6 @@
"MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.",
"MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.",
"MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.",
"HeaderInviteGuest": "Invite Guest",
"ButtonLinkMyEmbyAccount": "Link my account now", "ButtonLinkMyEmbyAccount": "Link my account now",
"MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.",
"SyncMedia": "Sync Media", "SyncMedia": "Sync Media",
@ -2109,10 +2020,6 @@
"LabelQuality": "Quality:", "LabelQuality": "Quality:",
"OptionAutomaticallySyncNewContent": "Automatically sync new content", "OptionAutomaticallySyncNewContent": "Automatically sync new content",
"OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.",
"OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only",
"OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
"LabelItemLimit": "Item limit:",
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
@ -2138,7 +2045,6 @@
"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.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
"MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
@ -2146,11 +2052,9 @@
"ButtonServer": "Server", "ButtonServer": "Server",
"HeaderLibrary": "Library", "HeaderLibrary": "Library",
"HeaderMedia": "Media", "HeaderMedia": "Media",
"HeaderGroupVersions": "Group Versions",
"HeaderSaySomethingLike": "Say Something Like...", "HeaderSaySomethingLike": "Say Something Like...",
"NoResultsFound": "No results found.", "NoResultsFound": "No results found.",
"ButtonManageServer": "Manage Server", "ButtonManageServer": "Manage Server",
"ButtonEditSubtitles": "Edit subtitles",
"ButtonPreferences": "Preferences", "ButtonPreferences": "Preferences",
"ButtonViewArtist": "View artist", "ButtonViewArtist": "View artist",
"ButtonViewAlbum": "View album", "ButtonViewAlbum": "View album",
@ -2159,7 +2063,6 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"ButtonShare": "Share", "ButtonShare": "Share",
"HeaderConfirm": "Confirm", "HeaderConfirm": "Confirm",
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
@ -2193,7 +2096,6 @@
"ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.",
"ButtonGuide": "Guide", "ButtonGuide": "Guide",
"ButtonRecordedTv": "Recorded TV", "ButtonRecordedTv": "Recorded TV",
"HeaderDisconnectFromPlayer": "Disconnect from Player",
"ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
"ButtonYes": "Yes", "ButtonYes": "Yes",
"AddUser": "Add User", "AddUser": "Add User",
@ -2202,7 +2104,6 @@
"AlreadyPaid": "Already Paid?", "AlreadyPaid": "Already Paid?",
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
"AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
"ButtonForYou": "For You",
"ButtonNowPlaying": "Now Playing", "ButtonNowPlaying": "Now Playing",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"EmbyPremiereMonthly": "Emby Premiere Monthly", "EmbyPremiereMonthly": "Emby Premiere Monthly",
@ -2244,9 +2145,7 @@
"TitleHardwareAcceleration": "Hardware Acceleration", "TitleHardwareAcceleration": "Hardware Acceleration",
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
"ButtonLocalRefresh": "Local refresh",
"ButtonAddMissingData": "Add missing data only", "ButtonAddMissingData": "Add missing data only",
"ButtonFullRefresh": "Full refresh",
"ValueExample": "Example: {0}", "ValueExample": "Example: {0}",
"OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting",
"OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Tasa de bits m\u00e1xima para archivos de audio:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Archivos de audio con una tasa de bits mas alta ser\u00e1n convertidos por el Servidor Emby. Elija un valor mas alto para una mejor calidad, o uno mas bajo para ahorrar espacio de almacenamiento local.",
"LabelVaapiDevice": "Dispositivo VA API:",
"LabelVaapiDeviceHelp": "Este es un nodo de renderizado que es usado para aceleraci\u00f3n por hardware. Para sistemas con doble tarjeta de video, tendr\u00eda sentido usar :1 u otro valor.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la Comunidad", "LabelVisitCommunity": "Visitar la Comunidad",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2110,7 +2112,7 @@
"LabelSyncJobName": "Nombre del trabajo de sinc:", "LabelSyncJobName": "Nombre del trabajo de sinc:",
"LabelQuality": "Calidad:", "LabelQuality": "Calidad:",
"OptionAutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente nuevos contenidos", "OptionAutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente nuevos contenidos",
"OptionAutomaticallySyncNewContentHelp": "Los contenidos nuevos agregados ser\u00e1n sincronizados autom\u00e1ticamente con el dispositivo.", "OptionAutomaticallySyncNewContentHelp": "Los contenidos nuevos agregados a esta carpeta ser\u00e1n sincronizados autom\u00e1ticamente con el dispositivo.",
"OptionSyncUnwatchedVideosOnly": "Sincronizar \u00fanicamente videos no vistos", "OptionSyncUnwatchedVideosOnly": "Sincronizar \u00fanicamente videos no vistos",
"OptionSyncUnwatchedVideosOnlyHelp": "Solamente los videos a\u00fan no vistos ser\u00e1n sincronizados, se eliminar\u00e1n los videos del dispositivo conforme \u00e9stos sean vistos.", "OptionSyncUnwatchedVideosOnlyHelp": "Solamente los videos a\u00fan no vistos ser\u00e1n sincronizados, se eliminar\u00e1n los videos del dispositivo conforme \u00e9stos sean vistos.",
"LabelItemLimit": "L\u00edmite de \u00cdtems:", "LabelItemLimit": "L\u00edmite de \u00cdtems:",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la comunidad", "LabelVisitCommunity": "Visitar la comunidad",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Poistu", "LabelExit": "Poistu",
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4", "LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Verlasse", "LabelExit": "Verlasse",
"LabelVisitCommunity": "Bsuech d'Community", "LabelVisitCommunity": "Bsuech d'Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4", "LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Izlaz", "LabelExit": "Izlaz",
"LabelVisitCommunity": "Posjeti zajednicu", "LabelVisitCommunity": "Posjeti zajednicu",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Kil\u00e9p\u00e9s", "LabelExit": "Kil\u00e9p\u00e9s",
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g", "LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Keluar", "LabelExit": "Keluar",
"LabelVisitCommunity": "Kunjungi Komunitas", "LabelVisitCommunity": "Kunjungi Komunitas",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Massimo bitrate per file audio:", "LabelMaxAudioFileBitrate": "Massimo bitrate per file audio:",
"LabelMaxAudioFileBitrateHelp": "I file audio con un valore pi\u00f9 alto di bitrate saranno convertiti dal Server Emby. Seleziona un valore pi\u00f9 alto per una qualit\u00e0 migliore, oppure, un valore pi\u00f9 basso per risparmiare spazio di archiviazione.", "LabelMaxAudioFileBitrateHelp": "I file audio con un valore pi\u00f9 alto di bitrate saranno convertiti dal Server Emby. Seleziona un valore pi\u00f9 alto per una qualit\u00e0 migliore, oppure, un valore pi\u00f9 basso per risparmiare spazio di archiviazione.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Esci", "LabelExit": "Esci",
"LabelVisitCommunity": "Visita la Community", "LabelVisitCommunity": "Visita la Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "\u0414\u044b\u0431\u044b\u0441 \u0444\u0430\u0439\u043b\u0434\u044b\u04a3 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "\u0416\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u044b \u0431\u0430\u0440 \u0434\u044b\u0431\u044b\u0441 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b Emby Server \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456. \u0416\u0430\u049b\u0441\u044b\u043b\u0430\u0443 \u0441\u0430\u043f\u0430\u0441\u044b \u04af\u0448\u0456\u043d \u0436\u043e\u0493\u0430\u0440\u044b \u043c\u04d9\u043d\u0456\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u0434\u044b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043c\u0435\u043d\u0433\u0456 \u043c\u04d9\u043d\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
"LabelVaapiDevice": "VA-API \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b:",
"LabelVaapiDeviceHelp": "\u0411\u04b1\u043b \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0442\u04af\u0439\u0456\u043d\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u049a\u043e\u0441 \u0432\u0438\u0434\u0435\u043e \u043a\u0430\u0440\u0442\u0430\u043b\u0430\u0440\u044b \u0431\u0430\u0440 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0434\u0435, \u0431\u04b1\u0493\u0430\u043d :1 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u0441\u049b\u0430 \u043c\u04d9\u043d\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u044b \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
"LabelExit": "\u0428\u044b\u0493\u0443", "LabelExit": "\u0428\u044b\u0493\u0443",
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443", "LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443",
"LabelGithub": "GitHub", "LabelGithub": "GitHub",
@ -368,7 +370,7 @@
"LabelAutomaticUpdatesTmdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheMovieDB.org \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.", "LabelAutomaticUpdatesTmdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheMovieDB.org \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.",
"LabelAutomaticUpdatesTvdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheTVDB.com \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.", "LabelAutomaticUpdatesTvdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheTVDB.com \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.",
"LabelFanartApiKey": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442:", "LabelFanartApiKey": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442:",
"LabelFanartApiKeyHelp": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u0441\u0456\u0437 Fanart \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u0493\u0430 7 \u043a\u04af\u043d\u0456\u043d\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043b\u0430\u0434\u044b. \u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u043c\u0435\u043d \u0431\u04b1\u043b 48 \u0441\u0430\u0493\u0430\u0442\u049b\u0430 \u0434\u0435\u0439\u0456\u043d \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b, \u0430\u043b,\u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b, Fanart VIP-\u043c\u04af\u0448\u0435\u0441\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0431\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 10 \u043c\u0438\u043d\u04e9\u0442\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u0430\u0493\u044b \u0434\u0430 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.", "LabelFanartApiKeyHelp": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u0441\u0456\u0437 Fanart \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u0493\u0430 7 \u043a\u04af\u043d\u0456\u043d\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043b\u0430\u0434\u044b. \u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u043c\u0435\u043d \u0431\u04b1\u043b 48 \u0441\u0430\u0493\u0430\u0442\u049b\u0430 \u0434\u0435\u0439\u0456\u043d \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b, \u0430\u043b,\u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b, Fanart VIP-\u043c\u04af\u0448\u0435\u0441\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0431\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 10 \u043c\u0438\u043d\u04e9\u0442\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u0430\u0493\u044b \u0434\u0430 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.",
"ExtractChapterImagesHelp": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0441\u0430\u0445\u043d\u0430 nf4 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0431\u0430\u044f\u0443, \u041e\u041f \u043a\u0435\u0440\u0435\u043a \u049b\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u0430\u0437 \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u041e\u043b \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u04d9\u043d\u0435 \u0442\u04af\u043d\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456 \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0434\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u0430\u0440\u0431\u0430\u043b\u0430\u0441 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0442\u043a\u0456\u0437\u0443 \u04b1\u0441\u044b\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b.", "ExtractChapterImagesHelp": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0441\u0430\u0445\u043d\u0430 nf4 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0431\u0430\u044f\u0443, \u041e\u041f \u043a\u0435\u0440\u0435\u043a \u049b\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u0430\u0437 \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u041e\u043b \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u04d9\u043d\u0435 \u0442\u04af\u043d\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456 \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0434\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u0430\u0440\u0431\u0430\u043b\u0430\u0441 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0442\u043a\u0456\u0437\u0443 \u04b1\u0441\u044b\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b.",
"LabelMetadataDownloadLanguage": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:", "LabelMetadataDownloadLanguage": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"LabelImageSavingConvention": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0430\u049b\u0442\u0430\u0443 \u043a\u0435\u043b\u0456\u0441\u0456\u043c\u0456:", "LabelImageSavingConvention": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0430\u049b\u0442\u0430\u0443 \u043a\u0435\u043b\u0456\u0441\u0456\u043c\u0456:",
@ -2110,7 +2112,7 @@
"LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:", "LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:",
"LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:", "LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:",
"OptionAutomaticallySyncNewContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "OptionAutomaticallySyncNewContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"OptionAutomaticallySyncNewContentHelp": "\u0416\u0430\u04a3\u0430\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u0441\u044b \u049b\u04b1\u0440-\u043c\u0435\u043d \u04af\u043d\u0434-\u0434\u0456.", "OptionAutomaticallySyncNewContentHelp": "\u041e\u0441\u044b \u049b\u0430\u043b\u044c\u0430\u0493\u0430 \u0436\u0430\u04a3\u0430\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u0441\u044b \u049b\u04b1\u0440-\u043c\u0435\u043d \u04af\u043d\u0434-\u0434\u0456.",
"OptionSyncUnwatchedVideosOnly": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u04af\u043d\u0434-\u0456\u0440\u0443", "OptionSyncUnwatchedVideosOnly": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u04af\u043d\u0434-\u0456\u0440\u0443",
"OptionSyncUnwatchedVideosOnlyHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u043d\u0434-\u0434\u0456, \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u049b\u04b1\u0440-\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b.", "OptionSyncUnwatchedVideosOnlyHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u043d\u0434-\u0434\u0456, \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u049b\u04b1\u0440-\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b.",
"LabelItemLimit": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:", "LabelItemLimit": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:",
@ -2249,7 +2251,7 @@
"ButtonLocalRefresh": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", "ButtonLocalRefresh": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
"ButtonAddMissingData": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443", "ButtonAddMissingData": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443",
"ButtonFullRefresh": "\u0422\u043e\u043b\u044b\u049b \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", "ButtonFullRefresh": "\u0422\u043e\u043b\u044b\u049b \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
"ValueExample": "13:00", "ValueExample": "\u041c\u044b\u0441\u0430\u043b: {0}",
"OptionEnableAnonymousUsageReporting": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0435\u0441\u0435\u043f\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443", "OptionEnableAnonymousUsageReporting": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0435\u0441\u0435\u043f\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443",
"OptionEnableAnonymousUsageReportingHelp": "Emby \u04af\u0448\u0456\u043d \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b, Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u04b1\u0441\u049b\u0430 \u043d\u04e9\u043c\u0456\u0440\u043b\u0435\u0440\u0456\u043d, \u0442.\u0431. \u0436\u0438\u043d\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u041e\u0441\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u043d\u044b \u0430\u0440\u0442\u0442\u044b\u0440\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", "OptionEnableAnonymousUsageReportingHelp": "Emby \u04af\u0448\u0456\u043d \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b, Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u04b1\u0441\u049b\u0430 \u043d\u04e9\u043c\u0456\u0440\u043b\u0435\u0440\u0456\u043d, \u0442.\u0431. \u0436\u0438\u043d\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u041e\u0441\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u043d\u044b \u0430\u0440\u0442\u0442\u044b\u0440\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
"LabelFileOrUrl": "\u0424\u0430\u0439\u043b \u043d\u0435\u043c\u0435\u0441\u0435 URL:", "LabelFileOrUrl": "\u0424\u0430\u0439\u043b \u043d\u0435\u043c\u0435\u0441\u0435 URL:",
@ -2317,10 +2319,10 @@
"EnablePhotosHelp": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0431\u0430\u0441\u049b\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.", "EnablePhotosHelp": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0431\u0430\u0441\u049b\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
"MakeAvailableOffline": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443", "MakeAvailableOffline": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443",
"ConfirmRemoveDownload": "\u0416\u04af\u043a\u0442\u0435\u0443\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0439\u043c\u044b\u0437 \u0431\u0430?", "ConfirmRemoveDownload": "\u0416\u04af\u043a\u0442\u0435\u0443\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0439\u043c\u044b\u0437 \u0431\u0430?",
"RemoveDownload": "Remove download", "RemoveDownload": "\u0416\u04af\u043a\u0442\u0435\u0443\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0443",
"SyncToOtherDevices": "\u0411\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "SyncToOtherDevices": "\u0411\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"ManageOfflineDownloads": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "ManageOfflineDownloads": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
"MessageDownloadScheduled": "\u0416\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d.", "MessageDownloadScheduled": "\u0416\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d.",
"RememberMe": "Remember me", "RememberMe": "\u0415\u0441\u0442\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
"HeaderOfflineSync": "Offline Sync" "HeaderOfflineSync": "\u0414\u0435\u0440\u0431\u0435\u0441 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443"
} }

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\uc885\ub8cc", "LabelExit": "\uc885\ub8cc",
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38", "LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Tutup", "LabelExit": "Tutup",
"LabelVisitCommunity": "Melawat Masyarakat", "LabelVisitCommunity": "Melawat Masyarakat",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API enhet:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Avslutt", "LabelExit": "Avslutt",
"LabelVisitCommunity": "Bes\u00f8k samfunn", "LabelVisitCommunity": "Bes\u00f8k samfunn",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -1741,7 +1743,7 @@
"MessageEnsureOpenTuner": "Vennligst s\u00f8rg for at det minst er \u00e9n \u00e5pen tuner tilgjengelig.", "MessageEnsureOpenTuner": "Vennligst s\u00f8rg for at det minst er \u00e9n \u00e5pen tuner tilgjengelig.",
"ButtonDashboard": "Dashbord", "ButtonDashboard": "Dashbord",
"ButtonReports": "Rapporter", "ButtonReports": "Rapporter",
"MetadataManager": "Metadata Manager", "MetadataManager": "Metadata bearbeider",
"HeaderTime": "Tid", "HeaderTime": "Tid",
"LabelAddedOnDate": "Lagt til {0}", "LabelAddedOnDate": "Lagt til {0}",
"ButtonStart": "Start", "ButtonStart": "Start",
@ -2150,7 +2152,7 @@
"HeaderMedia": "Media", "HeaderMedia": "Media",
"HeaderGroupVersions": "Gruppe versjon", "HeaderGroupVersions": "Gruppe versjon",
"HeaderSaySomethingLike": "Si noenting slik som...", "HeaderSaySomethingLike": "Si noenting slik som...",
"NoResultsFound": "No results found.", "NoResultsFound": "Ingen resulterer funnet.",
"ButtonManageServer": "Administrer Server", "ButtonManageServer": "Administrer Server",
"ButtonEditSubtitles": "Endre undertekster", "ButtonEditSubtitles": "Endre undertekster",
"ButtonPreferences": "Innstillinger", "ButtonPreferences": "Innstillinger",
@ -2311,16 +2313,16 @@
"OptionUseMyCustomVersion": "Bruk en egen definert versjon", "OptionUseMyCustomVersion": "Bruk en egen definert versjon",
"FFmpegSavePathNotFound": "Vi kan dessverre ikke finne FFmpeg bruke banen du har angitt. FFprobe er ogs\u00e5 n\u00f8dvendig og m\u00e5 ligge i samme mappe. Disse komponentene er vanligvis buntet sammen i samme nedlastning. Kontroller banen og pr\u00f8v igjen.", "FFmpegSavePathNotFound": "Vi kan dessverre ikke finne FFmpeg bruke banen du har angitt. FFprobe er ogs\u00e5 n\u00f8dvendig og m\u00e5 ligge i samme mappe. Disse komponentene er vanligvis buntet sammen i samme nedlastning. Kontroller banen og pr\u00f8v igjen.",
"XmlTvPremiere": "Som standard, vill Emby importere {0} timer av tv guide informasjon. For \u00e5 kunne importere ubegrenset med data kreves det et aktivt Emby Premiere abonnement.", "XmlTvPremiere": "Som standard, vill Emby importere {0} timer av tv guide informasjon. For \u00e5 kunne importere ubegrenset med data kreves det et aktivt Emby Premiere abonnement.",
"MoreFromValue": "More from {0}", "MoreFromValue": "Mer informasjon fra {0}",
"OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.",
"EnablePhotos": "Enable photos", "EnablePhotos": "Aktiver bilder",
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
"MakeAvailableOffline": "Make available offline", "MakeAvailableOffline": "Make available offline",
"ConfirmRemoveDownload": "Remove download?", "ConfirmRemoveDownload": "Fjern nedlastet?",
"RemoveDownload": "Remove download", "RemoveDownload": "Fjern nedlastet",
"SyncToOtherDevices": "Sync to other devices", "SyncToOtherDevices": "Sync to other devices",
"ManageOfflineDownloads": "Manage offline downloads", "ManageOfflineDownloads": "Manage offline downloads",
"MessageDownloadScheduled": "Download scheduled", "MessageDownloadScheduled": "Download scheduled",
"RememberMe": "Remember me", "RememberMe": "Husk meg",
"HeaderOfflineSync": "Offline Sync" "HeaderOfflineSync": "Offline Sync"
} }

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Afsluiten", "LabelExit": "Afsluiten",
"LabelVisitCommunity": "Bezoek Gemeenschap", "LabelVisitCommunity": "Bezoek Gemeenschap",
"LabelGithub": "Github", "LabelGithub": "Github",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Wyj\u015bcie", "LabelExit": "Wyj\u015bcie",
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107", "LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Bitrate m\u00e1x arquivos de \u00e1udio:", "LabelMaxAudioFileBitrate": "Bitrate m\u00e1x arquivos de \u00e1udio:",
"LabelMaxAudioFileBitrateHelp": "Arquivos de \u00e1udio com um bitrate maior ser\u00e3o convertidos pelo Servidor Emby. Selecione um valor mais alto para melhor qualidade, ou mais baixo para conservar espa\u00e7o no armazenamento local.", "LabelMaxAudioFileBitrateHelp": "Arquivos de \u00e1udio com um bitrate maior ser\u00e3o convertidos pelo Servidor Emby. Selecione um valor mais alto para melhor qualidade, ou mais baixo para conservar espa\u00e7o no armazenamento local.",
"LabelVaapiDevice": "Dispositivo VA API:",
"LabelVaapiDeviceHelp": "Este \u00e9 o n\u00f3 de renderiza\u00e7\u00e3o utilizado para acelera\u00e7\u00e3o via hardware. Para sistemas com dupla placa de v\u00eddeo, pode fazer sentido utilizar :1 ou outro valor.",
"LabelExit": "Sair", "LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade", "LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github", "LabelGithub": "Github",

View file

@ -1,4 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Sair", "LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade", "LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2108,7 +2112,7 @@
"LabelSyncJobName": "Sync job name:", "LabelSyncJobName": "Sync job name:",
"LabelQuality": "Quality:", "LabelQuality": "Quality:",
"OptionAutomaticallySyncNewContent": "Automatically sync new content", "OptionAutomaticallySyncNewContent": "Automatically sync new content",
"OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.",
"OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only",
"OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
"LabelItemLimit": "Item limit:", "LabelItemLimit": "Item limit:",
@ -2300,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Iesire", "LabelExit": "Iesire",
"LabelVisitCommunity": "Viziteaza comunitatea", "LabelVisitCommunity": "Viziteaza comunitatea",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0430\u0443\u0434\u0438\u043e:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "\u0410\u0443\u0434\u0438\u043e\u0444\u0430\u0439\u043b\u044b \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u044e \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u044b \u0432 Emby Server. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430, \u0438\u043b\u0438 \u043d\u0430\u0438\u043c\u0435\u043d\u0435\u0435 \u043d\u0438\u0437\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430.",
"LabelVaapiDevice": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e VA-API:",
"LabelVaapiDeviceHelp": "\u042d\u0442\u043e \u0443\u0437\u0435\u043b \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f. \u0414\u043b\u044f \u0441\u0438\u0441\u0442\u0435\u043c \u0441\u043e \u0441\u0434\u0432\u043e\u0435\u043d\u043d\u043e\u0439 \u0432\u0438\u0434\u0435\u043e\u043a\u0430\u0440\u0442\u043e\u0439, \u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0434\u0430\u0442\u044c \u0441\u043c\u044b\u0441\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c :1 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435.",
"LabelExit": "\u0412\u044b\u0445\u043e\u0434", "LabelExit": "\u0412\u044b\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430",
"LabelGithub": "GitHub", "LabelGithub": "GitHub",
@ -368,7 +370,7 @@
"LabelAutomaticUpdatesTmdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043d\u043e\u0432\u044b\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheMovieDB.org. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u043d\u044f\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0438 \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044e \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043d\u0430 \u0434\u0438\u0441\u043a.", "LabelAutomaticUpdatesTmdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043d\u043e\u0432\u044b\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheMovieDB.org. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u043d\u044f\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0438 \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044e \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043d\u0430 \u0434\u0438\u0441\u043a.",
"LabelAutomaticUpdatesTvdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheTVDB.com. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0438 \u0432 \u0438\u0442\u043e\u0433\u0435, \u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0438\u0441\u043a\u0430.", "LabelAutomaticUpdatesTvdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheTVDB.com. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0438 \u0432 \u0438\u0442\u043e\u0433\u0435, \u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0438\u0441\u043a\u0430.",
"LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:", "LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
"LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.", "LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
"ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0438\u0434\u0435\u043e, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.", "ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0438\u0434\u0435\u043e, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e:", "LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e:",
"LabelImageSavingConvention": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:", "LabelImageSavingConvention": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:",
@ -2110,7 +2112,7 @@
"LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:", "LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
"LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:", "LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:",
"OptionAutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "OptionAutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
"OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.", "OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443, \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.",
"OptionSyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionSyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"OptionSyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440-\u0432\u0430.", "OptionSyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440-\u0432\u0430.",
"LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", "LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:",
@ -2249,7 +2251,7 @@
"ButtonLocalRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e", "ButtonLocalRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e",
"ButtonAddMissingData": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432. \u0434\u0430\u043d\u043d\u044b\u0435", "ButtonAddMissingData": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432. \u0434\u0430\u043d\u043d\u044b\u0435",
"ButtonFullRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e", "ButtonFullRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e",
"ValueExample": "13:00", "ValueExample": "\u041f\u0440\u0438\u043c\u0435\u0440: {0}",
"OptionEnableAnonymousUsageReporting": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0443\u044e \u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438", "OptionEnableAnonymousUsageReporting": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0443\u044e \u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438",
"OptionEnableAnonymousUsageReportingHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442 Emby \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043e\u0431 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u0445, \u043d\u043e\u043c\u0435\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u0439 \u0432\u0430\u0448\u0438\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u0442.\u0434. \u042d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0446\u0435\u043b\u044f\u0445 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f.", "OptionEnableAnonymousUsageReportingHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442 Emby \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043e\u0431 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u0445, \u043d\u043e\u043c\u0435\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u0439 \u0432\u0430\u0448\u0438\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u0442.\u0434. \u042d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0446\u0435\u043b\u044f\u0445 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f.",
"LabelFileOrUrl": "\u0424\u0430\u0439\u043b \u0438\u043b\u0438 URL:", "LabelFileOrUrl": "\u0424\u0430\u0439\u043b \u0438\u043b\u0438 URL:",
@ -2317,10 +2319,10 @@
"EnablePhotosHelp": "\u0424\u043e\u0442\u043e \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c\u0438.", "EnablePhotosHelp": "\u0424\u043e\u0442\u043e \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c\u0438.",
"MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", "MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
"ConfirmRemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443?", "ConfirmRemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443?",
"RemoveDownload": "Remove download", "RemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443",
"SyncToOtherDevices": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438", "SyncToOtherDevices": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
"ManageOfflineDownloads": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u043c\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430\u043c\u0438", "ManageOfflineDownloads": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u043c\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430\u043c\u0438",
"MessageDownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e", "MessageDownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e",
"RememberMe": "Remember me", "RememberMe": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c",
"HeaderOfflineSync": "Offline Sync" "HeaderOfflineSync": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f"
} }

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Exit", "LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Izhod", "LabelExit": "Izhod",
"LabelVisitCommunity": "Obiscite Skupnost", "LabelVisitCommunity": "Obiscite Skupnost",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Avsluta", "LabelExit": "Avsluta",
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum", "LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
"LabelGithub": "Github", "LabelGithub": "Github",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Cikis", "LabelExit": "Cikis",
"LabelVisitCommunity": "Bizi Ziyaret Edin", "LabelVisitCommunity": "Bizi Ziyaret Edin",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u0412\u0438\u0439\u0442\u0438", "LabelExit": "\u0412\u0438\u0439\u0442\u0438",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "Tho\u00e1t", "LabelExit": "Tho\u00e1t",
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng", "LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u9000\u51fa", "LabelExit": "\u9000\u51fa",
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a", "LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u96e2\u958b", "LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340", "LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,6 +1,8 @@
{ {
"LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrate": "Max audio file bitrate:",
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
"LabelVaapiDevice": "VA API Device:",
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
"LabelExit": "\u96e2\u958b", "LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4", "LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4",
"LabelGithub": "GitHub", "LabelGithub": "GitHub",
@ -2302,7 +2304,7 @@
"LabelffmpegVersion": "FFmpeg version:", "LabelffmpegVersion": "FFmpeg version:",
"LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.",
"SetupFFmpeg": "Setup FFmpeg", "SetupFFmpeg": "Setup FFmpeg",
"SetupFFmpegHelp": "FFmpeg is a required component and needs to be configured.", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
"EnterFFmpegLocation": "Enter FFmpeg path", "EnterFFmpegLocation": "Enter FFmpeg path",
"DownloadFFmpeg": "Download FFmpeg", "DownloadFFmpeg": "Download FFmpeg",
"FFmpegSuggestedDownload": "Suggested download: {0}", "FFmpegSuggestedDownload": "Suggested download: {0}",

View file

@ -1,4 +1,4 @@
<div id="userLibraryAccessPage" data-role="page" class="page type-interior userProfilesPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Users" data-require="jqmlistview,scripts/userlibraryaccess,paper-checkbox,emby-button"> <div id="userLibraryAccessPage" data-role="page" class="page type-interior userProfilesPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Users" data-require="scripts/userlibraryaccess,paper-checkbox,emby-button">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
@ -50,13 +50,11 @@
<br /> <br />
</div> </div>
<br /> <br />
<ul data-role="listview" class="ulForm"> <div>
<li> <button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
<button is="emby-button" type="button" class="raised cancel block btnCancel" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button> <button is="emby-button" type="button" class="raised cancel block btnCancel" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button>
</li> </div>
</ul>
</form> </form>
</div> </div>
</div> </div>

View file

@ -1,4 +1,4 @@
<div id="userParentalControlPage" data-role="page" class="page type-interior userProfilesPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Users" data-require="jqmlistview,jqmpopup,scripts/userparentalcontrol,paper-checkbox,emby-button,emby-collapse"> <div id="userParentalControlPage" data-role="page" class="page type-interior userProfilesPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Users" data-require="jqmpopup,scripts/userparentalcontrol,paper-checkbox,emby-button,emby-collapse">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
@ -10,13 +10,11 @@
</div> </div>
<form class="userParentalControlForm"> <form class="userParentalControlForm">
<ul data-role="listview" class="ulForm"> <div>
<li> <label for="selectMaxParentalRating" class="selectLabel">${LabelMaxParentalRating}</label>
<label for="selectMaxParentalRating" class="selectLabel">${LabelMaxParentalRating}</label> <select name="selectMaxParentalRating" id="selectMaxParentalRating" data-mini="true"></select>
<select name="selectMaxParentalRating" id="selectMaxParentalRating" data-mini="true"></select> <div class="fieldDescription">${MaxParentalRatingHelp}</div>
<div class="fieldDescription">${MaxParentalRatingHelp}</div> </div>
</li>
</ul>
<div> <div>
<div class="blockUnratedItems"> <div class="blockUnratedItems">
@ -68,36 +66,38 @@
<form class="scheduleForm" style="min-width:210px;"> <form class="scheduleForm" style="min-width:210px;">
<ul data-role="listview" class="ulForm" style="margin-bottom:10px!important;"> <div>
<li> <label for="selectDay">${LabelAccessDay}</label>
<label for="selectDay">${LabelAccessDay}</label> <select id="selectDay" data-mini="true">
<select id="selectDay" data-mini="true"> <option value="Sunday">${OptionSunday}</option>
<option value="Sunday">${OptionSunday}</option> <option value="Monday">${OptionMonday}</option>
<option value="Monday">${OptionMonday}</option> <option value="Tuesday">${OptionTuesday}</option>
<option value="Tuesday">${OptionTuesday}</option> <option value="Wednesday">${OptionWednesday}</option>
<option value="Wednesday">${OptionWednesday}</option> <option value="Thursday">${OptionThursday}</option>
<option value="Thursday">${OptionThursday}</option> <option value="Friday">${OptionFriday}</option>
<option value="Friday">${OptionFriday}</option> <option value="Saturday">${OptionSaturday}</option>
<option value="Saturday">${OptionSaturday}</option> <option value="Everyday">${OptionEveryday}</option>
<option value="Everyday">${OptionEveryday}</option> <option value="Weekday">${OptionWeekdays}</option>
<option value="Weekday">${OptionWeekdays}</option> <option value="Weekend">${OptionWeekends}</option>
<option value="Weekend">${OptionWeekends}</option> </select>
</select> </div>
</li> <br />
<li> <div>
<label for="selectStart">${LabelAccessStart}</label> <label for="selectStart">${LabelAccessStart}</label>
<select class="selectHour" id="selectStart" data-mini="true"></select> <select class="selectHour" id="selectStart" data-mini="true"></select>
</li> </div>
<li> <br />
<label for="selectEnd">${LabelAccessEnd}</label> <div>
<select class="selectHour" id="selectEnd" data-mini="true"></select> <label for="selectEnd">${LabelAccessEnd}</label>
</li> <select class="selectHour" id="selectEnd" data-mini="true"></select>
<li> </div>
<input type="hidden" id="fldScheduleIndex" /> <br />
<button type="submit" data-icon="plus" data-theme="b" data-mini="true">${ButtonAdd}</button> <div>
<button type="button" data-icon="delete" data-mini="true" onclick="$(this).parents('.popup').popup('close');">${ButtonCancel}</button> <input type="hidden" id="fldScheduleIndex" />
</li> <button type="submit" data-icon="plus" data-theme="b" data-mini="true">${ButtonAdd}</button>
</ul> <button type="button" data-icon="delete" data-mini="true" onclick="$(this).parents('.popup').popup('close');">${ButtonCancel}</button>
</div>
<br />
</form> </form>
</div> </div>