From dfed3a11bcbce756277606c08f11253b447d455d Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 26 Nov 2014 14:29:49 -0500 Subject: [PATCH] fix swipebox --- .../Profiles/PopcornHourProfile.cs | 13 +++++- MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs | 5 +-- .../Profiles/Windows81Profile.cs | 27 ++++++++++-- .../Profiles/WindowsPhoneProfile.cs | 8 ++-- MediaBrowser.Dlna/Profiles/Xml/Android.xml | 4 +- MediaBrowser.Dlna/Profiles/Xml/Default.xml | 2 +- MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml | 2 +- .../Profiles/Xml/Linksys DMA2100.xml | 2 +- .../Profiles/Xml/MediaMonkey.xml | 2 +- .../Profiles/Xml/Popcorn Hour.xml | 7 +++- MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml | 2 +- .../Profiles/Xml/Windows 8 RT.xml | 9 +++- .../Profiles/Xml/Windows Phone.xml | 7 ++-- MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml | 2 +- .../Dlna/Profiles/AndroidProfile.cs | 2 - .../Dlna/Profiles/DefaultProfile.cs | 3 +- .../Localization/JavaScript/ru.json | 2 +- .../Localization/Server/ar.json | 7 ++-- .../Localization/Server/ca.json | 7 ++-- .../Localization/Server/cs.json | 9 ++-- .../Localization/Server/da.json | 7 ++-- .../Localization/Server/de.json | 7 ++-- .../Localization/Server/el.json | 7 ++-- .../Localization/Server/en_GB.json | 7 ++-- .../Localization/Server/en_US.json | 7 ++-- .../Localization/Server/es.json | 9 ++-- .../Localization/Server/es_MX.json | 7 ++-- .../Localization/Server/fi.json | 7 ++-- .../Localization/Server/fr.json | 7 ++-- .../Localization/Server/he.json | 9 ++-- .../Localization/Server/hr.json | 9 ++-- .../Localization/Server/it.json | 41 ++++++++++--------- .../Localization/Server/kk.json | 7 ++-- .../Localization/Server/ko.json | 7 ++-- .../Localization/Server/ms.json | 7 ++-- .../Localization/Server/nb.json | 9 ++-- .../Localization/Server/nl.json | 23 ++++++----- .../Localization/Server/pl.json | 7 ++-- .../Localization/Server/pt_BR.json | 7 ++-- .../Localization/Server/pt_PT.json | 9 ++-- .../Localization/Server/ru.json | 9 ++-- .../Localization/Server/sv.json | 9 ++-- .../Localization/Server/tr.json | 7 ++-- .../Localization/Server/vi.json | 7 ++-- .../Localization/Server/zh_CN.json | 9 ++-- .../Localization/Server/zh_TW.json | 9 ++-- 46 files changed, 218 insertions(+), 154 deletions(-) diff --git a/MediaBrowser.Dlna/Profiles/PopcornHourProfile.cs b/MediaBrowser.Dlna/Profiles/PopcornHourProfile.cs index 6f06f12bff..6cf06d41ff 100644 --- a/MediaBrowser.Dlna/Profiles/PopcornHourProfile.cs +++ b/MediaBrowser.Dlna/Profiles/PopcornHourProfile.cs @@ -25,8 +25,7 @@ namespace MediaBrowser.Dlna.Profiles Container = "mp4", Type = DlnaProfileType.Video, AudioCodec = "aac", - VideoCodec = "h264", - VideoProfile= "baseline" + VideoCodec = "h264" }, new TranscodingProfile @@ -118,6 +117,16 @@ namespace MediaBrowser.Dlna.Profiles } }, + new CodecProfile + { + Type = CodecType.Video, + Codec="h264", + Conditions = new [] + { + new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline") + } + }, + new CodecProfile { Type = CodecType.VideoAudio, diff --git a/MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs b/MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs index 7833f691a7..553d77c7f7 100644 --- a/MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs +++ b/MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs @@ -1,6 +1,6 @@ using MediaBrowser.Model.Dlna; -using System.Xml.Serialization; using MediaBrowser.Model.Dlna.Profiles; +using System.Xml.Serialization; namespace MediaBrowser.Dlna.Profiles { @@ -43,8 +43,7 @@ namespace MediaBrowser.Dlna.Profiles Container = "ts", Type = DlnaProfileType.Video, VideoCodec = "h264", - AudioCodec = "aac", - VideoProfile= "baseline" + AudioCodec = "aac" }, new TranscodingProfile { diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs index f901e1307d..0371d0d16c 100644 --- a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs +++ b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs @@ -1,6 +1,6 @@ using MediaBrowser.Model.Dlna; -using System.Xml.Serialization; using MediaBrowser.Model.Dlna.Profiles; +using System.Xml.Serialization; namespace MediaBrowser.Dlna.Profiles { @@ -31,7 +31,6 @@ namespace MediaBrowser.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", Context = EncodingContext.Streaming }, new TranscodingProfile @@ -40,7 +39,6 @@ namespace MediaBrowser.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", Context = EncodingContext.Streaming }, new TranscodingProfile @@ -125,6 +123,29 @@ namespace MediaBrowser.Dlna.Profiles } }, + new CodecProfile + { + Type = CodecType.Video, + Codec="h264", + Conditions = new [] + { + + // Note: Add any of the following if supported + + //"Constrained Baseline", + //"Baseline", + //"Extended", + //"Main", + //"High", + //"Progressive High", + //"Constrained High" + + // The first one in the list should be the higest one, e.g. if High profile is supported, make sure it appears before baseline: high|baseline + + new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline") + } + }, + new CodecProfile { Type = CodecType.VideoAudio, diff --git a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs b/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs index b741b4ca0c..3fb40dedd0 100644 --- a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs +++ b/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs @@ -1,6 +1,6 @@ using MediaBrowser.Model.Dlna; -using System.Xml.Serialization; using MediaBrowser.Model.Dlna.Profiles; +using System.Xml.Serialization; namespace MediaBrowser.Dlna.Profiles { @@ -26,7 +26,6 @@ namespace MediaBrowser.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", Context = EncodingContext.Streaming }, new TranscodingProfile @@ -35,7 +34,6 @@ namespace MediaBrowser.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", Context = EncodingContext.Streaming }, new TranscodingProfile @@ -44,7 +42,6 @@ namespace MediaBrowser.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", Context = EncodingContext.Static } }; @@ -156,7 +153,8 @@ namespace MediaBrowser.Dlna.Profiles Condition = ProfileConditionType.LessThanEqual, Property = ProfileConditionValue.VideoLevel, Value = "3" - } + }, + new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline") } }, diff --git a/MediaBrowser.Dlna/Profiles/Xml/Android.xml b/MediaBrowser.Dlna/Profiles/Xml/Android.xml index 34cc3b0929..56a229869b 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Android.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Android.xml @@ -39,8 +39,8 @@ - - + + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Default.xml b/MediaBrowser.Dlna/Profiles/Xml/Default.xml index 1f16d89db5..fd4246dec9 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Default.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Default.xml @@ -35,7 +35,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml b/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml index 27cad32d75..b62580f69d 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml @@ -39,7 +39,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml b/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml index 9cd8a324f8..09165349e4 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml @@ -39,7 +39,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml b/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml index 81ecfdab14..c57a368b34 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml @@ -45,7 +45,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml b/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml index 62d7a85d69..4fa4db30bb 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml @@ -40,7 +40,7 @@ - + @@ -52,6 +52,11 @@ + + + + + diff --git a/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml b/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml index e1e02c87b7..015dbbc1fa 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml @@ -53,7 +53,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Windows 8 RT.xml b/MediaBrowser.Dlna/Profiles/Xml/Windows 8 RT.xml index 824ea3ca97..9283cf91af 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Windows 8 RT.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Windows 8 RT.xml @@ -44,8 +44,8 @@ - - + + @@ -55,6 +55,11 @@ + + + + + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Windows Phone.xml b/MediaBrowser.Dlna/Profiles/Xml/Windows Phone.xml index b878e83432..efa52208b2 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Windows Phone.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Windows Phone.xml @@ -40,9 +40,9 @@ - - - + + + @@ -58,6 +58,7 @@ + diff --git a/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml b/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml index 62830a54b9..2afdcc6f88 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml @@ -45,7 +45,7 @@ - + diff --git a/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs b/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs index 04b4a808d4..7aa7f98db1 100644 --- a/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs +++ b/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs @@ -40,7 +40,6 @@ namespace MediaBrowser.Model.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "baseline", Context = EncodingContext.Streaming }); } @@ -50,7 +49,6 @@ namespace MediaBrowser.Model.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "baseline", Context = EncodingContext.Static }); diff --git a/MediaBrowser.Model/Dlna/Profiles/DefaultProfile.cs b/MediaBrowser.Model/Dlna/Profiles/DefaultProfile.cs index d49315ab1e..959f8b8016 100644 --- a/MediaBrowser.Model/Dlna/Profiles/DefaultProfile.cs +++ b/MediaBrowser.Model/Dlna/Profiles/DefaultProfile.cs @@ -50,8 +50,7 @@ namespace MediaBrowser.Model.Dlna.Profiles Container = "ts", Type = DlnaProfileType.Video, AudioCodec = "aac", - VideoCodec = "h264", - VideoProfile= "baseline" + VideoCodec = "h264" }, new TranscodingProfile diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/ru.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/ru.json index b86e843678..f05e710556 100644 --- a/MediaBrowser.Server.Implementations/Localization/JavaScript/ru.json +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/ru.json @@ -343,7 +343,7 @@ "HeaderParentalRating": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "HeaderReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430", "HeaderDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", - "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b", + "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", "HeaderSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430", "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u044c", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ar.json b/MediaBrowser.Server.Implementations/Localization/Server/ar.json index 3e0aa9b3f6..3ca0d4d1c0 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ar.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ar.json @@ -1,10 +1,11 @@ { "LabelExit": "\u062e\u0631\u0648\u062c", "LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u0642\u064a\u0627\u0633\u0649", - "LabelViewApiDocumentation": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u0631\u0627\u062c\u0639 \u0627\u0644\u0640 Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629", "LabelConfigureMediaBrowser": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631", "LabelOpenLibraryViewer": "\u0641\u062a\u062d \u0645\u062a\u0635\u062d\u0641 \u0627\u0644\u0645\u0643\u062a\u0628\u0629", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ca.json b/MediaBrowser.Server.Implementations/Localization/Server/ca.json index 86e71c8b46..49fcd71270 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ca.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ca.json @@ -1,10 +1,11 @@ { "LabelExit": "Sortir", "LabelVisitCommunity": "Visitar la comunitat", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Est\u00e0ndard", - "LabelViewApiDocumentation": "Veure la documentaci\u00f3 de l'API", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Examinar la biblioteca", "LabelConfigureMediaBrowser": "Configurar Media Browser", "LabelOpenLibraryViewer": "Obrir el visor de la biblioteca", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/cs.json b/MediaBrowser.Server.Implementations/Localization/Server/cs.json index 531ca916a5..69b1131791 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/cs.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/cs.json @@ -1,10 +1,11 @@ { "LabelExit": "Zav\u0159\u00edt", "LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standardn\u00ed", - "LabelViewApiDocumentation": "Zobrazit dokumentaci API", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Proch\u00e1zet knihovnu", "LabelConfigureMediaBrowser": "Konfigurovat Media Browser", "LabelOpenLibraryViewer": "Otev\u0159\u00edt knihovnu", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Dokumentace API", "LabelFriendlyServerName": "N\u00e1zev serveru:", "LabelFriendlyServerNameHelp": "Toto jm\u00e9no bude pou\u017eito jako identifikace serveru, ponech\u00e1te-li pr\u00e1zdn\u00e9 bude pou\u017eit n\u00e1zev po\u010d\u00edta\u010de.", - "LabelPreferredDisplayLanguage": "Preferovan\u00fd jazyk zobrazen\u00ed:", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "P\u0159eklad programu Media Browser prob\u00edh\u00e1, a je\u0161t\u011b nen\u00ed dokon\u010den.", "LabelReadHowYouCanContribute": "P\u0159e\u010dt\u011bte si o tom, jak m\u016f\u017eete p\u0159isp\u011bt.", "HeaderNewCollection": "Nov\u00e1 kolekce", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/da.json b/MediaBrowser.Server.Implementations/Localization/Server/da.json index a693f28b23..9e9af8d760 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/da.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/da.json @@ -1,10 +1,11 @@ { "LabelExit": "Afslut", "LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Se Api dokumentation", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Gennemse biblitek", "LabelConfigureMediaBrowser": "Konfigurere Media Browser", "LabelOpenLibraryViewer": "\u00c5ben Biblioteks Fremviser", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/de.json b/MediaBrowser.Server.Implementations/Localization/Server/de.json index af2160a668..af14c588f0 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/de.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/de.json @@ -1,10 +1,11 @@ { "LabelExit": "Beenden", "LabelVisitCommunity": "Besuche die Community", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Zeige API Dokumentation", + "LabelApiDocumentation": "Api Dokumentation", + "LabelDeveloperResources": "Entwickler Resources", "LabelBrowseLibrary": "Durchsuche Bibliothek", "LabelConfigureMediaBrowser": "Konfiguriere Media Browser", "LabelOpenLibraryViewer": "\u00d6ffne Bibliothekenansicht", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Lade automatisch Bilder und Videos in Media Browser hoch, die mit deinen Mobilger\u00e4ten aufgenommen wurden.", "MessageNoDevicesSupportCameraUpload": "Du hast bis jetzt keine Ger\u00e4t die den Kamera-Upload unterst\u00fctzen.", "LabelCameraUploadPath": "Kamera-Upload Pfad:", - "LabelCameraUploadPathHelp": "W\u00e4hle, fals gew\u00fcnscht, einen individuellen Upload Pfad. Falls keiner festgelegt wird, wird der Standard Pfad genutzt.", + "LabelCameraUploadPathHelp": "W\u00e4hle, falls gew\u00fcnscht, einen eigenen Upload Pfad. Wird keiner festgelegt, so wird der Standard-Pfad verwendet. Ein eigener Pfad muss zus\u00e4tzlich in der Medien Bibliothek hinzugef\u00fcgt werden!", "LabelCreateCameraUploadSubfolder": "Erstelle ein Unterverzeichnis f\u00fcr jedes Ger\u00e4t", "LabelCreateCameraUploadSubfolderHelp": "Bestimmte Verzeichnisse k\u00f6nnen Ger\u00e4ten durch einen Klick auf der Ger\u00e4teseite zugewiesen werden.", "LabelCustomDeviceDisplayName": "Angezeigter Name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/el.json b/MediaBrowser.Server.Implementations/Localization/Server/el.json index 1d38390439..577f6a68fb 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/el.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/el.json @@ -1,10 +1,11 @@ { "LabelExit": "\u03ad\u03be\u03bf\u03b4\u03bf\u03c2", "LabelVisitCommunity": "\u0395\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7 \u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf", - "LabelViewApiDocumentation": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae Api \u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "\u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7", "LabelConfigureMediaBrowser": "\u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Media Browser", "LabelOpenLibraryViewer": "\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b8\u03b5\u03b1\u03c4\u03ae", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json b/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json index 8528966bdd..38dfb5cf9b 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json @@ -1,10 +1,11 @@ { "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "View Api Documentation", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Browse Library", "LabelConfigureMediaBrowser": "Configure Media Browser", "LabelOpenLibraryViewer": "Open Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/en_US.json b/MediaBrowser.Server.Implementations/Localization/Server/en_US.json index 55ea458867..4ae46d0d23 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/en_US.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/en_US.json @@ -1,10 +1,11 @@ { "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "View Api Documentation", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Browse Library", "LabelConfigureMediaBrowser": "Configure Media Browser", "LabelOpenLibraryViewer": "Open Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/es.json b/MediaBrowser.Server.Implementations/Localization/Server/es.json index 1b3e8f6805..6d4ea04941 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/es.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/es.json @@ -1,10 +1,11 @@ { "LabelExit": "Salir", "LabelVisitCommunity": "Visitar la comunidad", - "LabelGithubWiki": "Wiki de Github", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Est\u00e1ndar", - "LabelViewApiDocumentation": "Ver documentacion de Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Navegar biblioteca", "LabelConfigureMediaBrowser": "Configurar Media Browser", "LabelOpenLibraryViewer": "Abrir el visor de la biblioteca", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Documentaci\u00f3n API", "LabelFriendlyServerName": "Nombre informal del servidor:", "LabelFriendlyServerNameHelp": "Este nombre se podr\u00e1 utilizar para identificar este servidor. Si se deja en blanco se usar\u00e1 el nombre del ordenador.", - "LabelPreferredDisplayLanguage": "Idioma de pantalla preferido", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "La traducci\u00f3n de Media Browser es un proyecto en curso y a\u00fan no est\u00e1 completado.", "LabelReadHowYouCanContribute": "Lea acerca de c\u00f3mo usted puede contribuir.", "HeaderNewCollection": "Nueva colecci\u00f3n", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json b/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json index 786bbd26bd..ea358ee489 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json @@ -1,10 +1,11 @@ { "LabelExit": "Salir", "LabelVisitCommunity": "Visitar la Comunidad", - "LabelGithubWiki": "Wiki de Github", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Est\u00e1ndar", - "LabelViewApiDocumentation": "Ver documentaci\u00f3n del Api", + "LabelApiDocumentation": "Documentaci\u00f3n del API", + "LabelDeveloperResources": "Recursos para Desarrolladores", "LabelBrowseLibrary": "Explorar Biblioteca", "LabelConfigureMediaBrowser": "Configurar Media Browser", "LabelOpenLibraryViewer": "Abrir el Visor de la Biblioteca", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Suba a Media Broswer fotos y videos tomados desde sus dispositivos m\u00f3viles de forma autom\u00e1tica.", "MessageNoDevicesSupportCameraUpload": "Actualmente no cuenta con ning\u00fan dispositivo que soporte subir desde la c\u00e1mara.", "LabelCameraUploadPath": "Ruta para subir desde la c\u00e1mara:", - "LabelCameraUploadPathHelp": "Seleccione una ruta personalizada. si lo desea. Si no se especifica, se emplear\u00e1 una carpeta por omisi\u00f3n.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Crear una subcarpeta para cada dispositivo", "LabelCreateCameraUploadSubfolderHelp": "Se pueden especificar carpetas espec\u00edficas para un dispositivo haciendo clic en \u00e9l desde la p\u00e1gina de Dispositivos.", "LabelCustomDeviceDisplayName": "Nombre a Desplegar:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/fi.json b/MediaBrowser.Server.Implementations/Localization/Server/fi.json index eab73e9e43..523f6c15c8 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/fi.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/fi.json @@ -1,10 +1,11 @@ { "LabelExit": "Poistu", "LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Normaali", - "LabelViewApiDocumentation": "Katso Api Dokumenttia", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Selaa Kirjastoa", "LabelConfigureMediaBrowser": "Configuroi Media Browseria", "LabelOpenLibraryViewer": "Avaa Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/fr.json b/MediaBrowser.Server.Implementations/Localization/Server/fr.json index 275751ec2b..7b09c88e5d 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/fr.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/fr.json @@ -1,10 +1,11 @@ { "LabelExit": "Quitter", "LabelVisitCommunity": "Visiter la Communaut\u00e9", - "LabelGithubWiki": "GitHub Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Consulter la documentation API", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Parcourir la biblioth\u00e8que", "LabelConfigureMediaBrowser": "Configurer Media Browser", "LabelOpenLibraryViewer": "Ouvrir le navigateur de biblioth\u00e8que", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Uploader automatiquement les photos et les vid\u00e9os depuis vos p\u00e9riph\u00e9riques mobiles dans Media Browser.", "MessageNoDevicesSupportCameraUpload": "Vous n'avez actuellement aucun p\u00e9riph\u00e9riques support\u00e9 par l'upload de la cam\u00e9ra.", "LabelCameraUploadPath": "R\u00e9pertoire de l'upload de la camera:", - "LabelCameraUploadPathHelp": "Si vous le souhaiter, s\u00e9lectionner un r\u00e9pertoire personnalis\u00e9 pour l'upload. Si non sp\u00e9cifi\u00e9, un r\u00e9pertoire par d\u00e9faut sera utilis\u00e9.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Cr\u00e9er un sous-dossier pour chaque p\u00e9riph\u00e9rique", "LabelCreateCameraUploadSubfolderHelp": "Des r\u00e9pertoires sp\u00e9cifiques peuvent \u00eatres affect\u00e9 \u00e0 des appareils en cliquant sur l'appareil dans la page des appareils.", "LabelCustomDeviceDisplayName": "Nom d'affichage:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/he.json b/MediaBrowser.Server.Implementations/Localization/Server/he.json index 4c45a5df6d..9bebfbe90f 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/he.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/he.json @@ -1,10 +1,11 @@ { "LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4", - "LabelGithubWiki": "\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05e7\u05d5\u05d3", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u05e8\u05d2\u05d9\u05dc", - "LabelViewApiDocumentation": "\u05e8\u05d0\u05d4 \u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "\u05d3\u05e4\u05d3\u05e3 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4", "LabelConfigureMediaBrowser": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea Media Browser", "LabelOpenLibraryViewer": "\u05e4\u05ea\u05d7 \u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "\u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7", "LabelFriendlyServerName": "\u05e9\u05dd \u05e9\u05e8\u05ea \u05d9\u05d3\u05d9\u05d3\u05d5\u05ea\u05d9:", "LabelFriendlyServerNameHelp": "\u05d4\u05e9\u05dd \u05d9\u05ea\u05df \u05dc\u05d6\u05d9\u05d4\u05d5\u05d9 \u05d4\u05e9\u05e8\u05ea. \u05d0\u05dd \u05de\u05d5\u05e9\u05d0\u05e8 \u05e8\u05d9\u05e7, \u05e9\u05dd \u05d4\u05e9\u05e8\u05ea \u05d9\u05d4\u05d9\u05d4 \u05e9\u05dd \u05d4\u05de\u05d7\u05e9\u05d1.", - "LabelPreferredDisplayLanguage": "\u05e9\u05e4\u05ea \u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "\u05ea\u05e8\u05d2\u05d5\u05dd Media Browser \u05d4\u05d5\u05d0 \u05ea\u05d4\u05dc\u05d9\u05da \u05d1\u05d4\u05ea\u05d4\u05d5\u05d5\u05ea \u05d5\u05e2\u05d3\u05d9\u05df \u05dc\u05d0 \u05de\u05d5\u05e9\u05dc\u05dd.", "LabelReadHowYouCanContribute": "\u05e7\u05e8\u05d0 \u05db\u05d9\u05e6\u05d3 \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05ea\u05e8\u05d5\u05dd.", "HeaderNewCollection": "\u05d0\u05d5\u05e4\u05e1\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/hr.json b/MediaBrowser.Server.Implementations/Localization/Server/hr.json index a9dc8a6ae6..803781fcb5 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/hr.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/hr.json @@ -1,10 +1,11 @@ { "LabelExit": "Izlaz", "LabelVisitCommunity": "Posjeti zajednicu", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Pregledaj API dokumentaciju", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Pregledaj biblioteku", "LabelConfigureMediaBrowser": "Konfiguriraj Media Browser", "LabelOpenLibraryViewer": "Otvori preglednik bibilioteke", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Api dokumentacija", "LabelFriendlyServerName": "Prijateljsko ime servera:", "LabelFriendlyServerNameHelp": "Ovo ime \u0107e se koristiti za identifikaciju servera. Ako ostavite prazno, ime ra\u010dunala \u0107e se koristi kao identifikator.", - "LabelPreferredDisplayLanguage": "\u017deljeni jezik prikaza", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "Prevo\u0111enje Media Browsera je projekt u tjeku i nije jo\u0161 zavr\u0161en.", "LabelReadHowYouCanContribute": "Pro\u010ditajte kako mo\u017eete doprinjeti.", "HeaderNewCollection": "Nova kolekcija", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/it.json b/MediaBrowser.Server.Implementations/Localization/Server/it.json index 6f082ee0fa..e286b7549b 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/it.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/it.json @@ -1,10 +1,11 @@ { "LabelExit": "Esci", "LabelVisitCommunity": "Visita Comunit\u00e0", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Documentazione Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Esplora la libreria", "LabelConfigureMediaBrowser": "Configura Media Browser", "LabelOpenLibraryViewer": "Apri visualizzatore libreria", @@ -145,11 +146,11 @@ "OptionBudget": "Budget", "OptionRevenue": "Recensione", "OptionPoster": "Locandina", - "OptionPosterCard": "Poster card", + "OptionPosterCard": "scheda poster", "OptionBackdrop": "Sfondo", "OptionTimeline": "Anno", "OptionThumb": "Sfondo", - "OptionThumbCard": "Thumb card", + "OptionThumbCard": "carta Thumb", "OptionBanner": "Banner", "OptionCriticRating": "Voto critica", "OptionVideoBitrate": "Video Bitrate", @@ -234,9 +235,9 @@ "OptionAllowDeleteLibraryContent": "Consenti a questo utente di eliminare il contenuti della libreria", "OptionAllowManageLiveTv": "Consenti la modifica delle operazioni pianificate della TV", "OptionAllowRemoteControlOthers": "Consenti a questo utente di controllare in remoto altri utenti", - "OptionAllowRemoteSharedDevices": "Allow this user to remote control shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "HeaderRemoteControl": "Remote Control", + "OptionAllowRemoteSharedDevices": "Consenti a questo utente di dispositivi di controllo remoto condivisi", + "OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisa fino a quando un utente inizia controllarlo.", + "HeaderRemoteControl": "telecomando", "OptionMissingTmdbId": "Tmdb Id mancante", "OptionIsHD": "HD", "OptionIsSD": "SD", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Documentazione Api", "LabelFriendlyServerName": "Nome condiviso del server:", "LabelFriendlyServerNameHelp": "Questo nome \u00e8 usato per identificare il server sulla rete.Se lasciato vuoto verra usato il nome del pc", - "LabelPreferredDisplayLanguage": "Lingua preferita", + "LabelPreferredDisplayLanguage": "Lingua preferita visualizzata", "LabelPreferredDisplayLanguageHelp": "La traduzione nella tua lingua non \u00e8 ancora completa.Scusa.", "LabelReadHowYouCanContribute": "Leggi come puoi contribuire", "HeaderNewCollection": "Nuova collezione", @@ -843,8 +844,8 @@ "ViewTypeTvShows": "Serie Tv", "ViewTypeGames": "Giochi", "ViewTypeMusic": "Musica", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", + "ViewTypeMusicGenres": "Generi", + "ViewTypeMusicArtists": "Artisti", "ViewTypeBoxSets": "Collezioni", "ViewTypeChannels": "Canali", "ViewTypeLiveTV": "Tv diretta", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Caricare automaticamente foto e video presi dai vostri dispositivi mobili in Media Browser.", "MessageNoDevicesSupportCameraUpload": "Al momento non si dispone di dispositivi che supportano il caricamento della fotocamera.", "LabelCameraUploadPath": "Fotocamera percorso di upload:", - "LabelCameraUploadPathHelp": "Selezionare un percorso di caricamento personalizzato, se lo si desidera. Se non specificato verr\u00e0 utilizzata una cartella predefinita.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Creare una sottocartella per ogni dispositivo", "LabelCreateCameraUploadSubfolderHelp": "Cartelle specifici possono essere assegnati a un dispositivo facendo clic su di esso dalla pagina Dispositivi.", "LabelCustomDeviceDisplayName": "Nome da visualizzare:", @@ -1224,7 +1225,7 @@ "LabelConnectGuestUserNameHelp": "Questo \u00e8 il nome utente che il tuo amico utilizza per accedere al sito Web Media Browser, o il loro indirizzo e-mail.", "HeaderInviteUserHelp": "Condividere i tuoi contenuti multimediali con gli amici \u00e8 pi\u00f9 facile che mai con il Browser Media Connect.", "ButtonSendInvitation": "Invia Invito", - "HeaderSignInWithConnect": "Sign in with Media Browser Connect", + "HeaderSignInWithConnect": "Accedi con Browser Media Connect", "HeaderGuests": "ospiti", "HeaderLocalUsers": "Utenti locale", "HeaderPendingInvitations": "Inviti in sospeso", @@ -1263,13 +1264,13 @@ "HeaderShareMediaFolders": "Condividi Cartelle dei media", "MessageGuestSharingPermissionsHelp": "a maggior parte delle caratteristiche sono inizialmente disponibili per gli ospiti, ma possono essere attivate in base alle esigenze.", "HeaderInvitations": "Inviti", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "HeaderForgotPassword": "Forgot Password", - "TitleForgotPassword": "Forgot Password", - "TitlePasswordReset": "Password Reset", - "LabelPasswordRecoveryPinCode": "Pin code:", + "LabelForgotPasswordUsernameHelp": "Inserisci il tuo nome utente, se te lo ricordi.", + "HeaderForgotPassword": "Password dimenticata", + "TitleForgotPassword": "Password Dimenticata", + "TitlePasswordReset": "Password dimenticata", + "LabelPasswordRecoveryPinCode": "Codice Pin:", "HeaderPasswordReset": "Password Reset", - "HeaderParentalRatings": "Parental Ratings", - "HeaderVideoTypes": "Video Types", - "HeaderYears": "Years" + "HeaderParentalRatings": "Valutazioni genitori", + "HeaderVideoTypes": "Tipi Video", + "HeaderYears": "Anni" } \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/kk.json b/MediaBrowser.Server.Implementations/Localization/Server/kk.json index f2625c9ecf..e036a5a190 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/kk.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/kk.json @@ -1,10 +1,11 @@ { "LabelExit": "\u0428\u044b\u0493\u0443", "LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443", - "LabelGithubWiki": "Github \u0443\u0438\u043a\u0438\u0456", + "LabelGithub": "Github \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456", "LabelSwagger": "Swagger \u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0456", "LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b", - "LabelViewApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b\u043d \u049b\u0430\u0440\u0430\u0443", + "LabelApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", + "LabelDeveloperResources": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u04e9\u0437\u0434\u0435\u0440\u0456", "LabelBrowseLibrary": "\u0422\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443", "LabelConfigureMediaBrowser": "Media Browser \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f\u0441\u044b", "LabelOpenLibraryViewer": "\u0422\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b \u049b\u0430\u0440\u0430\u0443 \u049b\u04b1\u0440\u0430\u043b\u044b", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "\u04b0\u0442\u049b\u044b\u0440 \u0436\u0430\u0431\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u043c\u0435\u043d \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b Media Browser \u0456\u0448\u0456\u043d\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0431\u0435\u0440\u0443.", "MessageNoDevicesSupportCameraUpload": "\u0410\u0493\u044b\u043c\u0434\u0430 \u043a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0431\u0435\u0440\u0435\u0442\u0456\u043d \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0436\u0430\u0431\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437 \u0436\u043e\u049b.", "LabelCameraUploadPath": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443 \u0436\u043e\u043b\u044b:", - "LabelCameraUploadPathHelp": "\u0415\u0433\u0435\u0440 \u043a\u0435\u0440\u0435\u043a \u0431\u043e\u043b\u0441\u0430, \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u043e\u043b\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0441\u0435, \u04d9\u0434\u0435\u043f\u043a\u0456 \u049b\u0430\u043b\u0442\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "\u04d8\u0440\u049b\u0430\u0439\u0441\u044b \u0436\u0430\u0431\u0434\u044b\u049b \u04af\u0448\u0456\u043d \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0441\u0430\u0443", "LabelCreateCameraUploadSubfolderHelp": "\u0416\u0430\u0431\u0434\u044b\u049b\u0442\u0430\u0440 \u0431\u0435\u0442\u0456\u043d\u0434\u0435 \u043d\u04b1\u049b\u044b\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0431\u0434\u044b\u049b\u049b\u0430 \u043d\u0430\u049b\u0442\u044b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelCustomDeviceDisplayName": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0443 \u0430\u0442\u044b:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ko.json b/MediaBrowser.Server.Implementations/Localization/Server/ko.json index 94cf3b12c6..b8b225801e 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ko.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ko.json @@ -1,10 +1,11 @@ { "LabelExit": "Schweinsteiger", "LabelVisitCommunity": "Visit Community", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "View Api Documentation", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Browse Library", "LabelConfigureMediaBrowser": "Configure Media Browser", "LabelOpenLibraryViewer": "Open Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ms.json b/MediaBrowser.Server.Implementations/Localization/Server/ms.json index b60c73271e..e377a505e8 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ms.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ms.json @@ -1,10 +1,11 @@ { "LabelExit": "Tutup", "LabelVisitCommunity": "Melawat Masyarakat", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Biasa", - "LabelViewApiDocumentation": "Melihat Dokumentasi Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Imbas Pengumpulan", "LabelConfigureMediaBrowser": "Konfigurasi Media Browser", "LabelOpenLibraryViewer": "Open Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/nb.json b/MediaBrowser.Server.Implementations/Localization/Server/nb.json index 293492bd6c..0e4eb83228 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/nb.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/nb.json @@ -1,10 +1,11 @@ { "LabelExit": "Avslutt", "LabelVisitCommunity": "Bes\u00f8k oss", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standard", - "LabelViewApiDocumentation": "Se Api-dokumentasjon", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Browse biblioteket", "LabelConfigureMediaBrowser": "Konfigurer Media Browser", "LabelOpenLibraryViewer": "\u00c5pne Biblioteket", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Api Dokumentasjon", "LabelFriendlyServerName": "Vennlig server navn:", "LabelFriendlyServerNameHelp": "Dette navnet vil bli brukt for \u00e5 identifisere denne serveren. Hvis feltet er tomt, vil maskinens navn bli brukt.", - "LabelPreferredDisplayLanguage": "Foretrukket visningsspr\u00e5k", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "Oversetting av Media Browser er ett p\u00e5g\u00e5ende prosjekt og er enda ikke fullstendig ferdig.", "LabelReadHowYouCanContribute": "Les mer om hvordan du kan bidra.", "HeaderNewCollection": "Ny Samling", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "Du har for \u00f8yeblikket ingen enheter som st\u00f8tter kameraopplasting.", "LabelCameraUploadPath": "Sti til kameraopplasting:", - "LabelCameraUploadPathHelp": "Velg en egendefinert sti for opplasting hvis du vil. Hvis ikke brukes en standard sti.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Lag en underkatalog for hver enhet", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Visningsnavn:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/nl.json b/MediaBrowser.Server.Implementations/Localization/Server/nl.json index 07137a853b..19a157ea5f 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/nl.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/nl.json @@ -1,10 +1,11 @@ { "LabelExit": "Afsluiten", "LabelVisitCommunity": "Bezoek Gemeenschap", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standaard", - "LabelViewApiDocumentation": "Bekijk Api documentatie", + "LabelApiDocumentation": "Api documentatie", + "LabelDeveloperResources": "Ontwikkelaars bronnen", "LabelBrowseLibrary": "Bekijk bibliotheek", "LabelConfigureMediaBrowser": "Configureer Media Browser", "LabelOpenLibraryViewer": "Open bibliotheek verkenner", @@ -81,7 +82,7 @@ "LabelNewPassword": "Nieuw wachtwoord:", "LabelNewPasswordConfirm": "Bevestig nieuw wachtwoord:", "HeaderCreatePassword": "Maak wachtwoord", - "LabelCurrentPassword": "Huidig wachtwoord", + "LabelCurrentPassword": "Huidig wachtwoord:", "LabelMaxParentalRating": "Maximaal toegestane kijkwijzer classificatie:", "MaxParentalRatingHelp": "Media met een hogere classificatie wordt niet weergegeven", "LibraryAccessHelp": "Selecteer de mediamappen om met deze gebruiker te delen. Beheerders kunnen alle mappen bewerken via de metadata manager.", @@ -149,7 +150,7 @@ "OptionBackdrop": "Achtergrond", "OptionTimeline": "Tijdlijn", "OptionThumb": "Miniatuur", - "OptionThumbCard": "Thumb kaart", + "OptionThumbCard": "Miniaturen kaart", "OptionBanner": "Banner", "OptionCriticRating": "Kritieken", "OptionVideoBitrate": "Video Bitrate", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Api Documentatie", "LabelFriendlyServerName": "Aangepaste servernaam", "LabelFriendlyServerNameHelp": "Deze naam wordt gebruikt om deze server te identificeren. Indien leeg gelaten, zal de naam van de computer worden gebruikt.", - "LabelPreferredDisplayLanguage": "Voorkeurs weergavetaal", + "LabelPreferredDisplayLanguage": "Voorkeurs weergavetaal:", "LabelPreferredDisplayLanguageHelp": "Het vertalen van Media Browser is een doorlopend project en is nog niet voltooid.", "LabelReadHowYouCanContribute": "Lees meer over hoe u kunt bijdragen.", "HeaderNewCollection": "Nieuwe Verzamling", @@ -788,8 +789,8 @@ "TabDisplay": "Weergave", "TabLanguages": "Talen", "TabWebClient": "Web Client", - "LabelEnableThemeSongs": "Theme songs inschakelen", - "LabelEnableBackdrops": "Achtergronden inschakelen", + "LabelEnableThemeSongs": "Theme songs inschakelen:", + "LabelEnableBackdrops": "Achtergronden inschakelen:", "LabelEnableThemeSongsHelp": "Indien ingeschakeld, zullen theme songs in de achtergrond worden afgespeeld tijdens het browsen door de bibliotheek.", "LabelEnableBackdropsHelp": "Indien ingeschakeld, zullen achtergrondafbeeldingen in de achtergrond worden getoond van een aantal pagina's tijdens het browsen door de bibliotheek.", "HeaderHomePage": "Startpagina", @@ -1020,9 +1021,9 @@ "ItemAddedWithName": "{0} is toegevoegd aan de bibliotheek", "ItemRemovedWithName": "{0} is verwijderd uit de bibliotheek", "DeviceOnlineWithName": "{0} is verbonden", - "UserOnlineFromDevice": "{0} is aangemeld met {1}", + "UserOnlineFromDevice": "{0} heeft verbinding met {1}", "DeviceOfflineWithName": "{0} is losgekoppeld", - "UserOfflineFromDevice": "{0} is afgemeld bij {1}", + "UserOfflineFromDevice": "Verbinding van {0} met {1} is verbroken", "SubtitlesDownloadedForItem": "Ondertiteling voor {0} is gedownload", "SubtitleDownloadFailureForItem": "Downloaden van ondertiteling voor {0} is mislukt", "LabelRunningTimeValue": "Looptijd: {0}", @@ -1053,7 +1054,7 @@ "ViewTypeLiveTvRecordingGroups": "Opnamen", "ViewTypeLiveTvChannels": "Kanalen", "LabelAllowLocalAccessWithoutPassword": "Lokale toegang toestaan zonder wachtwoord", - "LabelAllowLocalAccessWithoutPasswordHelp": "Als dit ingeschakled is dan kan er in het thuisnetwerk zonder wachtwoord aangemeld worden.", + "LabelAllowLocalAccessWithoutPasswordHelp": "Als dit ingeschakeld is dan kan er in het thuisnetwerk zonder wachtwoord aangemeld worden.", "HeaderPassword": "Wachtwoord", "HeaderLocalAccess": "Lokale toegang", "HeaderViewOrder": "Weergave volgorde", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Upload automatisch foto's en video's van je mobiele apparaten naar Media Browser.", "MessageNoDevicesSupportCameraUpload": "Je hebt op dit moment geen apparaten die camera upload ondersteunen.", "LabelCameraUploadPath": "Camera upload pad:", - "LabelCameraUploadPathHelp": "Selecteer, als gewenst, een eigen upload pad. De standaard map zal gebruikt worden als er niets ingevuld wordt.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Maak een submap voor elk apparaat", "LabelCreateCameraUploadSubfolderHelp": "Specifieke mappen kunnen aan een apparaat toegekend worden door er op te klikken in de apparaten pagina.", "LabelCustomDeviceDisplayName": "Weergave naam:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/pl.json b/MediaBrowser.Server.Implementations/Localization/Server/pl.json index ea2cd85f59..aedac93275 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/pl.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/pl.json @@ -1,10 +1,11 @@ { "LabelExit": "Wyj\u015b\u0107", "LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107", - "LabelGithubWiki": "Wiki Github", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standardowy", - "LabelViewApiDocumentation": "Zobacz dokumentacj\u0119 Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Przejrzyj bibliotek\u0119", "LabelConfigureMediaBrowser": "Skonfiguruj Media Browser", "LabelOpenLibraryViewer": "Otw\u00f3rz przegl\u0105dark\u0119 biblioteki", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json b/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json index 59fd20724c..9889f5e3a6 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json @@ -1,10 +1,11 @@ { "LabelExit": "Sair", "LabelVisitCommunity": "Visitar a Comunidade", - "LabelGithubWiki": "Wiki do Github", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Padr\u00e3o", - "LabelViewApiDocumentation": "Ver documenta\u00e7\u00e3o da Api", + "LabelApiDocumentation": "Documenta\u00e7\u00e3o da Api", + "LabelDeveloperResources": "Recursos do Desenvolvedor", "LabelBrowseLibrary": "Navegar pela Biblioteca", "LabelConfigureMediaBrowser": "Configurar Media Browser", "LabelOpenLibraryViewer": "Abrir Visualizador da Biblioteca", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Carga autom\u00e1tica de fotos e v\u00eddeos de seus dispositivos m\u00f3veis para o Media Browser.", "MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte carga atrav\u00e9s da c\u00e2mera.", "LabelCameraUploadPath": "Caminho para carga atrav\u00e9s da c\u00e2mera:", - "LabelCameraUploadPathHelp": "Selecione o caminho, caso desejado. Se n\u00e3o for especificado um caminho, ser\u00e1 usada uma pasta padr\u00e3o.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Criar uma subpasta para cada dispositivo", "LabelCreateCameraUploadSubfolderHelp": "Pastas espec\u00edficas podem ser atribu\u00eddas a um dispositivo clicando-as na p\u00e1gina de Dispositivos.", "LabelCustomDeviceDisplayName": "Nome para exibi\u00e7\u00e3o:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json b/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json index b98714032b..6fae09621d 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json @@ -1,10 +1,11 @@ { "LabelExit": "Sair", "LabelVisitCommunity": "Visitar a Comunidade", - "LabelGithubWiki": "Wiki do Github", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Padr\u00e3o", - "LabelViewApiDocumentation": "Ver Documenta\u00e7\u00e3o da API", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Navegar pela Biblioteca", "LabelConfigureMediaBrowser": "Configurar o Media Browser", "LabelOpenLibraryViewer": "Abrir Visualizador da Biblioteca", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Documenta\u00e7\u00e3o da API", "LabelFriendlyServerName": "Nome amig\u00e1vel do servidor:", "LabelFriendlyServerNameHelp": "Ser\u00e1 usado este nome para identificar o servidor. Se n\u00e3o for preenchido, ser\u00e1 usado o nome do computador.", - "LabelPreferredDisplayLanguage": "Idioma de apresenta\u00e7\u00e3o de prefer\u00eancia", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "A tradu\u00e7\u00e3o do Media Browser \u00e9 um projeto em andamento e ainda n\u00e3o est\u00e1 completo.", "LabelReadHowYouCanContribute": "Leia sobre como pode contribuir.", "HeaderNewCollection": "Nova Cole\u00e7\u00e3o", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ru.json b/MediaBrowser.Server.Implementations/Localization/Server/ru.json index 2918c9145a..ef3d1f0082 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ru.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ru.json @@ -1,10 +1,11 @@ { "LabelExit": "\u0412\u044b\u0445\u043e\u0434", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e", - "LabelGithubWiki": "\u0412\u0438\u043a\u0438 \u043d\u0430 Github", + "LabelGithub": "\u0420\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 Github", "LabelSwagger": "\u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Swagger", "LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442", - "LabelViewApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API", + "LabelApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API", + "LabelDeveloperResources": "\u0420\u0435\u0441\u0443\u0440\u0441\u044b \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432", "LabelBrowseLibrary": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", "LabelConfigureMediaBrowser": "\u041d\u0430\u0441\u0442\u0440o\u0439\u043a\u0430 Media Browser", "LabelOpenLibraryViewer": "\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", @@ -234,7 +235,7 @@ "OptionAllowDeleteLibraryContent": "\u042d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", "OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0442\u0432", "OptionAllowRemoteControlOthers": "\u042d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", - "OptionAllowRemoteSharedDevices": "\u042d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0431\u0449\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438", + "OptionAllowRemoteSharedDevices": "\u042d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0431\u0449\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438", "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043e\u0431\u0449\u0438\u043c\u0438, \u043f\u043e\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.", "HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "OptionMissingTmdbId": "\u041d\u0435\u0442 TMDb Id", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439 \u0438 \u0432\u0438\u0434\u0435\u043e \u0438\u0437 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0432 Media Browser.", "MessageNoDevicesSupportCameraUpload": "\u041d\u0435\u0442 \u043a\u0430\u043a\u0438\u0445-\u043b\u0438\u0431\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0449\u0438\u0445 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b.", "LabelCameraUploadPath": "\u041f\u0443\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0433\u043e \u0441 \u043a\u0430\u043c\u0435\u0440\u044b:", - "LabelCameraUploadPathHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0434\u043b\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0433\u043e, \u043f\u043e \u0436\u0435\u043b\u0430\u043d\u0438\u044e. \u0415\u0441\u043b\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e, \u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "LabelCreateCameraUploadSubfolderHelp": "\u0421\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u044b \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438 \u0449\u0435\u043b\u0447\u043a\u0435 \u043d\u0430 \u043d\u0451\u043c \u0441\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \"\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\".", "LabelCustomDeviceDisplayName": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/sv.json b/MediaBrowser.Server.Implementations/Localization/Server/sv.json index f60587f625..49af0e9862 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/sv.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/sv.json @@ -1,10 +1,11 @@ { "LabelExit": "Avsluta", "LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "F\u00f6rval", - "LabelViewApiDocumentation": "L\u00e4s API-dokumentationen", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Bl\u00e4ddra i biblioteket", "LabelConfigureMediaBrowser": "Konfigurera Media Browser", "LabelOpenLibraryViewer": "\u00d6ppna biblioteksbl\u00e4ddraren", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "API-dokumentation", "LabelFriendlyServerName": "Ditt \u00f6nskade servernamn:", "LabelFriendlyServerNameHelp": "Det h\u00e4r namnet anv\u00e4nds f\u00f6r att identifiera servern, om det l\u00e4mnas tomt kommer datorns namn att anv\u00e4ndas.", - "LabelPreferredDisplayLanguage": "\u00d6nskat visningsspr\u00e5k", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "\u00d6vers\u00e4ttningen av Media Browser \u00e4r ett p\u00e5g\u00e5ende projekt och \u00e4nnu ej f\u00e4rdigst\u00e4llt.", "LabelReadHowYouCanContribute": "L\u00e4s om hur du kan bidra.", "HeaderNewCollection": "Ny samling", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Ladda automatiskt upp foton och videor tagna med mobila enheter till Media Browser.", "MessageNoDevicesSupportCameraUpload": "Du har inga enheter som st\u00f6djer kamerauppladdning.", "LabelCameraUploadPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r kamerauppladdning:", - "LabelCameraUploadPathHelp": "V\u00e4lj en anpassad s\u00f6kv\u00e4g om s\u00e5 \u00f6nskas. Annars anv\u00e4nds en f\u00f6rvald mapp.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Skapa en undermapp f\u00f6r varje enhet", "LabelCreateCameraUploadSubfolderHelp": "S\u00e4rskilda mappar f\u00f6r varje enhet kan anges p\u00e5 sidan \"Enheter\" genom att klicka p\u00e5 resp. enhet.", "LabelCustomDeviceDisplayName": "Visningsnamn:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/tr.json b/MediaBrowser.Server.Implementations/Localization/Server/tr.json index 8851e2b903..7708ade1d4 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/tr.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/tr.json @@ -1,10 +1,11 @@ { "LabelExit": "Cikis", "LabelVisitCommunity": "Bizi Ziyaret Edin", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Standart", - "LabelViewApiDocumentation": "Api D\u00f6k\u00fcman\u0131 Goruntule", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "K\u00fct\u00fcphane", "LabelConfigureMediaBrowser": "Media Taray\u0131c\u0131 Konfig\u00fcrasyon", "LabelOpenLibraryViewer": "K\u00fct\u00fcphane G\u00f6r\u00fcnt\u00fcleyici", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/vi.json b/MediaBrowser.Server.Implementations/Localization/Server/vi.json index dc2cc2f3d1..dfafbe2a13 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/vi.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/vi.json @@ -1,10 +1,11 @@ { "LabelExit": "Tho\u00e1t", "LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng", - "LabelGithubWiki": "Github Wiki", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "Ti\u00eau chu\u1ea9n", - "LabelViewApiDocumentation": "T\u00e0i li\u1ec7u xem Api", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "Duy\u1ec7t th\u01b0 vi\u1ec7n", "LabelConfigureMediaBrowser": "C\u1ea5u h\u00ecnh Media Browser", "LabelOpenLibraryViewer": "Open Library Viewer", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/zh_CN.json b/MediaBrowser.Server.Implementations/Localization/Server/zh_CN.json index 66ed0c049d..1a1a2dca32 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/zh_CN.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/zh_CN.json @@ -1,10 +1,11 @@ { "LabelExit": "\u79bb\u5f00", "LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a", - "LabelGithubWiki": "Github\u7ef4\u57fa", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u6807\u51c6", - "LabelViewApiDocumentation": "\u67e5\u770bAPi\u6587\u6863", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "\u6d4f\u89c8\u5a92\u4f53\u5e93", "LabelConfigureMediaBrowser": "\u914d\u7f6eMedia Browser", "LabelOpenLibraryViewer": "\u6253\u5f00\u5a92\u4f53\u5e93\u6d4f\u89c8\u5668", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "Api \u6587\u6863", "LabelFriendlyServerName": "\u597d\u8bb0\u7684\u670d\u52a1\u5668\u540d\u79f0\uff1a", "LabelFriendlyServerNameHelp": "\u6b64\u540d\u79f0\u5c06\u7528\u505a\u670d\u52a1\u5668\u540d\uff0c\u5982\u679c\u7559\u7a7a\uff0c\u5c06\u4f7f\u7528\u8ba1\u7b97\u673a\u540d\u3002", - "LabelPreferredDisplayLanguage": "\u9996\u9009\u663e\u793a\u8bed\u8a00", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "\u7ffb\u8bd1Media Browser\u662f\u4e00\u4e2a\u6b63\u5728\u8fdb\u884c\u7684\u9879\u76ee\uff0c\u5c1a\u672a\u5168\u90e8\u5b8c\u6210\u3002", "LabelReadHowYouCanContribute": "\u9605\u8bfb\u5173\u4e8e\u5982\u4f55\u4e3aMedia Browser\u8d21\u732e\u529b\u91cf\u3002", "HeaderNewCollection": "\u65b0\u5408\u96c6", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:", diff --git a/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json b/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json index f9d9432d2d..297e355cc1 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json @@ -1,10 +1,11 @@ { "LabelExit": "\u96e2\u958b", "LabelVisitCommunity": "\u8a2a\u554f\u793e\u5340", - "LabelGithubWiki": "Github \u7ef4\u57fa", + "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u6a19\u6dee", - "LabelViewApiDocumentation": "\u67e5\u770bAPI\u6587\u6a94", + "LabelApiDocumentation": "Api Documentation", + "LabelDeveloperResources": "Developer Resources", "LabelBrowseLibrary": "\u700f\u89bd\u5a92\u9ad4\u5eab", "LabelConfigureMediaBrowser": "\u8a2d\u5b9aMedia Browser", "LabelOpenLibraryViewer": "\u6253\u958b\u5a92\u9ad4\u5eab\u700f\u89bd\u5668", @@ -458,7 +459,7 @@ "LinkApiDocumentation": "API\u6587\u6a94", "LabelFriendlyServerName": "\u53cb\u597d\u4f3a\u670d\u5668\u540d\u7a31\uff1a", "LabelFriendlyServerNameHelp": "\u6b64\u540d\u7a31\u5c07\u7528\u65bc\u6a19\u8b58\u4f3a\u670d\u5668\u3002\u5982\u679c\u7559\u7a7a\uff0c\u8a08\u7b97\u6a5f\u540d\u7a31\u5c07\u88ab\u4f7f\u7528\u3002", - "LabelPreferredDisplayLanguage": "\u9996\u9078\u986f\u793a\u8a9e\u8a00", + "LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguageHelp": "\u7ffb\u8b6fMedia Browser\u662f\u4e00\u500b\u6b63\u5728\u9032\u884c\u7684\u9805\u76ee\uff0c\u5c1a\u672a\u5b8c\u6210\u3002", "LabelReadHowYouCanContribute": "\u95b1\u8b80\u95dc\u65bc\u5982\u4f55\u70baMedia Browser\u8ca2\u737b\u3002", "HeaderNewCollection": "\u65b0\u5408\u96c6", @@ -1215,7 +1216,7 @@ "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Media Browser.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used.", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCustomDeviceDisplayName": "Display name:",