From c1a8f91a2bf44381694890f9d9cd4b84e649175a Mon Sep 17 00:00:00 2001 From: dkanada Date: Mon, 21 Jan 2019 20:44:04 +0900 Subject: [PATCH 01/16] use en-us as default translation if language or key is missing --- .../emby-webcomponents/globalize.js | 53 ++++--------------- 1 file changed, 10 insertions(+), 43 deletions(-) diff --git a/src/bower_components/emby-webcomponents/globalize.js b/src/bower_components/emby-webcomponents/globalize.js index c36dea1910..665578a523 100644 --- a/src/bower_components/emby-webcomponents/globalize.js +++ b/src/bower_components/emby-webcomponents/globalize.js @@ -6,7 +6,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var currentDateTimeCulture; function getCurrentLocale() { - return currentCulture; } @@ -15,9 +14,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function getDefaultLanguage() { - var culture = document.documentElement.getAttribute('data-culture'); - if (culture) { return culture; } @@ -36,12 +33,11 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function updateCurrentCulture() { - var culture; try { culture = userSettings.language(); } catch (err) { - + console.log('no language set in user settings'); } culture = culture || getDefaultLanguage(); @@ -51,43 +47,37 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana try { dateTimeCulture = userSettings.dateTimeLocale(); } catch (err) { - + console.log('no date format set in user settings'); } if (dateTimeCulture) { currentDateTimeCulture = normalizeLocaleName(dateTimeCulture); - } - else { + } else { currentDateTimeCulture = currentCulture; } - ensureTranslations(currentCulture); } function ensureTranslations(culture) { - for (var i in allTranslations) { ensureTranslation(allTranslations[i], culture); } } function ensureTranslation(translationInfo, culture) { - if (translationInfo.dictionaries[culture]) { return Promise.resolve(); } return loadTranslation(translationInfo.translations, culture).then(function (dictionary) { - translationInfo.dictionaries[culture] = dictionary; }); } function normalizeLocaleName(culture) { - culture = culture.replace('_', '-'); - // If it's de-DE, convert to just de + // convert de-DE to de var parts = culture.split('-'); if (parts.length === 2) { if (parts[0].toLowerCase() === parts[1].toLowerCase()) { @@ -96,7 +86,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } var lower = culture.toLowerCase(); - if (lower === 'ca-es') { return 'ca'; } @@ -109,23 +98,20 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana return lower; } - function getDictionary(module) { - + function getDictionary(module, locale) { if (!module) { module = defaultModule(); } var translations = allTranslations[module]; - if (!translations) { return {}; } - return translations.dictionaries[getCurrentLocale()]; + return translations.dictionaries[locale]; } function register(options) { - allTranslations[options.name] = { translations: options.strings || options.translations, dictionaries: {} @@ -133,9 +119,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function loadStrings(options) { - var locale = getCurrentLocale(); - if (typeof options === 'string') { return ensureTranslation(allTranslations[options], locale); } else { @@ -146,9 +130,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var cacheParam = new Date().getTime(); function loadTranslation(translations, lang) { - lang = normalizeLocaleName(lang); - var filtered = translations.filter(function (t) { return normalizeLocaleName(t.lang) === lang; }); @@ -160,7 +142,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } return new Promise(function (resolve, reject) { - if (!filtered.length) { resolve(); return; @@ -190,7 +171,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function translateKey(key) { - var parts = key.split('#'); var module; @@ -203,53 +183,43 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function translateKeyFromModule(key, module) { - - var dictionary = getDictionary(module); - + var dictionary = getDictionary(module, getCurrentLocale()); + if (!dictionary || !dictionary[key]) { + dictionary = getDictionary(module, 'en-us'); + } if (!dictionary) { return key; } - return dictionary[key] || key; } function replaceAll(str, find, replace) { - return str.split(find).join(replace); } function translate(key) { - var val = translateKey(key); - for (var i = 1; i < arguments.length; i++) { - val = replaceAll(val, '{' + (i - 1) + '}', arguments[i]); - } - return val; } function translateHtml(html, module) { - if (!module) { module = defaultModule(); } - if (!module) { throw new Error('module cannot be null or empty'); } var startIndex = html.indexOf('${'); - if (startIndex === -1) { return html; } startIndex += 2; var endIndex = html.indexOf('}', startIndex); - if (endIndex === -1) { return html; } @@ -263,12 +233,9 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var _defaultModule; function defaultModule(val) { - if (val) { - _defaultModule = val; } - return _defaultModule; } From 1a9bd39c4f1133796f40112e3e7dda1e9c38a89b Mon Sep 17 00:00:00 2001 From: dkanada Date: Tue, 22 Jan 2019 17:31:42 +0900 Subject: [PATCH 02/16] remove english strings from other languages in core --- src/strings/ar.json | 129 --- src/strings/be-BY.json | 1689 --------------------------------------- src/strings/bg-BG.json | 753 ------------------ src/strings/ca.json | 799 ------------------- src/strings/cs.json | 211 ----- src/strings/da.json | 171 ---- src/strings/de.json | 157 ---- src/strings/el.json | 338 -------- src/strings/es-AR.json | 1682 --------------------------------------- src/strings/es-MX.json | 58 -- src/strings/es.json | 76 -- src/strings/fa.json | 1550 ------------------------------------ src/strings/fi.json | 1663 -------------------------------------- src/strings/fr-CA.json | 1701 --------------------------------------- src/strings/fr.json | 97 --- src/strings/gsw.json | 1550 ------------------------------------ src/strings/he.json | 1285 ------------------------------ src/strings/hi-IN.json | 1707 --------------------------------------- src/strings/hr.json | 268 ------- src/strings/hu.json | 976 ----------------------- src/strings/id.json | 1664 -------------------------------------- src/strings/is-IS.json | 1669 -------------------------------------- src/strings/it.json | 134 ---- src/strings/kk.json | 13 - src/strings/ko.json | 474 ----------- src/strings/lt-LT.json | 1262 ----------------------------- src/strings/ms.json | 1713 ---------------------------------------- src/strings/nb.json | 221 ------ src/strings/nl.json | 187 ----- src/strings/no.json | 1688 --------------------------------------- src/strings/pl.json | 38 - src/strings/pt-BR.json | 93 --- src/strings/pt-PT.json | 547 ------------- src/strings/ro.json | 1399 -------------------------------- src/strings/ru.json | 13 - src/strings/sk.json | 600 -------------- src/strings/sl-SI.json | 1611 ------------------------------------- src/strings/sv.json | 138 ---- src/strings/tr.json | 1376 -------------------------------- src/strings/uk.json | 1569 ------------------------------------ src/strings/vi.json | 1564 ------------------------------------ src/strings/zh-CN.json | 11 - src/strings/zh-HK.json | 1195 ---------------------------- src/strings/zh-TW.json | 1365 -------------------------------- 44 files changed, 37404 deletions(-) diff --git a/src/strings/ar.json b/src/strings/ar.json index ce8e088f83..b03cff4863 100644 --- a/src/strings/ar.json +++ b/src/strings/ar.json @@ -10,19 +10,11 @@ "AllLibraries": "كل المكتبات", "AllowDeletionFromAll": "السماح بخذف الوسائط من قبل كل المكتبات", "AllowHWTranscodingHelp": "عند التفعيل، سيُسمح للمولف بعمل تدفقات مشفرة بينياً على الطائر. هذا قد يساعد في خفض التشفير البيني المطلوب من الخادم.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "السماح بالاتصالات عن بعد إلى خادم إمبي هذا.", "AllowRemoteAccessHelp": "إذا لم يتم تحديده ، فسيتم حظر جميع الاتصالات عن بُعد.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "الصوت", "BirthDateValue": "وُلد: {0}", "BirthPlaceValue": "مكان الميلاد: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "تصفح", "BrowsePluginCatalogMessage": "تصفح قائمتنا للملحق لترى المتوفر من الملاحق.", "ButtonAccept": "قبول", @@ -121,7 +113,6 @@ "ButtonResume": "استأنف", "ButtonRevoke": "أرفض", "ButtonSave": "حفظ", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "تمشيط المكتبة", "ButtonScheduledTasks": "المهام المجدولة", "ButtonSearch": "بحث", @@ -145,7 +136,6 @@ "ButtonSplitVersionsApart": "فصل الإصدارات المختلفة على حدة", "ButtonStart": "إبدأ", "ButtonStop": "إيقاف", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "تسليم", "ButtonSubtitles": "ترجمات", "ButtonSync": "مزامنة", @@ -161,13 +151,11 @@ "ButtonViewWebsite": "أنظر الموقع الإلكتروني", "ButtonWebsite": "موقع إلكتروني", "ButtonYes": "نعم", - "CancelSeries": "Cancel series", "CategoryApplication": "التطبيق", "CategoryPlugin": "الملحق", "CategorySync": "تزامن", "CategorySystem": "النظام", "CategoryUser": "المستخدم", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "إختر قناة لمشاركتها مع هذا المستخدم. المدراء سيكونون قادرين على تغيير إعدادات القنوات باستخدام مدير واصفات البيانات.", "Channels": "القنوات", "CinemaModeConfigurationHelp": "الطور السينمائي يوفر أجواء سينمائية إلى قلب صالتك مع إمكانية تشغيل عروض إعلانية لأفلام أخرى وعرض مقدمات أخرى من انتقاءاتك قبل تشغيل الفيلم الرئيسي.", @@ -175,9 +163,7 @@ "CoverArt": "صور الأغلفة", "CustomDlnaProfilesHelp": "إنشاء عرائض مخصوصه تستهدف جهازاً جديداً أو يمتطي حساباً نظامياً.", "DeathDateValue": "توفي: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "كان هناك خطأ في معالجة الطلب. الرجاء المحاولة لاحقاً", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "حذف", "DeleteDeviceConfirmation": "هل أنت متأكد أنك تريد حذف هذا الجهاز؟ سيظهر الجهاز من جديد في المرة القادمة التي يسجل فها مستخدم دخوله عبره.", "DeleteImage": "حذف صورة", @@ -185,23 +171,14 @@ "DeleteMedia": "حذف الوسائط", "DeleteUser": "حذف مستخدم", "DeleteUserConfirmation": "هل انت متاكد من انك تريد حذف هذا المستخدم ؟", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "هذه الميزة تنطبق حصرياً على الأجهزة التي يمكن التعرف عليها فردياً ولن تمنع المتصفح من الدخول عليها. ترشيح الوصول لأجهزة المستخدم ستمنع المستخدمين من استعمال الأجهزة الجديدة إلى أن يتم اعتمادهم من هنا.", "DeviceLastUsedByUserName": "آخر استخدام كان من قبل {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", "Downloads": "التنزيلات", "DrmChannelsNotImported": "القنوات المجهزة بإدارة الحقوق الرقمية DRM لن تورّد.", "EasyPasswordHelp": "الرمز الشخصي الميسرالخاص بك يمكنك من الاتصال إلى خادم مكتبتك، عبر تطبيقات أمبي على الأجهزة أو الدخول على حسابك في الشبكة الداخلية.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", "EnablePhotos": "تفعيل الصور", "EnablePhotosHelp": "سيتم اكتشاف الصور وعرضها مع ملفات الوسائط الأخرى", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", "EnterFFmpegLocation": "إدخل مسار ffmpeg", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "إن حساب أمبي مربوط مسبقاً بحساب محلي، ولا يمكن ربط حساب أمبي بحساب محلي غير مرة واحدة فقط.", "ErrorAddingListingsToSchedulesDirect": "كان هناك خطأ في إضافة الاصطفاف لخدمة \"Schedules Direct\" الخاصة بك. خدمة \"Schedules Direct\" لا تسمح إلا بعدد محدود من الاصطفافات لكل حساب. قد تحتاج إلى تسجيل الدخول إلى موقع \"Schedules Direct\" لإزالة الاصطفافات الأخرى من حسابك قبل المتابعة.", "ErrorAddingMediaPathToVirtualFolder": "كان هناك خطأ في إضافة مسار الوسائط. الرجاء التأكد من صحة المسار وأن خادم أمبي لديه صلاحية الوصول إلى الموقع.", @@ -213,11 +190,9 @@ "ErrorMessageStartHourGreaterThanEnd": "وقت النهاية يجب أن يكون أكبر من وقت البداية.", "ErrorMessageUsernameInUse": "اسم المستخدم تم حجزه مسبقاً. الرجاء اختيار اسم مستخدم جديد والمحاولة مرة أخرى.", "ErrorPleaseSelectLineup": "الرجاء اختيار اصطفاف ثم المحاولة مرة أخرى. إن لم تتوفر أية اصطفافات، فالرجاء التأكد من اسم المستخدم وكلمة المرور الخاصة بك، وتأكد من صحة رمزك البريدي.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", "ErrorRemovingJellyfinConnectAccount": "كان هناك خطأ في إزالة حساب أمبي كونكت. الرجاء التأكد من أن لديك اشتراك أمبي كونكب ساري الصلاحية ثم المحاولة مرة أخرى.", "ErrorSavingTvProvider": "كان هناك خطأ في حفظ مزود التلفزة. الرجاء التأكد من صلاحية الوصول إليه ثم عاود المحاولة.", "ErrorValidatingSupporterInfo": "كان هناك خطأ في إثبات معلومات أمبي التميز الخاصة بك. الرجاء المحاولة لاحقاً.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "الخروج من الشاشة الكاملة", "ExtractChapterImagesHelp": "استخلاص صور الأبواب سيسمح لتطبيقات أمبي أن تظهر لك قوائم تصويرية لتبويبات الأفلام. هذه العملية قد تكون بطيئة، وتستغل قدرة المعالج بشكل ملحوظ، وقد تحتاج إلى حيازة بضعة غيغابايتات من مساحة التخزين بشكل مؤقت. هذه المهمة تعمل خلال عملية استكشاف المقاطع المرئية، كما يمكن أن تحدد لتكون مهمة ليلية مجدولة. يمكنك جدولة العملية من قسم جدولة المهام. لا ينصح بتشغيل هذه المهمة خلال ساعات الذروة من دخول المستخدمين.", "FFmpegSavePathNotFound": "لم نستطع تحديد موقع ffmpeg باستخدام المسار الذي أدخلته. سوف نحتاج تطبيق FFprobe أيضاً ويجب أن يتواجد في نفس المكان. إن هذه الأجزاء تكون بالعادة محزومة معاً في نفس ملف الإنزال. الرجاء التأكد من المسار المدخل والمحاولة مرة أخرى.", @@ -236,15 +211,12 @@ "FolderTypePhotos": "صور", "FolderTypeTvShows": "تلفاز", "FolderTypeUnset": "غير مخصص (خليط محتويات)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "الشاشة كاملة", - "General": "General", "GuestUserNotFound": "لم يتم العثور على المستخدم. الرجاء التأكد من اسمه وحاول مرة أخرى أو حاول إدخال عنوان بريده الإلكتروني.", "GuideProviderLogin": "تسجيل الدخول", "GuideProviderSelectListings": "إختر المبوبات", "H264CrfHelp": "معامل المعدل الثابت CRF هو الجودة الافتراضية لإعدادات مشفر x264. بإمكانك إعطاء قيمة تتراوح بين 0 و 51، وكلما قلت القيمة فسينتج عن ذلك جودة أفضل (على حساب حجم تخزين أعلى). القيم المعقول تتراوح بين 18 و 28. الافتراضي لـ x264 هي 23، لذا فبإمكانك استخدام هذه القيمة كنقطة بداية.", "H264EncodingPresetHelp": "اختر قيمة أعلى لتحسين السرة والأداء وقيمة أقل لتحسين الجودة.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "تمكين التسريع بعتاد الحاسوب قد يتسبب في عدم استقرار بعض أنواع الأنظمة. تأكد من أن نظام التشغيل الخاص بك محدث إلى آخر نسخة وأن سواقات الفيديو محدثة أيضاً. إذا واجهت أية صعوبات في تسغيل الفيديو بعد تمكين هذه الخاصية، فعليك إرجاع الإعداد إلى وضعية آلي.", "HeaderAccessSchedule": "جدول الدخولات", "HeaderAccessScheduleHelp": "إنشئ جدول دخولات لكي تتمكن من تحديد ساعات للدخول.", @@ -278,12 +250,10 @@ "HeaderAwardsAndReviews": "الجوائز والمراجعات", "HeaderBackdrops": "الخلفيات", "HeaderBecomeProjectSupporter": "أطلب أمبي التميّز", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "الكتب", "HeaderBranding": "وسومات البرنامج", "HeaderBrandingHelp": "خصص واجهة أمبي لتلائم احتاجات مجموعتك أو منظمتك.", "HeaderCameraUpload": "رفع لقطات الكاميرا", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", "HeaderCancelSyncJob": "إلغاء المزامنة", "HeaderCastAndCrew": "الممثلين وطاقم العمل", "HeaderCastCrew": "الممثلين والطاقم", @@ -291,7 +261,6 @@ "HeaderChangeFolderTypeHelp": "لتغيير نوع المحتوى، الرجاء إزالة المكتبة وبناءها مرة أخرى بنوع جديد.", "HeaderChannelAccess": "صلاحيات القنوات", "HeaderChannels": "القنوات", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "الأبواب", "HeaderCinemaMode": "الطور السينمائي", "HeaderClients": "العملاء", @@ -300,7 +269,6 @@ "HeaderCodecProfileHelp": "عرائض الكودك تشير إلى محدودية جهاز ما عند تشغيل وسيطة مشفر بكودك معيّن. إن كان هناك أي محدودية مذكورة فستحال الوسيطة إلى التشغير البيني، حتى لو كانت الصيغة مضبوطة للعمل بتلقائية.", "HeaderCollections": "المجاميع", "HeaderColumns": "الأعمدة", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "تأكيد", "HeaderConfirmDeletion": "تأكيد الحذف", "HeaderConfirmPluginInstallation": "أكد عملية تثبيت الملحق", @@ -331,7 +299,6 @@ "HeaderDeleteTaskTrigger": "حذف زناد المهمة", "HeaderDestination": "المآل", "HeaderDetails": "التفاصيل", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "معلومات المطور", "HeaderDevice": "الجهاز", "HeaderDeviceAccess": "الدخول على جهاز", @@ -341,7 +308,6 @@ "HeaderDisplay": "إظهار", "HeaderDisplaySettings": "أظهر الإعدادات", "HeaderDownloadSubtitlesFor": "إنزال الترجمة لـ:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "الرمز الشخصي الميسر", "HeaderEmbeddedImage": "الصور المضمّنة", "HeaderEpisodes": "الحلقات", @@ -356,11 +322,9 @@ "HeaderFavoriteMovies": "الأفلام المفضلة", "HeaderFavoriteShows": "المسلسلات المفضلة", "HeaderFavoriteSongs": "الأغاني المفضلة", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "صلاحية الخاصية", "HeaderFeatures": "المواصقات", "HeaderFetchImages": "إطهار الصور:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "مرشحات", "HeaderForKids": "للأطفال", "HeaderForgotKey": "نسيت المفتاح", @@ -394,13 +358,10 @@ "HeaderItems": "العناصر", "HeaderJellyfinAccountAdded": "تمت إضافة حساب أمبي ", "HeaderJellyfinAccountRemoved": "تمت إزالة حساب أمبي", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "اللغة", "HeaderLatestAlbums": "أحدث الألبومات", "HeaderLatestChannelItems": "أحدث عناصر القناة", "HeaderLatestChannelMedia": "أحدث عناصر القنوات", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "احدث الحلقات", "HeaderLatestFromChannel": "الأحدث من {0}", "HeaderLatestItems": "أحدث العناصر", @@ -415,11 +376,9 @@ "HeaderLibrary": "المكتبة", "HeaderLibraryAccess": "صلاحيات المكتبة", "HeaderLibraryFolders": "مجلدات الوسائط", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "روابط", "HeaderLiveTV": "التلفاز المباشر", "HeaderLiveTv": "التلفاز المباشر", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "فشل في تسجيل الدخول", "HeaderManagement": "الإدارة", "HeaderMedia": "الوسائط", @@ -438,7 +397,6 @@ "HeaderNetwork": "الشبكة", "HeaderNewApiKey": "مفتاح api جديد", "HeaderNewApiKeyHelp": "إمنح التطبيق الصلاحية للوصول إلى خادم أمبي", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "خادم جديد", "HeaderNewUsers": "المستخدمون الجدد", "HeaderNextUp": "التالى", @@ -447,7 +405,6 @@ "HeaderNumberOfPlayers": "المشغلات", "HeaderOffline": "منقطع الاتصال", "HeaderOfflineSync": "مزامنة مقطوعة الاتصال", - "HeaderOnNow": "On Now", "HeaderOptions": "الخيارات", "HeaderOtherDisplaySettings": "إظهار الإعدادات", "HeaderOtherItems": "عناصر أخرى", @@ -496,10 +453,8 @@ "HeaderReviews": "التقييمات المكتوبة", "HeaderRevisionHistory": "تاريخ المراجعات", "HeaderRunningTasks": "المهام المشغّلة", - "HeaderRuntime": "Runtime", "HeaderScenes": "المشاهد", "HeaderSchedule": "الجدول", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "بحث", "HeaderSeason": "الموسم", "HeaderSeasonNumber": "رقم الموسم", @@ -543,7 +498,6 @@ "HeaderSplitMedia": "جزّئ الوسيطة إلى جزئين", "HeaderStatus": "الوضعية", "HeaderStudios": "الأستوديوهات", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "عريضة الترجمة", "HeaderSubtitleProfiles": "عرائض الترجمة", "HeaderSubtitleProfilesHelp": "عرائض الترجمة تصف صيغ الترجمة المدعومة على الأجهزة المختلفة.", @@ -578,7 +532,6 @@ "HeaderUnknownDate": "التاريخ غير معروف", "HeaderUnknownYear": "العام غير معروف", "HeaderUnrated": "غير مقيّم", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "الاخبار القادمة", "HeaderUpcomingOnTV": "البرامج القادمة على التلفاز", "HeaderUploadImage": "رفع الصور", @@ -600,11 +553,9 @@ "HeadersFolders": "مجلد:", "HowToConnectFromJellyfinApps": "كيفية الاتصال من تطبيقات أمبي", "HowWouldYouLikeToAddUser": "كيف ترغب في إضافة مستخدم؟", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "النسبة الباعية الموصى بها هي نسبة 1 إلى 1. صيغة الملف هي jpg أو png.", "ImportFavoriteChannelsHelp": "عند التفعيل، فقط القنوات التي علّمت في المفضلة على هذا المولف ستورد إلى النظام.", "ImportMissingEpisodesHelp": "عند التمكين، المعلومات الناقصة للحلقات ستورّد إلى قاعدة بيانات أمبي وستعرض داخل المواسم والمسلسلات. قد تتسبب هذه بأوقات أطول بكثير عند تمشيط المكنبات.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "اضافة مستخدم بإرسال دعوة عبر الايميل", "JellyfinIntroDownloadMessage": "لإنزال وتثبيت خادم أمبي المجاني قم بزيارة {0}.", "JellyfinIntroDownloadMessageWithoutLink": "لإنزال وتثبيت خادم أمبي المجاني قم بزيارة موقع أمبي.", @@ -633,8 +584,6 @@ "LabelAllowHWTranscoding": "السماح بالتشفير البيني بعتاد الحاسب", "LabelAllowServerAutoRestart": "السماح للخادم أن يعيد التشغيل آلياً لتفعيل التحديثات", "LabelAllowServerAutoRestartHelp": "الخادم سيعيد التشغيل في فترات الركود فقط، حين لا يكون هناك أي مستخدمين متصلين.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "أي وقت", "LabelAppName": "اسم التطبيق", "LabelAppNameExample": "مثال: Sickbeard، NzbDrone", @@ -643,22 +592,17 @@ "LabelArtistsHelp": "فصل الاستعمالات المتعددة:", "LabelAudioCodec": "مقطع الصوت: {0}", "LabelAudioLanguagePreference": "اللغة المفضلة للصوت:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "الفيش المتاحة:", "LabelBindToLocalNetworkAddress": "إربطه إلى عنوان شبكة محلي:", "LabelBindToLocalNetworkAddressHelp": "هذا خياري. امتطي عنوان الآي بي المحلي لربطه بخادم http. إذا ترك فارغاً، فإن الخادم سيربطه بجميع العناوين المتاحة. تغيير هذه القيمة يتطلب إعادة تشغيل خادم أمبي.", "LabelBitrateMbps": "معدّل البت (بالميغابت):", "LabelBlastMessageInterval": "فترات بث رسالة قيد التشغيل (بالثواني)", "LabelBlastMessageIntervalHelp": "يحدد الفترة بالثواني بين يث رسائل قيد التشغيل", - "LabelBlockContentWithTags": "Block items with tags:", "LabelCache": "ذاكرة الكاشة", "LabelCachePath": "مسار ذاكرة الكاشة:", "LabelCachePathHelp": "حدد موقع مخصص لملفات كاشة الخادم، مثل الصور وغيرها. أترك هذه الخانة فارغة لاستعمال القيمة التلقائية.", "LabelCameraUploadPath": "مسار حفظ رفع مقاطع الكاميرا:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "تم الإلغاء", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", "LabelChannelStreamQuality": "الجودة المفضلة قناة الإنترنت:", "LabelChannelStreamQualityHelp": "في بيئة ذات اتصال ضعيف، تقليل الجودة قد تحسّن فاعلية تدفق عرض الفيديو.", "LabelCodecIntrosPath": "مسار المقطع الدعائي للكودك:", @@ -700,7 +644,6 @@ "LabelDefaultStream": "(إفتراضي)", "LabelDefaultUser": "المستخدم الافتراضي", "LabelDefaultUserHelp": "لتحديد مكتبة المستخدم التي تظهر على الأجهزة المتصلة. بإمكان الامتطاء على هذه القيمة لكل جهاز عن طريق عرائض الأجهزة.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "وصف الجهاز", "LabelDidlMode": "طور didl:", "LabelDisabled": "غير مفعل", @@ -716,7 +659,6 @@ "LabelDownloadInternetMetadata": "إنزال الاعمال الفنية وواصفات البيانات من الانترنت", "LabelDownloadInternetMetadataHelp": "خادم أمبي بإمكانه أن ينزل المعلومات عن وسائطك لتفعيل خاصية العرض المثري.", "LabelDownloadLanguages": "إنزال اللغة:", - "LabelDropImageHere": "Drop image here.", "LabelDynamicExternalId": "معرفة {0}:", "LabelEasyPinCode": "الرمز الشخصي الميسر:", "LabelEmail": "البريد الإلكتروني:", @@ -739,7 +681,6 @@ "LabelEnableDlnaServer": "تفعيل خادم Dlna", "LabelEnableDlnaServerHelp": "يمكن أجهزة UPnP على شبكتك لتصفح محتوى أمبي.", "LabelEnableFullScreen": "تمكين طور ملء الشاشة", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "تفعيل خاصية التحكم الأبوي الذكي", "LabelEnableIntroParentalControlHelp": "العروض الإعلانية ستُختار فقط بتصنيف رقابة أبوية أقل أو يساوي المحتوي الذي يتم مشاهدته.", "LabelEnableRealtimeMonitor": "تفعيل خاصية المراقبة في الوقت الحقيقي", @@ -757,7 +698,6 @@ "LabelEvent": "الحدث:", "LabelEveryXMinutes": "كل:", "LabelExternalDDNS": "النطاق الخارجي:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "مشغلات خارجية:", "LabelExtractChaptersDuringLibraryScan": "استخلص صور الأبواب أثناء تمشيط المكتبة", "LabelExtractChaptersDuringLibraryScanHelp": "عند التفعيل، فإن صور الأبواب ستُستخلص عندما تدرج الفيديوهات الجديدة أثناء تمشيط المكتبة. عند عدم التفعيل فإن عملية الاستخلاص ستكون محصورة أثناء مهمة صور الأبواب المجدولة، ما يسمح لعملية تمشيط المكتبة أن تنتهي بصورة أسرع.", @@ -788,7 +728,6 @@ "LabelIconMaxHeightHelp": "الدقة القصوى للأيقونة المظهّرة عبر سمة upnp:icon.", "LabelIconMaxWidth": "العرض الأقصى للأيقونة:", "LabelIconMaxWidthHelp": "الدقة القصوى لرسومات الألبوم المظهّرة عبر سمة upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", "LabelImage": "الصور:", "LabelImageFetchers": "جالبات الصور:", "LabelImageFetchersHelp": "مكّن ورتّب جالبات الصور التي تفضلها حسب أولوية التفضيل. ", @@ -807,15 +746,11 @@ "LabelKodiMetadataEnablePathSubstitutionHelp": "فعل إبدال المسارات الخاصة بمسارات الصور مستخدماً إعدادات إبدال المسارات الخاصة بالخادم.", "LabelKodiMetadataSaveImagePaths": "إحفظ مسارات الصور داخل ملقات nfo", "LabelKodiMetadataSaveImagePathsHelp": "هذا الخيار ينصح به إذا كان لديك صور لا تتوافق مع الدليل الإرشادي لنظام Kodi.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "اللغة:", "LabelLastResult": "النتيجة الأخيرة:", "LabelLimit": "الحد:", "LabelLimitIntrosToUnwatchedContent": "شغل العروض الإعلانية للأفلام التي لم تتم مشاهدتها فقط", "LabelLineup": "سلسل:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "رقم منفذ http المحلي:", "LabelLocalHttpServerPortNumberHelp": "رقم منفذ http المتوجب على الخادم أن يرتبط من خلاله.", "LabelLocalSyncStatusValue": "الوضعية: {0}", @@ -840,7 +775,6 @@ "LabelMessageText": "نص الرسالة:", "LabelMessageTitle": "عنوان الرسالة:", "LabelMetadata": "واصفات البيانات:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "منزّلات واصفات البيانات", "LabelMetadataDownloadersHelp": "مكّن ورتّب منزّلات واصفات البيانات التي تفضلها حسب أولوية التفضيل. المنزّلات الأقل أولوية ستستخدم لتحل محل المعلومات التي لا يمكن العثور عليها.", "LabelMetadataPath": "مسار واصفات البيانات:", @@ -873,7 +807,6 @@ "LabelMusicStreamingTranscodingBitrateHelp": "تحديد الحد الأقصى لمعدل البت وقت البث التدفقي الموسيقي", "LabelMusicVideo": "الفيديو الموسيقي", "LabelName": "الاسم:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", "LabelNewName": "الاسم الجديد:", "LabelNewPassword": "كلمة السر الجديدة:", "LabelNewPasswordConfirm": "تأكيد كلمة السر الجديدة:", @@ -926,9 +859,7 @@ "LabelRecordingPath": "المسار الافتراضي للمقاطع المسجلة:", "LabelRecordingPathHelp": "حدد موقع افتراضي لحفظ المقاطع المسجلة، لو تركت هذه الخانة فارغة، فسيستعمل مجلد بيانات البرنامج.", "LabelReleaseDate": "تاريخ الإصدار", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "حدد معدل البت للتشغيل التدفقي عبر الإنترنت (Mbps)", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "التقرير:", "LabelResumePoint": "نقطة الاستئناف", "LabelRunningOnPort": "متصل عبر منفذ httpـ {0}", @@ -941,7 +872,6 @@ "LabelSeasonFolderPattern": "نمط مجلد الموسم:", "LabelSeasonNumber": "رقم الموسم:", "LabelSeasonZeroFolderName": "اسم مجلد الموسم رقم صفر:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "العروض الإعلانية من الإنترنت:", "LabelSelectUsers": "إختر المستخدم:", "LabelSelectVersionToInstall": "إختر الإصدار للتثبيت", @@ -952,7 +882,6 @@ "LabelServerHost": "المضيف:", "LabelServerHostHelp": "192.168.1.100 أو https://myserver.com", "LabelServerPort": "المنفذ:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "تخطّىإن كان المقطع الصوتي الافتراضي يتوافق مع اللغة المنزلة", "LabelSkipIfAudioTrackPresentHelp": "لا تختر هذه لكي تؤكد وجود ترجمة لجميع الفيديوهات، بغض النظر عن لغة الصوت.", "LabelSkipIfGraphicalSubsPresent": "تخطّى إن كان الفيديو يحتوى على ترجمة مسبقاً", @@ -961,13 +890,11 @@ "LabelSonyAggregationFlags": "إشارات تحشيد سوني:", "LabelSonyAggregationFlagsHelp": "تحدد محتوى عنصر aggregationFlags في النطاق الاسمي لـ urn:schemas-sonycom:av namespace .", "LabelSource": "المصدر:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSportsCategories": "التصنيفات الرياضية:", "LabelStartWhenPossible": "إبدأ حال الإمكان:", "LabelStatus": "الوضعية:", "LabelStopWhenPossible": "أوقف حال الإمكان", "LabelStopping": "قيد الإيقاف", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "مثال: صيغة srt", "LabelSubtitleLanguagePreference": "اللغة المفضلة للترجمة:", "LabelSubtitlePlaybackMode": "طور الترجمة:", @@ -976,7 +903,6 @@ "LabelSyncTempPath": "مسار الملفات المؤقتة:", "LabelSyncTempPathHelp": "حدد مجلد عمل مخصوص للتزامن. الوسائط المنشأة نتيجة تحويل صيغتها خلال عملية التزامن ستحفظ هنا.", "LabelTag": "البطاقة:", - "LabelTheme": "Theme:", "LabelTime": "الوقت:", "LabelTimeLimitHours": "الوقت المحدد (بالساعة):", "LabelTranscodingAudioCodec": "كودك تشفير الصوت:", @@ -1000,10 +926,8 @@ "LabelUrl": "الرابط:", "LabelUseNotificationServices": "استخدم الخدمات التالية", "LabelUser": "المستخدم:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "مكتبة المستخدم:", "LabelUserLibraryHelp": "إاختر أي من مكتبات المستخدم لإظهارها على الجهاز. أتركها فارغة لوراثة القيمة الافتراضية", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "اسم المستخدم:", "LabelVaapiDevice": "جهاز واجهة API صوت وصورة:", "LabelVaapiDeviceHelp": "هذه هي عقدة التصيير التي ستستخدم من قبل التسريع بعتاد الحاسوب.", @@ -1024,21 +948,15 @@ "LabelffmpegPath": "مسار ffmpeg:", "LabelffmpegPathHelp": "المسار الدال على ملف تطبيق ffmpeg أو المجلد الذي يحتوي ffmpeg.", "LabelffmpegVersion": "إصدار ffmpeg:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "أحدث ال{0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "اختر مجلد وسائط لمشاركته مع هذا المستخدم. المدراء سيكونون قادرين على تغيير إعدادات المجلدات باستخدام مدير واصفات البيانات.", "LinkApi": "واجهة برمجية", "LinkCommunity": "مجتمع الأعضاء", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "إعرف المزيد عن أمبي التميّز", "LiveTvUpdateAvailable": "(هناك تحديثات متوفرة)", "LoginDisclaimer": "لقد صمم أمبي لمساعدتك في إدارة مكتبات وسائطك. مثل الفيديو المنزلي والصور الخاصة بك. الرجاء مطالعة شروط وأحكام الاستخدام. إن استخدام أي برنامج من برامج أمبي يعتبر قبول منك على هذه الشروط والأحكام.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "إدارة الملفات المنزلة مقطوعة الاتصال", "MapChannels": "توفيق القنوات", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "المحتويات ذات التصنيف الأبوي الأعلى ستخفى عن هذا المستخدم.", "MediaInfoAltitude": "الارتفاع", "MediaInfoAnamorphic": "التشوه", @@ -1095,7 +1013,6 @@ "MessageConfirmRevokeApiKey": "هل أنت متأكد من أنك تريد أن ترفض المفتاح (api) هذا؟ سيتم قطع اتصال التطبيق عن خادم أمبي مباشرة.", "MessageConfirmShutdown": "هل أنت متأكد أنك تريد أن تنهي تشغيل خادم أمبي؟", "MessageConfirmSplitMedia": "هل أنت متأكد أنك تريد أن تجزّئ مصادر الوسائط إلى عناصر منفصلة؟", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "لكي تتمكن من دعوة ضيوف يجب عليك أولاً أن تربط حساب أمبي الخاص بك بهذا الخادم.", "MessageContactAdminToResetPassword": "الرجاء التواصل مع مدير النظام لإعادة أعداد كملة سرّك.", "MessageCreateAccountAt": "أنشئ حساب في {0}", @@ -1146,7 +1063,6 @@ "MessagePleaseEnsureInternetMetadata": "الرجاء التأكد من أن إمكانية إنزال واصفات البيانات من الإنترنت ممكنة.", "MessagePleaseRestart": "الرجاء إعادة التشغيل لإنهاء عمليات التحديث.", "MessagePleaseRestartServerToFinishUpdating": "الرجاء إعادة تشغيل الخادم لإنهاء تطبيق التحديثات.", - "MessagePleaseWait": "Please wait. This may take a minute.", "MessagePluginConfigurationRequiresLocalAccess": "لضبط", "MessagePluginInstallDisclaimer": "إن الملحقات التي بناها أعضاء مجتمع أمبي لهي طريقة رائعة لتحسين متعة استخدام أمبي وذلك بإضافة المزايا والخدمات الجديدة. قبل تثبيت الملحقات، نرجو أخذ العلم بالآثار التي قد تلحقها بخادم أمبي الخاص بك، مثل أوقات أطولة لتمشيط مكتبتك، والعمليات الخلفية الإضافية وتقليل استقرار نظامك.", "MessagePluginRequiresSubscription": "هذا الملحق يتطلب اشتراك أمبي التميّز ساري المفعول بعد 14 يوم من الفترة التجريبية المجانية.", @@ -1164,7 +1080,6 @@ "MessageUnableToConnectToServer": "لم نستطع الاتصال إلى الخادم المختار في الوقت الحالي. الرجاء التأكد من أنه يعمل ثم المحاولة مرة أخرى.", "MessageUnsetContentHelp": "المحتوى سيعرض كمجدات اعتيادية. لأفضل النتائج استخدم مدير واصفات البيانات لإعداد نوع محتوى المجلدات الفرعية.", "MessageYouHaveVersionInstalled": "الإصدار المثبت حالياً هو {0}.", - "Metadata": "Metadata", "MetadataManager": "مدير واصفات البيانات", "MetadataSettingChangeHelp": "تغيير واصفات البيانات سيكون له تأثير على المحتوى الجديد الذي سيضاف لاحقاً. لإعادة تنشيط المحتوى الموجود، إفتح شاشة التفاصيل ثم اضغط على زر إعادة التنشيط، أو قم بعمل إعادة تنشيط جماعية من خلال مدير واصفات البيانات.", "MinutesAfter": "عدد الدقائق اللاحقة", @@ -1175,24 +1090,16 @@ "MissingPrimaryImage": "لا توجد صورة رئيسية.", "MoreFromValue": "المزيد من {0}", "MoreUsersCanBeAddedLater": "يمكن اضافة المستخدمين لاحقا من لوحة العدادات.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "صامت", - "Never": "Never", "NewVersionOfSomethingAvailable": "هناك إصدار جديد متوفر رقمه {0}!", - "News": "News", "NextUp": "التالي", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "لم يتم ايجاد شيء، إبدأ بمشاهدة برامجك!", "NoPluginConfigurationMessage": "هذا الملحق ليس له إعدادات تضبط.", "NoPluginsInstalledMessage": "لا يوجد لديك اى ملاحق مثبتة.", "NoResultsFound": "لم يتم العثور على أية نتائج.", "Notifications": "الإشعارات", "NumLocationsValue": "{0} مجلد(ات)", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", "Option3D": "ثلاثي أبعاد", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "الممثل", "OptionActors": "الممثلون", "OptionAdminUsers": "المدراء", @@ -1208,12 +1115,10 @@ "OptionAllowLinkSharingHelp": "فقط الصفحات التي تحتويى على معلومات الوسائط سيسمح لها بالمشاركة. أما ملفات الوسائط فإنها لن تشارك مع قنوات التواصل. المشاركات محددة زمنياً وستنتهي بعد {0} يوم/أيام.", "OptionAllowManageLiveTv": "السماح بإدارة وتسجيل قنوات التلفزة الحية", "OptionAllowMediaPlayback": "السماح بتشغيل الوسائط", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "السماح بالتحكم في المستخدمين الآخرين عن بعد", "OptionAllowRemoteSharedDevices": "السماح بالتحكم في الأجهزة المشاركة عن بعد", "OptionAllowRemoteSharedDevicesHelp": "أجهزة Dlna ستعتبر مشاركة إلى أن يبدأ مستخدم ما بالتحكم بها.", "OptionAllowSyncContent": "اسمح بالمزامنة", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "إسمح لهذا المستخدم بالتحكم بالخادم", "OptionAllowVideoPlaybackRemuxing": "تمكين تشغيل الفيديو الذي يحتاج إلى التحويل من غير تشفير", "OptionAllowVideoPlaybackTranscoding": "تمكين تشغيل الفيديو الذي يحتاج تشفيراً بينياً", @@ -1242,7 +1147,6 @@ "OptionBlockOthers": "أخريات", "OptionBlockTrailers": "العروض الإعلانية", "OptionBlockTvShows": "المسلسلات التلفزيونية", - "OptionBluray": "Bluray", "OptionBooks": "الكتب", "OptionBox": "الصندوق", "OptionBoxRear": "خلفية الصندوق", @@ -1255,7 +1159,6 @@ "OptionConvertRecordingPreserveAudio": "حافظ على الصوت الأصلي عند تغيير التسجيل (متى ما أمكن)", "OptionConvertRecordingPreserveAudioHelp": "هذا سيعطي جودة صوت أفضل لكنه سيجتاج إلى تشفير بيني أثناء التشغيل على بعض الأجهزة.", "OptionConvertRecordingsToStreamingFormat": "حول التسجيلات إلى تدفقات ذات صيغ معروفة بشكل آلي.", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "تقييم النقاد", "OptionCustomUsers": "مخصوص", "OptionDaily": "يومي", @@ -1283,12 +1186,10 @@ "OptionDownloadBoxImage": "الصندوق", "OptionDownloadDiscImage": "القرص", "OptionDownloadImagesInAdvance": "أنزل الصور مسبقاً", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "اللوغو", "OptionDownloadMenuImage": "القائمة", "OptionDownloadPrimaryImage": "أولي", "OptionDownloadThumbImage": "القصاصة", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "ضمّن داخل الحاوية", "OptionEnableAccessFromAllDevices": "تفعيل الدخول على كافة الأجهزة", "OptionEnableAccessToAllChannels": "تفعيل الدخول على كافة القنوات", @@ -1340,7 +1241,6 @@ "OptionInProgress": "قيد التنفيذ", "OptionIsHD": "جودة عالية", "OptionIsSD": "جودة منخفضة", - "OptionIso": "Iso", "OptionKeywords": "الكلمات المفتاحية", "OptionLatestChannelMedia": "آخر عناصر القناة", "OptionLatestMedia": "أحدث الوسائط", @@ -1399,18 +1299,15 @@ "OptionProfileVideo": "الفيديو", "OptionProfileVideoAudio": "صوتي مرئي", "OptionProtocolHls": "البت الحي عبر http", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "التسجيل في كافة الأوقات", "OptionRecordOnAllChannels": "التسجيل في كافة القنوات", "OptionRecordOnlyNewEpisodes": "التسجيل للحلقات الجديدة فقط", "OptionRecordSeries": "تسجيل المسلسل", - "OptionRegex": "Regex", "OptionRelease": "الاصدار الرسمي", "OptionReleaseDate": "تاريخ الإنتاج", "OptionReportByteRangeSeekingWhenTranscoding": "قرّر ما إذا كان الخادم يدعم البحث عن البايت حال التشفير", "OptionReportByteRangeSeekingWhenTranscodingHelp": "هذه مطلوبة لبعض الأجهزة التي لا تحسن البحث في الوقت.", "OptionRequirePerfectSubtitleMatch": "نزّل فقط الترجمات التي توافق بدقة ملفات الفيديو الخاصة بي", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", "OptionResElement": "عناصر res", "OptionResumable": "إمكانية التكملة", "OptionResumablemedia": "استئناف", @@ -1427,7 +1324,6 @@ "OptionSortName": "اسم الترتيب", "OptionSpecialEpisode": "حصريات", "OptionStudios": "الأستوديوهات", - "OptionSubstring": "Substring", "OptionSunday": "الأحد", "OptionSundayShort": "الأحد", "OptionSyncLosslessAudioOriginal": "زامن الصوت بالجودة الأصلية فقط", @@ -1477,18 +1373,10 @@ "PlayOnAnotherDevice": "التشغيل على جاهز آخر", "PleaseAddAtLeastOneFolder": "الرجاء إضافة مجلد واحد على الأقل لهذه المكتبة بالضغط على زر \"إضافة\"", "PleaseConfirmPluginInstallation": "الرجاء الضغط على زر موافق لتأكيد قرائتك لما ورد أعلاه وأنك ترغب في الاستمرار في تثبيت الملحق.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "تم تثبيث {0}", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "تمت إزالة {0}", "PluginUpdatedWithName": "تم تحديث {0}", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", "ProviderValue": "هوية المقدم: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "لأنك أحببت {0}", "RecommendationBecauseYouWatched": "لأنك شاهدت {0}", "RecommendationDirectedBy": "إخراج {0}", @@ -1498,17 +1386,10 @@ "ReleaseYearValue": "تاريخ الإصدار: {0}", "RememberMe": "تذكرني", "Reporting": "التقارير", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "الترجيع", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", "SelectCameraUploadServers": "رفع صور الكاميرا إلى الخوادم التالية:", "SendMessage": "إرسال رسالة", "Series": "المسلسل", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", "ServerUpdateNeeded": "خادم أمبي بحاجة إلى التحديث. لإنزال أحدث إصدار أمبي، الرجاء زيارة {0}", "Settings": "الاعدادات", "SettingsSaved": "تم حفظ الاعدادات.", @@ -1516,17 +1397,12 @@ "SetupFFmpeg": "ضبط إعدادات ffmpeg", "SetupFFmpegHelp": "أمبي قد يحتاج إلى حزمة أو تطبيق لتحويل بعض أنواع الوسائط. هناك الكثير من التطبيقات المختلفة متاحة، لكن أمبي تم تطويره واختباره مع تطبيق ffmpeg. إن أمبي ليس مرتبط بأي طريقة من الطرق بـ ffmpeg ولا حقوق ملكيته ولا أكواد برمجته ولا توزيعه.", "ShowAdvancedSettings": "عرض الاعدادات المتقدمة", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "الرياضة", "Standard": "اساسي", "StatusRecording": "جارِ التسجيل", "StatusRecordingProgram": "جارِ تسجيل {0}", "StatusWatching": "قيد المشاهدة", "StatusWatchingProgram": "قيد المشاهدة {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "الترجمات", "Sync": "مزامنة", "SyncMedia": "مرامنة الوسائط", @@ -1554,7 +1430,6 @@ "TabCollections": "المجاميع", "TabContainers": "الحاويات", "TabControls": "التحكم", - "TabDLNA": "DLNA", "TabDashboard": "لوحة العدادات", "TabDevices": "الأجهزة", "TabDirectPlay": "تشغيل مباشر", @@ -1634,7 +1509,6 @@ "TermsOfUse": "شروط وأحكام الاستخدام", "TextConnectToServerManually": "اتصل بالخادم بالإعداد اليدوي", "TextEnjoyBonusFeatures": "استمتع بالمزايا الإضافية", - "Themes": "Themes", "ThisWizardWillGuideYou": "مرشد الاعدادات سيساعدك خلال خطوات عملية الاعدادات. للبدء، الرجاء اختيار لغتك المفضلة.", "TitleDevices": "الأجهزة", "TitleHardwareAcceleration": "تسريع بعتاد الحاسوب", @@ -1652,11 +1526,9 @@ "TitleSupport": "دعم", "TitleSync": "مزامنة", "TitleUsers": "المستخدمون", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "هل انت متاكد انك تريد إزالة تثبيت {0}؟", "UninstallPluginHeader": "الغاء الملحق", "Unmute": "غير صامت", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "إمبي يتضمن الدعم التلقائي حسابات المستخدمين، ما يتيح لكل مستخدم أن يحفظ إعدادات العرض الخاصة وحالات تشغيل الوسائط وخواص الرقابة الأبوية.", "Users": "المستخدمين", "ValueAlbumCount": "{0} ألبومـ(ات)", @@ -1716,7 +1588,6 @@ "ViewTypeMusicSongs": "الأغاني", "ViewTypeTvShows": "التلفاز", "WelcomeToProject": "مرحباً بك في إمبي!", - "Whitelist": "Whitelist", "WizardCompleted": "هذا كل ما نحتاجه منك الآن. لقد بدأ أمبي بجمع المعلومات التي يحتاجها عن مكتبة الوسائط الخاصة بك. تفحص بعض تطبيقاتنا ثم اضغط إنهاء لعرض لوحة عدادات الخادم.", "XmlDocumentAttributeListHelp": "هذه السمات تنطبق على العناصر الجذرية لكل رد xml.", "XmlTvKidsCategoriesHelp": "البرامج من هذه التصنيفات ستعرض كبرامج أطفال. إفصل الإدخالات المتعددة برمز \"|\".", diff --git a/src/strings/be-BY.json b/src/strings/be-BY.json index 8a2ab99935..8a637e2273 100644 --- a/src/strings/be-BY.json +++ b/src/strings/be-BY.json @@ -1,1728 +1,39 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Адмяніць", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Канвертаваць мэдыязьвесткі", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Выйсці", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Новае", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "ОК", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Палітыка прыватнасці...", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Кіраўніцтва па запуску ...", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Сінхра", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", - "FolderTypeTvShows": "TV Shows", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Даданне карыстальніка", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Аўдыё", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", "HeaderAvailableServices": "Наяўныя паслугі", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Просты PIN-код", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Устаноўленыя паслугі", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Шляхі", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "Сінхранізацыя", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", "HeaderTV": "ТБ", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Трыгеры задачы", "HeaderTermsOfService": "Умовы прадастаўлення паслуг Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Для доступу увядзіце ваш просты PIN-код", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", "HeaderVideo": "Відэа", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Каб дадаць карыстальніка, якога няма ў спісе, спачатку неабходна звязаць яго, стварыў рахунак з Jellyfin Connect з яго старонкі профілю карыстальніка.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Прызначыць параметры", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Гатова", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Наступнае", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "PIN-код:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Папярэдняе", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Ваша імя:", "LabelYoureDone": "Вы скончылі!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "У цяперашні час няма устаноўленых паслуг", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Потым можна дадаць яшчэ карыстальнікаў праз «Інфапанэль».", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Плэйліст", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Раскажыце пра сябе", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Гэты памочнік правядзе вас праз усе фазы ўстаноўкі і налады. Спачатку абярыце упадабаную мову.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "У Jellyfin існуе ўбудаваная падтрымка для карыстальніцкіх профіляў, дазваляючы кожнаму карыстальніку валодаць сваімі ўласнымі параметрамі адлюстравання, станам прайгравання і кіраваннем ўтрымання.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Пачатак працы ў Jellyfin", - "Whitelist": "Whitelist", "WizardCompleted": "Гэта ўсё, што нам трэба зараз. Jellyfin пачынае збіраць звесткі аб вашай медыятэцы. Азнаёмцеся пакуль з некаторымі нашымі праграмамі, а затым націсніце Гатова, каб праглядзець Инфопанель сервера.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/bg-BG.json b/src/strings/bg-BG.json index f6c7b51fec..7f692bd544 100644 --- a/src/strings/bg-BG.json +++ b/src/strings/bg-BG.json @@ -1,31 +1,11 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "Advanced": "Разширени", - "Alerts": "Alerts", "All": "Всички", "AllLibraries": "Всички библиотеки", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Звук", "BirthDateValue": "Роден/а на: {0}", "BirthPlaceValue": "Родно място: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "Разглеждане", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", "ButtonAdd": "Добавяне", "ButtonAddMediaLibrary": "Добавяне на библиотека", "ButtonAddScheduledTaskTrigger": "Добавяне на спусък", @@ -38,30 +18,22 @@ "ButtonAudioTracks": "Звукови пътеки", "ButtonBack": "Назад", "ButtonCancel": "Отказ", - "ButtonCancelSeries": "Cancel Series", "ButtonChangeContentType": "Промяна на типа съдържание", - "ButtonChangeServer": "Change Server", "ButtonClear": "Изчистване", "ButtonClose": "Затваряне", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Конфигуриране на ПИН кода", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Преобразуване на медия", "ButtonCreate": "Създай", "ButtonDelete": "Изтриване", "ButtonDeleteImage": "Изтриване на изобр.", - "ButtonDown": "Down", "ButtonDownload": "Изтегляне", "ButtonEdit": "Редактиране", "ButtonEditImages": "Редактиране на изображенията", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Изход", "ButtonFilter": "Филтър", "ButtonForgotPassword": "Забравена парола", - "ButtonFullscreen": "Fullscreen", "ButtonGuide": "Справочник", "ButtonHelp": "Помощ", - "ButtonHide": "Hide", "ButtonHome": "Начало", "ButtonInfo": "Сведения", "ButtonInviteUser": "Поканване на потребител", @@ -70,56 +42,35 @@ "ButtonManageFolders": "Управление на папките", "ButtonManageServer": "Управление на сървъра", "ButtonManualLogin": "Вход с име и парола", - "ButtonMenu": "Menu", "ButtonMore": "Още", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Нов", "ButtonNewServer": "Нов сървър", "ButtonNext": "Следващ", - "ButtonNextPage": "Next Page", "ButtonNextTrack": "Следваща пътека", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", "ButtonOff": "Изключено", "ButtonOk": "Добре", "ButtonOpen": "Отваряне", - "ButtonOther": "Other", "ButtonParentalControl": "Родителски контрол", "ButtonPause": "Пауза", "ButtonPlay": "Пускане", "ButtonPlayTrailer": "Трейлър", "ButtonPlaylist": "Списък", - "ButtonPreferences": "Preferences", "ButtonPrevious": "Предишен", - "ButtonPreviousPage": "Previous Page", "ButtonPreviousTrack": "Предишна пътека", "ButtonPrivacyPolicy": "Декларация за поверителност", "ButtonProfile": "Профил", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", "ButtonQuality": "Качество", "ButtonQuickStartGuide": "Ръководство за бързо започване", "ButtonRecord": "Записване", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Опресняване", "ButtonRefreshGuideData": "Обновяване на данните в справочника", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "Премахване", "ButtonRename": "Преименуване", - "ButtonRepeat": "Repeat", "ButtonReports": "Доклади", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Зануляване на паролата", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Повторно пускане", "ButtonRestartNow": "Повторно пускане сега", "ButtonResume": "Продължаване", - "ButtonRevoke": "Revoke", "ButtonSave": "Запазване", "ButtonScanAllLibraries": "Сканиране на всички библиотеки", "ButtonScanLibrary": "Сканиране на библиотеката", @@ -127,11 +78,8 @@ "ButtonSearch": "Търсене", "ButtonSelect": "Избор", "ButtonSelectDirectory": "Изберете папка", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", "ButtonSend": "Изпращане", "ButtonSendInvitation": "Изпращане на покана", - "ButtonServer": "Server", "ButtonServerDashboard": "Табло на сървъра", "ButtonSettings": "Настройки", "ButtonShare": "Споделяне", @@ -139,93 +87,35 @@ "ButtonShutdown": "Загасяне", "ButtonSignIn": "Вписване", "ButtonSignOut": "Отписване", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Подреждане", "ButtonSplitVersionsApart": "Разделяне на версиите", - "ButtonStart": "Start", "ButtonStop": "Стоп", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Подаване", "ButtonSubtitles": "Субтитри", "ButtonSync": "Синхронизиране", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Деинсталиране", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", "ButtonUpdateNow": "Обнови сега", "ButtonUpload": "Качване:", - "ButtonView": "View", "ButtonViewAlbum": "Преглед на албума", "ButtonViewArtist": "Преглед на изпълнителя", - "ButtonViewWebsite": "View website", "ButtonWebsite": "Сайт", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", "CategoryApplication": "Програма", "CategoryPlugin": "Добавки", "CategorySync": "Синхрониз.", "CategorySystem": "Система", "CategoryUser": "Потребител", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Изберете каналите, които да споделите с потребителя. Администраторите ще могат да редактират всички канали, използвайки управлението на метаданни.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "DeathDateValue": "Починал/а на: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Изтриване", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "Изтриване на медия", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Това се отнася само за устройства, които могат да бъдат различени и няма да попречи на достъп от мрежов четец. Филтрирането на потребителски устройства ще предотврати използването им докато не бъдат одобрени тук.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", "Downloading": "Изтегляне", "Downloads": "Изтегляния", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", "EasyPasswordHelp": "Вашият лесен пин код е използван за офлайн достъп със съвместими Jellyfin приложения, както и за влизане през същата мрежа.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", "EveryNDays": "На всеки {0} дни", "ExitFullscreen": "Изход от цял екран", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "FastForward": "Превъртане напред", "FeatureRequiresJellyfinPremiere": "Функцията изисква активен абонамент за премиерното издание на Емби.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Книги", "FolderTypeGames": "Игри", "FolderTypeInherit": "Наследяване", @@ -236,25 +126,13 @@ "FolderTypePhotos": "Снимки", "FolderTypeTvShows": "Сериали", "FolderTypeUnset": "Смесено съдържание", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Цял екран", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "GuideProviderLogin": "Вписване", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "Активни устройства", "HeaderActiveRecordings": "Активни записи", "HeaderActivity": "Дейност", "HeaderAddDevice": "Добавяне на устройство", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Добавяне на спусък", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "Добави заглавия", "HeaderAddUpdateImage": "Добавяне/редактиране на изображение", "HeaderAddUser": "+ Потребител", @@ -263,12 +141,9 @@ "HeaderAdvanced": "Допълнителни", "HeaderAirDays": "Дни на излъчване", "HeaderAlbums": "Албуми", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Всички Записи", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "ППИ ключ", "HeaderApiKeys": "ППИ ключове", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", "HeaderApp": "Програма", "HeaderAudio": "Звук", "HeaderAudioSettings": "Настройки на звука", @@ -278,57 +153,26 @@ "HeaderAwardsAndReviews": "Награди и рецензии", "HeaderBackdrops": "Фонове", "HeaderBecomeProjectSupporter": "Вземете премиерното издание", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Книги", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Персонализирайте изгледа на Jellyfin за максималното удобство на вашата група или организация.", "HeaderCameraUpload": "Качване от фотоапарат", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", "HeaderCastAndCrew": "Артисти и изпълнители", "HeaderCastCrew": "Артисти и изпълнители", "HeaderChangeFolderType": "Промяна на типа съдържание", "HeaderChangeFolderTypeHelp": "За да промените вида на съдържанието, моля, премахнете и създайте наново библиотеката с правилния тип.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Канали", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Глави", "HeaderCinemaMode": "Режим \"Киносалон\"", - "HeaderClients": "Clients", "HeaderCloudSync": "Синхронизиране в облака", "HeaderCodecProfile": "Профил на кодека", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Колекции", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", "HeaderContainerProfile": "Профил на контейнера", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Продължаване на гледането", "HeaderCreatePassword": "Създаване на парола", "HeaderCredits": "Приноси", "HeaderCustomDlnaProfiles": "Собствени профили", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Дата", - "HeaderDateIssued": "Date Issued", "HeaderDays": "Дни", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Местоназначение", "HeaderDetails": "Подробности", "HeaderDetectMyDevices": "Намиране на моите устройства", @@ -337,17 +181,13 @@ "HeaderDeviceAccess": "Достъп на устройствата", "HeaderDevices": "Устройства", "HeaderDirectPlayProfile": "Direct Play профил", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", "HeaderDisplay": "Показване", "HeaderDisplaySettings": "Настройки на показване", "HeaderDownloadSubtitlesFor": "Изтегляне на субтитри за:", "HeaderDownloadSync": "Изтегляне и синхронизиране", "HeaderEasyPinCode": "Лесен ПИН код", "HeaderEmbeddedImage": "Вградено изображение", - "HeaderEpisodes": "Episodes", "HeaderError": "Грешка", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", "HeaderExternalServices": "Външни услуги", "HeaderFavoriteAlbums": "Любими албуми", "HeaderFavoriteArtists": "Любими изпълнители", @@ -360,12 +200,10 @@ "HeaderFeatureAccess": "Достъп до функции", "HeaderFeatures": "Функции", "HeaderFetchImages": "Свали изображения:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Филтри", "HeaderForKids": "Детски", "HeaderForgotKey": "Забравен ключ", "HeaderForgotPassword": "Забравена парола", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Често пускани", "HeaderGames": "Игри", "HeaderGenres": "Жанрове", @@ -373,13 +211,9 @@ "HeaderGuideProviders": "Доставчици на справочници", "HeaderHomePage": "Начална страница", "HeaderHomeScreenSettings": "Настройки на началния екран", - "HeaderHttpHeaders": "Http Headers", "HeaderIdentification": "Идентификация", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", "HeaderImageBackdrop": "Фон", "HeaderImageLogo": "Логотип", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Главно", "HeaderImageSettings": "Настройки на картината", "HeaderImages": "Изображения", @@ -388,22 +222,12 @@ "HeaderInstantMix": "Пускане на подобни", "HeaderInvitationSent": "Поканата е изпратена", "HeaderInvitations": "Покани", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", "HeaderJellyfinAccountAdded": "Сметката в Емби е добавена", "HeaderJellyfinAccountRemoved": "Сметката в Емби е премахната", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Език", "HeaderLatestAlbums": "Последни албуми", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestDownloadedVideos": "Последно изтеглени видеоклипове", "HeaderLatestEpisodes": "Последни епизоди", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", "HeaderLatestMedia": "Последна медия", "HeaderLatestMovies": "Последни филми", "HeaderLatestMusic": "Последна музика", @@ -419,22 +243,16 @@ "HeaderLinks": "Препратки", "HeaderLiveTV": "Телевизия на живо", "HeaderLiveTv": "Телевизия на живо", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Управление", "HeaderMedia": "Медия", "HeaderMediaFolders": "Медийни папки", "HeaderMediaInfo": "Данни", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", "HeaderMissing": "Липсва", "HeaderMoreLikeThis": "Подобни", "HeaderMovies": "Филми", "HeaderMusicVideos": "Музикални клипове", "HeaderMyMedia": "Моята медия", - "HeaderMyViews": "My Views", "HeaderName": "Име", - "HeaderNavigation": "Navigation", "HeaderNetwork": "Мрежа", "HeaderNewApiKey": "Нов ППИ ключ", "HeaderNewApiKeyHelp": "Разрешете на приложение да комуникира с Jellyfin сървърът.", @@ -445,31 +263,23 @@ "HeaderNotifications": "Известия", "HeaderNowPlaying": "Сега се възпроизвежда:", "HeaderNumberOfPlayers": "Възпроизводители", - "HeaderOffline": "Offline", "HeaderOfflineSync": "Синхронизиране без мрежов достъп", "HeaderOnNow": "На живо сега", "HeaderOptions": "Настройки", "HeaderOtherDisplaySettings": "Настройки на показване", - "HeaderOtherItems": "Other Items", "HeaderOverview": "Обобщение", "HeaderParentalRating": "Родителска оценка", "HeaderParentalRatings": "Родителска оценка", "HeaderPassword": "Парола", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Пътища", "HeaderPendingInstallations": "Чакащи инсталации", "HeaderPendingInvitations": "Чакащи покани", "HeaderPeople": "Хора", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Типове хора:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "Пускане на всичко", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Настройки на възпроизвеждането", "HeaderPlaylists": "Списъци", "HeaderPleaseSignIn": "Моля, влезте", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Предпочитан език на метаданните", "HeaderProfile": "Профил", "HeaderProfileInformation": "Профил", @@ -477,18 +287,11 @@ "HeaderProgram": "Програма", "HeaderRecentActivity": "Последна дейност", "HeaderRecentlyPlayed": "Скоро пускани", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", "HeaderReleaseDate": "Дата на издаване", "HeaderRemoteControl": "Отдалечен контрол", "HeaderRemoveMediaFolder": "Премахване на медийна папка", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Разделителна способност", "HeaderResponseProfile": "Профил на отговора", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "Повторно пускане", "HeaderResult": "Резултат", "HeaderResume": "Продължаване", @@ -496,57 +299,28 @@ "HeaderReviews": "Рецензии", "HeaderRevisionHistory": "Списък с промени", "HeaderRunningTasks": "Изпълняващи се задачи", - "HeaderRuntime": "Runtime", "HeaderScenes": "Сцени", "HeaderSchedule": "Разписание", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Търсене", "HeaderSeason": "Сезон", "HeaderSeasonNumber": "Номер на сезона", "HeaderSeasons": "Сезони", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", "HeaderSelectDevices": "Изберете устройства", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", "HeaderSelectPath": "Изберете път", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Изпращане на съобщение", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", "HeaderServerSettings": "Настройки на сървъра", "HeaderServices": "Услуги", "HeaderSettings": "Настройки", "HeaderSetupLibrary": "Настройте своите медийни библиотеки", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", "HeaderSignUp": "Регистриране", "HeaderSortBy": "Подреждане по", "HeaderSortOrder": "Ред на подреждане", "HeaderSource": "Източник", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "Специални функции", "HeaderSpecials": "Специални", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Състояние:", "HeaderStudios": "Студиа", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", "HeaderSubtitleSettings": "Настройки на субтитрите", "HeaderSubtitles": "Субтитри", "HeaderSupportTheTeam": "Подкрепете екипа на Емби", @@ -559,60 +333,28 @@ "HeaderTermsOfService": "Условия за ползване на Емби", "HeaderThemeSongs": "Фонови песни", "HeaderThemeVideos": "Фонови видеоклипове", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "За достъп, моля въведете своя лесен ПИН код", "HeaderTopPlugins": "Популярни приставки", "HeaderTrack": "Пътечка", "HeaderTracks": "Песни", "HeaderTrailers": "Трейлъри", "HeaderTranscodingProfile": "Профил на транскодинг", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", "HeaderTunerDevices": "Тунери", - "HeaderTuners": "Tuners", "HeaderTvTuners": "Тунери", "HeaderType": "Вид", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "Предстоящи новини", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Качване на ново изображение:", "HeaderUser": "Потребител", "HeaderUserPrimaryImage": "Изображение", "HeaderUsers": "Потребители", "HeaderVideo": "Видео", - "HeaderVideoTypes": "Video Types", "HeaderVideos": "Видеоклипове", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", "HeaderYears": "Години", "HeadersFolders": "Папки", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 препоръчана пропорция. Само JPG/PNG", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ImportMissingEpisodesHelp": "Ако е активирано, информация за липсващи епизоди ще бъде добавена в базата данни на Jellyfin и ще бъде показвана заедно със сезони и серии. Това може да доведе до значително по-дълго сканиране на библиотеката.", "Invitations": "Покани", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "За да добавите потребител който не е в листите, ще трябва първо да закачите техния профил към Jellyfin Connect от тяхната потребителска страница.", "LabelAddedOnDate": "Добавено на {0}", "LabelAirDate": "Дни на излъчване:", @@ -620,92 +362,44 @@ "LabelAirTime": "Час на излъчване:", "LabelAirTime:": "Час на излъчване:", "LabelAlbum": "Албум:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", "LabelAlbumArtMaxWidth": "Максимална ширина на албумното изкуство:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", "LabelAlbumArtPN": "ПН на албумното изкуство:", - "LabelAlbumArtist": "Album artist:", "LabelAlbumArtists": "Изпълнители на албума:", - "LabelAll": "All", "LabelAllLanguages": "Всички езици", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Разрешаване на сървъра автоматично да се пуска повторно за прилагане на обновления", "LabelAllowServerAutoRestartHelp": "Сървърът ще се рестартира само през свободното си време, когато няма активни потребители.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", "LabelAppName": "Име", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", "LabelArtist": "Изпълнител", "LabelArtists": "Изпълнители:", "LabelArtistsHelp": "Отделете няколко с ;", "LabelAudioCodec": "Звук: {0}", "LabelAudioLanguagePreference": "Предпочитан език на аудиото:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Път към кеша:", "LabelCachePathHelp": "Определете място за сървърните кеш файлове, като изображения. Оставете празно, за да използвате мястото по подразбиране.", "LabelCameraUploadPath": "Път на качване от фотоапарат", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", "LabelCertificatePassword": "Парола на сертификата:", "LabelCertificatePasswordHelp": "Ако сертификатът ви изисква парола, моля, въведете я тук.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "LabelCollection": "Колекция", - "LabelCommunityRating": "Community rating:", "LabelCompleted": "Завършено", "LabelComponentsUpdated": "Следните компоненти са инсталирани или обновени:", "LabelConfigureSettings": "Конфигуриране на настройките", "LabelConnectGuestUserName": "Тяхното потребителско име в Емби Конект или електронна поща:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Тип на съдържанието:", "LabelContentTypeValue": "Тип на съдържанието: {0}", - "LabelContext": "Context:", "LabelConversionCpuCoreLimit": "Ограничение на ядрата:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Страна:", "LabelCreateCameraUploadSubfolder": "Създаване на подпапка за всяко устройство", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Текуща парола:", - "LabelCurrentPath": "Current path:", "LabelCustomCertificatePath": "Път към потребителския сертификат:", "LabelCustomCertificatePathHelp": "Път до файл с шифровъчен стандарт №12, съдържащ сертификат и частен ключ за поддръжка на протокол TLS на собствен домейн.", "LabelCustomCss": "CSS по избор:", "LabelCustomCssHelp": "Използвайте собствен CSS към уеб интерфейса.", "LabelCustomDeviceDisplayName": "Показвано име:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "Нагласяване за вида на медията:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Ден:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", "LabelDefaultStream": "(По подразбиране)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Описание на устройството", - "LabelDidlMode": "Didl mode:", "LabelDisabled": "Изключено", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Показване на липсващите епизоди в сезоните", "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Това също трябва да е активирано за библиотеки от сериали в настройката на сървъра.", "LabelDisplayName": "Показвано име:", @@ -717,142 +411,64 @@ "LabelDownloadInternetMetadataHelp": "Сървърното издание може да сваля сведения за красиво представяне на вашата медия.", "LabelDownloadLanguages": "Изтегляне на езици:", "LabelDropImageHere": "Пуснете изображение тук.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", "LabelEmail": "Електронна поща:", "LabelEmailAddress": "Електронна поща", "LabelEmbedAlbumArtDidl": "Вградждане на албумно изкуство в Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Автоматично съответстване на портовете", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", "LabelEnableCinemaMode": "Включване на режим \"Киносалон\"", "LabelEnableCinemaModeFor": "Включване на режим \"Киносалон\" за:", "LabelEnableDebugLogging": "Включване на журналите за грешки", "LabelEnableDlnaClientDiscoveryInterval": "Интервал за откриване на клиенти (секунди)", "LabelEnableDlnaClientDiscoveryIntervalHelp": "Определя времетраенето в секунди между SSDP търсения направени от Jellyfin.", "LabelEnableDlnaDebugLogging": "Включване на журналите за грешки на ДЛНА", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", "LabelEnableDlnaPlayTo": "Включване на функцията \"възпроизвеждане с ДЛНА\"", "LabelEnableDlnaPlayToHelp": "Емби може да засича устройства в мрежата ви и да предлага възможност за дистанционен контрол.", "LabelEnableDlnaServer": "Включване на ДЛНА-сървър", "LabelEnableDlnaServerHelp": "Разрешава на UPnP устройства в мрежата да разглеждат и пускат Jellyfin съдържание.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "Активиране на наблюдение в реално време", "LabelEnableRealtimeMonitorHelp": "Промените ще бъдат обработени веднага, на поддържани файлови системи.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", "LabelEnabled": "Включено", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEpisode": "Епизод", "LabelEpisodeNumber": "Номер на епизода:", "LabelEvent": "Събитие:", "LabelEveryXMinutes": "На всеки:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "Неуспешно", "LabelFanartApiKey": "Личен ППИ ключ:", "LabelFanartApiKeyHelp": "Заявки до fanart без личен API ключ връщат изображения, които са били одобрени преди повече от 7 дни. С личен API ключ, това време пада на 48 часа, а ако сте и fanart VIP потребител, това става около 10 минути.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Готово", "LabelFolder": "Папка:", "LabelFolderType": "Тип на папката:", - "LabelForcedStream": "(Forced)", "LabelForgotPasswordUsernameHelp": "Въведете потребителското си име, ако го помните.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "Име на сървъра:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", "LabelGroupMoviesIntoCollections": "Групиране на филмите в колекции", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", "LabelHardwareAccelerationType": "Хардуерно ускорение:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHttpsPort": "Локален HTTPS порт:", "LabelHttpsPortHelp": "TCP портът на който HTTPS сървърът на Jellyfin трябва да се закачи.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", "LabelImage": "Изображение:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Вид изображение:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelIpAddressValue": "ИП адрес: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", "LabelKodiMetadataDateFormat": "Формат на датата на издаване:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", "LabelKodiMetadataUserHelp": "Разрешете това, за да запазите данните за гледанията във файлове Nfo за употреба от други програми.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Език:", "LabelLastResult": "Последен резултат:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Локален HTTP порт:", "LabelLocalHttpServerPortNumberHelp": "TCP портът на който HTTP сървърът на Jellyfin трябва да се закачи.", "LabelLocalSyncStatusValue": "Състояние: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLogs": "Журнали:", "LabelManufacturer": "Производител", "LabelManufacturerUrl": "Адрес на производителя", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Максимален брой фонове на медия:", "LabelMaxBitrate": "Максимална скорост на предаване:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Максимално допустима родителска оценка:", "LabelMaxResumePercentage": "Макс процент за продължение:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMaxScreenshotsPerItem": "Максимален брой снимки на екрана на медия:", "LabelMaxStreamingBitrate": "Максимално качество на излъчване:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", "LabelMetadata": "Метаданни:", "LabelMetadataDownloadLanguage": "Предпочитан език на метаданните:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Път към метаданните:", "LabelMetadataPathHelp": "Задайте място по избор за свалени картини и метаданни.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "Минимална широчина на сваления фон:", "LabelMinResumeDuration": "Мин време за продължение (секунди):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", "LabelMinResumePercentage": "Мин процент за продължение:", "LabelMinResumePercentageHelp": "Заглавията се считат за непускани ако бъдат спрени преди това време.", "LabelMinScreenshotDownloadWidth": "Минимална широчина на свалената снимка на екрана:", @@ -861,49 +477,21 @@ "LabelModelName": "Модел", "LabelModelNumber": "Номер на модела", "LabelModelUrl": "Адрес на модела", - "LabelMonitorUsers": "Monitor activity from:", "LabelMovie": "Филм", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Път за запис на филмите (по избор):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "Име:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", "LabelNewName": "Ново име:", "LabelNewPassword": "Нова парола:", "LabelNewPasswordConfirm": "Нова парола (отново):", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Следващ", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", "LabelNumberOfGuideDays": "Брой дни за които да се свали програма:", "LabelNumberOfGuideDaysHelp": "Изтеглянето на програма заповече дни дава възможност да планирате по-нататъшните записи предварително, но и отнема повече време, за да се изтегли. Автомат ще избере въз основа на броя на каналите.", "LabelNumberReviews": "{0} рецензии", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "LabelOptionalNetworkPath": "Споделена мрежова папка (незадължително):", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Парола:", "LabelPasswordConfirm": "Парола (отново):", - "LabelPasswordRecoveryPinCode": "Pin code:", "LabelPath": "Път:", "LabelPinCode": "ПИН код:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Предпочитан език на показване:", "LabelPreferredDisplayLanguageHelp": "Превеждането на Емби е текущ проект.", "LabelPrevious": "Предишен", @@ -915,8 +503,6 @@ "LabelProfileContainersHelp": "Разделени със запетая. Може да бъде оставено празно, за да се отнася за всички контейнери.", "LabelProfileVideoCodecs": "Видеокодеци:", "LabelProtocol": "Протокол:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Публичен HTTP порт:", "LabelPublicHttpPortHelp": "Публичният порт, който да бъде съпоставен с локалния HTTP порт.", "LabelPublicHttpsPort": "Публичен HTTPS порт:", @@ -924,55 +510,33 @@ "LabelQuality": "Качество:", "LabelReadHowYouCanContribute": "Научете как можете да допринесете", "LabelRecordingPath": "Път за запис по подразбиране:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", "LabelReleaseDate": "Дата на издаване:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "Ограничение на интернетното излъчване (мбит/сек):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "Върви на порт {0} (http).", "LabelRunningOnPorts": "Върви на порт {0} (http) и порт {1} (https).", "LabelRunningTimeValue": "Времетраене: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Запазване на картините в папката на медията", "LabelSaveLocalMetadataHelp": "Запазването на картините направо в медийните папки ще ги сложи на място, където лесно могат да бъдат редактирани.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "Модел на папките със сезони:", "LabelSeasonNumber": "Номер на сезона:", "LabelSeasonZeroFolderName": "Име на папка с нулев сезон:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Трейлъри от интернет:", "LabelSelectUsers": "Избери потребители:", "LabelSelectVersionToInstall": "Изберете версия за инсталиране:", - "LabelSendNotificationToUsers": "Send the notification to:", "LabelSerialNumber": "Сериен номер", "LabelSeries": "Сериали:", "LabelSeriesRecordingPath": "Път за запис на сериалите (по избор):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Да се пропусне, ако звуковата пътечка по подразбиране съвпада с езика", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", "LabelSkipIfGraphicalSubsPresent": "Да се пропусне, ако файлът съдържа вградени субтитри", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "Пропуснато", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", "LabelSource": "Източник:", "LabelSpecialSeasonsDisplayName": "Име на сезона със специални епизоди:", - "LabelSportsCategories": "Sports categories:", "LabelStartWhenPossible": "Започвай, когато е възможно:", "LabelStatus": "Състояние:", "LabelStopWhenPossible": "Спирай, когато е възможно:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Предпочитан език на субтитрите:", "LabelSubtitlePlaybackMode": "Режим на субтитрите:", "LabelSupportedMediaTypes": "Поддържани типове медия:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Временен файлов път:", "LabelSyncTempPathHelp": "Определете работна папка за конвертираните файлове при синхронизация.", "LabelTag": "Етикет:", @@ -980,193 +544,68 @@ "LabelTime": "Време:", "LabelTimeLimitHours": "Времево ограничение (часове):", "LabelTranscodingAudioCodec": "Звуков кодек:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Временен път на прекодиране:", "LabelTranscodingTempPathHelp": "Тази папка съдържа работни файлове използвани от транскодера. Задайте място по избор или оставете празно за мястото по подразбиране.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", "LabelTranscodingVideoCodec": "Видеокодек:", "LabelTransferMethod": "Метод на прехвърляне", "LabelTriggerType": "Тип на спусъка:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", "LabelType": "Тип:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Текст", "LabelUnairedMissingEpisodesWithinSeasons": "Показване на неизлъчените епизоди в сезоните", "LabelUnknownLanguage": "Непознат език", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", "LabelUrl": "Адрес:", - "LabelUseNotificationServices": "Use the following services:", "LabelUser": "Потребител:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Библиотека на потребителя:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Потребителско име:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", "LabelVersionNumber": "Версия {0}", - "LabelVersionUpToDate": "Up to date!", "LabelVideoCodec": "Видео: {0}", "LabelVideoType": "Тип на видеото:", "LabelView": "Изглед:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Първото ви име:", "LabelYoureDone": "Готови сте!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Последни {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Изберете медийните папки, които да споделите с потребителя. Администраторите ще могат да редактират всички папки, използвайки управлението на метаданни.", "LinkApi": "ППИ", "LinkCommunity": "Общество", "LinkGithub": "Гитхъб", "LinkLearnMoreAboutSubscription": "Научете повече за премиерното издание", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Съдържанието с по-висока оценка ще бъде скрито от потребителя.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", "MediaInfoAspectRatio": "Съотношение", - "MediaInfoBitDepth": "Bit depth", "MediaInfoBitrate": "Скорост на предаване", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Канали", "MediaInfoCodec": "Кодек", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", "MediaInfoDefault": "По подразбиране", - "MediaInfoExposureTime": "Exposure time", "MediaInfoExternal": "Външно", "MediaInfoFile": "Файл", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", "MediaInfoFormat": "Формат", "MediaInfoFramerate": "Кадри в секунда", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Език", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Ниво", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "Път", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "Профил", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Разделителна способност", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", "MediaInfoSize": "Размер", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Звук", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", "MediaInfoStreamTypeSubtitle": "Субтитри", "MediaInfoStreamTypeVideo": "Видео", - "MediaInfoTimestamp": "Timestamp", "MessageAlreadyInstalled": "Версията вече е инсталирана.", "MessageApplicationUpdated": "Jellyfin сървърът бе обновен.", "MessageAreYouSureYouWishToRemoveMediaFolder": "Сигурни ли сте, че искате да премахнете медийната папка?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmRestart": "Наистина ли искате да пуснете сървъра наново?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", "MessageConfirmShutdown": "Наистина ли искате да спрете Jellyfin сървърът?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "За да можете да каните гости, първо трябва да свържете своята сметка в Емби със сървъра.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageNoAvailablePlugins": "Няма налични приставки.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoPlaylistItemsAvailable": "Списъкът е празен.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", "MessageNoPluginsInstalled": "Нямате инсталирани приставки.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Няма инсталирани услуги.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Тук няма нищо.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Моля, уверете се че свалянето на метаданни от интернет е разрешено.", - "MessagePleaseRestart": "Please restart to finish updating.", "MessagePleaseRestartServerToFinishUpdating": "Моля рестартирайте сървъра, за да завърши обновяването.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageSettingsSaved": "Настройките са запазени.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", "MessageThankYouForSupporting": "Благодаря, че подкрепихте Jellyfin.", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Следните местоположения ще бъдат премахнати от библиотеката ви:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "MessageYouHaveVersionInstalled": "В момента имате инсталирана версия {0}.", - "Metadata": "Metadata", "MetadataManager": "Управление на метаданните", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "минути след", "MinutesBefore": "минути преди", "MissingBackdropImage": "Липсва фоново изображение.", @@ -1175,93 +614,52 @@ "MissingPrimaryImage": "Липсва главно изображение.", "MoreFromValue": "Още от {0}", "MoreUsersCanBeAddedLater": "Повече потребители могат да бъдат добавени по-късно от главния панел.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Заглушаване", "Never": "Никога", "NewVersionOfSomethingAvailable": "Налична е нова версия на {0}!", "News": "Новини", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Нищо не е намерено. Започнете да гледате вашите предавания!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Нямате инсталирани приставки.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", "NumLocationsValue": "{0} папки", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", "Option3D": "Триизмерни", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Актьор", "OptionActors": "Актьори", "OptionAdminUsers": "Администратори", "OptionAfterSystemEvent": "След системно събитие", "OptionAlbum": "Албум", "OptionAlbumArtist": "Изпълнител на албума", - "OptionAll": "All", "OptionAllUsers": "Всички потребители", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "Разрешаване на телевизия на живо", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "Разрешаване на споделяне в социалните медии", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", "OptionAllowManageLiveTv": "Разрешаване записно управление на телевизия на живо", "OptionAllowMediaPlayback": "Разрешаване на пускане на медия", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Разрешаване на отдалечен контрол на други потребители", "OptionAllowRemoteSharedDevices": "Разрешаване на отдалечен контрол на споделени устройства", "OptionAllowRemoteSharedDevicesHelp": "DLNA устройства се считат за споделени докато някой потребител не започне да ги контролира.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Разрешаване на този потребител да управлява сървъра", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Всеки", - "OptionArt": "Art", "OptionArtist": "Изпълнител", "OptionAscending": "Възходящо", "OptionAuto": "Автоматично", "OptionAutomatic": "Автоматично", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Фон", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "Банер", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "Бета", - "OptionBirthLocation": "Birth Location", "OptionBlockBooks": "Книги", - "OptionBlockChannelContent": "Internet Channel Content", "OptionBlockGames": "Игри", - "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockLiveTvPrograms": "Телевизионни програми", "OptionBlockMovies": "Филми", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "Телевизионни сериали", - "OptionBluray": "Bluray", "OptionBooks": "Книги", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Колекции", "OptionCommunityRating": "Обществена ощенка", "OptionComposer": "Съчинител", "OptionComposers": "Съчинители", "OptionContinuing": "Продължаващо", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Оценка на критиците", "OptionCustomUsers": "По избор", "OptionDaily": "Ежедневно", "OptionDateAdded": "Дата на добавяне", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Дата на пускане", "OptionDefaultSort": "По подразбиране", "OptionDescending": "Низходящо", @@ -1272,49 +670,26 @@ "OptionDisableUserHelp": "Ако е дезактивиран, сървърът няма да позволи каквито и да било връзки от този потребител. Съществуващите връзки ще бъдат внезапно прекратени.", "OptionDisc": "Диск", "OptionDislikes": "Нехаресвания", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", "OptionDisplayFolderView": "Показване на изглед в папки", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Картина", "OptionDownloadBackImage": "Задна част", "OptionDownloadBannerImage": "Банер", "OptionDownloadBoxImage": "Кутия", "OptionDownloadDiscImage": "Диск", "OptionDownloadImagesInAdvance": "Предварително изтегляне на изображения", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "Логотип", "OptionDownloadMenuImage": "Меню", "OptionDownloadPrimaryImage": "Главно", "OptionDownloadThumbImage": "Миниатюра", "OptionDvd": "ДВД", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Позволяване на достъпа от всички устройства", "OptionEnableAccessToAllChannels": "Позволяване на достъпа до всички канали", "OptionEnableAccessToAllLibraries": "Позволяване на достъпа до всички библиотеки", "OptionEnableAutomaticServerUpdates": "Разрешаване на автоматичните обновления", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Приключило", - "OptionEpisodeSortName": "Episode Sort Name", "OptionEpisodes": "Епизоди", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionEveryday": "Всеки ден", "OptionExternallyDownloaded": "Външно сваляне", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Любими", "OptionFolderSort": "Папки", "OptionFriday": "Петък", @@ -1330,27 +705,17 @@ "OptionHasTrailer": "Трейлър", "OptionHideUser": "Скриване на потребителя от страниците за вход", "OptionHideUserFromLoginHelp": "Полезно за частни или скрити администраторски профили. Потребителят ще трябва да влезе ръчно чрез въвеждане на потребителско име и парола.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "OptionHomeVideos": "Домашни клипове и снимки", "OptionIcon": "Иконка", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "Оценка в IMDb", - "OptionInProgress": "In-Progress", "OptionIsHD": "ВК", "OptionIsSD": "СК", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", "OptionLatestMedia": "Последни медии", "OptionLatestTvRecordings": "Последни записи", "OptionLibraryFolders": "Медийни папки", "OptionLikes": "Харесвания", "OptionList": "Списък", - "OptionLocked": "Locked", "OptionLogo": "Логотип", - "OptionMax": "Max", "OptionMenu": "Меню", "OptionMissingEpisode": "Липсващи епизоди", "OptionMissingImdbId": "Липсващо IMDb ID", @@ -1365,13 +730,9 @@ "OptionMusicAlbums": "Албуми", "OptionMusicArtists": "Изпълнители", "OptionMusicVideos": "Музикални клипове", - "OptionName": "Name", "OptionNameSort": "Име", "OptionNo": "Не", - "OptionNoTrailer": "No Trailer", "OptionNone": "Нищо", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Като се стартира приложението", "OptionOnInterval": "През интервал", "OptionOtherApps": "Други програми", @@ -1382,9 +743,7 @@ "OptionParentalRating": "Родителска оценка", "OptionPeople": "Хора", "OptionPlainStorageFolders": "Показвай всички папки като папки за обикновено съхранение", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", "OptionPlainVideoItems": "Показвай всички видео клипове като обикновени", - "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\".", "OptionPlayCount": "Брой пускания", "OptionPlayed": "Пускани", "OptionPoster": "Плакат", @@ -1398,41 +757,26 @@ "OptionProfilePhoto": "Снимка", "OptionProfileVideo": "Видео", "OptionProfileVideoAudio": "Видео Аудио", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Записвай по всяко време", "OptionRecordOnAllChannels": "Записвай на всички канали", "OptionRecordOnlyNewEpisodes": "Записване само на нови епизоди", "OptionRecordSeries": "Записване на предавания", - "OptionRegex": "Regex", "OptionRelease": "Официално издание", "OptionReleaseDate": "Дата на издаване", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", "OptionRequirePerfectSubtitleMatch": "Да се изтеглят само субтитри, които пасват идеално на файловете ми", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Възобновляемост", "OptionResumablemedia": "Продължаване", "OptionRuntime": "Времетраене", "OptionSaturday": "Събота", "OptionSaturdayShort": "Събота", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Снимка на екрана", "OptionSeason0": "Сезон 0", "OptionSeasons": "Сезони", "OptionSeries": "Сериали", "OptionSongs": "Песни", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "Специални", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Неделя", "OptionSundayShort": "Неделя", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "Миниатюра", "OptionThumbCard": "Карта миниатюра", "OptionThursday": "Четвъртък", @@ -1440,12 +784,9 @@ "OptionTimeline": "График", "OptionTrackName": "Име на песента:", "OptionTrailersFromMyMovies": "Трейлъри от филми в библиотеката", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Вторник", "OptionTuesdayShort": "Вторник", - "OptionTvdbRating": "Tvdb Rating", "OptionUnairedEpisode": "Неизлъчени епизоди", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Непускано", "OptionUnwatched": "Неизгледано", "OptionUpcomingDvdMovies": "От нови и предстоящи филми на ДВД и Блурей", @@ -1456,83 +797,37 @@ "OptionWatched": "Изгледано", "OptionWednesday": "Сряда", "OptionWednesdayShort": "Сряда", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "Ежеседмично", "OptionWriters": "Писатели", "OptionYes": "Да", "OriginalAirDateValue": "Дата на първоначално излъчване: {0}", "Password": "Парола", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", "PasswordResetHeader": "Зануляване на паролата", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", "PictureInPicture": "Картина в картина", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", "PlayOnAnotherDevice": "Пускане на друго устройство", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "PleaseUpdateManually": "Моля, загасете сървъра и инсталирайте последната версия.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} е инсталирано", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} е деинсталирано", "PluginUpdatedWithName": "{0} е обновено", "PreferEmbeddedTitlesOverFileNames": "Да се предпочитат вградените заглавия пред имената на файлове", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", "Programs": "Програми", "ProviderValue": "Доставчик: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Защото сте харесали {0}", "RecommendationBecauseYouWatched": "Защото сте гледали {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Регистрирай с PayPal", "ReleaseYearValue": "Година на издаване: {0}", "RememberMe": "Запомняне на данните", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Превъртане назад", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Сканиране на библиотеката", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", "SendMessage": "Изпращане на съобщение", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "След инсталирането на приставка, сървърът ще трябва да бъде пуснат наново.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Настройки", "SettingsSaved": "Настройките са запазени.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Разширени настройки", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Спортни", "Standard": "Стандартно", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Субтитри", - "Sync": "Sync", - "SyncMedia": "Sync Media", "SyncToOtherDevices": "Синхронизиране на други устройства", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "Относно", "TabAccess": "Достъп", "TabActivity": "Дейност", @@ -1544,16 +839,13 @@ "TabBasic": "Основни", "TabBasics": "Основи", "TabCameraUpload": "Качване от фотоапарат", - "TabCast": "Cast", "TabCatalog": "Каталог", "TabChannels": "Канали", - "TabChapters": "Chapters", "TabCinemaMode": "Режим \"Киносалон\"", "TabCodecs": "Кодеци", "TabCollectionTitles": "Заглавия", "TabCollections": "Колекции", "TabContainers": "Контейнери", - "TabControls": "Controls", "TabDLNA": "Стандарт ДЛНА (DLNA)", "TabDashboard": "Табло", "TabDevices": "Устройства", @@ -1569,7 +861,6 @@ "TabGeneral": "Главно", "TabGenres": "Жанрове", "TabGuide": "Ръководство", - "TabHelp": "Help", "TabHome": "Начало", "TabHomeScreen": "Начален екран", "TabHosting": "Хостинг", @@ -1588,18 +879,15 @@ "TabMusicVideos": "Музикални клипове", "TabMyLibrary": "Моята библиотека", "TabMyPlugins": "Моите приставки", - "TabNavigation": "Navigation", "TabNetworks": "Мрежи", "TabNextUp": "Следва", "TabNfoSettings": "Формат за метаданни .nfo", "TabNotifications": "Известия", - "TabNowPlaying": "Now Playing", "TabOther": "Други", "TabOthers": "Друго", "TabParentalControl": "Родителски контрол", "TabPassword": "Парола", "TabPaths": "Пътища", - "TabPhotos": "Photos", "TabPlayback": "Възпроизвеждане", "TabPlaylist": "Списък", "TabPlaylists": "Списъци", @@ -1609,7 +897,6 @@ "TabRecordings": "Записи", "TabResponses": "Отговори", "TabResumeSettings": "Настройки за продължаване", - "TabScenes": "Scenes", "TabScheduledTasks": "Планирани задачи", "TabSecurity": "Защита", "TabSeries": "Сериали", @@ -1623,26 +910,19 @@ "TabSubtitles": "Субтитри", "TabSuggestions": "Предложения", "TabSync": "Синхронизиране", - "TabSyncJobs": "Sync Jobs", "TabTV": "Сериали", "TabTrailers": "Трейлъри", "TabTranscoding": "Прекодиране", "TabUpcoming": "Предстоящи", "TabUsers": "Потребители", - "TabView": "View", "TellUsAboutYourself": "Разкажете за себе си", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Насладете се на допълнителни функции", "Themes": "Облици", "ThisWizardWillGuideYou": "Помощникът ще ви напътства през процеса на конфигурация. За да започнете, моля изберете предпочитания от вас език.", "TitleDevices": "Устройства", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "Телевизия на живо", "TitleNewUser": "Нов потребител", "TitleNotifications": "Известия", - "TitlePasswordReset": "Password Reset", "TitlePlayback": "Възпроизвеждане", "TitlePlugins": "Приставки", "TitleRemoteControl": "Отдалечен контрол", @@ -1652,14 +932,10 @@ "TitleSupport": "Поддръжка", "TitleSync": "Синхронизиране", "TitleUsers": "Потребители", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", "UninstallPluginHeader": "Деинсталиране на приставката", "Unmute": "Без заглушаване", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Емби включва вградена поддръжка на потребителски профили, които позволяват на всеки потребител да има свои настройки на картината, място на пускане и родителски настройки.", "Users": "Потребители", - "ValueAlbumCount": "{0} albums", "ValueArtist": "Изпълнител: {0}", "ValueArtists": "Изпълнители: {0}", "ValueAsRole": "в ролята на {0}", @@ -1667,42 +943,21 @@ "ValueAwards": "Награди: {0}", "ValueCodec": "Кодек: {0}", "ValueConditions": "Условия: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Дата на създаване: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", "ValueExample": "Пример: {0}", "ValueGameCount": "{0} игри", "ValueGuestStar": "Гостуваща звезда", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", "ValueLinks": "Препратки: {0}", "ValueMinutes": "{0} минути", "ValueMovieCount": "{0} филма", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", "ValuePriceUSD": "Цена: {0} (долари САЩ)", - "ValueSeriesCount": "{0} series", "ValueSeriesYearToPresent": "{0} - Настояще", "ValueSongCount": "{0} песни", "ValueStatus": "Състояние: {0}", "ValueStudio": "Студио: {0}", "ValueStudios": "Студиа: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", "ValueVideoCodec": "Видеокодек: {0}", "VersionNumber": "Версия {0}", - "ViewPlaybackInfo": "View playback info", "ViewTypeFolders": "Папки", "ViewTypeGames": "Игри", "ViewTypeLiveTvChannels": "Канали", @@ -1716,13 +971,5 @@ "ViewTypeMusicSongs": "Песни", "ViewTypeTvShows": "Сериали", "WelcomeToProject": "Добре дошли в Емби!", - "Whitelist": "Whitelist", "WizardCompleted": "Това е всичко от което се нуждаем за момента. Емби започна да събира данни за медийната ви библиотека. Разгледайте някои от нашите приложения, после натиснете Готово, за да видите таблото на сървъра.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/ca.json b/src/strings/ca.json index 04ce66f80d..34285ca2f9 100644 --- a/src/strings/ca.json +++ b/src/strings/ca.json @@ -1,29 +1,7 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Afegir Usuari", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Tot", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Àudio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Consulta el nostre catàleg per veure els complements disponibles.", "ButtonAccept": "Acceptar", "ButtonAdd": "Afegeix", @@ -35,22 +13,16 @@ "ButtonArrowLeft": "Esquerra", "ButtonArrowRight": "Dreta", "ButtonArrowUp": "Amunt", - "ButtonAudioTracks": "Audio Tracks", "ButtonBack": "Darrera", "ButtonCancel": "Cancel·la", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", "ButtonChangeServer": "Canvia Servidor", - "ButtonClear": "Clear", "ButtonClose": "Tanca", "ButtonConfigurePassword": "Configura Contrasenya", "ButtonConfigurePinCode": "Configura codi pin", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Converteix mèdia", "ButtonCreate": "Crea", "ButtonDelete": "Esborra", "ButtonDeleteImage": "Esborra Imatge", - "ButtonDown": "Down", "ButtonDownload": "Descarrega", "ButtonEdit": "Edita", "ButtonEditImages": "Edita les imatges", @@ -58,12 +30,9 @@ "ButtonExit": "Surt", "ButtonFilter": "Filtra", "ButtonForgotPassword": "He oblidat la contrasenya", - "ButtonFullscreen": "Fullscreen", "ButtonGuide": "Guia", "ButtonHelp": "Ajuda", - "ButtonHide": "Hide", "ButtonHome": "Inici", - "ButtonInfo": "Info", "ButtonInviteUser": "Convidar Usuari", "ButtonLearnMore": "Aprèn més", "ButtonLibraryAccess": "Accés a la biblioteca", @@ -72,17 +41,11 @@ "ButtonManualLogin": "Inici de sessió manual", "ButtonMenu": "Menú", "ButtonMore": "Més", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Nou", "ButtonNewServer": "Nou servidor", "ButtonNext": "Següent", - "ButtonNextPage": "Next Page", "ButtonNextTrack": "Pista següent", - "ButtonNo": "No", "ButtonNowPlaying": "Reproduïnt", - "ButtonOff": "Off", "ButtonOk": "D'acord", "ButtonOpen": "Obre", "ButtonOther": "Altres", @@ -93,42 +56,29 @@ "ButtonPlaylist": "Llista de reproducció", "ButtonPreferences": "Preferències", "ButtonPrevious": "Anterior", - "ButtonPreviousPage": "Previous Page", "ButtonPreviousTrack": "Pista anterior", "ButtonPrivacyPolicy": "Política de privacitat", "ButtonProfile": "Perfil", "ButtonProfileHelp": "Estableix la teva imatge de perfil i contrasenya.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Guia d'inici ràpid", "ButtonRecord": "Grava", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Refresca", "ButtonRefreshGuideData": "Refresca les Dades de la Guia", - "ButtonReject": "Reject", "ButtonRemote": "Remot", "ButtonRemoteControl": "Control Remot", "ButtonRemove": "Elimina", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", "ButtonReset": "Reinicia", "ButtonResetEasyPassword": "Reinicia el codi pin senzill", "ButtonResetPassword": "Reiniciar Contrasenya", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Reinicia", "ButtonRestartNow": "Reinicia ara", "ButtonResume": "Reprèn", - "ButtonRevoke": "Revoke", "ButtonSave": "Desa", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "Escaneja Biblioteca", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "Cercar", "ButtonSelect": "Selecciona", "ButtonSelectDirectory": "Selecciona Directori", "ButtonSelectServer": "Seleccionar servidor", - "ButtonSelectView": "Select view", "ButtonSend": "Envia", "ButtonSendInvitation": "Envia Invitació", "ButtonServer": "Servidor", @@ -140,89 +90,34 @@ "ButtonSignIn": "Inicia Sessió", "ButtonSignOut": "Tanca sessió", "ButtonSignUp": "Registra'm", - "ButtonSkip": "Skip", "ButtonSort": "Ordena", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", "ButtonStop": "Atura", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Envia", "ButtonSubtitles": "Subtítols", - "ButtonSync": "Sync", "ButtonTrailer": "Tràiler", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", "ButtonUpdateNow": "Actualitza Ara", "ButtonUpload": "Carrega", "ButtonView": "Vista", "ButtonViewAlbum": "Veure àlbum", "ButtonViewArtist": "Veure artista", "ButtonViewWebsite": "Veure website", - "ButtonWebsite": "Website", "ButtonYes": "Sí", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplicació", "CategoryPlugin": "Complement", - "CategorySync": "Sync", "CategorySystem": "Sistema", "CategoryUser": "Usuari", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Selecciona els canals a compartir amb aquest usuari. Els administradors podran editar tots els canals emprant el gestor de metadades.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Esborra", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "Esborra Imatge", "DeleteImageConfirmation": "Esteu segur que voleu suprimir aquesta imatge?", "DeleteMedia": "Esborra", "DeleteUser": "Esborra Usuari", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Això només s'aplica a dispositius que poden ser identificats i no previndrà l'accés des del navegador. Filtrant l'accés de dispositius a l'usuari previndrà l'ús de nous dispositius fins que hagin estat aprovats aquí.", "DeviceLastUsedByUserName": "Emprat per darrer cop per {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", "Downloads": "Descàrregues", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", "ErrorMessagePasswordNotMatchConfirm": "La contrasenya i la confirmació de la contrasenya han de coincidir.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", "ErrorMessageUsernameInUse": "Aquest nom d'usuari ja està en ús. Si et plau, escull un altre nom i torna a provar.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "Surt de pantalla completa", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "Arxiu no trobat.", "FileReadCancelled": "La lectura de l'arxiu ha estat cancel·lada.", "FileReadError": "S'ha produït un error en llegir el fitxer.", @@ -236,90 +131,53 @@ "FolderTypePhotos": "Fotos", "FolderTypeTvShows": "TV", "FolderTypeUnset": "No definit (contingut mesclat)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Pantalla completa", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", "HeaderAccessSchedule": "Horari d'Accés", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "Dispositius Actius", "HeaderActiveRecordings": "Enregistraments Actius", "HeaderActivity": "Activitat", "HeaderAddDevice": "Afegeix Dispositiu", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Afegir Disparador", "HeaderAddTag": "Afegir Etiqueta", "HeaderAddTitles": "Afegir Títols", "HeaderAddUpdateImage": "Afegir/Actualitzar Imatge", "HeaderAddUser": "Afegir Usuari", "HeaderAdditionalParts": "Parts addicionals", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avançat", "HeaderAirDays": "Dies d'Emissió", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Totes les Gravacions", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "Clau Api", "HeaderApiKeys": "Claus Api", "HeaderApiKeysHelp": "Les aplicacions externes requereixen una Api key pere tal de poder-se comunicar amb el Servidor d'Jellyfin. Les claus són emeses iniciant sessió amb un compte d'Jellyfin, o concedint manualment una clau a l'aplicació.", - "HeaderApp": "App", "HeaderAudio": "Àudio", "HeaderAudioSettings": "Preferències d'Àudio", "HeaderAudioTracks": "Pistes d'Àudio", "HeaderAutomaticUpdates": "Actualitzacions Automàtiques", "HeaderAvailableServices": "Serveis Disponibles", "HeaderAwardsAndReviews": "Premis i Crítiques", - "HeaderBackdrops": "Backdrops", "HeaderBecomeProjectSupporter": "Obtenir Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Llibres", "HeaderBranding": "Aparença", "HeaderBrandingHelp": "Personalitza l'aparença d'Jellyfin de manera que encaixi amb les necessitats del teu grup o organització.", - "HeaderCameraUpload": "Camera Upload", "HeaderCameraUploadHelp": "Les apps d'emby poden carregar automàticament fotos capturades amb els teus dispositius mòbils cap a l'Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", "HeaderCastAndCrew": "Repartiment i Equip", "HeaderCastCrew": "Repartiment i Equip", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Canals", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Capítols", "HeaderCinemaMode": "Mode Cinema", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", "HeaderCodecProfile": "Perfil de Còdec", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Col·leccions", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "Confirmar", "HeaderConfirmDeletion": "Confirmar Supressió", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "HeaderConfirmProfileDeletion": "Confirmar Supressió de Perfil", "HeaderConfirmRecordingCancellation": "Confirmar Cancel·lació de l'Enregistrament", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", "HeaderConnectToServer": "Connectar al Servidor", - "HeaderConnectionFailure": "Connection Failure", "HeaderContainerProfile": "Perfil del Contenidor", "HeaderContainerProfileHelp": "Els perfils del contenidor indiquen limitacions d'un dispositiu en reproduir formats específics. Si la limitació és aplicable, llavors el multimèdia serà transcodificat, inclús si el format ha estat configurat per a reproducció directa.", "HeaderContinueWatching": "Continua Veient", "HeaderCreatePassword": "Crea Contrasenya", "HeaderCredits": "Crèdits", "HeaderCustomDlnaProfiles": "Perfils Personalitzats", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Data", "HeaderDateIssued": "Data d'Emissió", "HeaderDays": "Dies", @@ -327,42 +185,26 @@ "HeaderDeleteDevice": "Eliminar Dispositiu", "HeaderDeleteImage": "Esborrar Imatge", "HeaderDeleteItem": "Esborrar Ítem", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Destí", "HeaderDetails": "Detalls", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "Informació de Desenvolupador", "HeaderDevice": "Dispositiu", "HeaderDeviceAccess": "Accés de Dispositiu", "HeaderDevices": "Dispositius", "HeaderDirectPlayProfile": "Perfil de Reproducció Directa", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", "HeaderDisplay": "Visualització", "HeaderDisplaySettings": "Preferències de Visualització", "HeaderDownloadSubtitlesFor": "Descarregar subtítols per a:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Codi Pin Senzill", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", "HeaderExport": "Exportar", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", "HeaderFavoriteArtists": "Artistes preferits", "HeaderFavoriteEpisodes": "Episodis Preferits", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoriteShows": "Programes Preferits", "HeaderFavoriteSongs": "Cançons Preferides", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Accés a Funcions", "HeaderFeatures": "Característiques", "HeaderFetchImages": "Obtingues Imatges:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtres", - "HeaderForKids": "For Kids", "HeaderForgotKey": "Clau Perduda", "HeaderForgotPassword": "He oblidat la contrasenya", "HeaderFreeApps": "Apps d'Jellyfin gratuïtes.", @@ -370,40 +212,25 @@ "HeaderGames": "Jocs", "HeaderGenres": "Gèneres", "HeaderGuests": "Convidats", - "HeaderGuideProviders": "TV Guide Data Providers", "HeaderHomePage": "Pàgina d'Inici", "HeaderHomeScreenSettings": "Preferències de la pàgina d'inici", "HeaderHttpHeaders": "Capçaleres Http", "HeaderIdentification": "Identificació", "HeaderIdentificationCriteriaHelp": "Insereix al menys un criteri d'identificació.", "HeaderIdentificationHeader": "Capçalera d'Identificació", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Primari", "HeaderImageSettings": "Preferències d'Imatge", "HeaderImages": "Imatges", "HeaderInstall": "Instal·lació", "HeaderInstalledServices": "Serveis Instal·lats", "HeaderInstantMix": "Mescla Instantània", - "HeaderInvitationSent": "Invitation Sent", "HeaderInvitations": "Invitacions", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", "HeaderJellyfinAccountAdded": "Compte d'Jellyfin Afegit", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Idioma", "HeaderLatestAlbums": "Darrers Àlbums", "HeaderLatestChannelItems": "Darrers Ítems del Canal", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestDownloadedVideos": "Darrers Vídeos Descarregats", "HeaderLatestEpisodes": "Darrers episodis", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", "HeaderLatestMedia": "Darrers Multimèdia", "HeaderLatestMovies": "Darreres Pel·lícules", "HeaderLatestMusic": "Darrera Música", @@ -419,39 +246,24 @@ "HeaderLinks": "Enllaços", "HeaderLiveTV": "TV en Directe", "HeaderLiveTv": "TV en Directe", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Gestió", - "HeaderMedia": "Media", "HeaderMediaFolders": "Directoris Multimèdia", "HeaderMediaInfo": "Info Multimèdia", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", "HeaderMovies": "Pel·lícules", "HeaderMusicVideos": "Vídeos Musicals", "HeaderMyMedia": "Els Meus Multimèdia", "HeaderMyViews": "Les Meves Vistes", "HeaderName": "Nom", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", "HeaderNewApiKey": "Nova Clau Api", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "Nou servidor", "HeaderNewUsers": "Nous Usuaris", "HeaderNextUp": "A continuació", "HeaderNotifications": "Notificacions", "HeaderNowPlaying": "Reproduïnt", "HeaderNumberOfPlayers": "Reproductors", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", "HeaderOnNow": "En Directe", "HeaderOptions": "Opcions", "HeaderOtherDisplaySettings": "Preferències de Visualització", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Valoració Parental", "HeaderParentalRatings": "Classificacions Parentals", "HeaderPassword": "Contrasenya", @@ -463,13 +275,10 @@ "HeaderPersonInfo": "Informació de la Persona", "HeaderPersonTypes": "Tipus de Persones:", "HeaderPhotoInfo": "Info de Foto", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "Reprodueix Tot", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Opcions de Reproducció", "HeaderPlaylists": "Llistes de reproducció", "HeaderPleaseSignIn": "Si et plau, inicia sessió", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Idioma de Metadades Preferit", "HeaderProfile": "Perfil", "HeaderProfileInformation": "Informació del perfil", @@ -477,107 +286,49 @@ "HeaderProgram": "Programa", "HeaderRecentActivity": "Activitat Recent", "HeaderRecentlyPlayed": "Reproduït Recentment", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", "HeaderReleaseDate": "Data de publicació", "HeaderRemoteControl": "Control Remot", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Resolució", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "Reiniciar", "HeaderResult": "Resultat", "HeaderResume": "Reprendre", "HeaderResumeSettings": "Configuració de Continuar", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", "HeaderRunningTasks": "Tasques Corrent", - "HeaderRuntime": "Runtime", "HeaderScenes": "Escenes", "HeaderSchedule": "Horari", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", "HeaderSeason": "Temporada", - "HeaderSeasonNumber": "Season number", "HeaderSeasons": "Temporades", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", "HeaderSelectDate": "Seleccionar Data", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", "HeaderSelectServer": "Seleccionar Servidor", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Enviar Missatge", "HeaderSeries": "Sèries:", - "HeaderSeriesRecordings": "Series Recordings", "HeaderServerSettings": "Preferències del Servidor", "HeaderServices": "Serveis", "HeaderSettings": "Preferències", "HeaderSetupLibrary": "Configura les teves biblioteques multimèdia", - "HeaderSetupTVGuide": "Setup TV Guide", "HeaderShareMediaFolders": "Compartir Directoris Multimèdia", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", "HeaderSortBy": "Ordena per", "HeaderSortOrder": "Ordre de Classificació", "HeaderSource": "Origen", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "Característiques Especials", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Estat", "HeaderStudios": "Estudis", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", "HeaderSubtitleSettings": "Preferències de Subtítols", "HeaderSubtitles": "Subtítols", "HeaderSupportTheTeam": "Dóna suport a l'equip d'Jellyfin", - "HeaderSync": "Sync", "HeaderSyncJobInfo": "Feina del Sync", "HeaderSystemDlnaProfiles": "Perfils del Sistema", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Disparadors de Tasques", "HeaderTermsOfService": "Termes del Servei Jellyfin", "HeaderThemeSongs": "Cançons Temàtiques", "HeaderThemeVideos": "Vídeos Temàtics", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Per accedir, si et plau introdueix el teu codi pin senzill", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", "HeaderTrailers": "Tràilers", "HeaderTranscodingProfile": "Perfil de Transcodificació", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", "HeaderTvTuners": "Sintonitzadors", "HeaderType": "Tipus", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Introdueix Text", "HeaderUnaired": "No emès", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", "HeaderUpcomingEpisodes": "Propers episodis", "HeaderUpcomingNews": "Properes Notícies", "HeaderUpcomingOnTV": "Properament a la televisió", @@ -588,9 +339,7 @@ "HeaderUsers": "Usuaris", "HeaderVideo": "Vídeo", "HeaderVideoTypes": "Tipus de Vídeo", - "HeaderVideos": "Videos", "HeaderViewOrder": "Ordre de Visualització", - "HeaderViewStyles": "View Styles", "HeaderWelcomeToJellyfin": "Benvingut a Jellyfin", "HeaderXmlDocumentAttribute": "Atribut del Document XML", "HeaderXmlDocumentAttributes": "Atributs de Documents XML", @@ -598,257 +347,118 @@ "HeaderYear": "Any:", "HeaderYears": "Anys", "HeadersFolders": "Directoris", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 Relació d'Aspecte Recomanada. Només JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", "LabelAccessDay": "Dia de la setmana:", "LabelAccessEnd": "Hora de fi:", "LabelAccessStart": "Hora d'inici:", "LabelAddConnectSupporterHelp": "Per afegir un usuari que no estigui llistat primer necessitaràs vincular el seu compte a Jellyfin Connect des del seu perfil d'usuari.", "LabelAddedOnDate": "Afegit el {0}", - "LabelAirDate": "Air days:", "LabelAirDays": "Dies en directe:", "LabelAirTime": "Horari en directe:", - "LabelAirTime:": "Air time:", "LabelAlbum": "Àlbum:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", "LabelAlbumArtMaxHeight": "Alçada màxima de l'art de l'àlbum:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", "LabelAlbumArtMaxWidth": "Amplada màxima de l'art de l'àlbum:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", "LabelAllLanguages": "Tots els idiomes", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Permetre el servidor reiniciar-se automàticament per aplicar actualitzacions", "LabelAllowServerAutoRestartHelp": "El servidor només es reiniciarà durant períodes d'inactivitat, quan no tingui usuaris actius.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artistes:", "LabelArtistsHelp": "Separa'n varis emprant ;", "LabelAudioCodec": "Àudio: {0}", "LabelAudioLanguagePreference": "Preferència de l'idioma de l'àudio:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "Tokens disponibles:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", "LabelCache": "Memòria cau:", "LabelCachePath": "Dir. de memòria cau:", "LabelCachePathHelp": "Especifica una ubicació personalitzada per als fitxers de memòria cau del servidor. Deixa-ho en blanc per emprar el valor per defecte del servidor.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Cancel·lat", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", "LabelCommunityRating": "Valoració de la comunitat:", "LabelCompleted": "Completat", "LabelComponentsUpdated": "Els següents components han estat instal·lats o actualitzats:", "LabelConfigureSettings": "Configura preferències", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tipus de contingut:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "País:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Contrasenya actual:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "CSS propi:", "LabelCustomCssHelp": "Aplica el teu propi css a la interfície web.", "LabelCustomDeviceDisplayName": "Nom a mostrar:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "Personalitza per al tipus de mitjà:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Dia:", - "LabelDeathDate": "Death date:", "LabelDefaultForcedStream": "(Per defecte/Forçat)", "LabelDefaultStream": "(Per defecte)", "LabelDefaultUser": "Usuari per defecte:", "LabelDefaultUserHelp": "Determina quina biblioteca d'usuari s'hauria de mostrar als dispositius connectats. Pots sobre-escriure això per a cada dispositiu emprant perfils.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Descripció del dispositiu", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", "LabelDisplayCollectionsView": "Mostra una vista de col·leccions per mostrar col·leccions de pel·licules", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Mostra els episodis que manquen dins les temporades", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "LabelDisplayName": "Nom a mostrar:", "LabelDisplayPluginsFor": "Mostra complements per a:", "LabelDisplaySpecialsWithinSeasons": "Mostra els especials dins les temporades en que van ser emesos", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Descarrega artwork i metadades d'internet", "LabelDownloadInternetMetadataHelp": "El Servidor d'Jellyfin pot descarregar informació dels teus multimèdia habilitant unes millors presentacions.", "LabelDownloadLanguages": "Descarrega idiomes:", "LabelDropImageHere": "Deixa anar la imatge aquí.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Codi pin senzill:", - "LabelEmail": "Email:", "LabelEmailAddress": "Correu electrònic", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Habilita l'auto-mapatge de ports", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", "LabelEnableCinemaMode": "Habilitar mode cinema", "LabelEnableCinemaModeFor": "Habilitar mode cinema per:", "LabelEnableDebugLogging": "Habilita registre de depuració", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", "LabelEnableDlnaDebugLoggingHelp": "Això crearà arxius de registre molt grans i només es recomana quan sigui necessari per solucionar problemes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Jellyfin pot detectar dispositius dins de la teva xarxa i ofereix la possibilitat de controlar-los a distància.", "LabelEnableDlnaServer": "Habilita servidor DLNA", "LabelEnableDlnaServerHelp": "Permet als dispositius UPnP de la teva xarxa explorar i reproduir contingut d'Jellyfin", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "Habilitar el monitoratge a temps real", "LabelEnableRealtimeMonitorHelp": "Els canvis es processaran immediatament als sistemes que ho suportin.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", "LabelEndingEpisodeNumber": "Nombre d'episodi final", "LabelEndingEpisodeNumberHelp": "Només cal per als fitxers multi-episodi", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "Esdeveniment:", "LabelEveryXMinutes": "Cada:", "LabelExternalDDNS": "Domini extern:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Reproductors externs:", "LabelExtractChaptersDuringLibraryScan": "Extrau imatges dels episodis durant l'escaneig de la biblioteca", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "Fallit", "LabelFanartApiKey": "Clau api personal:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Finalitzar", - "LabelFolder": "Folder:", "LabelFolderType": "Tipus de directori:", "LabelForcedStream": "(Forçat)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", "LabelFriendlyName": "Nom amistós", "LabelFriendlyServerName": "Nom amistós del servidor:", "LabelFriendlyServerNameHelp": "El nom servirà per identificar aquest servidor. Si es deixa en blanc s'emprarà el nom de l'ordinador.", "LabelFromHelp": "Exemple: {0} (al servidor)", "LabelGroupMoviesIntoCollections": "Agrupa pel·lícules a col·leccions", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHttpsPort": "Port local https:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", "LabelIconMaxHeight": "Alçada màxima de la icona:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", "LabelIconMaxWidth": "Amplada màxima de la icona:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", "LabelImage": "Imatge", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Tipus d'imatge:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelIpAddressValue": "Adreça IP: {0}", "LabelJpgPngOnly": "Només JPG/PNG", - "LabelKidsCategories": "Children's categories:", "LabelKodiMetadataDateFormat": "Format de la data de publicació:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "LabelKodiMetadataEnablePathSubstitution": "Habilita la substitució de directoris", "LabelKodiMetadataEnablePathSubstitutionHelp": "Habilita la substitució de directoris emprant les opcions de substitució de directoris del servidor.", "LabelKodiMetadataSaveImagePaths": "Desa els directoris de les imatges als fitxers nfo", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Idioma:", "LabelLastResult": "Darrer resultat:", - "LabelLimit": "Limit:", "LabelLimitIntrosToUnwatchedContent": "Reprodueix tràilers només de contingut no vist", - "LabelLineup": "Lineup:", "LabelLocalAccessUrl": "Accés local (LAN): {0}", "LabelLocalHttpServerPortNumber": "Port local http:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimerHelp": "Es mostrarà al peu de la pàgina d'inici de sessió.", "LabelLogs": "Registres:", "LabelManufacturer": "Fabricant", "LabelManufacturerUrl": "URL del fabricant", "LabelMarkAs": "Marca com:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Nombre màxim d'imatges de fons per ítem:", "LabelMaxBitrate": "Bitrate màxim:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Valoració màxima permesa de control parental:", "LabelMaxResumePercentage": "Percentatge màxim per reprendre:", "LabelMaxResumePercentageHelp": "Es considerarà que s'ha reproduït del tot si s'atura després d'aquest temps", "LabelMaxScreenshotsPerItem": "Nombre màxim de captures de pantalla per ítem:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Especifica un bitrate màxim quan es faci streaming.", "LabelMessageText": "Text del missatge:", "LabelMessageTitle": "Títol del missatge:", "LabelMetadata": "Metadada:", "LabelMetadataDownloadLanguage": "Idioma de metadades preferit:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Directori de metadades:", "LabelMetadataPathHelp": "Especifica un directori personalitzat per a l'artwork i les metadades descarregats.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", "LabelMethod": "Mètode:", "LabelMinBackdropDownloadWidth": "Amplada mínima de descàrrega de la imatge de fons:", "LabelMinResumeDuration": "Durada mínima per reprendre (segons):", @@ -860,88 +470,49 @@ "LabelModelDescription": "Descripció del model", "LabelModelName": "Nom del model", "LabelModelNumber": "Nombre de model", - "LabelModelUrl": "Model url", "LabelMonitorUsers": "Supervisar activitat de:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Directori de gravació de pel·lícules (opcional):", "LabelMusicStaticBitrate": "Bitrate de sincronització de música:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", "LabelMusicVideo": "Vídeo Musical", "LabelName": "Nom:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", "LabelNewName": "Nou nom:", "LabelNewPassword": "Nova contrasenya:", "LabelNewPasswordConfirm": "Confirma la nova contrasenya:", "LabelNewUserNameHelp": "Els noms d'usuari poden contenir lletres (a-z), nombres (0-9), guions (-), guions baixos (_), apòstrofs (') i punts (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Següent", - "LabelNoUnreadNotifications": "No unread notifications.", "LabelNotificationEnabled": "Habilita aquesta notificació", "LabelNumberOfGuideDays": "Nombre de dies de dades de la guia per a descarregar:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", "LabelOpenSubtitlesPassword": "Contrasenya d'Open Subtitles:", "LabelOpenSubtitlesUsername": "Usuari d'Open Subtitles:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Contrasenya:", - "LabelPasswordConfirm": "Password (confirm):", "LabelPasswordRecoveryPinCode": "Codi pin:", "LabelPath": "Directori:", "LabelPinCode": "Codi pin:", "LabelPlayDefaultAudioTrack": "Reprodueix la pista d'àudio per defecte independentment de l'idioma", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Idioma de visualització preferit:", "LabelPreferredDisplayLanguageHelp": "La traducció d'Jellyfin és un projecte en curs.", "LabelPrevious": "Anterior", "LabelProfile": "Perfil:", "LabelProfileAudioCodecs": "Còdecs d'àudio:", "LabelProfileCodecs": "Còdecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainer": "Contenidor:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileVideoCodecs": "Còdecs de vídeo:", - "LabelProtocol": "Protocol:", "LabelProtocolInfo": "Informació del protocol:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Número públic del port http:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", "LabelPublicHttpsPort": "Número públic del port https:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", "LabelQuality": "Qualitat", "LabelReadHowYouCanContribute": "Aprèn com pots contribuir.", "LabelRecordingPath": "Directori de gravació per defecte:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", "LabelReleaseDate": "Data de publicació:", "LabelRemoteAccessUrl": "Accés remot (WAN): {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", "LabelResumePoint": "Punt de represa:", "LabelRunningOnPort": "Corrent al port http {0}.", "LabelRunningOnPorts": "Corrent al port http {0} i al port https {1}.", "LabelRunningTimeValue": "Temps executant-se: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Desa l'artwork i les metadades als directoris dels multimèdia", "LabelSaveLocalMetadataHelp": "Desar l'artwork i les metadades directament als directoris dels multimèdia els posarà tots en llocs on podran ser editats fàcilment.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "Patró del directori de temporada:", - "LabelSeasonNumber": "Season number:", "LabelSeasonZeroFolderName": "Nom del directori de la temporada zero:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Tràilers d'internet:", "LabelSelectUsers": "Selecciona usuaris:", "LabelSelectVersionToInstall": "Selecciona versió a instal·lar:", @@ -949,34 +520,16 @@ "LabelSerialNumber": "Nombre de sèrie", "LabelSeries": "Sèries:", "LabelSeriesRecordingPath": "Directori de gravació de sèries (opcional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "Saltat", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", "LabelSource": "Font:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", "LabelStartWhenPossible": "Comença quan sigui possible:", "LabelStatus": "Estat:", "LabelStopWhenPossible": "Atura quan sigui possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Exemple: srt", "LabelSubtitleLanguagePreference": "Preferència de l'idioma dels subtítols:", "LabelSubtitlePlaybackMode": "Mode de subtítols:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Directori de fitxers temporals:", "LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multimèdia convertits durant el procés de sincronització es desaran aquí.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Hora:", "LabelTimeLimitHours": "Temps límit (en hores):", "LabelTranscodingAudioCodec": "Còdec d'àudio", @@ -984,344 +537,144 @@ "LabelTranscodingTempPath": "Directori temporal de transcodificació:", "LabelTranscodingTempPathHelp": "Aquest directori conté fitxers emprats pel transcodificador. Especifica un directori personalitzat o deixa-ho en blanc per emprar el per defecte dins el directori de dades del servidor.", "LabelTranscodingTemporaryFiles": "Fitxers temporals de transcodificació:", - "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.", "LabelTranscodingVideoCodec": "Còdec de vídeo:", "LabelTransferMethod": "Mètode de transferència", "LabelTriggerType": "Tipus de Disparador:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", "LabelType": "Tipus:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Mostra els episodis que no han estat emesos dins les temporades", "LabelUnknownLanguage": "Idioma desconegut", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Empra els següents serveis:", "LabelUser": "Usuari:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Biblioteca d'usuari:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Nom d'usuari:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", "LabelValue": "Valor:", - "LabelVersionInstalled": "{0} installed", "LabelVersionNumber": "Versió {0}", - "LabelVersionUpToDate": "Up to date!", "LabelVideoCodec": "Vídeo: {0}", "LabelVideoType": "Tipus de Vídeo:", "LabelView": "Vista:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "El teu nom:", "LabelYoureDone": "Ja està!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Novetats a {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Selecciona els directoris dels multimèdia a compartir amb aquest usuari. Els administradors podran editar tots els directoris emprant el gestor de metadades.", - "LinkApi": "Api", "LinkCommunity": "Comunitat", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Descobreix més sobre Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "El contingut amb una valoració superior no serà mostrat a l'usuari.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", "MediaInfoAspectRatio": "Relació d'aspecte", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Canals", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", "MediaInfoDefault": "Per defecte", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", "MediaInfoForced": "Forçat", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Idioma", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", "MediaInfoPixelFormat": "Format de píxel", "MediaInfoProfile": "Perfil", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Resolució", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Àudio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", "MessageApplicationUpdated": "El Servidor d'Jellyfin ha estat actualitzat", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", "MessageConfirmProfileDeletion": "N'estàs segur d'eliminar aquest perfil?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmRestart": "Estàs segur que vols reiniciar el Servidor d'Jellyfin?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", "MessageContactAdminToResetPassword": "Sisplau contacta amb l'adiministrador per restablir la contrasenya.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", "MessageEnablingOptionLongerScans": "Habilitar aquesta opció pot resultar en escanejos de la llibreria significativament més lents.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", "MessageFileWillBeDeleted": "El següent fitxer serà eliminat:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Ítem desat.", "MessageItemsAdded": "Ítems afegits", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", "MessageNamedServerConfigurationUpdatedWithValue": "La secció de configuració {0} ha estat actualitzada", "MessageNoAvailablePlugins": "No hi ha extensions disponibles.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoMovieSuggestionsAvailable": "Per ara no hi ha suggerències de pel·lícules. Comença a veure i valorar les teves pel·lícules i llavors torna aquí per veure les teves recomanacions.", "MessageNoPlaylistItemsAvailable": "Aquesta llista de reproducció és buida actualment.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", "MessageNoPluginsInstalled": "No tens cap complement instal·lat.", "MessageNoServersAvailableToConnect": "No hi ha servidors disponibles als que connectar-se. Si has estat convidat a compartir un servidor assegura't d'acceptar-ho aquí sota o fent clic a l'enllaç del correu electrònic.", "MessageNoServicesInstalled": "No hi ha serveis instal·lats actualment.", "MessageNoTrailersFound": "No s'han trobat tràilers. Instal·la el canal Trailer per millorar la teva experiència amb les pel·lícules afegint una llibreria de tràilers d'internet.", "MessageNothingHere": "Res aquí.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", "MessagePaymentServicesUnavailable": "Els serveis de pagament no estan disponibles actualment. Siusplau, intenta-ho més tard.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Si et plau, assegura't que la descàrrega de metadades d'internet està habilitada.", "MessagePleaseRestart": "Si et plau, reinicia per finalitzar l'actualització.", "MessagePleaseRestartServerToFinishUpdating": "Si et plau, reinicia el servidor per finalitzar les actualitzacions.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", "MessageServerConfigurationUpdated": "S'ha actualitzat la configuració del servidor", "MessageSettingsSaved": "Preferències desades.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", "MessageThankYouForSupporting": "Gràcies per donar suport a Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "MessageYouHaveVersionInstalled": "Actualment tens la versió {0} instal·lada.", - "Metadata": "Metadata", "MetadataManager": "Gestor de Metadades", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "minuts després", "MinutesBefore": "minuts abans", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", "MoreFromValue": "Més de {0}", "MoreUsersCanBeAddedLater": "Pots afegir més usuaris després des del tauler de control.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Silencia", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Cap trobat. Comença a mirar els teus programes!", "NoPluginConfigurationMessage": "Aquest complement no té opcions de configuració.", "NoPluginsInstalledMessage": "No tens cap complement instal·lat.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", "NumLocationsValue": "{0} directoris", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", "OptionAdminUsers": "Administradors", "OptionAfterSystemEvent": "Després d'un esdeveniment del sistema", "OptionAlbum": "Àlbum", - "OptionAlbumArtist": "Album Artist", "OptionAll": "Tot", "OptionAllUsers": "Tots els usuaris", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "Permetre accés a TV en directe", "OptionAllowContentDownloading": "Permetre descàrrega de mitjans", "OptionAllowLinkSharing": "Permetre compartir els mitjans a les xarxes socials", "OptionAllowLinkSharingHelp": "Només les pàgines web contenint informació multimèdia seran compartides. En cap cas es comparteixen fitxers públicament. Les comparticions estan limitades per temps i expiraran després de {0} dies.", "OptionAllowManageLiveTv": "Permetre gestionar l'enregistrament de TV en directe", "OptionAllowMediaPlayback": "Permetre reproducció multimèdia", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Permetre el control remot d'altres usuaris", "OptionAllowRemoteSharedDevices": "Permetre el control remot de dispositius compartits", "OptionAllowRemoteSharedDevicesHelp": "Els dispositius dlna es consideren compartits fins que un usuari comença a controlar-los.", "OptionAllowSyncContent": "Permetre Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Permet aquest usuari gestionar el servidor", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Qualsevol", - "OptionArt": "Art", "OptionArtist": "Artista", "OptionAscending": "Ascendent", "OptionAuto": "Automàtc", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Teló de fons", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Millor disponible", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", "OptionBlockBooks": "Llibres", - "OptionBlockChannelContent": "Internet Channel Content", "OptionBlockGames": "Jocs", - "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockLiveTvPrograms": "Programes de TV en directe", "OptionBlockMovies": "Pel·lícules", "OptionBlockMusic": "Música", - "OptionBlockOthers": "Others", "OptionBlockTrailers": "Tràilers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", "OptionBooks": "Llibres", "OptionBox": "Capsa", "OptionBoxRear": "Capsa (darrere)", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Col·leccions", "OptionCommunityRating": "Valoració de la Comunitat", "OptionComposer": "Compositor", "OptionComposers": "Compositors", "OptionContinuing": "Continuant", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Valoració dels Crítics", - "OptionCustomUsers": "Custom", "OptionDaily": "Diari", "OptionDateAdded": "Data Afegida", - "OptionDateAddedFileTime": "Use file creation date", "OptionDateAddedImportTime": "Empra la data d'escaneig", "OptionDatePlayed": "Data de Reproducció", "OptionDefaultSort": "Per defecte", "OptionDescending": "Descendent", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", "OptionDisableUser": "Desactiva aquest usuari", "OptionDisableUserHelp": "Si es desactiva el servidor no permetrà cap connexió des d'aquest usuari. Les connexions existents seran interrompudes abruptament.", - "OptionDisc": "Disc", "OptionDislikes": "No m'agrada", "OptionDisplayAdultContent": "Mostra contingut per adults", "OptionDisplayChannelsInline": "Mostra canals com a directoris de mitjans", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Contra", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Capsa", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menú", "OptionDownloadPrimaryImage": "Primària", "OptionDownloadThumbImage": "Miniatura", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Incrusta dins el contenidor", "OptionEnableAccessFromAllDevices": "Habilita l'accés des de tots els dispositius", "OptionEnableAccessToAllChannels": "Habilita l'accés a tots els canals", "OptionEnableAccessToAllLibraries": "Habilita l'accés a totes les biblioteques", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", "OptionEnableDisplayMirroring": "Habilita el mirall de pantalla", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Permet incloure tràilers d'internet i programes de TV en directe amb el continguts suggerits.", "OptionEnableExternalVideoPlayers": "Habilita reproductors de vídeo externs", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", "OptionEnableFullscreen": "Habilita pantalla completa", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Acabades", "OptionEpisodeSortName": "Nom per Endreçar l'Episodi", "OptionEpisodes": "Episodis", "OptionEquals": "Equival", - "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionEveryday": "Cada dia", "OptionExternallyDownloaded": "Descàrrega externa", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Preferits", "OptionFolderSort": "Directoris", "OptionFriday": "Divendres", "OptionFridayShort": "Div", - "OptionGameSystems": "Game systems", "OptionGames": "Jocs", - "OptionGenres": "Genres", "OptionGuestStars": "Artistes Convidats", "OptionHasSpecialFeatures": "Característiques Especials", "OptionHasSubtitles": "Subtítols", @@ -1330,18 +683,9 @@ "OptionHasTrailer": "Tràiler", "OptionHideUser": "Oculta aquest usuari de les pantalles de login", "OptionHideUserFromLoginHelp": "Pràctic per a comptes d'administrador ocults o privats. L'usuari necessitarà accedir manualment introduint el seu nom d'usuari i contrasenya.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "OptionHomeVideos": "Fotos i vídeos domèstics", "OptionIcon": "Icona", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "Qualificació IMDb", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", "OptionLatestChannelMedia": "Darrers ítems del canal", "OptionLatestMedia": "Darrers Multimèdia", "OptionLatestTvRecordings": "Darrers enregistraments", @@ -1349,13 +693,10 @@ "OptionLikes": "M'agrada", "OptionList": "Llista", "OptionLocked": "Blocat", - "OptionLogo": "Logo", - "OptionMax": "Max", "OptionMenu": "Menú", "OptionMissingEpisode": "Episodis Perduts", "OptionMissingImdbId": "Sense id d'IMDb", "OptionMissingOverview": "Sense sinopsi", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "Sense id de Tmdb", "OptionMissingTvdbId": "Sense id de TheTVDB", "OptionMobileApps": "Apps per a mòbils", @@ -1365,31 +706,20 @@ "OptionMusicAlbums": "Àlbums musicals", "OptionMusicArtists": "Músics", "OptionMusicVideos": "Vídeos musicals", - "OptionName": "Name", "OptionNameSort": "Nom", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", "OptionNone": "Cap", "OptionOff": "Apagat", "OptionOn": "Encès", "OptionOnAppStartup": "En arrencar l'aplicació", "OptionOnInterval": "En un interval", "OptionOtherApps": "Altres apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "Altres Vídeos", "OptionOthers": "Altres", - "OptionOverview": "Overview", "OptionParentalRating": "Classificació Parental", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Nombre de Reproduccions", "OptionPlayed": "Reproduït", "OptionPoster": "Pòster", "OptionPosterCard": "Tarja pòster", - "OptionPremiereDate": "Premiere Date", "OptionPrimary": "Primària", "OptionPriority": "Prioritat", "OptionProducer": "Productor", @@ -1397,50 +727,34 @@ "OptionProfileAudio": "Àudio", "OptionProfilePhoto": "Foto", "OptionProfileVideo": "Vídeo", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Enregistra en qualsevol moment", "OptionRecordOnAllChannels": "Enregistra a tots els canals", "OptionRecordOnlyNewEpisodes": "Enregistra només nous episodis", "OptionRecordSeries": "Enregistra Sèries", - "OptionRegex": "Regex", "OptionRelease": "Versió Oficial", "OptionReleaseDate": "Data de Publicació", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Continuable", "OptionResumablemedia": "Continuable", "OptionRuntime": "Temps d'exec.", "OptionSaturday": "Dissabte", "OptionSaturdayShort": "Dis", "OptionSaveMetadataAsHidden": "Desa les metadades i les imatges com a fitxers ocults", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Captura", "OptionSeason0": "Temporada 0", "OptionSeasons": "Temporades", "OptionSeries": "Sèries", - "OptionSongs": "Songs", "OptionSortName": "Nom per endreçar:", "OptionSpecialEpisode": "Especials", "OptionStudios": "Estudis", "OptionSubstring": "Subcadena", "OptionSunday": "Diumenge", "OptionSundayShort": "Diu", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "Miniatura", "OptionThumbCard": "Tarja miniatura", "OptionThursday": "Dijous", "OptionThursdayShort": "Dij", "OptionTimeline": "Línia temporal", - "OptionTrackName": "Track Name", "OptionTrailersFromMyMovies": "Inclou tràilers de pel·lícules a la meva biblioteca", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Dimarts", "OptionTuesdayShort": "Dim", "OptionTvdbRating": "Valoració TVDB", @@ -1449,101 +763,47 @@ "OptionUnplayed": "No reproduït", "OptionUnwatched": "No vist", "OptionUpcomingDvdMovies": "Inclou tràilers de noves i properes pel·lícules en Dvd i Blu-Ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", "OptionUpcomingStreamingMovies": "Inclou tràilers de noves i properes pel·lícules a Netflix", "OptionVideoBitrate": "Bitrate del Vídeo", "OptionWakeFromSleep": "Despertar", "OptionWatched": "Vist", "OptionWednesday": "Dimecres", "OptionWednesdayShort": "Dic", - "OptionWeekday": "Weekdays", "OptionWeekdays": "Entre setmana", - "OptionWeekend": "Weekends", "OptionWeekends": "Cap de setmana", "OptionWeekly": "Setmanal", "OptionWriters": "Guionistes", "OptionYes": "Sí", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Contrasenya", "PasswordMatchError": "La confirmació de la contrasenya i la contrasenya han de coincidir.", "PasswordResetComplete": "La contrasenya s'ha restablert.", "PasswordResetConfirmation": "Estàs segur que vols restablir la contrasenya?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "Contrasenya desada.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", "PlayOnAnotherDevice": "Reprodueix en un altre dispositiu", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "PleaseUpdateManually": "Si et plau, apaga Jellyfin Server i actualitza manualment.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} ha estat instal·lat", "PluginTabAppClassic": "Jellyfin per a Windows Media Center", "PluginUninstalledWithName": "{0} ha estat desinstal·lat", "PluginUpdatedWithName": "{0} ha estat actualitzat", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", "Programs": "Programes", "ProviderValue": "Proveïdor: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", "RecommendationBecauseYouWatched": "Ja que has vist {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registra amb PayPal", - "ReleaseYearValue": "Release year: {0}", "RememberMe": "Recorda'm", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", "SendMessage": "Envia missatge", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Preferències", "SettingsSaved": "Preferències desades.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Subtítols", - "Sync": "Sync", - "SyncMedia": "Sync Media", "SyncToOtherDevices": "Sincronitza a altres dispositius", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "Quant a", "TabAccess": "Accés", "TabActivity": "Activitat", "TabAdvanced": "Avançat", - "TabAlbumArtists": "Album Artists", "TabAlbums": "Àlbums", "TabAppSettings": "Preferències d'App", "TabArtists": "Artistes:", "TabBasic": "Bàsic", "TabBasics": "Bàsics", - "TabCameraUpload": "Camera Upload", "TabCast": "Actors", "TabCatalog": "Catàleg", "TabChannels": "Canals", @@ -1553,26 +813,21 @@ "TabCollectionTitles": "Títols", "TabCollections": "Col·leccions", "TabContainers": "Contenidors", - "TabControls": "Controls", - "TabDLNA": "DLNA", "TabDashboard": "Tauler de Control", "TabDevices": "Dispositius", "TabDirectPlay": "Reproducció Directa", "TabDisplay": "Visualització", "TabEpisodes": "Episodis", - "TabExpert": "Expert", "TabExtras": "Extres", "TabFavorites": "Preferits", "TabFilter": "Filtrar", "TabFolders": "Directoris", "TabGames": "Jocs", - "TabGeneral": "General", "TabGenres": "Gèneres", "TabGuide": "Guia", "TabHelp": "Ajuda", "TabHome": "Inici", "TabHomeScreen": "Pàgina d'Inici", - "TabHosting": "Hosting", "TabImage": "Imatge", "TabImages": "Imatges", "TabInfo": "Informació", @@ -1581,7 +836,6 @@ "TabLibrary": "Biblioteca", "TabLibraryAccess": "Accés a la Biblioteca", "TabLiveTV": "TV en Directe", - "TabLogs": "Logs", "TabMetadata": "Metadades", "TabMovies": "Pel·lícules", "TabMusic": "Música", @@ -1608,7 +862,6 @@ "TabProfiles": "Perfils", "TabRecordings": "Enregistraments", "TabResponses": "Respostes", - "TabResumeSettings": "Resume Settings", "TabScenes": "Escenes", "TabScheduledTasks": "Tasques Programades", "TabSecurity": "Seguretat", @@ -1618,13 +871,9 @@ "TabSettings": "Preferències", "TabShows": "Programes", "TabSongs": "Cançons", - "TabStreaming": "Streaming", "TabStudios": "Estudis", "TabSubtitles": "Subtítols", "TabSuggestions": "Suggerències", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Tràilers", "TabTranscoding": "Transcodificació", "TabUpcoming": "Properament", @@ -1632,13 +881,9 @@ "TabView": "Vista", "TellUsAboutYourself": "Explica'ns sobre tu", "TermsOfUse": "Condicions d'ús", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Gaudeix de característiques addicionals", - "Themes": "Themes", "ThisWizardWillGuideYou": "Aquest assistent et guiarà durant el procés d'instal·lació. Per començar, si et plau selecciona el teu idioma preferit.", "TitleDevices": "Dispositius", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "TV en Directe", "TitleNewUser": "Nou Usuari", "TitleNotifications": "Notificacions", @@ -1650,57 +895,18 @@ "TitleServer": "Servidor", "TitleSignIn": "Inicia Sessió", "TitleSupport": "Suport", - "TitleSync": "Sync", "TitleUsers": "Usuaris", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Estàs segur que vols desinstal·lar {0}?", "UninstallPluginHeader": "Desinstal·lar Complement.", "Unmute": "De-silencia", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin inclou suport integrat per a perfils d'usuari, habilitant a cada usuari tenir les seves pròpies preferències de visualització, estats de reproducció i controls parentals.", "Users": "Usuaris", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} episodis", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", "ValueGuestStar": "Artista convidat", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", "ValueLinks": "Enllaços: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} vídeos musicals", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1 vídeo musical", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Estudis: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Versió {0}", "ViewPlaybackInfo": "Veure informació de reproducció", "ViewTypeFolders": "Directoris", @@ -1714,15 +920,10 @@ "ViewTypeMusicFavoriteSongs": "Cançons Preferides", "ViewTypeMusicFavorites": "Preferides", "ViewTypeMusicSongs": "Cançons", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Benvingut a Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Això és tot el que necessitem per ara. Jellyfin ha començat a recollir informació de la teva biblioteca multimèdia. Mira't alguna de les nostres apps, i llavors fes clic a Finalitzar per veure el Tauler de Control del Servidor.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", "XmlTvKidsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes infantils. Separa'n varis emprant '|'.", "XmlTvMovieCategoriesHelp": "Els programes amb aquestes categories es mostraran com a pel·lícules. Separa'n varis emprant '|'.", "XmlTvNewsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes de notícies. Separa'n varis emprant '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", "XmlTvSportsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes esportius. Separa'n varis emprant '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/cs.json b/src/strings/cs.json index 1d85c40496..58f931588b 100644 --- a/src/strings/cs.json +++ b/src/strings/cs.json @@ -2,28 +2,13 @@ "AddGuideProviderHelp": "Přidat zdroj televizního programu", "AddItemToCollectionHelp": "Přidat položky do kolekce jejich vyhledáním a použitím pravého tlačítka myši nebo klepnutím na tlačítko menu - přidat do sbírky.", "AddUser": "Přidat uživatele", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "Prohlédněte si katalog zásuvných modulů pro nainstalaci další oznámovací služby.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Vše", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", "AllowHWTranscodingHelp": "Pokud nastavíte, povolíte tuneru překódování v reálném čase. Může snížit zátěž překódovávání požadované Jellyfin Serverem.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Zvuk", "BirthDateValue": "Narozen: {0}", "BirthPlaceValue": "Místo narození: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", "BookLibraryHelp": "Audio a text je podporován", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Prohlédněte si náš katalog, kde najdete dostupné zásuvné moduly.", "ButtonAccept": "Přijmout", "ButtonAdd": "Přidat", @@ -63,14 +48,12 @@ "ButtonHelp": "Nápověda", "ButtonHide": "Skrýt", "ButtonHome": "Domů", - "ButtonInfo": "Info", "ButtonInviteUser": "Pozvat uživatele", "ButtonLearnMore": "Zjistit více", "ButtonLibraryAccess": "Přístup ke knihovně", "ButtonManageFolders": "Správa složek", "ButtonManageServer": "Správce serveru", "ButtonManualLogin": "Manuální přihlášení", - "ButtonMenu": "Menu", "ButtonMore": "Více", "ButtonMoreInformation": "Další informace", "ButtonMute": "Ztlumit", @@ -83,14 +66,12 @@ "ButtonNo": "Ne", "ButtonNowPlaying": "Nyní je přehráváno", "ButtonOff": "Vypnout", - "ButtonOk": "Ok", "ButtonOpen": "Otevřít", "ButtonOther": "Další", "ButtonParentalControl": "Rodičovská kontrola", "ButtonPause": "Pozastavit", "ButtonPlay": "Přehrát", "ButtonPlayTrailer": "Ukázka", - "ButtonPlaylist": "Playlist", "ButtonPreferences": "Předvolby", "ButtonPrevious": "Předchozí", "ButtonPreviousPage": "Předchozí stránka", @@ -116,12 +97,10 @@ "ButtonResetEasyPassword": "Obnovit easy pin kód", "ButtonResetPassword": "Obnovit heslo", "ButtonResetTuner": "Obnovit nastavení tuneru", - "ButtonRestart": "Restart", "ButtonRestartNow": "Restartovat nyní", "ButtonResume": "Pokračovat", "ButtonRevoke": "Odvolat", "ButtonSave": "Uložit", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "Prohledat knihovnu", "ButtonScheduledTasks": "Naplánované úlohy", "ButtonSearch": "Hledání", @@ -131,7 +110,6 @@ "ButtonSelectView": "Výběr zobrazení", "ButtonSend": "Odeslat", "ButtonSendInvitation": "Odeslat pozvání", - "ButtonServer": "Server", "ButtonServerDashboard": "Hlavní nabídka serveru", "ButtonSettings": "Nastavení", "ButtonShare": "Sdílet", @@ -143,9 +121,7 @@ "ButtonSkip": "Přeskočit", "ButtonSort": "Seřadit", "ButtonSplitVersionsApart": "Rozdělit verze", - "ButtonStart": "Start", "ButtonStop": "Zastavit", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Potvrdit", "ButtonSubtitles": "Titulky", "ButtonSync": "Synchronizace", @@ -161,21 +137,17 @@ "ButtonViewWebsite": "Přejít na webové stránky", "ButtonWebsite": "Webové stránky", "ButtonYes": "Ano", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplikace", "CategoryPlugin": "Zásuvný modul", "CategorySync": "Synchronizace", "CategorySystem": "Systém", "CategoryUser": "Uživatel:", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Vyberte kanály, které chcete sdílet s tímto uživatelem. Administrátoři budou moci upravovat všechny kanály pomocí správce metadat.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "Režim Cinema přináší zážitky jako z kina přímo do vašeho obývacího pokoje s možností přehrát trailery a vlastní intra před hlavním programem.", "CinemaModeConfigurationHelp2": "Jellyfin aplikace bude muset povolit nebo zakázat režim kina. TV aplikace povolí ve výchozím nastavení režim kina.", "CoverArt": "Obal", "CustomDlnaProfilesHelp": "Vytvořte si vlastní profil se zaměřit na nové zařízení nebo přepsat profil systému.", "DeathDateValue": "Zemřel: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Došlo k chybě při zpracování požadavku. Prosím zkuste to znovu později.", "DefaultMetadataLangaugeDescription": "Vaše defaultní hodnoty, které mohou být upraveny vůči nastavením dané knihovny", "Delete": "Odstranit", @@ -185,23 +157,14 @@ "DeleteMedia": "Odstranit média", "DeleteUser": "Odstranit uživatele", "DeleteUserConfirmation": "Jste si jist, že chcete smazat tohoto uživatele?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Platí pouze pro zařízení, která mohou být jednoznačně identifikována. Těmto zařízením nebude bráněno v přístupu. Filtrování přístupu uživatelských zařízení bude bránit v užívání nových zařízení, dokud nebudou schváleny.", "DeviceLastUsedByUserName": "Posledně použil {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", "Downloads": "Stažení", "DrmChannelsNotImported": "Kanál s DRM nebude importován", "EasyPasswordHelp": "Váš PIN kód je snadné používat pro přístup v režimu offline s podporovanými Jellyfin aplikacemi, a může být také použit pro snadné přihlášení v lokální síti.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", "EnablePhotos": "Povolit fotky", "EnablePhotosHelp": "Fotografie budou detekovány a zobrazeny spolu s dalšími multimediálními soubory.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", "EnterFFmpegLocation": "Vlož cestu k FFmpeg", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "Účet Jellyfin je již propojen s existujícím místním uživatelem. Účet Jellyfin může být spojen pouze s jedním lokálním uživatelem současně.", "ErrorAddingListingsToSchedulesDirect": "Došlo k chybě při přidání sestavy do účtu vašeho Direct plánovače. Direct plánovač umožňuje pouze omezený počet sestav na účet. Možná se budete muset přihlásit do webových stránek Direct plánovače a před pokračováním odstranit ostatní výpisy ze svého účtu.", "ErrorAddingMediaPathToVirtualFolder": "Nastala chyba při přidávání cesty k médiím. Zkontrolujte zda zadaná složka je validní a Jellyfin Server má k této složce přístup.", @@ -217,7 +180,6 @@ "ErrorRemovingJellyfinConnectAccount": "Nastala chyba při odebrání účtu Jellyfin Connect. Zkontrolujte zda máte aktivní internetové připojení a zkuste znovu.", "ErrorSavingTvProvider": "Při ukládání poskytovatele TV došlo k chybě. Prosím, ujistěte se, že je přístupný a zkuste to znovu.", "ErrorValidatingSupporterInfo": "Došlo k chybě při ověřování informací o vašem předplatném Jellyfin Premiere. Prosím zkuste to později.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "Opustit celou obrazovku", "ExtractChapterImagesHelp": "Extrakce obrázků kapitol umožní klientům zobrazit menu pro výběr scény. Tento proces může být náročný na cpu a může vyžadovat několik GB prostoru. Úloha je standardně spuštěna při analýze videí v nočních hodinách. Není doporučeno spouštět tuto úlohu během standardních hodin, kdy je server vytížen.", "FFmpegSavePathNotFound": "Nepodařilo se nám najít FFmpeg pomocí cesty, kterou jste zadali. FFprobe je také zapotřebí a musí existovat ve stejné složce. Tyto aplikace jsou obvykle instalovány společně ve stejné složce. Zkontrolujte cestu a zkuste to znovu.", @@ -236,15 +198,12 @@ "FolderTypePhotos": "Fotky", "FolderTypeTvShows": "TV", "FolderTypeUnset": "Nenastaveno (smíšený obsah)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Celá obrazovka", - "General": "General", "GuestUserNotFound": "Uživatel nenalezen. Prosím, ujistěte se, že název je správný a zkuste to znovu, nebo zkuste zadat jejich e-mailovou adresu.", "GuideProviderLogin": "Přihlášení", "GuideProviderSelectListings": "Výběr zobrazení", "H264CrfHelp": "Constant Rate faktor (CRF) je výchozím nastavení kvality pro kodér x264. Můžete nastavit hodnoty mezi 0 a 51, kde nižší hodnoty vedou lepší kvalitě (na úkor větší velikosti souborů). Rozumné hodnoty jsou mezi 18 a 28. Výchozí hodnota pro x264 je 23, který můžete použít jako výchozí bod.", "H264EncodingPresetHelp": "Vyber hodnotu faster ke zvýšení výkonu, nebo slower ke zvýšení kvality.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "Zapnutí hardwarové akcelerace může způsobit nestabilitu v některých prostředích. Ujistěte se, že vaše ovladače operačního systému a videa jsou plně aktuální. Máte-li potíže s přehráváním videa po zapnutí, budete muset změnit nastavení zpět na Auto.", "HeaderAccessSchedule": "Přístup k naplánované úloze", "HeaderAccessScheduleHelp": "Vytvořte plán přístupu pro limitování přístupu jen určitém čase.", @@ -252,7 +211,6 @@ "HeaderActiveRecordings": "Aktivní nahrávání", "HeaderActivity": "Aktivity", "HeaderAddDevice": "Přidat zařízení", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Přidat Spouštěč", "HeaderAddTag": "Přidat tag", "HeaderAddTitles": "Přidat názvy", @@ -265,12 +223,10 @@ "HeaderAlbums": "Alba", "HeaderAlert": "Upozornění", "HeaderAllRecordings": "Všechna nahrávání", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "Klíč Api", "HeaderApiKeys": "Klíče Api", "HeaderApiKeysHelp": "Externí aplikace musí mít API klíč, aby mohla komunikovat s Jellyfin Server. Klíče jsou vydávány přihlášením pomocí účtu Jellyfin, nebo manuální žádostí o klíč.", "HeaderApp": "Aplikace", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Nastavení zvuku", "HeaderAudioTracks": "Audio stopy", "HeaderAutomaticUpdates": "Automatické aktualizace", @@ -278,12 +234,10 @@ "HeaderAwardsAndReviews": "Ocenění a hodnocení", "HeaderBackdrops": "Pozadí", "HeaderBecomeProjectSupporter": "Získat Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Knihy", "HeaderBranding": "Značkování", "HeaderBrandingHelp": "Přizpůsobit vzhled Jellyfin, aby odpovídal potřebám vaší skupiny nebo organizace.", "HeaderCameraUpload": "Upload z fotoaparátu", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", "HeaderCancelSyncJob": "Zrušit synchronizaci", "HeaderCastAndCrew": "Herci a obsazení", "HeaderCastCrew": "Herci a obsazení", @@ -291,7 +245,6 @@ "HeaderChangeFolderTypeHelp": "Chcete-li změnit typ, vyjměte a znovu prohledejte knihovny s nově přiřazeným typem.", "HeaderChannelAccess": "Přístup ke kanálu", "HeaderChannels": "Kanály", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Kapitoly", "HeaderCinemaMode": "Cinema Mód", "HeaderClients": "Klienti", @@ -300,7 +253,6 @@ "HeaderCodecProfileHelp": "Kodek profily označují omezení daného zařízení pro přehrávání pomocí specifických kodeků. Jestliže je omezení aplikováno, média budou překódovany i v případě, že kodek je nakonfigurován pro přímé přehrávání.", "HeaderCollections": "Kolekce", "HeaderColumns": "Sloupce", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "Souhlas", "HeaderConfirmDeletion": "Potvrdit smazání", "HeaderConfirmPluginInstallation": "Potvrzení instalace zásuvného modulu", @@ -331,7 +283,6 @@ "HeaderDeleteTaskTrigger": "Zrušit spuštění úlohy", "HeaderDestination": "Umístění", "HeaderDetails": "Detaily", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "Informace pro vývojáře", "HeaderDevice": "Zařízení", "HeaderDeviceAccess": "Přístup k zařízení", @@ -341,12 +292,10 @@ "HeaderDisplay": "Zobrazení", "HeaderDisplaySettings": "Nastavení zobrazení", "HeaderDownloadSubtitlesFor": "Stáhnout titulky pro:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Jednoduchý pin kód", "HeaderEmbeddedImage": "Vložený obrázek", "HeaderEpisodes": "Epizody", "HeaderError": "Chyba", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Přehrát v externím přehrávači", "HeaderExternalServices": "Externí služby", "HeaderFavoriteAlbums": "Oblíbená alba", @@ -356,11 +305,9 @@ "HeaderFavoriteMovies": "Oblíbené filmy", "HeaderFavoriteShows": "Oblíbené seriály", "HeaderFavoriteSongs": "Oblíbená hudba", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Přístup k funkcím", "HeaderFeatures": "Funkce", "HeaderFetchImages": "Načíst obrázky:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtry", "HeaderForKids": "Pro děti", "HeaderForgotKey": "Zapoměl jsem klíč", @@ -378,8 +325,6 @@ "HeaderIdentificationCriteriaHelp": "Zadejte alespoň jedno identifikační kritérium.", "HeaderIdentificationHeader": "Hlavička identifikace", "HeaderImageBackdrop": "Pozadí", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Primární", "HeaderImageSettings": "Nastavení obrázků", "HeaderImages": "Obrázky", @@ -390,12 +335,9 @@ "HeaderInvitations": "Pozvání", "HeaderInviteUser": "Pozvat uživatele", "HeaderInviteUserHelp": "Sdílení médií s přáteli pomocí Jellyfin Connect je jednodušší, než kdy předtím.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", "HeaderItems": "Položky", "HeaderJellyfinAccountAdded": "Jellyfin účet přidán", "HeaderJellyfinAccountRemoved": "Jellyfin účet odebrán", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Jazyk", "HeaderLatestAlbums": "Nejnovější alba", "HeaderLatestChannelItems": "Nejnovější položky kanálů", @@ -417,16 +359,12 @@ "HeaderLibraryFolders": "Složky médií", "HeaderLibrarySettings": "Nastavení knihovny", "HeaderLinks": "Odkazy", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "Přihlášení selhalo", "HeaderManagement": "Správa", "HeaderMedia": "Média", "HeaderMediaFolders": "Složky médií", "HeaderMediaInfo": "Informace o médiu", "HeaderMediaLocations": "Složky médií", - "HeaderMenu": "Menu", "HeaderMissing": "Chybí", "HeaderMoreLikeThis": "Podobné položky", "HeaderMovies": "Filmy", @@ -438,7 +376,6 @@ "HeaderNetwork": "Síť", "HeaderNewApiKey": "Nový klíč API", "HeaderNewApiKeyHelp": "Udělit povolení aplikací pro komunikaci s Jellyfin Server.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "Nový server", "HeaderNewUsers": "Noví uživatelé", "HeaderNextUp": "Očekávané", @@ -447,7 +384,6 @@ "HeaderNumberOfPlayers": "Hráči", "HeaderOffline": "offline", "HeaderOfflineSync": "Offline synchronizace", - "HeaderOnNow": "On Now", "HeaderOptions": "Možnosti", "HeaderOtherDisplaySettings": "Nastavení zobrazení", "HeaderOtherItems": "Další položky", @@ -474,7 +410,6 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Informace o profilu", "HeaderProfileServerSettingsHelp": "Tyto hodnoty určují, jak se Jellyfin Server bude prezentovat v zařízení.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Nedávná aktivita", "HeaderRecentlyPlayed": "Naposledy přehráváno", "HeaderRecordingGroups": "Skupiny nahrávek", @@ -489,7 +424,6 @@ "HeaderResolution": "Rozlišení", "HeaderResponseProfile": "Profil pro odezvy", "HeaderResponseProfileHelp": "Response profily poskytují způsob, jak přizpůsobit informace zaslané do zařízení při přehrávání určitými typy médií.", - "HeaderRestart": "Restart", "HeaderResult": "Výsledek", "HeaderResume": "Pozastavit", "HeaderResumeSettings": "Obnovit nastavení", @@ -499,7 +433,6 @@ "HeaderRuntime": "Délka", "HeaderScenes": "Scény", "HeaderSchedule": "Naplánování úlohy", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Vyhledávání", "HeaderSeason": "Sezóna", "HeaderSeasonNumber": "Číslo sezóny", @@ -543,7 +476,6 @@ "HeaderSplitMedia": "Rozdělit Media Apart", "HeaderStatus": "Stav", "HeaderStudios": "Studia", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "Profil titulků", "HeaderSubtitleProfiles": "Profily titulků", "HeaderSubtitleProfilesHelp": "Profily titulků popisují formáty titulků, které daná zařízení podporují.", @@ -553,7 +485,6 @@ "HeaderSync": "Synchronizace", "HeaderSyncJobInfo": "Synchronizační úloha", "HeaderSystemDlnaProfiles": "Systémové profily", - "HeaderTV": "TV", "HeaderTags": "Tagy", "HeaderTaskTriggers": "Spouštěče úloh", "HeaderTermsOfService": "Podmínky služby Jellyfin", @@ -572,21 +503,17 @@ "HeaderTuners": "Tunery", "HeaderTvTuners": "Tunery", "HeaderType": "Typ", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Vložte text", "HeaderUnaired": "Nevysíláno", "HeaderUnknownDate": "Datum neznámý", "HeaderUnknownYear": "Rok neznámý", "HeaderUnrated": "Nehodnoceno", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", "HeaderUpcomingOnTV": "Bude vysíláno v TV", "HeaderUploadImage": "Upload obrázku", "HeaderUploadNewImage": "Nahrát nový obrázek", "HeaderUser": "Uživatel", "HeaderUserPrimaryImage": "Avatar uživatele", "HeaderUsers": "Uživatelé", - "HeaderVideo": "Video", "HeaderVideoTypes": "Typ videa", "HeaderVideos": "Videa", "HeaderViewOrder": "Pořadí zobrazení", @@ -599,13 +526,9 @@ "HeaderYears": "Roky", "HeadersFolders": "Složky", "HowToConnectFromJellyfinApps": "Jak se připojit z aplikací Jellyfin", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Doporučen poměr 1:1. Pouze JPG/PNG.", "ImportFavoriteChannelsHelp": "Pokud je povoleno, jen kanály označené jako oblíbené budou importována na zařízení tuneru.", "ImportMissingEpisodesHelp": "Pokud je povoleno, budou informace o chybějících epizodách importovány do databáze Jellyfin a zobrazí se v sezónách seriálu. To může způsobit podstatně delší skenování knihovny.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", "JellyfinIntroDownloadMessage": "Chcete-li zdarma stáhnout a nainstalovat Jellyfin Server navštivte {0}.", "JellyfinIntroDownloadMessageWithoutLink": "Pro stažení a instalaci Jellyfin Serveru zdarma navštivte webové stránky Jellyfin.", "JellyfinIntroMessage": "S Jellyfin můžete snadno streamovat videa, hudbu a fotografie na chytré telefony, tablety a další zařízení ze svého Jellyfin serveru.", @@ -619,7 +542,6 @@ "LabelAirDays": "Vysíláno:", "LabelAirTime": "Čas vysílání:", "LabelAirTime:": "Čas vysílání:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN používá obrázek alba v rámci technologie dlna:profileID atributu upnp:albumArtURI. Někteří klienti vyžadují konkrétní hodnoty, bez ohledu na velikost obrázku.", "LabelAlbumArtMaxHeight": "Maximální výška alba:", "LabelAlbumArtMaxHeightHelp": "Maximální rozlišení alb nabízených prostřednictvím upnp:albumArtURI.", @@ -633,32 +555,23 @@ "LabelAllowHWTranscoding": "Povolit hardwarové překódování", "LabelAllowServerAutoRestart": "Povolit automatický restart serveru pro provedení aktualizace", "LabelAllowServerAutoRestartHelp": "Server se restartuje pouze v případě, že žádný z uživatelů není aktivní-", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Kdykoliv", "LabelAppName": "Název aplikace", "LabelAppNameExample": "Příklad: Sickbeard, NzbDrone", "LabelArtist": "Umělec", "LabelArtists": "Umělci:", "LabelArtistsHelp": "Odděl pomocí ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Upřednostňovaný jazyk videa:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "Dostupné tokeny:", "LabelBindToLocalNetworkAddress": "Vázat na místní síťovou adresu:", "LabelBindToLocalNetworkAddressHelp": "Volitelné. Přepsat lokální IP adresu vazanou na http server. Pokud je ponecháno prázdné, server se sváže ke všem dostupným adresám (aplikace bude dostupná na všech síťových zařízení, které server nabízí). Změna této hodnoty vyžaduje restartování Jellyfin Serveru.", "LabelBitrateMbps": "Datový tok (Mbps):", "LabelBlastMessageInterval": "Doba zobrazení zprávy (v sekundách)", "LabelBlastMessageIntervalHelp": "Určuje dobu trvání v sekundách mezi serverovým zobrazením aktuálních zpráv.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Složka pro cache:", "LabelCachePathHelp": "Zadejte vlastní umístění pro serverové dočasné soubory, jako jsou obrázky. Ponechte prázdné, pokud chcete použít výchozí nastavení serveru.", "LabelCameraUploadPath": "Složka pro upload z fotoaparátu:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Zrušeno", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", "LabelChannelStreamQuality": "Preferovaná kvalita pro vysílání přes internet:", "LabelChannelStreamQualityHelp": "Při malé šířce pásma, může pomoci omezování kvality pro hladší streamování videa.", "LabelCodecIntrosPath": "Složka pro vlastní předehry:", @@ -681,8 +594,6 @@ "LabelCreateCameraUploadSubfolderHelp": "Konkrétní složky mohou být přiřazeny k zařízení, klikněte na ni ze stránky \"Zařízení\".", "LabelCurrentPassword": "Aktuální heslo:", "LabelCurrentPath": "Aktuální cesta:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "Vlastní css:", "LabelCustomCssHelp": "Aplikovat vaše uživatelské úpravy CSS do webového rozhraní.", "LabelCustomDeviceDisplayName": "Jméno pro zobrazení:", @@ -700,7 +611,6 @@ "LabelDefaultStream": "(Defaultní)", "LabelDefaultUser": "Výchozí uživatel", "LabelDefaultUserHelp": "Určí, která uživatelská knihovna by měla být zobrazena na připojených zařízení. Nastavení může být přepsáno pomocí profilů pro každé zařízení.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Popis zařízení", "LabelDidlMode": "DIDL režim:", "LabelDisabled": "Zakázáno", @@ -716,10 +626,7 @@ "LabelDownloadInternetMetadata": "Stáhnout přebal a metadata z Internetu", "LabelDownloadInternetMetadataHelp": "Při povolení \"zlepšené\" prezentace může Jellyfin server stahovat informace o vašich mediálních souborech", "LabelDownloadLanguages": "Stahované jazyky:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Kód Easy pin:", - "LabelEmail": "Email:", "LabelEmailAddress": "E-mailová adresa", "LabelEmbedAlbumArtDidl": "Vložit alba do DIDL", "LabelEmbedAlbumArtDidlHelp": "Některá zařízení preferují tento způsob pro získání alba. Jiné mohou selhat pokud máte tuto volbu povolenu.", @@ -739,7 +646,6 @@ "LabelEnableDlnaServer": "Povolit Dlna Server", "LabelEnableDlnaServerHelp": "Povolit UPnP průchod zařízení v síti pro přehrání obsahu Jellyfin.", "LabelEnableFullScreen": "Povolit celoobrazovkový mód", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "Povolit inteligentní rodičovskou kontrolu", "LabelEnableIntroParentalControlHelp": "Trailery budou vybrány na základě rodičovského hodnocení, které se rovná nebo je nižší než je sledovaný obsah.", "LabelEnableRealtimeMonitor": "Povolit sledování v reálném čase", @@ -757,7 +663,6 @@ "LabelEvent": "Událost:", "LabelEveryXMinutes": "Každý:", "LabelExternalDDNS": "Externí doména:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Externí přehrávače:", "LabelExtractChaptersDuringLibraryScan": "Extrakce obrázků kapitol během prohledávání vaší knihovny.", "LabelExtractChaptersDuringLibraryScanHelp": "Jestliže povolíte, budou snímky kapitol extrahovány při pravidelném prohledávání vaší knihovny. Pokud zakážete budou snímky extrahovány během naplánované úlohy pro extrakci snímků z kapitol, což umožní, při pravidelném prohledávání vaší knihovny, dokončit skenování rychleji.", @@ -807,12 +712,8 @@ "LabelKodiMetadataEnablePathSubstitutionHelp": "Umožní nahrazení cesty k obrázkům pomocí nastavené cesty serveru pro nahrazení cest.", "LabelKodiMetadataSaveImagePaths": "Uložit cesty k obrázkům do NFO souborů", "LabelKodiMetadataSaveImagePathsHelp": "Toto nastavení je doporučeno, pokud používáte názvy souborů (obrázků), které nejsou v souladu s pokyny Kodi.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Jazyk:", "LabelLastResult": "Poslední výsledky:", - "LabelLimit": "Limit:", "LabelLimitIntrosToUnwatchedContent": "Přehrávat trailery pouze z nezhlédnutého obsahu.", "LabelLineup": "Hlavní linie:", "LabelLocalAccessUrl": "Lokální (LAN) přístup: {0}", @@ -835,12 +736,9 @@ "LabelMaxResumePercentage": "Maximální procento pro přerušení:", "LabelMaxResumePercentageHelp": "Tituly budou označeny jako \"přehráno\", pokud budou zastaveny po tomto čase", "LabelMaxScreenshotsPerItem": "Maximální počet screenshotů:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Zadejte maximální datový tok pro streamování.", "LabelMessageText": "Text zprávy:", "LabelMessageTitle": "Nadpis zprávy:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "Stahovače metadat:", "LabelMetadataDownloadersHelp": "Povolí řazení vašich preferovaných stahovačů metadat podle priority. Stahovač s nižší prioritou bude použit pouze k doplnění chybějících informací.", "LabelMetadataPath": "Složka pro metadata:", @@ -891,7 +789,6 @@ "LabelOptionalM3uUrl": "M3U url (nepovinné):", "LabelOptionalM3uUrlHelp": "Některá zařízení podporující M3U výpis kanálu.", "LabelOptionalNetworkPath": "(Nepovinné) Sdílená síťová složka:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Heslo:", "LabelPasswordConfirm": "Heslo (potvrzení)", "LabelPasswordRecoveryPinCode": "Pin kód:", @@ -928,7 +825,6 @@ "LabelReleaseDate": "Datum vydání:", "LabelRemoteAccessUrl": "Vzdálený (WAN) přístup: {0}", "LabelRemoteClientBitrateLimit": "Datový tok streamování do Internetu (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "Hlášení:", "LabelResumePoint": "Bod pokračování:", "LabelRunningOnPort": "Spuštěno na http portu {0}.", @@ -941,7 +837,6 @@ "LabelSeasonFolderPattern": "Vzor složky pro sezóny:", "LabelSeasonNumber": "Číslo sezóny:", "LabelSeasonZeroFolderName": "Název složky pro speciální sezóny:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Internetové trailery:", "LabelSelectUsers": "Vyberte uživatele:", "LabelSelectVersionToInstall": "Vyber verzi k instalaci:", @@ -949,10 +844,7 @@ "LabelSerialNumber": "Sériové číslo", "LabelSeries": "Seriály", "LabelSeriesRecordingPath": "Složka pro nahrávání seriálů (volitelné):", - "LabelServerHost": "Host:", "LabelServerHostHelp": "192.168.1.100 nebo https://mujserver.cz", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Přeskočit, pokud výchozí zvuková stopa odpovídá jazyku stahování", "LabelSkipIfAudioTrackPresentHelp": "Zrušte zaškrtnutí pro zobrazení titulků u všech videí, bez ohledu na jazyk zvuku.", "LabelSkipIfGraphicalSubsPresent": "Přeskočit, jestliže video obsahuje vložené titulky", @@ -961,13 +853,11 @@ "LabelSonyAggregationFlags": "Agregační příznaky Sony:", "LabelSonyAggregationFlagsHelp": "Určuje obsah prvku aggregationFlags ve jmenném prostoru urn:schemas-sonycom:av.", "LabelSource": "Zdroj:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSportsCategories": "Sportovní kategorie:", "LabelStartWhenPossible": "Spustit jakmile je možné:", "LabelStatus": "Stav:", "LabelStopWhenPossible": "Zastavit jakmile je možné", "LabelStopping": "Zastavování", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Příklad: srt", "LabelSubtitleLanguagePreference": "Upřednostňovaný jazyk titulků:", "LabelSubtitlePlaybackMode": "Mód titulků:", @@ -975,8 +865,6 @@ "LabelSyncPath": "Cesta k synchronizovanému obsahu:", "LabelSyncTempPath": "Složka pro dočasné soubory:", "LabelSyncTempPathHelp": "Zadejte vlastní synchronizační pracovní složku. Převedené média vytvořené během synchronizačního procesu zde budou uloženy.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Čas:", "LabelTimeLimitHours": "Časový limit (v hodinách):", "LabelTranscodingAudioCodec": "Audio kodek:", @@ -992,18 +880,13 @@ "LabelTunerIpAddress": "IP adresa tuneru:", "LabelTunerType": "Typ tuneru:", "LabelType": "Typ:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Zobrazit neodvysílané epizody v rámci sezón", "LabelUnknownLanguage": "Neznámý jazyk", "LabelUploadSpeedLimit": "Limit rychlosti uploadu (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Použít následující služby:", "LabelUser": "Uživatel:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Knihovna uživatele:", "LabelUserLibraryHelp": "Vyberte, která uživatelská knihovna se zobrazí na zařízení. Ponechte prázdné pro výchozí nastavení.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Uživatelské jméno:", "LabelVaapiDevice": "VA API Zařízení", "LabelVaapiDeviceHelp": "Toto je překreslovací node, který je použit pro hardwarovou akceleraci.", @@ -1011,7 +894,6 @@ "LabelVersionInstalled": "{0} instalováno", "LabelVersionNumber": "Verze {0}", "LabelVersionUpToDate": "Aktuální!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Typ vide:", "LabelView": "Pohled:", "LabelXDlnaCap": "Zachytávací zařízení X-Dlna:", @@ -1024,18 +906,13 @@ "LabelffmpegPath": "FFmpeg - cesta:", "LabelffmpegPathHelp": "Cesta k souboru aplikace ffmpeg, nebo složka obsahující aplikaci ffmpeg.", "LabelffmpegVersion": "FFmpeg - verze:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Nejnovější {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Vyberte složky médií, které chcete sdílet s tímto uživatelem. Administrátoři budou moci editovat všechny složky pomocí správce metadat.", - "LinkApi": "Api", "LinkCommunity": "Komunita", "LinkGithub": "GitHub", "LinkLearnMoreAboutSubscription": "Zjistěte více o Jellyfin Premiere", "LiveTvUpdateAvailable": "(Dostupná aktualizace)", "LoginDisclaimer": "Jellyfin je navržen tak, aby vám pomohl spravovat své osobní knihovny médií, jako jsou domácí videa a fotografie. Přečtěte si prosím naše podmínky použití. Používáním jakéhokoli softwaru Jellyfin souhlasíte s těmito podmínkami.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "Spravovat offline soubory ke stažení", "MapChannels": "Mapa kanálů", "MarkFFmpegExec": "Pod posix systémem (Linux nebo OSX), budete muset najít ffmpeg a ffprobe soubory a označit je jako spustitelný soubor. Jellyfin potřebuje udělit oprávnění k jejich spuštění.", @@ -1052,7 +929,6 @@ "MediaInfoCodec": "Kodek", "MediaInfoCodecTag": "Značka kodeku", "MediaInfoContainer": "Kontejner", - "MediaInfoDefault": "Default", "MediaInfoExposureTime": "Doba expozice", "MediaInfoExternal": "Externí", "MediaInfoFile": "Soubor", @@ -1076,12 +952,8 @@ "MediaInfoSampleRate": "Vzorkovací frekvence", "MediaInfoShutterSpeed": "Rychlost uzávěrky", "MediaInfoSize": "Velikost", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Vložený obrázek", "MediaInfoStreamTypeSubtitle": "Titulky", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Časové razítko", "MessageAlreadyInstalled": "Tato verze je již nainstalována.", "MessageApplicationUpdated": "Jellyfin Server byl aktualizován", @@ -1095,7 +967,6 @@ "MessageConfirmRevokeApiKey": "Jste si jisti, že chcete odvolat tento klíč API? Připojení k aplikaci k Jellyfin Server bude násilně ukončeno.", "MessageConfirmShutdown": "Jste si jist, že chcete vypnout Jellyfin server?", "MessageConfirmSplitMedia": "Jste si jisti, že chcete rozdělit mediální zdroje do samostatných položek?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "Aby bylo možné pozvat hosty je potřeba nejdříve propojit svůj účet Jellyfin k tomuto serveru.", "MessageContactAdminToResetPassword": "Kontaktujte, prosím, vašeho systémového administrátora k obnovení vašeho hesla.", "MessageCreateAccountAt": "Vytvořit účet v {0}", @@ -1104,7 +975,6 @@ "MessageDirectoryPickerBSDInstruction": "Pro BSD, budete možná muset nakonfigurovat úložiště přímo ve Vašem FreeNAS Jail aby k nim Jellyfin povolil přístup.", "MessageDirectoryPickerInstruction": "Síťové cesty lze zadat ručně v případě, že tlačítko 'Síť' nedokáže automaticky lokalizovat vaše zařízení. Například, {0} nebo {1}.", "MessageDirectoryPickerLinuxInstruction": "Pro Linux na Arch Linux, CentOS, Debian, Fedora, openSUSE nebo Ubuntu, je nutné přiřadit oprávnění uživatelům k úložištím systému Jellyfin alespoň pro čtení.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", "MessageEnsureOpenTuner": "Prosím ujistěte se, že je otevřený tuner dostupný.", "MessageErrorLoadingSupporterInfo": "Došlo k chybě při načítání informací o Jellyfin Premiere. Prosím zkuste to znovu později.", "MessageErrorPlayingVideo": "Nastala chyba při přehrávání videa.", @@ -1146,7 +1016,6 @@ "MessagePleaseEnsureInternetMetadata": "Prosím zkontrolujte, zda máte povoleno stahování metadat z internetu.", "MessagePleaseRestart": "Pro dokončení aktualizací, prosím, restartujte.", "MessagePleaseRestartServerToFinishUpdating": "Restartujte, prosím, server pro aplikaci aktualizací.", - "MessagePleaseWait": "Please wait. This may take a minute.", "MessagePluginConfigurationRequiresLocalAccess": "Pro konfiguraci zásuvného modulu se přihlaste přímo na lokální server", "MessagePluginInstallDisclaimer": "Zasuvné moduly vytvořené členy Jellyfin komunity jsou skvělý způsob, jak zvýšit svůj Jellyfin prožitek pomocí doplňkových funkcí :-) Před instalací, se prosím seznamte se všemi dopady, které mohou mít na Jellyfin Server, jako je například delší prohledávání knihovny, další zpracování na pozadí, a snížení stability systému.", "MessagePluginRequiresSubscription": "Tento zásuvný modul bude po 14 denní zkušební verze zdarma vyžadovat aktivní předplatné Jellyfin Premiere.", @@ -1164,7 +1033,6 @@ "MessageUnableToConnectToServer": "Nejsme schopni se připojit k vybranému serveru právě teď. Prosím, ujistěte se, že je spuštěn a zkuste to znovu.", "MessageUnsetContentHelp": "Obsah je zobrazen pomocí prostých složek. Pro dosažení nejlepších výsledků pomocí správce metadat nastavte typy obsahu pod-složek.", "MessageYouHaveVersionInstalled": "V současné době máte instalovánu verzi {0}.", - "Metadata": "Metadata", "MetadataManager": "Manažer metadat", "MetadataSettingChangeHelp": "Změna nastavení metadat bude mít vliv na nový obsah, který bude přidáván. Chcete-li aktualizovat stávající obsah, otevřte obrazovku s detailem a klepněte na tlačítko Aktualizovat, nebo proveďte hromadnou aktualizaci pomocí správce metadat.", "MinutesAfter": "minuty (po)", @@ -1175,29 +1043,17 @@ "MissingPrimaryImage": "Nedostupný primární obrázek.", "MoreFromValue": "Více z {0}", "MoreUsersCanBeAddedLater": "Další uživatele můžete přidat později na Hlavní nabídce.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Ztlumit", - "Never": "Never", "NewVersionOfSomethingAvailable": "Je dostupná nová verze {0}.", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nic nenalezeno. Začněte sledovat Vaše oblíbené seriály!", "NoPluginConfigurationMessage": "Tento zásuvný modul nemá žádné nastavení.", "NoPluginsInstalledMessage": "Nemáte nainstalován žádný zásuvný modul.", "NoResultsFound": "Žádné výsledky.", - "Notifications": "Notifications", "NumLocationsValue": "{0} složky", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Herec", "OptionActors": "Herci", "OptionAdminUsers": "Administrátoři", "OptionAfterSystemEvent": "Po systémové události", - "OptionAlbum": "Album", "OptionAlbumArtist": "Umělec Alba", "OptionAll": "Vše", "OptionAllUsers": "Všichni uživatelé", @@ -1208,12 +1064,10 @@ "OptionAllowLinkSharingHelp": "Sdílené jsou pouze webové stránky obsahující informace o médiích. Obsah souboru není nikdy sdílen veřejně. Sdílené položky jsou časově omezené a jejich platnost vyprší za {0} dny.", "OptionAllowManageLiveTv": "Povolit správu nahrávání z Live TV", "OptionAllowMediaPlayback": "Povolit přehrávání médií", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Povolit vzdálené ovládání ostatních uživatelů", "OptionAllowRemoteSharedDevices": "Povolit vzdálené ovládání sdílených zařízení", "OptionAllowRemoteSharedDevicesHelp": "DLNA zařízení jsou považovány za sdílené, dokud je uživatel nezačne omezovat.", "OptionAllowSyncContent": "Povolit Synchronizaci", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Povolit tomuto uživateli správu serveru", "OptionAllowVideoPlaybackRemuxing": "Umožní přehrávání videa, která vyžaduje konverzi bez opětovného překódování", "OptionAllowVideoPlaybackTranscoding": "Povolit přehrávání videa, které vyžaduje překódování.", @@ -1228,7 +1082,6 @@ "OptionBackdrop": "Pozadí", "OptionBackdropSlideshow": "Slideshow pro pozadí", "OptionBackdrops": "Pozadí", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Nejlépe dostupné", "OptionBeta": "Betaverze", "OptionBirthLocation": "Místo narození", @@ -1242,11 +1095,9 @@ "OptionBlockOthers": "Další", "OptionBlockTrailers": "Upoutávky", "OptionBlockTvShows": "Televizní pořady", - "OptionBluray": "Bluray", "OptionBooks": "Knihy", "OptionBox": "Pouzdro", "OptionBoxRear": "Zadní část pouzdra", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Kolekce", "OptionCommunityRating": "Hodnocení komunity", "OptionComposer": "Skladatel", @@ -1255,7 +1106,6 @@ "OptionConvertRecordingPreserveAudio": "Zachovat původní zvuk při konverzi nahrávky (pokud je to možné)", "OptionConvertRecordingPreserveAudioHelp": "Může poskytnout lepší zvuk, ale může vyžadovat transkódování při přehrávání na některých zařízeních.", "OptionConvertRecordingsToStreamingFormat": "Automaticky provádět konverzi do podporovaných streamových formátů", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Hodnocení kritiků", "OptionCustomUsers": "Vlastní", "OptionDaily": "Denní", @@ -1263,7 +1113,6 @@ "OptionDateAddedFileTime": "Dle data vytvoření souboru", "OptionDateAddedImportTime": "Dle data přidání do knihovny", "OptionDatePlayed": "Datum přehrání", - "OptionDefaultSort": "Default", "OptionDescending": "Sestupně", "OptionDev": "Vývojářská", "OptionDirector": "Režisér", @@ -1279,12 +1128,9 @@ "OptionDisplayFolderViewHelp": "Pokud je povoleno, Jellyfin aplikace zobrazí skupinu složek vedle knihovny médií. To je užitečné, pokud chcete mít pohled na originální složky medií.", "OptionDownloadArtImage": "Obal", "OptionDownloadBackImage": "Zadek", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Stáhnout obrázky pokročilejším způsobem", "OptionDownloadImagesInAdvanceHelp": "Ve výchozím nastavení jsou sekundární obrázky staženy, jen při požádání aplikace Jellyfin. Povolením této možnosti se stáhnou všechny obrázky v předstihu, jakmile jsou nová média načtena do knihovny.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Nabídka", "OptionDownloadPrimaryImage": "Primární", "OptionDownloadThumbImage": "Miniatura", @@ -1338,9 +1184,6 @@ "OptionImages": "Obrázky", "OptionImdbRating": "Hodnocení IMDb", "OptionInProgress": "V procesu", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Klíčová slova", "OptionLatestChannelMedia": "Nejnovější položky kanálu", "OptionLatestMedia": "Nejnovější média", @@ -1349,9 +1192,6 @@ "OptionLikes": "Líbí se", "OptionList": "Seznam", "OptionLocked": "Zamčeno", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Chybějící episody", "OptionMissingImdbId": "Chybějící IMDb Id", "OptionMissingOverview": "Chybějící přehled", @@ -1394,12 +1234,7 @@ "OptionPriority": "Priorita", "OptionProducer": "Producent", "OptionProducers": "Producenti", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Fotografie", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Nahrávat kdykoliv", "OptionRecordOnAllChannels": "Záznam na všech kanálech", "OptionRecordOnlyNewEpisodes": "Nahrávat pouze nové epizody", @@ -1410,7 +1245,6 @@ "OptionReportByteRangeSeekingWhenTranscoding": "Oznamuje, že server podporuje byte seeking při překódování.", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Tento krok je nutný pro některá zařízení, které nemají moc dobrý time seek.", "OptionRequirePerfectSubtitleMatch": "Stahovat jen titulky, které perfektně sedí k mým video souborům.", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", "OptionResElement": "Zdrojový element", "OptionResumable": "Pozastavavitelný", "OptionResumablemedia": "Pokračovat", @@ -1419,7 +1253,6 @@ "OptionSaturdayShort": "Sob", "OptionSaveMetadataAsHidden": "Ukládat metadata a obrázky jako skryté soubory", "OptionSaveMetadataAsHiddenHelp": "Změna bude platit pro nově uložená metadata do budoucna. Existující soubory metadat budou aktualizovány příště, jakmile budou uloženy Jellyfin Serverem.", - "OptionScreenshot": "Screenshot", "OptionSeason0": "Sezóna 0", "OptionSeasons": "Sezóna", "OptionSeries": "Seriál", @@ -1477,18 +1310,10 @@ "PlayOnAnotherDevice": "Přehrát na jiném zařízení", "PleaseAddAtLeastOneFolder": "Přidejte prosím nejméně jednu složku do této knihovny pomocí tlačítka Přidat.", "PleaseConfirmPluginInstallation": "Pro potvrzení, že jste si přečetli text výše a chcete pokračovat v instalaci zásuvných modulů, klikněte na tlačítko OK.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} byl nainstalován", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} byl odinstalován", "PluginUpdatedWithName": "{0} byl aktualizován", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", "ProviderValue": "Poskytl: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Protože se vám líbí {0}", "RecommendationBecauseYouWatched": "Protože jste sledovali {0}", "RecommendationDirectedBy": "Režírováno {0}", @@ -1497,38 +1322,23 @@ "RegisterWithPayPal": "Zaregistrujte se pomocí PayPal", "ReleaseYearValue": "Rok vydání: {0}", "RememberMe": "Zapamatuj si mě", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Přetočit zpět", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", "SelectCameraUploadServers": "Upload fotek na následující servery:", "SendMessage": "Poslat zprávu", "Series": "Seriály", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", "ServerUpdateNeeded": "Tento Jellyfin Server je třeba aktualizovat. Chcete-li stáhnout nejnovější verzi, navštivte prosím {0}", "Settings": "Nastavení", "SettingsSaved": "Nastavení uloženo.", "SettingsWarning": "Změna těchto hodnot může způsobit nestabilitu nebo selhání připojení. Pokud narazíte na nějaké problémy, doporučujeme jej změnit zpět na výchozí hodnotu.", "SetupFFmpeg": "Nastavení FFmpeg", "SetupFFmpegHelp": "Jellyfin může vyžadovat knihovnu nebo aplikaci pro konverzi určitých typů médií. Existuje mnoho různých aplikací, nicméně, Jellyfin byla testována pro práci s ffmpeg. Jellyfin není nijak spojen s ffmpeg, jeho vlastnictvím, kódem nebo distribucí.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Sport", "Standard": "Standardní", "StatusRecording": "Nahrávání", "StatusRecordingProgram": "Nahrávání {0}", "StatusWatching": "Sledováno", "StatusWatchingProgram": "Sledování {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Titulky", - "Sync": "Sync", "SyncMedia": "Synchronizovat média", "SyncToOtherDevices": "Synchronizovat na další zařízení", "SynologyUpdateInstructions": "Prosím přihlašte se k DSM a aktualizujte Centrum Balíčků.", @@ -1554,14 +1364,10 @@ "TabCollections": "Kolekce", "TabContainers": "Obaly", "TabControls": "Ovládání", - "TabDLNA": "DLNA", "TabDashboard": "Hlavní nabídka", "TabDevices": "Zařízení", - "TabDirectPlay": "Direct Play", "TabDisplay": "Zobrazení", "TabEpisodes": "Epizody", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Oblíbené", "TabFilter": "Filtr", "TabFolders": "Složky", @@ -1575,14 +1381,11 @@ "TabHosting": "Hostování", "TabImage": "Obrázek", "TabImages": "Obrázky", - "TabInfo": "Info", "TabLanguages": "Jazyky", "TabLatest": "Nejnovější", "TabLibrary": "Knihovna", "TabLibraryAccess": "Přístup ke knihovně", - "TabLiveTV": "Live TV", "TabLogs": "Záznamy", - "TabMetadata": "Metadata", "TabMovies": "Filmy", "TabMusic": "Hudba", "TabMusicVideos": "Hudební videa", @@ -1601,7 +1404,6 @@ "TabPaths": "Cesty", "TabPhotos": "Fotky", "TabPlayback": "Přehrávání", - "TabPlaylist": "Playlist", "TabPlaylists": "Playlisty", "TabPlugins": "Zásuvné moduly", "TabProfile": "Profil", @@ -1613,7 +1415,6 @@ "TabScheduledTasks": "Naplánované úlohy", "TabSecurity": "Zabezpečení", "TabSeries": "Série", - "TabServer": "Server", "TabServices": "Služby", "TabSettings": "Nastavení", "TabShows": "Seriály", @@ -1634,12 +1435,10 @@ "TermsOfUse": "Podmínky použití", "TextConnectToServerManually": "Připojit k serveru manuálně", "TextEnjoyBonusFeatures": "Užijte si bonusy", - "Themes": "Themes", "ThisWizardWillGuideYou": "Tento průvodce Vám pomůže projít procesem nastavení. Pro začátek vyberte jazyk.", "TitleDevices": "Zařízení", "TitleHardwareAcceleration": "Hardwarová akcelerace", "TitleHostingSettings": "Nastavení hostingu", - "TitleLiveTV": "Live TV", "TitleNewUser": "Nový uživatel", "TitleNotifications": "Oznámení", "TitlePasswordReset": "Obnova hesla", @@ -1647,16 +1446,13 @@ "TitlePlugins": "Zásuvné moduly", "TitleRemoteControl": "Dálkový ovladač", "TitleScheduledTasks": "Naplánované úlohy", - "TitleServer": "Server", "TitleSignIn": "Přihlásit se", "TitleSupport": "Podpora", "TitleSync": "Synchronizace", "TitleUsers": "Uživatelé", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Jste si jisti, že chcete odinstalovat {0}?", "UninstallPluginHeader": "Odinstalovat zásuvný modul", "Unmute": "Povolit zvuk", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin obsahuje zabudovanou podporu uživatelských profilů, umožňující každému uživateli mít své vlastní nastavení zobrazení, stav přehrání a rodičovské kontroly.", "Users": "Uživatelé", "ValueAlbumCount": "{0} alb", @@ -1677,17 +1473,13 @@ "ValueItemCount": "{0} položka", "ValueItemCountPlural": "{0} položek", "ValueLinks": "Odkazy: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmů", "ValueMusicVideoCount": "{0} hudebních klipů", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 hra", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 hudební klip", "ValueOneSeries": "1 seriál", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Uvedeno {0}", "ValuePremieres": "Premiéry {0}", "ValuePriceUSD": "Náklady: {0} (USD)", @@ -1695,14 +1487,12 @@ "ValueSeriesYearToPresent": "{0} - Právě teď", "ValueSongCount": "{0} songů", "ValueStatus": "Stav: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studia: {0}", "ValueTimeLimitMultiHour": "Časový limit: {0} hodin", "ValueTimeLimitSingleHour": "Časový limit: 1 hodina", "ValueTrailerCount": "{0} trailerů", "ValueVideoCodec": "Video kodeky: {0}", "VersionNumber": "Verze {0}", - "ViewPlaybackInfo": "View playback info", "ViewTypeFolders": "Složky", "ViewTypeGames": "Hry", "ViewTypeLiveTvChannels": "Kanály", @@ -1716,7 +1506,6 @@ "ViewTypeMusicSongs": "Songy", "ViewTypeTvShows": "Televize", "WelcomeToProject": "Vítejte v Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "To je vše, co nyní potřebujeme. Jellyfin začala shromažďovat informace o vaší knihovně médií. Podívejte se na některé z našich aplikací, a potom klepněte na tlačítko Dokončit pro zobrazení Server Dashboard .", "XmlDocumentAttributeListHelp": "Tyto atributy jsou aplikovány na kořenového elementu každé xml odpovědi.", "XmlTvKidsCategoriesHelp": "Programy s těmito kategoriemi budou zobrazeny jako programy pro děti. Více kategorií oddělte \"|\".", diff --git a/src/strings/da.json b/src/strings/da.json index 5206069158..6d64e1d324 100644 --- a/src/strings/da.json +++ b/src/strings/da.json @@ -20,7 +20,6 @@ "Audio": "Lyd", "BirthDateValue": "Født: {0}", "BirthPlaceValue": "Fødselssted: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Bob and weave (bedre kvalitet, men langsommere)", "BookLibraryHelp": "Lyd og tekstbøger er understøttet", "Browse": "Gennemse", @@ -56,21 +55,17 @@ "ButtonEditImages": "Rediger billeder", "ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.", "ButtonExit": "Afslut", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Glemt adgangskode", "ButtonFullscreen": "Fuld skærm", - "ButtonGuide": "Guide", "ButtonHelp": "Hjælp", "ButtonHide": "Gem", "ButtonHome": "Hjem", - "ButtonInfo": "Info", "ButtonInviteUser": "Inviter bruger", "ButtonLearnMore": "Lær mere", "ButtonLibraryAccess": "Biblioteksadgang", "ButtonManageFolders": "Administrer mapper", "ButtonManageServer": "Administrer Server", "ButtonManualLogin": "Manuel Login", - "ButtonMenu": "Menu", "ButtonMore": "Mere", "ButtonMoreInformation": "Mere information", "ButtonMute": "Lyd fra", @@ -83,13 +78,10 @@ "ButtonNo": "Nej", "ButtonNowPlaying": "Spiller Nu", "ButtonOff": "Fra", - "ButtonOk": "Ok", "ButtonOpen": "Åben", "ButtonOther": "Andre", "ButtonParentalControl": "Forældrekontrol", - "ButtonPause": "Pause", "ButtonPlay": "Afspil", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Afspilningsliste", "ButtonPreferences": "Præferencer", "ButtonPrevious": "Forrige", @@ -112,10 +104,8 @@ "ButtonRename": "Omdøb", "ButtonRepeat": "Gentag", "ButtonReports": "Rapporter", - "ButtonReset": "Reset", "ButtonResetEasyPassword": "Nulstil pinkode", "ButtonResetPassword": "Nulstil adgangskode", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Genstart", "ButtonRestartNow": "Genstart nu", "ButtonResume": "Genoptag", @@ -129,9 +119,7 @@ "ButtonSelectDirectory": "Vælg mappe", "ButtonSelectServer": "Vælg server", "ButtonSelectView": "Vælg visning", - "ButtonSend": "Send", "ButtonSendInvitation": "Send invitation", - "ButtonServer": "Server", "ButtonServerDashboard": "Server-Kontrolpanel", "ButtonSettings": "Indstillinger", "ButtonShare": "Del", @@ -143,18 +131,13 @@ "ButtonSkip": "Spring over", "ButtonSort": "Sortér", "ButtonSplitVersionsApart": "Opdel versioner", - "ButtonStart": "Start", - "ButtonStop": "Stop", "ButtonStopRecording": "Stop Optagelse", "ButtonSubmit": "Indsend", "ButtonSubtitles": "Undertekster", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Afinstaller", "ButtonUnmute": "Slå lyd til", "ButtonUp": "Op", "ButtonUpdateNow": "Opdater nu", - "ButtonUpload": "Upload", "ButtonView": "Visning", "ButtonViewAlbum": "Vis album", "ButtonViewArtist": "Vis kunstner", @@ -163,9 +146,6 @@ "ButtonYes": "Ja", "CancelSeries": "Annuller serie", "CategoryApplication": "Program", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", "CategoryUser": "Bruger", "ChangingMetadataImageSettingsNewContent": "Ændringer til metadata eller billeder hentnings indstillinger bliver kun aktiveret til nyt indhold i dit bibliotek. For at aktivere ændringer til eksisterende titler, skal du opdatere deres metadata manuelt.", "ChannelAccessHelp": "Vælg hvilke kanaler der skal deles med denne bruger. Administratorer vil kunne redigere alle kanaler ved hjælp af metadata administratoren.", @@ -190,7 +170,6 @@ "DeviceLastUsedByUserName": "Sidst brugt af {0}", "Disabled": "Deaktiveret", "Downloading": "Downloader", - "Downloads": "Downloads", "DrmChannelsNotImported": "Kanaler med DRM importeres ikke.", "EasyPasswordHelp": "Din pinkode bruges til offline adgang til understøttede Jellyfin apps, og kan også bruges til nemt login inden for eget netværk.", "EnableDebugLoggingHelp": "Debug logning bør kun aktiveres til fejlfindnings formål. Den ekstra adgang til fil systemet kan forhindre serveren i at gå i Sleep tilstand i nogle miljøer.", @@ -200,8 +179,6 @@ "EnableStreamLooping": "Auto-gentag live streams", "EnableStreamLoopingHelp": "Aktiver dette hvis live streams kun indeholder få sekunders data og skal efterspørgsel hele tiden. Aktivering af dette uden det er nødvendigt kan forårsage problemer.", "EnterFFmpegLocation": "Indtast FFmpeg sti", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "Jellyfin-kontoen er allerede forbundet til en eksisterende lokal bruger. En Jellyfin-konto kan kun forbindes til én lokal bruger af gangen.", "ErrorAddingListingsToSchedulesDirect": "Der opstod en fejl under tilføjelse af opstilling til din Schedules Direct-konto. Schedules Direct tillader kun et begrænset antal opstillinger pr. konto. Du bliver muligvis nød til at logge på Schedules Direct-hjemmesiden og fjerne andre lister fra din konto for at fortsætte.", "ErrorAddingMediaPathToVirtualFolder": "Der opstod en fejl under tilføjelse af mediesti. Kontroller venligst at stien er gyldig og at Jellyfin Server-processen har adgang til denne lokation.", @@ -240,11 +217,9 @@ "Fullscreen": "Fuldskærm", "General": "Generel", "GuestUserNotFound": "Bruger ikke fundet. Kontroller venligst at navnet er korrekt, eller forsøg med deres email-adresse.", - "GuideProviderLogin": "Login", "GuideProviderSelectListings": "Vælg Udbyder", "H264CrfHelp": "Den Konstante Ratefaktor (CRF) er standardindstillingen for X264-koderen. Du kan sætte værdien i mellem 0 og 51, hvor de lavere værdier resulterer i bedre kvalitet (på bekostning af større filstørrelser). Fornuftige værdier er i mellem 18 og 28. Standarden for X264 er 23, så du kan bruge dette som udgangspunkt.", "H264EncodingPresetHelp": "Vælg en hurtigere værdi for at forbedre ydeevne, eller en langsommere værdi for at forbedre kvalitet.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "Aktivering af hardwareacceleration kan forårsage ustabilitet i nogle miljøer. Kontroller at dit operativsystem og videodriver er ajourført. Hvis du har problemer med at afspille video efter aktivering af dette, bliver du nød til at skifte tilbage til Auto.", "HeaderAccessSchedule": "Adgangsskema", "HeaderAccessScheduleHelp": "Skab et adgangsskema for at begrænse adgangen til bestemte tidsrum.", @@ -259,17 +234,14 @@ "HeaderAddUpdateImage": "Tilføj/opdater billede", "HeaderAddUser": "Tilføj bruger", "HeaderAdditionalParts": "Andre stier:", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avanceret", "HeaderAirDays": "Sendedage", - "HeaderAlbums": "Albums", "HeaderAlert": "Advarsel", "HeaderAllRecordings": "Alle optagelser", "HeaderAllowMediaDeletionFrom": "Tillad Media Sletning Fra", "HeaderApiKey": "API nøgle", "HeaderApiKeys": "API nøgler", "HeaderApiKeysHelp": "Eksterne applikationer skal have en API nøgle for at kunne kommunikere med Jellyfin. Nøgler udstedes ved at logge ind med en Jellyfin konto, eller ved manuelt at tildele applikationen en nøgle.", - "HeaderApp": "App", "HeaderAudio": "Lyd", "HeaderAudioSettings": "Lydindstillinger", "HeaderAudioTracks": "Lydspor", @@ -280,7 +252,6 @@ "HeaderBecomeProjectSupporter": "Få Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Klokér titler uden eller med ukendt bedømmelses information:", "HeaderBooks": "Bøger", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Brugertilpas udseendet af Jellyfin så den passer til dine behov.", "HeaderCameraUpload": "Kameraupload", "HeaderCameraUploadHelp": "Jellyfin apps kan automatisk upload billeder taget fra din mobil enhed til Jellyfin serveren.", @@ -329,7 +300,6 @@ "HeaderDeleteItem": "Slet element", "HeaderDeleteProvider": "Slet Udbyder", "HeaderDeleteTaskTrigger": "Slet Udløser", - "HeaderDestination": "Destination", "HeaderDetails": "Detaljer", "HeaderDetectMyDevices": "Find Mine Enheder", "HeaderDeveloperInfo": "Information om udvikleren", @@ -341,7 +311,6 @@ "HeaderDisplay": "Visning", "HeaderDisplaySettings": "Indstillinger for visning", "HeaderDownloadSubtitlesFor": "Hent undertekster til:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Nem pinkode", "HeaderEmbeddedImage": "Indlejret billede", "HeaderEpisodes": "Episoder", @@ -378,7 +347,6 @@ "HeaderIdentificationCriteriaHelp": "Indtast mindst et indetifikationskriterie.", "HeaderIdentificationHeader": "Identifikation Header", "HeaderImageBackdrop": "Baggrundsbillede", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Billede Præferencer", "HeaderImagePrimary": "Primær", "HeaderImageSettings": "Billedindstillinger", @@ -390,11 +358,9 @@ "HeaderInvitations": "Invitationer", "HeaderInviteUser": "Inviter bruger", "HeaderInviteUserHelp": "At dele dine medier med venner er nemmere en nogensinde med Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", "HeaderItems": "Element", "HeaderJellyfinAccountAdded": "Jellyfin konto tilføjet", "HeaderJellyfinAccountRemoved": "Jellyfin konto fjernet", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "For at aktivere NFO metadata, rediger et bibliotek i Jellyfin biblioteks redigering og find metadata gemmer sektionen.", "HeaderLanguage": "Sprog", "HeaderLatestAlbums": "Seneste albums", @@ -416,17 +382,12 @@ "HeaderLibraryAccess": "Adgang til biblioteker", "HeaderLibraryFolders": "Mediemapper", "HeaderLibrarySettings": "Biblioteksindstillinger", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", "HeaderLiveTvTunerSetup": "Live TV Tuner-setup", "HeaderLoginFailure": "Login fejl", - "HeaderManagement": "Management", "HeaderMedia": "Medier", "HeaderMediaFolders": "Mediemapper", "HeaderMediaInfo": "Medieinformation", "HeaderMediaLocations": "Medielokationer", - "HeaderMenu": "Menu", "HeaderMissing": "Mangler", "HeaderMoreLikeThis": "Mere Som Denne", "HeaderMovies": "Film", @@ -434,7 +395,6 @@ "HeaderMyMedia": "Mine medier", "HeaderMyViews": "Mine visninger", "HeaderName": "Navn", - "HeaderNavigation": "Navigation", "HeaderNetwork": "Netværk", "HeaderNewApiKey": "Ny API nøgle", "HeaderNewApiKeyHelp": "Giv applikationen tilladelse til at kommunikere med Jellyfin.", @@ -445,7 +405,6 @@ "HeaderNotifications": "Notifikationer", "HeaderNowPlaying": "Afspilles nu", "HeaderNumberOfPlayers": "Afspillere", - "HeaderOffline": "Offline", "HeaderOfflineSync": "Offline Synk", "HeaderOnNow": "Vises Nu", "HeaderOptions": "Indstillinger", @@ -474,7 +433,6 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Profilinformation", "HeaderProfileServerSettingsHelp": "Disse værdier kontrollerer hvordan Jellyfin præsenterer sig til enheden.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Seneste aktivitet", "HeaderRecentlyPlayed": "Afspillet for nyligt", "HeaderRecordingGroups": "Optagegrupper", @@ -541,7 +499,6 @@ "HeaderSpecialFeatures": "Specielle egenskaber", "HeaderSpecials": "Særudsendelser", "HeaderSplitMedia": "Opsplit medie", - "HeaderStatus": "Status", "HeaderStudios": "Studier", "HeaderSubtitleDownloads": "Undertekst Downloads", "HeaderSubtitleProfile": "Undertekstprofil", @@ -550,11 +507,7 @@ "HeaderSubtitleSettings": "Indstillinger for Undertekster", "HeaderSubtitles": "Undertekster", "HeaderSupportTheTeam": "Støt Jellyfin-holdet", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", "HeaderSystemDlnaProfiles": "Systemprofiler", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Udløsere", "HeaderTermsOfService": "Jellyfin tjenestevilkår", "HeaderThemeSongs": "Temasange", @@ -562,7 +515,6 @@ "HeaderThisUserIsCurrentlyDisabled": "Denne bruger er for øjeblikket deaktiveret.", "HeaderTime": "Tid", "HeaderToAccessPleaseEnterEasyPinCode": "Indtast din pinkode for adgang", - "HeaderTopPlugins": "Top Plugins", "HeaderTrack": "Spor", "HeaderTracks": "Spor", "HeaderTrailers": "Trailere", @@ -571,7 +523,6 @@ "HeaderTunerDevices": "Tuner-Enheder", "HeaderTuners": "Tunere", "HeaderTvTuners": "Tunere", - "HeaderType": "Type", "HeaderTypeImageFetchers": "{0} Billede Hentere", "HeaderTypeText": "Indtast tekst", "HeaderUnaired": "Ikke sendt", @@ -579,14 +530,12 @@ "HeaderUnknownYear": "Ukendt år", "HeaderUnrated": "Ingen bedømmelse", "HeaderUpcomingEpisodes": "Kommende Episoder", - "HeaderUpcomingNews": "Upcoming News", "HeaderUpcomingOnTV": "Kommende I TV", "HeaderUploadImage": "Upload Billede", "HeaderUploadNewImage": "Upload nyt billede", "HeaderUser": "Bruger", "HeaderUserPrimaryImage": "Bruger Billede", "HeaderUsers": "Brugere", - "HeaderVideo": "Video", "HeaderVideoTypes": "Videotyper", "HeaderVideos": "Videoer", "HeaderViewOrder": "Visningorden", @@ -605,7 +554,6 @@ "ImportFavoriteChannelsHelp": "Hvis aktiveret, importeres der udelukkende kanaler der er markeret som favoritter på tuner-enheden.", "ImportMissingEpisodesHelp": "hvis aktiveret, vil information omkring manglende episoder bliver importeret ind i din Jellyfin-database og blive vist i sæsoner og serier. Dette medfører muligvis længere biblioteksscanninger.", "Invitations": "Invitationer", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", "JellyfinIntroDownloadMessage": "For at downloade og installere den gratis Jellyfin Server, besøg {0}.", "JellyfinIntroDownloadMessageWithoutLink": "Besøg Jellyfin hjemmesiden for at downloade og installere den gratis Jellyfin Server.", "JellyfinIntroMessage": "Med Jellyfin kan du nemt streame videoer, musik og fotos til din smartphone, tablet eller andre enheder.", @@ -619,7 +567,6 @@ "LabelAirDays": "Sendedage:", "LabelAirTime": "Sendetid", "LabelAirTime:": "Sendetid:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN til album art, i dlna:profileID attributten på upnp:albumArtURI. Nogle enheder påkræver en specifik værdi uanset størrelsen på billedet.", "LabelAlbumArtMaxHeight": "Album billede max. højde:", "LabelAlbumArtMaxHeightHelp": "Maksimumopløsningen på album billede der bliver vist med upnp:albumArtURI", @@ -638,7 +585,6 @@ "LabelAnytime": "Alle tidspunkter", "LabelAppName": "App navn", "LabelAppNameExample": "F. eks: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artister:", "LabelArtistsHelp": "Angiv flere ved at sætte ; mellem dem.", "LabelAudioCodec": "Lyd: {0}", @@ -647,18 +593,13 @@ "LabelAvailableTokens": "Tilgængelige tokens:", "LabelBindToLocalNetworkAddress": "Bind til lokal netværksadresse:", "LabelBindToLocalNetworkAddressHelp": "Valgfri. Overskriv den lokale IP-adresse som http-serveren bindes til. Hvis efterladt blank, bindes serveren til alle tilgængelige adresser. Ændring af denne værdi kræver en genstart af Jellyfin Serveren.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "Interval mellem 'i live' beskeder (sekunder)", "LabelBlastMessageIntervalHelp": "Angiver intervallet i sekunder mellem serverens 'i live' beskeder.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Cachesti:", "LabelCachePathHelp": "Angiv en brugerdefineret lokation for server cachefiler, så som billeder. Efterlad blankt for at benytte serverens standard.", "LabelCameraUploadPath": "Kamera upload sti:", "LabelCameraUploadPathHelp": "Vælg en brugerdefineret upload sti. Dette vil overskrive enhver standard indstilling sat i Kamera Upload sektionen. Hvis blank, vil en standard mappe blive brugt. Hvis det er en brugerdefineret sti skal den være tilføjet som bibliotek i Jellyfin bibliotek opsætning.", "LabelCancelled": "Annulleret", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", "LabelChannelStreamQuality": "Foretrukne internetkanal-kvalitet", "LabelChannelStreamQualityHelp": "I områder med lav båndbredde kan begrænsning af kvaliteten sikre en flydende streamingoplevelse.", "LabelCodecIntrosPath": "Sti til codec-introer:", @@ -717,9 +658,7 @@ "LabelDownloadInternetMetadataHelp": "Jellyfin Server kan hente informationer om dine medier, der kan give mere indholdsrige visninger.", "LabelDownloadLanguages": "Hent sprog:", "LabelDropImageHere": "Smid billede her.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Pinkode:", - "LabelEmail": "Email:", "LabelEmailAddress": "E-mail adresse", "LabelEmbedAlbumArtDidl": "Indsæt album billede i DIDL", "LabelEmbedAlbumArtDidlHelp": "Nogle enheder foretrækker denne metode til overførsel af album billede. Andre kan fejle når dette er aktiveret.", @@ -739,7 +678,6 @@ "LabelEnableDlnaServer": "Aktiver DNLA server", "LabelEnableDlnaServerHelp": "Tillader UPnP enheder i dit netværk at gennemse og afspille Jellyfins indhold.", "LabelEnableFullScreen": "Aktiver fuldskærmstilstand", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "Aktiver smart forældrekontrol", "LabelEnableIntroParentalControlHelp": "Vis kun trailere med samme eller lavere aldersgrænse end hovedfilmen.", "LabelEnableRealtimeMonitor": "Aktiver realtidsovervågning", @@ -752,7 +690,6 @@ "LabelEndDate": "Slutdato:", "LabelEndingEpisodeNumber": "Nummer på sidste episode", "LabelEndingEpisodeNumberHelp": "Kun nødvendig for filer med flere episoder.", - "LabelEpisode": "Episode", "LabelEpisodeNumber": "Episodenummer:", "LabelEvent": "Hændelse:", "LabelEveryXMinutes": "Hver:", @@ -770,7 +707,6 @@ "LabelFolderType": "Mappetype:", "LabelForcedStream": "(Tvungen)", "LabelForgotPasswordUsernameHelp": "Indtast dit brugernavn, hvis du kan huske det.", - "LabelFormat": "Format:", "LabelFree": "Gratis", "LabelFriendlyName": "System venligt navn", "LabelFriendlyServerName": "Nemt servernavn", @@ -818,18 +754,14 @@ "LabelLocalAccessUrl": "Lokal adgang (LAN): {0}", "LabelLocalHttpServerPortNumber": "Lokalt http portnummer:", "LabelLocalHttpServerPortNumberHelp": "Det portnummer Jellyfins http-server bruger.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Login ansvarsfraskrivelse:", "LabelLoginDisclaimerHelp": "Dette bliver vist i bunden af loginsiden.", - "LabelLogs": "Logs:", "LabelManufacturer": "Producent", "LabelManufacturerUrl": "Producent url", "LabelMarkAs": "Marker som:", - "LabelMatchType": "Match type:", "LabelMaxAudioFileBitrate": "Maks bitrate for lydfil:", "LabelMaxAudioFileBitrateHelp": "Lydfiler med en højere bitrate bliver konverteret af Jellyfin Server. Vælg en højere værdi for bedre kvalitet, eller en lavere værdi for at spare lokalt lagerplads.", "LabelMaxBackdropsPerItem": "Maksimum antal af bagtæpper per element:", - "LabelMaxBitrate": "Max bitrate:", "LabelMaxBitrateHelp": "Angiv en maksimal bitrate i områder med begrænset båndbredde, eller hvis enheden selv har begrænsninger.", "LabelMaxParentalRating": "Højst tilladte aldersgrænse:", "LabelMaxResumePercentage": "Maks. fortsæt procentdel:", @@ -839,7 +771,6 @@ "LabelMaxStreamingBitrateHelp": "Angiv en maksimal bitrate til streaming.", "LabelMessageText": "Beskedtekst:", "LabelMessageTitle": "Titel på besked", - "LabelMetadata": "Metadata:", "LabelMetadataDownloadLanguage": "Foretrukne sprog til metadata:", "LabelMetadataDownloaders": "Metadata downloadere:", "LabelMetadataDownloadersHelp": "Aktiver og ranger dine fortrukne metadata downloadere i en prioriteret rækkefølge. Lavt rangerende downloadere bliver kun benyttet til at udfylde manglende information.", @@ -860,7 +791,6 @@ "LabelModelDescription": "Modelbeskrivelse", "LabelModelName": "Modelnavn", "LabelModelNumber": "Modelnummer", - "LabelModelUrl": "Model url", "LabelMonitorUsers": "Overvåg aktivitet fra:", "LabelMovie": "Film", "LabelMovieCategories": "Filmkategorier:", @@ -909,11 +839,8 @@ "LabelPrevious": "Forrige", "LabelProfile": "Profil:", "LabelProfileAudioCodecs": "Lyd codecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Adskil med komma. Kan efterlades tom for at gælde for alle codecs.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Adskil med komma. Kan efterlades tom for at gælde for alle containere.", - "LabelProfileVideoCodecs": "Video codecs:", "LabelProtocol": "Protokol:", "LabelProtocolInfo": "Protokolinformation:", "LabelProtocolInfoHelp": "Den værdi der bruges til svar på GetProtocolInfo-forespørgsler fra enheden.", @@ -951,20 +878,17 @@ "LabelSeriesRecordingPath": "Serier afspilningssti (valgfri):", "LabelServerHost": "Vært:", "LabelServerHostHelp": "F. eks: 192.168.1.100 eller https://myserver.com", - "LabelServerPort": "Port:", "LabelSimultaneousConnectionLimit": "samtidige stream begrænsning:", "LabelSkipIfAudioTrackPresent": "Undlad hvis standardlydsporet er det samme sprog", "LabelSkipIfAudioTrackPresentHelp": "Angiv ikke dette for at sikre at alle videoer har undertekster, uanset hvilket sprog lydsporet anvender.", "LabelSkipIfGraphicalSubsPresent": "Spring over, hvis videoen allerede indeholder indlejrede undertekster", "LabelSkipIfGraphicalSubsPresentHelp": "Ved at bruger tekstbaserede undertekster kan du få en mere effektive levering og nedsætte sandsynligheden for transkodning.", "LabelSkipped": "Oversprunget", - "LabelSonyAggregationFlags": "Sony aggregation flags:", "LabelSonyAggregationFlagsHelp": "Angiver indholdet i aggregationFlags elementet i urn:schemas-sonycom:av", "LabelSource": "Kilde:", "LabelSpecialSeasonsDisplayName": "Special sæson visningsnavn:", "LabelSportsCategories": "Sportskategorier:", "LabelStartWhenPossible": "Start når muligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop når muligt:", "LabelStopping": "Standser", "LabelSubtitleDownloaders": "undertekst downloadere:", @@ -975,29 +899,24 @@ "LabelSyncPath": "Synked indholdssti:", "LabelSyncTempPath": "Sti for midlertidige filer:", "LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.", - "LabelTag": "Tag:", "LabelTheme": "Tema:", "LabelTime": "Tid:", "LabelTimeLimitHours": "Tidsgrænse (timer):", "LabelTranscodingAudioCodec": "Lyd codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Midlertidig sti til transkodning:", "LabelTranscodingTempPathHelp": "Denne mappe indeholder transkoderens arbejdsfiler. Definer en alternativ sti eller lad den stå tom for at bruge standardmappen i serverens datamappe.", "LabelTranscodingTemporaryFiles": "Midlertidige filer for transkodning:", "LabelTranscodingThreadCount": "Antal af omkodningstråde:", "LabelTranscodingThreadCountHelp": "Vælg det maksimale antal af tråde der bruges under omkodning. Reduktion af antallet af tråde sænker cpu-forbrug, men resulterer muligvis i at konverteringer ikke foregår hurtigt nok til en jævn afspilning.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "Overførselsmetode", "LabelTriggerType": "Udløsertype", "LabelTunerIpAddress": "IP-adresse for Tuner:", "LabelTunerType": "Tunertype:", - "LabelType": "Type:", "LabelTypeMetadataDownloaders": "{0} metadata downloadere:", "LabelTypeText": "Tekst", "LabelUnairedMissingEpisodesWithinSeasons": "Vis endnu ikke sendte episoder i sæsoner", "LabelUnknownLanguage": "Ukendt sprog", "LabelUploadSpeedLimit": "Hastighedsgrænse for upload (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Brug følgende tjenester:", "LabelUser": "Bruger:", "LabelUserAgent": "Bruger agent:", @@ -1009,29 +928,22 @@ "LabelVaapiDeviceHelp": "Dette er ydelsesnoten der benyttes til hardwareaccelerering.", "LabelValue": "Værdi:", "LabelVersionInstalled": "{0} installeret", - "LabelVersionNumber": "Version {0}", "LabelVersionUpToDate": "Opdateret!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video type:", "LabelView": "Vis:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Angiver indholdet i X_DLNACAP elementet i urn:schemas-dlna-org:device-1-0", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Angiver indholdet i X_DLNADOC elementet i urn:schemas-dlna-org:device-1-0", "LabelYourFirstName": "Dit fornavn", "LabelYoureDone": "Du er færdig!", "LabelZipCode": "Postnummer:", "LabelffmpegPath": "FFmpeg sti:", "LabelffmpegPathHelp": "Stien til ffmpeg applikationsfilen eller mappen indeholdende ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", "LanNetworksHelp": "Komma separeret liste over IP adresser eller netmasker til ntværk der vil blive anset for at være lokale når der bliver påtvunget båndbredde restriktioner. Hvis sat vil alle andre IP adresser bliver set som eksterne og blive underlagt båndbredde restriktionerne. Hvis blank, er det kun serveren subnet der bliver betragtet som et lokalt netværk.", "LatestFromLibrary": "Seneste {0}", "LearnHowToCreateSynologyShares": "Lær at dele mapper i Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Vælg hvilke mediemapper der skal deles med denne bruger. Administratorer vil kunne redigere alle mapper ved hjælp af metadata administratoren.", "LinkApi": "API", "LinkCommunity": "Fællesskab", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Lær om Jellyfin Premiere", "LiveTvUpdateAvailable": "(Opdatering tilgængelig)", "LoginDisclaimer": "Jellyfin er designet til at hjælpe dig med at administrere dit personlige mediebibliotek, så som hjemmevideoer og billeder. Se venligst vores betingelser for brug. Enhver brug af Jellyfin-software indebærer din samtykke af disse betingelser.", @@ -1045,11 +957,9 @@ "MediaInfoAperture": "Blænde", "MediaInfoAspectRatio": "Formatforhold", "MediaInfoBitDepth": "Bit dybde", - "MediaInfoBitrate": "Bitrate", "MediaInfoCameraMake": "Kameramærke", "MediaInfoCameraModel": "Kameramodel", "MediaInfoChannels": "Kanaler", - "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Codec mærkat", "MediaInfoContainer": "Beholder", "MediaInfoDefault": "Standard", @@ -1058,30 +968,21 @@ "MediaInfoFile": "Fil", "MediaInfoFocalLength": "Brændvidde", "MediaInfoForced": "Tvungen", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", "MediaInfoIsoSpeedRating": "Iso hastigheds rating", "MediaInfoLanguage": "Sprog", "MediaInfoLatitude": "Breddegrad", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Niveau", "MediaInfoLongitude": "Højdegrad", "MediaInfoOrientation": "Orientering", "MediaInfoPath": "Sti", "MediaInfoPixelFormat": "Pixelformat", "MediaInfoProfile": "Profil", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Opløsning", - "MediaInfoSampleRate": "Sample rate", "MediaInfoShutterSpeed": "Lukkehastighed", "MediaInfoSize": "Størrelse", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Lyd", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Indlejret billede", "MediaInfoStreamTypeSubtitle": "Undertekster", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Tidsstempel", "MessageAlreadyInstalled": "Denne version er allerede installeret.", "MessageApplicationUpdated": "Jellyfin er blevet opdateret", @@ -1095,7 +996,6 @@ "MessageConfirmRevokeApiKey": "Er du sikker på du ønsker at invalidere denne api nøgle? Applikationens forbindelse til Jellyfin vil blive afbrudt øjeblikkeligt.", "MessageConfirmShutdown": "Er du sikker på du ønsker at lukke Jellyfin?", "MessageConfirmSplitMedia": "Er du sikker på du ønsker at opsplitte mediekilderne til separate klilder?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "For at invitere gæster skal du først kæde din Jellyfin konto til denne server.", "MessageContactAdminToResetPassword": "Kontakt venligst din systemadministrator for at nulstille din adgangskode.", "MessageCreateAccountAt": "Opret en konto hos {0}", @@ -1164,7 +1064,6 @@ "MessageUnableToConnectToServer": "Vi kan ikke forbinde til den valgte server på nuværende tidspunkt. Sikrer dig venligst at serveren kører og prøv igen.", "MessageUnsetContentHelp": "Indhold vil blive vist som almindelige mapper. For det bedste resultat benyt metadata manageren til at vælge indholdstypen i undermapper.", "MessageYouHaveVersionInstalled": "Du har version {0} installeret.", - "Metadata": "Metadata", "MetadataManager": "Metadata-Manager", "MetadataSettingChangeHelp": "Ændring af indstillinger for metadata har effekt på indholdet der indlæses fremadrettet. For at genopfriske eksisterende indhold skal du åbne detajle-skærmen og klikke på opdater knappen, eller uføre en masseopdatering via metadata-manageren.", "MinutesAfter": "minutter efter", @@ -1189,15 +1088,10 @@ "Notifications": "Notifikationer", "NumLocationsValue": "{0} mapper", "OpenSubtitleInstructions": "Du er nødt til at konfigurere Open Subtitles konto information på Open Subtitles indstillings skærmen i Jellfyfin Dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Skuespiller", "OptionActors": "Skuespillere", "OptionAdminUsers": "Administratore", "OptionAfterSystemEvent": "Efter en systemhændelse", - "OptionAlbum": "Album", "OptionAlbumArtist": "Album-artist", "OptionAll": "Alle", "OptionAllUsers": "Alle brugere", @@ -1219,18 +1113,13 @@ "OptionAllowVideoPlaybackTranscoding": "Tillad videoafspilning der kræver transkodning", "OptionAnyNumberOfPlayers": "Enhver", "OptionArt": "Billede", - "OptionArtist": "Artist", "OptionAscending": "Stigende", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Flet automatisk serier der er spredt over adskillige mapper", "OptionAutomaticallyGroupSeriesHelp": "Hvis aktiveret, vil serier der er spredt over adskillige mapper i dette bibliotek blive samlet i én enkelt serie.", "OptionBackdrop": "Baggrund", "OptionBackdropSlideshow": "Slideshow i baggrund", "OptionBackdrops": "Baggrunde", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Bedst mulige", - "OptionBeta": "Beta", "OptionBirthLocation": "Fødselssted", "OptionBlockBooks": "Bøger", "OptionBlockChannelContent": "Internet kanalindhold", @@ -1242,11 +1131,9 @@ "OptionBlockOthers": "Andre", "OptionBlockTrailers": "Trailere", "OptionBlockTvShows": "TV serier", - "OptionBluray": "Bluray", "OptionBooks": "Bøger", "OptionBox": "Æske", "OptionBoxRear": "Æske bag", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Samlinger", "OptionCommunityRating": "Fællesskabsvurdering", "OptionComposer": "Komponist", @@ -1255,7 +1142,6 @@ "OptionConvertRecordingPreserveAudio": "Bevar original audio under konverteringer (når muligt)", "OptionConvertRecordingPreserveAudioHelp": "Dette giver bedre audio, men kræver muligvis omkodning under afspilning på nogle enheder.", "OptionConvertRecordingsToStreamingFormat": "Konverter automatisk optagelser til et streaming-venligt format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Kritikervurdering", "OptionCustomUsers": "Brugerdefineret", "OptionDaily": "Daglig", @@ -1265,7 +1151,6 @@ "OptionDatePlayed": "Dato for afspilning", "OptionDefaultSort": "Standard", "OptionDescending": "Faldende", - "OptionDev": "Dev", "OptionDirector": "Instruktør", "OptionDirectors": "Instruktører", "OptionDisableUser": "Deaktiver denne bruger", @@ -1279,13 +1164,10 @@ "OptionDisplayFolderViewHelp": "Hvis aktiveret, vil Jellyfin apps vise en Mappekategori ved siden af dine mediebiblioteker. Dette er brugbart, hvis du vil have vist enkle mappevisninger.", "OptionDownloadArtImage": "Billede", "OptionDownloadBackImage": "Bagside", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Boks", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Download billeder på forhånd", "OptionDownloadImagesInAdvanceHelp": "Som standard downloades billeder kun når de anmodes af en Jellyfin app. Aktiver denne indstilling for at downloade alle billeder på forhånd, i mens nyt medie importeres. Dette resulterer muligvis i længere scanninger af bibliotek.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Primær", "OptionDownloadThumbImage": "Miniature", "OptionDvd": "DVD", @@ -1327,7 +1209,6 @@ "OptionHasSubtitles": "Undertekster", "OptionHasThemeSong": "Temasang", "OptionHasThemeVideo": "Temavideo", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Vis ikke denne bruger på loginsiden", "OptionHideUserFromLoginHelp": "Nyttigt for private kontoer eller skjulte administratorkontoer. Brugeren skal logge ind ved at skive sit brugernavn og adgangskode.", "OptionHlsSegmentedSubtitles": "Hls segmented undertekster", @@ -1338,27 +1219,20 @@ "OptionImages": "Billeder", "OptionImdbRating": "IMDB bedømmelse", "OptionInProgress": "I gang", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Nøgleord", "OptionLatestChannelMedia": "Seneste kanalenheder", "OptionLatestMedia": "Seneste medier", "OptionLatestTvRecordings": "Seneste optagelser", "OptionLibraryFolders": "Mediemapper", - "OptionLikes": "Likes", "OptionList": "Liste", "OptionLocked": "Låst", - "OptionLogo": "Logo", "OptionMax": "Maks", - "OptionMenu": "Menu", "OptionMissingEpisode": "Manglende episoder", "OptionMissingImdbId": "Manglende IMDB Id", "OptionMissingOverview": "Manglende overblik", "OptionMissingParentalRating": "Mangler aldersgrænse", "OptionMissingTmdbId": "Manglende Tmdb Id", "OptionMissingTvdbId": "Manglende TheTVDB Id", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Mandag", "OptionMondayShort": "Man", "OptionMovies": "Film", @@ -1370,8 +1244,6 @@ "OptionNo": "Nej", "OptionNoTrailer": "Ingen trailer", "OptionNone": "Ingen", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Ved opstart", "OptionOnInterval": "Interval", "OptionOtherApps": "Andre apps", @@ -1396,22 +1268,16 @@ "OptionProducers": "Producenter", "OptionProfileAudio": "Lyd", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Video lyd", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Optag på ethverts tidspunkt", "OptionRecordOnAllChannels": "Optag fra alle kanaler", "OptionRecordOnlyNewEpisodes": "Optag kun nye episoder", "OptionRecordSeries": "Optag serie", - "OptionRegex": "Regex", "OptionRelease": "Officiel udgivelse", "OptionReleaseDate": "Udgivelsesdato", "OptionReportByteRangeSeekingWhenTranscoding": "Angiv at serveren understøtter bytes øgning nrdeå r transkodes", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Dette er krævet for nogle enheder der ikke er særligt gode til tidssøgning.", "OptionRequirePerfectSubtitleMatch": "Download kun undertekster der er perfekte matches for mine videofiler", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Kan genoptages", "OptionResumablemedia": "Fortsæt", "OptionRuntime": "Varighed", @@ -1432,7 +1298,6 @@ "OptionSundayShort": "Søn", "OptionSyncLosslessAudioOriginal": "Synk tabsfri audio ved original kvalitet", "OptionSyncOnlyOnWifi": "Synk kun over Wifi", - "OptionTags": "Tags", "OptionThumb": "Miniature", "OptionThumbCard": "Miniature kort", "OptionThursday": "Torsdag", @@ -1451,7 +1316,6 @@ "OptionUpcomingDvdMovies": "Brug trailere for nye og kommende DVD'er og Blu-ray", "OptionUpcomingMoviesInTheaters": "Brug trailere for nye og kommende film", "OptionUpcomingStreamingMovies": "Brug trailere for nye og kommende film på Netflix", - "OptionVideoBitrate": "Video Bitrate", "OptionWakeFromSleep": "Vågner fra dvale", "OptionWatched": "Set", "OptionWednesday": "Onsdag", @@ -1470,7 +1334,6 @@ "PasswordResetConfirmation": "Er du sikker på at adgangskoden skal nulstilles?", "PasswordResetHeader": "Nulstil adgangskode", "PasswordSaved": "Adgangskoden er gemt.", - "PersonTypePerson": "Person", "PictureInPicture": "Billede i billede", "PinCodeResetComplete": "Pinkoden er blevet nulstillet.", "PinCodeResetConfirmation": "Er du sikker på at pinkoden skal nulstilles?", @@ -1480,7 +1343,6 @@ "PleaseUpdateManually": "Sluk venligst Jellyfin serveren og installer den seneste version.", "PluginInstalledMessage": "Plugin blev insttalleret med success. Jellyfin serveren skal genstartes for at aktivere det.", "PluginInstalledWithName": "{0} blev installeret", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} blev afinstalleret", "PluginUpdatedWithName": "{0} blev opdateret", "PreferEmbeddedTitlesOverFileNames": "Foretræk indlejrede titler over filnavne", @@ -1488,7 +1350,6 @@ "PreferredNotRequired": "Foretrukket, men ikke påkrævet", "Programs": "Programmer", "ProviderValue": "Udbyder: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Fordi du kan lide {0}", "RecommendationBecauseYouWatched": "Fordi du har set {0}", "RecommendationDirectedBy": "Instrueret af {0}", @@ -1518,7 +1379,6 @@ "ShowAdvancedSettings": "Vis advancerede indstillinger", "SimultaneousConnectionLimitHelp": "Det maksimale antal samtidige streams. Skriv 0 for ubegrænset.", "Sports": "Sport", - "Standard": "Standard", "StatusRecording": "Optagelse", "StatusRecordingProgram": "Optager {0}", "StatusWatching": "Ser", @@ -1528,7 +1388,6 @@ "SubtitleDownloadInstructions": "For at håndtere undertekst hentning, klik på et bibliotek i Jellyfin bibliotek opsætning, og rediger undertekst hentnings indstillingerne der.", "SubtitleDownloadersHelp": "Aktiver og ranger dine prefererede undertekst hentere i priotets orden.", "Subtitles": "Undertekster", - "Sync": "Sync", "SyncMedia": "Synkroniser medier", "SyncToOtherDevices": "Synk til andre enheder", "SynologyUpdateInstructions": "Log venligst ind på DSM og gå til Pakkecenter for at opdatere.", @@ -1538,7 +1397,6 @@ "TabActivity": "Aktivitet", "TabAdvanced": "Avanceret", "TabAlbumArtists": "Album-artister", - "TabAlbums": "Albums", "TabAppSettings": "App-indstillinger", "TabArtists": "Artister", "TabBasic": "Simpel", @@ -1549,12 +1407,10 @@ "TabChannels": "Kanaler", "TabChapters": "Kapitler", "TabCinemaMode": "Biograftilstand", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titler", "TabCollections": "Samlinger", "TabContainers": "Containere", "TabControls": "Kontroller", - "TabDLNA": "DLNA", "TabDashboard": "Betjeningspanel", "TabDevices": "Enheder", "TabDirectPlay": "Direkte afspilning", @@ -1568,27 +1424,20 @@ "TabGames": "Spil", "TabGeneral": "Generelt", "TabGenres": "Genre", - "TabGuide": "Guide", "TabHelp": "Hjælp", "TabHome": "Hjem", "TabHomeScreen": "Hjemmeskærm", - "TabHosting": "Hosting", "TabImage": "Billede", "TabImages": "Billeder", - "TabInfo": "Info", "TabLanguages": "Sprog", "TabLatest": "Seneste", "TabLibrary": "Bibliotek", "TabLibraryAccess": "Biblioteksadgang", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", "TabMovies": "Film", "TabMusic": "Musik", "TabMusicVideos": "Musikvideoer", "TabMyLibrary": "Mit bibliotek", "TabMyPlugins": "Mine tilføjelser", - "TabNavigation": "Navigation", "TabNetworks": "Netværk", "TabNextUp": "Næste", "TabNfoSettings": "NFO Indstillinger", @@ -1601,7 +1450,6 @@ "TabPaths": "Stier", "TabPhotos": "Fotos", "TabPlayback": "Afspilning", - "TabPlaylist": "Playlist", "TabPlaylists": "Afspilningslister", "TabPlugins": "Tilføjelser", "TabProfile": "Profil", @@ -1613,18 +1461,14 @@ "TabScheduledTasks": "Planlagte opgaver", "TabSecurity": "Sikkerhed", "TabSeries": "Serier", - "TabServer": "Server", "TabServices": "Tjenester", "TabSettings": "Indstillinger", "TabShows": "Serier", "TabSongs": "Sange", - "TabStreaming": "Streaming", "TabStudios": "Studier", "TabSubtitles": "Undertekster", "TabSuggestions": "Forslag", - "TabSync": "Sync", "TabSyncJobs": "Sync opgaver", - "TabTV": "TV", "TabTrailers": "Trailere", "TabTranscoding": "Transkodning", "TabUpcoming": "Kommende", @@ -1639,7 +1483,6 @@ "TitleDevices": "Enheder", "TitleHardwareAcceleration": "Hardwareacceleration", "TitleHostingSettings": "Værtsindstillinger", - "TitleLiveTV": "Live TV", "TitleNewUser": "Ny bruger", "TitleNotifications": "Underretninger", "TitlePasswordReset": "Nulstil adgangskode", @@ -1647,10 +1490,7 @@ "TitlePlugins": "Tilføjelser", "TitleRemoteControl": "Fjernstyring", "TitleScheduledTasks": "Planlagte opgaver", - "TitleServer": "Server", "TitleSignIn": "Log Ind", - "TitleSupport": "Support", - "TitleSync": "Sync", "TitleUsers": "Brugere", "TvLibraryHelp": "Gennemse {0}Jellyfin TV navngivningsguiden{1}.", "UninstallPluginConfirmation": "Er du sikker på du vil afinstallere {0}?", @@ -1665,7 +1505,6 @@ "ValueAsRole": "som {0}", "ValueAudioCodec": "Lyd codec: {0}", "ValueAwards": "Priser: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Forhold: {0}", "ValueContainer": "Beholder: {0}", "ValueDateCreated": "Oprettelsesdato: {0}", @@ -1676,32 +1515,24 @@ "ValueGuestStar": "Gæstestjerne", "ValueItemCount": "{0} element", "ValueItemCountPlural": "{0} elementer", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} musikvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spil", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Præmiere {0}", "ValuePremieres": "Præmiere {0}", "ValuePriceUSD": "Pris: {0} (USD)", "ValueSeriesCount": "{0} serier", "ValueSeriesYearToPresent": "{0} - Nuværende", "ValueSongCount": "{0} sange", - "ValueStatus": "Status: {0}", "ValueStudio": "Studie: {0}", "ValueStudios": "Studier: {0}", "ValueTimeLimitMultiHour": "Tidsbegrænsning: {0} timer", "ValueTimeLimitSingleHour": "Tidsbegrænsning: 1 time", "ValueTrailerCount": "{0} trailere", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", "ViewPlaybackInfo": "Vis afspilnings information", "ViewTypeFolders": "Mapper", "ViewTypeGames": "Spil", @@ -1714,9 +1545,7 @@ "ViewTypeMusicFavoriteSongs": "Favoritsange", "ViewTypeMusicFavorites": "Favoritter", "ViewTypeMusicSongs": "Sange", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Velkommen til Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Det er alt vi behøver for nu. Jellyfin er begyndt at indsamle information omkring dit mediebibliotek. Tjek nogle af vores apps og klik derefter på Færdig for at se Server betjeningspanelet.", "XmlDocumentAttributeListHelp": "Disse attributter bliver tilføjet til rodelementet i alle XML svar.", "XmlTvKidsCategoriesHelp": "Programmer med disse kategorier bliver vist som programmer for børn. Adskil flere med '|'.", diff --git a/src/strings/de.json b/src/strings/de.json index f96cbb0106..f92c2c164b 100644 --- a/src/strings/de.json +++ b/src/strings/de.json @@ -5,7 +5,6 @@ "AddUserByManually": "Lege einen lokalen User durch manuelle Eingabe der User-Informationen an.", "AdditionalNotificationServices": "Durchsuche den Plugin Katalog, um weitere Benachrichtigungsdienste zu installieren.", "Advanced": "Erweitert", - "Alerts": "Alerts", "All": "Alle", "AllLibraries": "Alle Bibliotheken", "AllowDeletionFromAll": "Erlaube Medien Löschung in allen Bibliotheken", @@ -17,10 +16,8 @@ "AllowRemoteAccess": "Erlaube Remote-Verbindungen zu diesem Jellyfin Server.", "AllowRemoteAccessHelp": "Wenn nicht aktiviert, werden alle Remote-Verbindungen blockiert.", "AllowedRemoteAddressesHelp": "Kommaseparierte Liste von IP Adressen oder IP-Masken für Netzwerke, für die Remote-Verbindungen erlaubt sind. Wenn leer, sind alle Adressen erlaubt.", - "Audio": "Audio", "BirthDateValue": "Geboren: {0}", "BirthPlaceValue": "Geburtsort: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Bob und Weave (höhere Qualität, aber langsamer)", "BookLibraryHelp": "Hörbücher und E-Books werden unterstützt. Schaue in den {0}Jellyfin Book Naming Guide {1}.", "Browse": "Blättern", @@ -51,26 +48,21 @@ "ButtonDelete": "Löschen", "ButtonDeleteImage": "Lösche Bild", "ButtonDown": "Runter", - "ButtonDownload": "Download", "ButtonEdit": "Bearbeiten", "ButtonEditImages": "Bearbeite Bilder", "ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die persönlichen Einstellungen.", "ButtonExit": "Beenden", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Passwort vergessen", "ButtonFullscreen": "Vollbild", "ButtonGuide": "TV Guide", "ButtonHelp": "Hilfe", "ButtonHide": "Ausblenden", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "Lade Benutzer ein", "ButtonLearnMore": "Erfahre mehr", "ButtonLibraryAccess": "Bibliothekszugang", "ButtonManageFolders": "Bearbeite Verzeichnisse", "ButtonManageServer": "Konfiguriere Server", "ButtonManualLogin": "Manuelle Anmeldung", - "ButtonMenu": "Menu", "ButtonMore": "Mehr", "ButtonMoreInformation": "mehr Informationen", "ButtonMute": "Stumm", @@ -83,13 +75,10 @@ "ButtonNo": "Nein", "ButtonNowPlaying": "Läuft", "ButtonOff": "Ausschalten", - "ButtonOk": "Ok", "ButtonOpen": "Öffnen", "ButtonOther": "Andere", "ButtonParentalControl": "Kindersicherung", - "ButtonPause": "Pause", "ButtonPlay": "Abspielen", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Wiedergabeliste", "ButtonPreferences": "Einstellungen", "ButtonPrevious": "Vorheriges", @@ -112,7 +101,6 @@ "ButtonRename": "Umbenennen", "ButtonRepeat": "Wiederholung", "ButtonReports": "Berichte", - "ButtonReset": "Reset", "ButtonResetEasyPassword": "Einfachen PIN zurücksetzen", "ButtonResetPassword": "Passwort zurücksetzten", "ButtonResetTuner": "Tuner zurücksetzen", @@ -131,8 +119,6 @@ "ButtonSelectView": "Ansicht wählen", "ButtonSend": "senden", "ButtonSendInvitation": "Sende Einladung", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", "ButtonSettings": "Einstellungen", "ButtonShare": "Teilen", "ButtonShuffle": "Zufallswiedergabe", @@ -143,13 +129,11 @@ "ButtonSkip": "Überspringen", "ButtonSort": "Sortieren", "ButtonSplitVersionsApart": "Spalte Versionen ab", - "ButtonStart": "Start", "ButtonStop": "Stopp", "ButtonStopRecording": "Aufnahme stoppen", "ButtonSubmit": "Bestätigen", "ButtonSubtitles": "Untertitel", "ButtonSync": "Synchronisieren", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Deinstallieren", "ButtonUnmute": "Ton ein", "ButtonUp": "Hoch", @@ -159,15 +143,10 @@ "ButtonViewAlbum": "Zeige Album", "ButtonViewArtist": "Zeige Darsteller", "ButtonViewWebsite": "Besuche die Website", - "ButtonWebsite": "Website", "ButtonYes": "Ja", "CancelSeries": "Serienaufnahme beenden", "CategoryApplication": "Anwendung", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", "CategoryUser": "Benutzer", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Wähle die Kanäle, die mit diesem Benutzer geteilt werden sollen. Administratoren sind in der Lage alle Känale über den Metadaten-Manager zu bearbeiten.", "Channels": "Kanäle", "CinemaModeConfigurationHelp": "Der Kino-Modus bringt das Kinoerlebnis direkt in dein Wohnzimmer, mit der Fähigkeit Trailer und benutzerdefinierte Intros vor dem Hauptfilm zu spielen.", @@ -190,7 +169,6 @@ "DeviceLastUsedByUserName": "Zuletzt genutzt von {0}", "Disabled": "Abgeschaltet", "Downloading": "Lädt herunter", - "Downloads": "Downloads", "DrmChannelsNotImported": "Verschlüsselte Kanäle werden nicht importiert.", "EasyPasswordHelp": "Die vereinfachte PIN Eingabe wird für offline Zugriffe von unterstützenden Jellyfin Apps verwendet. Sie kann ebenso als erleichterten Zugang aus dem eigenen Netzwerk verwendet werden.", "EnableDebugLoggingHelp": "Debug-Logging sollte nur zur Fehlersuche aktiviert werden. Der Zugriff auf das Dateisystem kann das System unter Umständen daran hindern, in den Energiesparmodus zu gehen.", @@ -234,7 +212,6 @@ "FolderTypeMusic": "Musik", "FolderTypeMusicVideos": "Musikvideos", "FolderTypePhotos": "Fotos", - "FolderTypeTvShows": "TV Shows", "FolderTypeUnset": "Keine Auswahl (gemischter Inhalt)", "ForAdditionalLiveTvOptions": "Für weitere TV Quellen klicke auf den \"Dienste\"-Reiter um weitere Optionen anzuzeigen.", "Fullscreen": "Vollbild", @@ -259,7 +236,6 @@ "HeaderAddUpdateImage": "Hinzufügen/Aktualisieren von Bild", "HeaderAddUser": "Benutzer anlegen", "HeaderAdditionalParts": "Zusätzliche Teile", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Erweitert", "HeaderAirDays": "Ausstrahlungstage", "HeaderAlbums": "Alben", @@ -269,8 +245,6 @@ "HeaderApiKey": "API Schlüssel", "HeaderApiKeys": "API Schlüssel", "HeaderApiKeysHelp": "Externe Applikationen benötigen einen API Key um mit Jellyfin Server zu kommunizieren. API Keys werden beim loggin mit einem Jellyfin Konto vergeben oder durch eine manuelle Freigabe.", - "HeaderApp": "App", - "HeaderAudio": "Audio", "HeaderAudioLanguages": "Audiosprachen", "HeaderAudioSettings": "Audioeinstellungen", "HeaderAudioTracks": "Audiospuren", @@ -295,7 +269,6 @@ "HeaderChapterImages": "Kapitel Bilder", "HeaderChapters": "Kapitel", "HeaderCinemaMode": "Kino-Modus", - "HeaderClients": "Clients", "HeaderCloudSync": "Cloud Synchronisation", "HeaderCodecProfile": "Codec Profil", "HeaderCodecProfileHelp": "Codec Profile weisen auf Beschränkungen eines Gerätes beim Abspielen bestimmter Codecs hin. Wenn eine Beschränkung zutrifft, dann werden Medien transcodiert, auch wenn der Codec für die Direktwiedergabe konfiguriert ist.", @@ -331,7 +304,6 @@ "HeaderDeleteProvider": "TV Verzeichnis löschen", "HeaderDeleteTaskTrigger": "Entferne Aufgabenauslöser", "HeaderDestination": "Ziel", - "HeaderDetails": "Details", "HeaderDetectMyDevices": "Nach Geräten suchen", "HeaderDeveloperInfo": "Entwicklerinformationen", "HeaderDevice": "Endgerät", @@ -347,7 +319,6 @@ "HeaderEmbeddedImage": "Integriertes Bild", "HeaderEpisodes": "Episoden", "HeaderError": "Fehler", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Wiedergabe auf externem Abspielgerät", "HeaderExternalServices": "Externe Dienste", "HeaderFavoriteAlbums": "Lieblingsalben", @@ -369,17 +340,14 @@ "HeaderFreeApps": "Kostenlose Jellyfin Apps", "HeaderFrequentlyPlayed": "Oft gesehen", "HeaderGames": "Spiele", - "HeaderGenres": "Genres", "HeaderGuests": "Gäste", "HeaderGuideProviders": "Fernsehprogramm Quellen", "HeaderHomePage": "Startseite", "HeaderHomeScreenSettings": "Startbildschirm EInstellungen", - "HeaderHttpHeaders": "Http Headers", "HeaderIdentification": "Identifizierung", "HeaderIdentificationCriteriaHelp": "Gebe mindestens ein Identifikationskriterium an.", "HeaderIdentificationHeader": "Identfikations Header", "HeaderImageBackdrop": "Hintergrund", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Bild Einstellungen", "HeaderImagePrimary": "Bevorzugt", "HeaderImageSettings": "Bild Einstellungen", @@ -395,7 +363,6 @@ "HeaderItems": "Inhalte", "HeaderJellyfinAccountAdded": "Jellyfin Konto hinzugefügt", "HeaderJellyfinAccountRemoved": "Jellyfin Konto entfernt", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "Jellyfin bietet native Unterstützung von Nfo Metadatendateien. Um Nfo Metadaten zu aktivieren oder deaktivieren, verwende den \"Metadaten\" Tab um die Optionen für deinen Medientypen zu konfigurieren.", "HeaderLanguage": "Sprache", "HeaderLatestAlbums": "Neueste Alben", @@ -417,7 +384,6 @@ "HeaderLibraryAccess": "Bibliothekszugriff", "HeaderLibraryFolders": "Medienverzeichnisse", "HeaderLibrarySettings": "Bibliothekseinstellungen", - "HeaderLinks": "Links", "HeaderLiveTV": "Live-TV", "HeaderLiveTv": "Live-TV", "HeaderLiveTvTunerSetup": "TV Tuner Setup", @@ -434,8 +400,6 @@ "HeaderMusicVideos": "Musikvideos", "HeaderMyMedia": "Meine Medien", "HeaderMyViews": "Meine Ansichten", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", "HeaderNetwork": "Netzwerk", "HeaderNewApiKey": "Neuer API Schlüssel", "HeaderNewApiKeyHelp": "Geben Sie einer Applikation die Erlaubnis mit dem Jellyfin Server zu kommunizieren.", @@ -446,7 +410,6 @@ "HeaderNotifications": "Benachrichtigungen", "HeaderNowPlaying": "Aktuelle Wiedergabe", "HeaderNumberOfPlayers": "Abspielgeräte", - "HeaderOffline": "Offline", "HeaderOfflineSync": "Offline-Synchronisierung", "HeaderOnNow": "Gerade läuft", "HeaderOptions": "Optionen", @@ -470,7 +433,6 @@ "HeaderPlaybackSettings": "Wiedergabe Einstellungen", "HeaderPlaylists": "Wiedergabeliste", "HeaderPleaseSignIn": "Bitte einloggen", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Bevorzugte Sprache der Metadaten:", "HeaderProfile": "Profil", "HeaderProfileInformation": "Profil Infomationen", @@ -542,8 +504,6 @@ "HeaderSpecialFeatures": " Sonderfunktionen", "HeaderSpecials": "Extras", "HeaderSplitMedia": "Trenne Medien ab", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", "HeaderSubtitleDownloads": "Untertitel Downloads", "HeaderSubtitleProfile": "Untertitel Profil", "HeaderSubtitleProfiles": "Untertitel Profile", @@ -554,8 +514,6 @@ "HeaderSync": "Synchronisation", "HeaderSyncJobInfo": "Synchronisationsaufgabe", "HeaderSystemDlnaProfiles": "Systemprofile", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Aufgabenauslöser", "HeaderTermsOfService": "Jellyfin Nutzungsbedingungen", "HeaderThemeSongs": "Titelsongs", @@ -563,7 +521,6 @@ "HeaderThisUserIsCurrentlyDisabled": "Dieser Benutzer ist aktuell deaktiviert", "HeaderTime": "Zeit", "HeaderToAccessPleaseEnterEasyPinCode": "Um Zugang zu erhalten, geben Sie bitte Ihren einfachen PIN Code ein", - "HeaderTopPlugins": "Top Plugins", "HeaderTrack": "Stück", "HeaderTracks": "Lieder", "HeaderTrailers": "Trailer", @@ -573,7 +530,6 @@ "HeaderTuners": "Tuner", "HeaderTvTuners": "Tuner", "HeaderType": "Typ", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Texteingabe", "HeaderUnaired": "Nicht ausgestrahlt", "HeaderUnknownDate": "Unbekanntes Datum", @@ -587,9 +543,7 @@ "HeaderUser": "Benutzer", "HeaderUserPrimaryImage": "Benutzerbild", "HeaderUsers": "Benutzer", - "HeaderVideo": "Video", "HeaderVideoTypes": "Videotypen", - "HeaderVideos": "Videos", "HeaderViewOrder": "Reihenfolge für Ansichten", "HeaderViewStyles": "Zeige Stiele", "HeaderWelcomeToJellyfin": "Willkommen zu Jellyfin", @@ -620,7 +574,6 @@ "LabelAirDays": "Ausstrahlungstage:", "LabelAirTime": "Ausstrahlungszeit:", "LabelAirTime:": "Ausstrahlungszeit:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "Die genutzte PN für Alben-Fankunst innerhalb der dlna:profileID-Eigenschaften auf upnp:albumArtURL. Manche Abspielgeräte benötigen einen bestimmten Wert, unabhängig von der Bildgröße.", "LabelAlbumArtMaxHeight": "Maximale Höhe für Album Art:", "LabelAlbumArtMaxHeightHelp": "Maximale Auflösung für durch UPnP übermittelte Album Art:albumArtURI.", @@ -642,7 +595,6 @@ "LabelArtist": "Interpret", "LabelArtists": "Interpreten:", "LabelArtistsHelp": "Trenne mehrere Einträge durch ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Audiosprach-Einstellungen:", "LabelAutomaticallyRefreshInternetMetadataEvery": "Aktualisiere Metadaten automatisch aus dem Internet:", "LabelAvailableTokens": "Verfügbare Tokens:", @@ -652,7 +604,6 @@ "LabelBlastMessageInterval": "Alive Meldungsintervall (Sekunden)", "LabelBlastMessageIntervalHelp": "Legt die Dauer in Sekunden zwischen den Server Alive Meldungen fest.", "LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:", - "LabelCache": "Cache:", "LabelCachePath": "Cache Pfad:", "LabelCachePathHelp": "Legen Sie ein eigenes Verzeichnis für den Server Zwischenspeicher fest. (z.B. für Bilder) Lassen Sie dieses Feld leer um die Standardeinstellung zu verwenden.", "LabelCameraUploadPath": "Kamera-Upload Pfad:", @@ -698,7 +649,6 @@ "LabelDay": "Tag:", "LabelDeathDate": "Todesdatum:", "LabelDefaultForcedStream": "(Standard/Erzwungen)", - "LabelDefaultStream": "(Default)", "LabelDefaultUser": "Standardbenutzer", "LabelDefaultUserHelp": "Legt fest, welche Benutzerbibliothek auf verbundenen Geräten angezeigt werden soll. Dies kann für jedes Gerät durch Profile überschrieben werden.", "LabelDeinterlacingMethod": "Deinterlacing-Methode:", @@ -718,9 +668,7 @@ "LabelDownloadInternetMetadataHelp": "Jellyfin Server kann Informationen über Ihre Medien herunterladen um deren Präsentation aufzuwerten.", "LabelDownloadLanguages": "Herunterzuladende Sprachen:", "LabelDropImageHere": "Fotos hierher ziehen.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Einfacher pin code:", - "LabelEmail": "Email:", "LabelEmailAddress": "E-Mail Adresse", "LabelEmbedAlbumArtDidl": "Integrierte Alben-Cover in Didl", "LabelEmbedAlbumArtDidlHelp": "Einige Geräte bevorzugen diese Methode um Album Art darstellen zu können. Andere wiederum können evtl. nichts abspielen, wenn diese Funktion aktiviert ist.", @@ -753,7 +701,6 @@ "LabelEndDate": "Endzeit:", "LabelEndingEpisodeNumber": "Nummer der letzten Episode:", "LabelEndingEpisodeNumberHelp": "Nur erforderlich für Mehrfachepisoden", - "LabelEpisode": "Episode", "LabelEpisodeNumber": "Episodennummer:", "LabelEvent": "Ereignis:", "LabelEveryXMinutes": "Alle:", @@ -771,7 +718,6 @@ "LabelFolderType": "Verzeichnistyp:", "LabelForcedStream": "(Erzwungen)", "LabelForgotPasswordUsernameHelp": "Bitte gib deinen Benutzernamen ein, falls du dich daran erinnerst.", - "LabelFormat": "Format:", "LabelFree": "Frei", "LabelFriendlyName": "Benutzerfreundlicher Name:", "LabelFriendlyServerName": "Freundlicher Servername:", @@ -779,7 +725,6 @@ "LabelFromHelp": "Beispiel: {0} (auf dem Server)", "LabelGroupMoviesIntoCollections": "Gruppiere Filme in Collections", "LabelGroupMoviesIntoCollectionsHelp": "Wenn Filmlisten angezeigt werden, dann werden Filme, die zu einer Collection gehören, als ein gruppiertes Element angezeigt.", - "LabelH264Crf": "H264 encoding CRF:", "LabelH264EncodingPreset": "H264 Encoding Voreinstellung:", "LabelHardwareAccelerationType": "Hardware Beschleunigung:", "LabelHardwareAccelerationTypeHelp": "Nur auf unterstützten Systemen verfügbar.", @@ -813,16 +758,13 @@ "LabelLanNetworks": "Lokale Netzwerke:", "LabelLanguage": "Sprache:", "LabelLastResult": "Letztes Ergebnis:", - "LabelLimit": "Limit:", "LabelLimitIntrosToUnwatchedContent": "Spiele nur Trailer von nicht gesehenen Inhalten ab", "LabelLineup": "TV Programm:", "LabelLocalAccessUrl": "Heimnetzwerk (LAN) Zugriff: {0}", "LabelLocalHttpServerPortNumber": "Lokale HTTP Portnummer:", "LabelLocalHttpServerPortNumberHelp": "Die TCP Port Nummer, auf die der Jellyfin http Server hört.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Anmeldung Haftungsausschluss:", "LabelLoginDisclaimerHelp": "Dies wird am Boden des Anmeldebildschirms angezeigt.", - "LabelLogs": "Logs:", "LabelManufacturer": "Hersteller", "LabelManufacturerUrl": "Hersteller URL", "LabelMarkAs": "Markieren als:", @@ -873,7 +815,6 @@ "LabelMusicStreamingTranscodingBitrate": "Musik Transkodier Bitrate:", "LabelMusicStreamingTranscodingBitrateHelp": "Wähle die maximale Bitrate für das streamen von Musik", "LabelMusicVideo": "Musikvideo", - "LabelName": "Name:", "LabelNativeExternalPlayersHelp": "Spiele Videos mit externen Playern ab.", "LabelNewName": "Neuer Name:", "LabelNewPassword": "Neues Passwort:", @@ -910,9 +851,7 @@ "LabelPrevious": "Vorheriges", "LabelProfile": "Profil:", "LabelProfileAudioCodecs": "Audio Codecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Getrennt durch Komma. Leerlassen, um auf alle Codecs anzuwenden.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Getrennt durch Komma. Leerlassen, um auf alle Container anzuwenden.", "LabelProfileVideoCodecs": "Video Codecs:", "LabelProtocol": "Protokoll: ", @@ -952,7 +891,6 @@ "LabelSeriesRecordingPath": "Serien Aufnahmepfad (optional):", "LabelServerHost": "Adresse:", "LabelServerHostHelp": "192.168.1.100 oder https://myserver.com", - "LabelServerPort": "Port:", "LabelSimultaneousConnectionLimit": "Paralleler Streamlimit:", "LabelSkipIfAudioTrackPresent": "Überspringen, falls der Ton bereits der herunterladbaren Sprache entspricht", "LabelSkipIfAudioTrackPresentHelp": "Entferne den Haken, um sicherzustellen das alle Videos Untertitel haben, unabhängig von der Audiosprache", @@ -965,7 +903,6 @@ "LabelSpecialSeasonsDisplayName": "Anzeigename für Serien-Specials.", "LabelSportsCategories": "Sportkategorie:", "LabelStartWhenPossible": "Wenn möglich starte:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Wenn möchte stoppe:", "LabelStopping": "Stoppe", "LabelSubtitleDownloaders": "Untertitel Downloader:", @@ -976,12 +913,10 @@ "LabelSyncPath": "Synchronisierter-Inhalt Pfad:", "LabelSyncTempPath": "Verzeichnis für temporäre Dateien", "LabelSyncTempPathHelp": "Legen Sie ein Arbeitsverzeichnis für die Synchronisation fest. Konvertierte Medien werden während der Synchronisation hier gespeichert.", - "LabelTag": "Tag:", "LabelTheme": "Thema:", "LabelTime": "Zeit:", "LabelTimeLimitHours": "Zeitlimit (Stunden):", "LabelTranscodingAudioCodec": "Audio Codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Temporärer Transcoding Pfad:", "LabelTranscodingTempPathHelp": "Dieses Verzeichnis beinhaltet Dateien die für den Betrieb des Transcoders benutzt werden. Wähle einen eigenen Pfad oder lasse das Feld frei, um den Standardspeicherort im Server Datenverzeichnis zu nutzen.", "LabelTranscodingTemporaryFiles": "Temporäre Transkodierdateien:", @@ -994,7 +929,6 @@ "LabelTunerType": "Tuner Typ:", "LabelType": "Typ:", "LabelTypeMetadataDownloaders": "{0} Metadata Dienste:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Zeige noch nicht ausgestrahlte Episoden innerhalb von Staffeln", "LabelUnknownLanguage": "Unbekannte Sprache", "LabelUploadSpeedLimit": "Upload Geschwindigkeitslimit (Mbps):", @@ -1010,9 +944,7 @@ "LabelVaapiDeviceHelp": "Das ist der Render-Node der für die Hardwarebeschleunigung genutzt wird.", "LabelValue": "Wert:", "LabelVersionInstalled": "{0} installiert", - "LabelVersionNumber": "Version {0}", "LabelVersionUpToDate": "Auf dem neuesten Stand!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video Typ:", "LabelView": "Ansicht:", "LabelXDlnaCap": "X-DLNA Grenze:", @@ -1028,11 +960,8 @@ "LanNetworksHelp": "Komma separierte Liste von IP Adressen oder IP Masken die als lokale Netzwerke behandelt werden sollen um Bandbreitenlimitationen auszusetzen. Wenn befüllt werden alle anderen IP Adressen als externe Netzwerke behandelt und unterliegen den Bandbreitenlimitationen für externe Verbindungen. Wenn leer, wird nur das SubNetz des Servers als Lokales Netz gesetzt-", "LatestFromLibrary": "Neueste {0}", "LearnHowToCreateSynologyShares": "Erfahre, wie man Verzeichnisse mit Synology teilt.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Wähle die Medienverzeichnisse die du mit diesem Benutzer teilen möchtest. Administratoren können den Metadaten-Manager verwenden um alle Ordner zu bearbeiten.", "LinkApi": "API", - "LinkCommunity": "Community", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Erfahren Sie mehr über Jellyfin Premium", "LiveTvUpdateAvailable": "(Update verfügbar)", "LoginDisclaimer": "Jellyfin wurde designed um Sie bei der Verwaltung Ihrer Medienbibliothek, wie z.B Heimvideos oder Fotos, zu unterstützen. Bitte lesen Sie unsere Nutzungsbedingungen. Die Verwendung jeglicher Jellyfin Software bedingt die Zustimmung dieser Vereinbarung.", @@ -1046,27 +975,20 @@ "MediaInfoAperture": "Blende", "MediaInfoAspectRatio": "Seitenverhältnis", "MediaInfoBitDepth": "Bit-Tiefe", - "MediaInfoBitrate": "Bitrate", "MediaInfoCameraMake": "Kamerahersteller", "MediaInfoCameraModel": "Kamera-Modell", "MediaInfoChannels": "Kanäle", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", "MediaInfoDefault": "Voreinstellung", "MediaInfoExposureTime": "Belichtungszeit", "MediaInfoExternal": "Extern", "MediaInfoFile": "Datei", "MediaInfoFocalLength": "Brennweite", "MediaInfoForced": "Erzwungen", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Bildrate", - "MediaInfoInterlaced": "Interlaced", "MediaInfoIsoSpeedRating": "ISO Empfindlichkeit", "MediaInfoLanguage": "Sprache", "MediaInfoLatitude": "Breite", "MediaInfoLayout": "Darstellung", - "MediaInfoLevel": "Level", "MediaInfoLongitude": "Länge", "MediaInfoOrientation": "Ausrichtung", "MediaInfoPath": "Pfad", @@ -1077,12 +999,9 @@ "MediaInfoSampleRate": "Sample-Rate", "MediaInfoShutterSpeed": "Verschlusszeit", "MediaInfoSize": "Größe", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Daten", "MediaInfoStreamTypeEmbeddedImage": "Eingebettetes Bild", "MediaInfoStreamTypeSubtitle": "Untertitel", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Zeitstempel", "MessageAlreadyInstalled": "Diese Version ist bereits installiert", "MessageApplicationUpdated": "Jellyfin Server wurde auf den neusten Stand gebracht.", @@ -1180,7 +1099,6 @@ "Mute": "Stumm", "Never": "Niemals", "NewVersionOfSomethingAvailable": "Eine neue Version von {0} ist verfügbar!", - "News": "News", "NextUp": "Es folgt", "NoNewDevicesFound": "Keine neuen Geräte gefunden. Um einen neuen Tuner hinzuzufügen, schließe diesen Dialog und gebe die Geräteinformationen manuell ein.", "NoNextUpItemsMessage": "Es wurde nichts gefunden. Schau dir deine Shows an!", @@ -1190,15 +1108,10 @@ "Notifications": "Benachrichtigungen", "NumLocationsValue": "{0} Verzeichnisse", "OpenSubtitleInstructions": "Du musst ein Open-Subtitles Konto auf der Open Subtiles Einstellungsseite im Jellyfin Server Dashboard konfigurieren.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Schauspieler", "OptionActors": "Darsteller", "OptionAdminUsers": "Administratoren", "OptionAfterSystemEvent": "Nach einem Systemereignis", - "OptionAlbum": "Album", "OptionAlbumArtist": "Album-Interpret", "OptionAll": "Alle", "OptionAllUsers": "Alle Benutzer", @@ -1219,19 +1132,14 @@ "OptionAllowVideoPlaybackRemuxing": "Erlaube Video-Wiedergabe mittels Konvertierung ohne Neu-Enkodierung", "OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung benötigt", "OptionAnyNumberOfPlayers": "Jeder", - "OptionArt": "Art", "OptionArtist": "Interpret", "OptionAscending": "Aufsteigend", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Vermische Serieninhalte, die in verschiedenen Ordnern abgelegt sind.", "OptionAutomaticallyGroupSeriesHelp": "Wenn aktiviert, werden Inhalte einer Serie in verschiedenen Ordnern innerhalb einer Bibliothek als eine Serie angezeigt.", "OptionBackdrop": "Hintergrund", "OptionBackdropSlideshow": "Hintergrund Diashow", "OptionBackdrops": "Hintergründe", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Die besten verfügbaren", - "OptionBeta": "Beta", "OptionBirthLocation": "Geburtsort", "OptionBlockBooks": "Bücher", "OptionBlockChannelContent": "Internet Channelinhalte", @@ -1243,11 +1151,8 @@ "OptionBlockOthers": "Andere", "OptionBlockTrailers": "Trailer", "OptionBlockTvShows": "TV Serien", - "OptionBluray": "Bluray", "OptionBooks": "Bücher", - "OptionBox": "Box", "OptionBoxRear": "Box Rückseite", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Sammlungen", "OptionCommunityRating": "Community Bewertung", "OptionComposer": "Komponist", @@ -1264,7 +1169,6 @@ "OptionDateAddedFileTime": "Benutze das Erstellungsdatum der Datei", "OptionDateAddedImportTime": "Benutze das Scandatum vom Hinzufügen in die Bibliothek", "OptionDatePlayed": "Gesehen am", - "OptionDefaultSort": "Default", "OptionDescending": "Absteigend", "OptionDev": "Entwickler", "OptionDirector": "Regisseur", @@ -1280,15 +1184,11 @@ "OptionDisplayFolderViewHelp": "Wenn aktiviert zeigen Jellyfin Apps eine Kategorie zum Verzeichnis an. Dies kann praktisch sein, wenn man nur Verzeichnisansichten verwendet.", "OptionDownloadArtImage": "Kunst", "OptionDownloadBackImage": "Zurück", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Bilder vorab herunterladen", "OptionDownloadImagesInAdvanceHelp": "Grundsätzlich werden die meisten Bilder erst dann runter geladen, wenn eine Jellyfin-App diese anfragt. Schalten Sie diese Option ein um alle Bilder im Voraus herunterzuladen, wenn neue Medien importiert wurden. Diese Einstellung kann zu signifikant längeren Bibliothekscans führen.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menü", "OptionDownloadPrimaryImage": "Primär", - "OptionDownloadThumbImage": "Thumb", "OptionDvd": "DVD", "OptionEmbedSubtitles": "In Container eingebettet", "OptionEnableAccessFromAllDevices": "Erlaube Zugriff von allen Geräten", @@ -1322,25 +1222,20 @@ "OptionFridayShort": "Fr", "OptionGameSystems": "Spielsysteme", "OptionGames": "Spiele", - "OptionGenres": "Genres", "OptionGuestStars": "Gaststar", "OptionHasSpecialFeatures": "Besonderes Merkmal", "OptionHasSubtitles": "Untertitel", "OptionHasThemeSong": "Titellied", "OptionHasThemeVideo": "Titelvideo", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Verberge diesen Benutzer in den Anmeldebildschirmen", "OptionHideUserFromLoginHelp": "Hilfreich für private oder versteckte Administrator-Konten. Der Benutzer muss sich manuell mit der Eingabe des Benutzernamens und Passworts anmelden.", "OptionHlsSegmentedSubtitles": "HLs segmentierte Untertitel", "OptionHomeVideos": "Heim-Videos und Fotos", - "OptionIcon": "Icon", "OptionIgnoreTranscodeByteRangeRequests": "Ignoriere Anfragen für Transkodierbytebereiche", "OptionIgnoreTranscodeByteRangeRequestsHelp": "Falls aktiviert, werden diese Anfragen berücksichtigt aber Byte-Range-Header ignoriert werden.", "OptionImages": "Bilder", "OptionImdbRating": "IMDb Bewertung", "OptionInProgress": "Im Gange", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Stichworte", "OptionLatestChannelMedia": "Neueste Channel Inhalte:", @@ -1348,10 +1243,7 @@ "OptionLatestTvRecordings": "Neueste Aufnahmen", "OptionLibraryFolders": "Medienverzeichnisse", "OptionLikes": "Mag ich", - "OptionList": "List", "OptionLocked": "Gesperrt", - "OptionLogo": "Logo", - "OptionMax": "Max", "OptionMenu": "Menü", "OptionMissingEpisode": "Fehlende Episoden", "OptionMissingImdbId": "Fehlende IMDb Id", @@ -1366,8 +1258,6 @@ "OptionMusicAlbums": "Musik-Alben", "OptionMusicArtists": "Musik-Interpreten", "OptionMusicVideos": "Musik-Videos", - "OptionName": "Name", - "OptionNameSort": "Name", "OptionNo": "Nein", "OptionNoTrailer": "Kein Trailer", "OptionNone": "Keines", @@ -1388,24 +1278,16 @@ "OptionPlainVideoItemsHelp": "Falls aktiviert, werden alle Videos in DIDL als \"object.item.videoItem\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.item.videoItem.movie\".", "OptionPlayCount": "Zähler", "OptionPlayed": "Gesehen", - "OptionPoster": "Poster", "OptionPosterCard": "Poster Karte", "OptionPremiereDate": "Premiere", "OptionPrimary": "Primär", "OptionPriority": "Priorität", "OptionProducer": "Produzent", "OptionProducers": "Produzent", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Zu jeder Zeit aufzeichnen", "OptionRecordOnAllChannels": "Auf allen Kanälen aufzeichnen", "OptionRecordOnlyNewEpisodes": "Nehme nur neue Episoden auf", "OptionRecordSeries": "Nehme Serie auf", - "OptionRegex": "Regex", "OptionRelease": "Offizielles Release", "OptionReleaseDate": "Veröffentlichungsdatum", "OptionReportByteRangeSeekingWhenTranscoding": "Teilt die Unterstützung der Bytesuche während des transkodierens auf dem Server mit.", @@ -1420,26 +1302,19 @@ "OptionSaturdayShort": "Sa", "OptionSaveMetadataAsHidden": "Speichere Metadaten und Bilder als versteckte Dateien", "OptionSaveMetadataAsHiddenHelp": "Änderungen werden sich auf neue Metadaten angewendet. Bereits existierende Metadaten werden bei der nächsten Speicherung des Jellyfin Servers auf den neusten Stand gebracht.", - "OptionScreenshot": "Screenshot", "OptionSeason0": "Staffel 0", "OptionSeasons": "Staffeln", "OptionSeries": "Serien", "OptionSongs": "Lieder", "OptionSortName": "Sortiername", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Sonntag", "OptionSundayShort": "So", "OptionSyncLosslessAudioOriginal": "Synchronisiere verlustfreie Audio in originaler Qualität", "OptionSyncOnlyOnWifi": "Synchronisiere nur bei Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", "OptionThumbCard": "Thumb Karte", "OptionThursday": "Donnerstag", "OptionThursdayShort": "Do", "OptionTimeline": "Zeitlinie", - "OptionTrackName": "Track Name", "OptionTrailersFromMyMovies": "Trailer von Filmen aus meiner Bibliothek mit einbeziehen", "OptionTrailersFromMyMoviesHelp": "Benötigt die Einrichtung lokaler Trailer.", "OptionTuesday": "Dienstag", @@ -1452,7 +1327,6 @@ "OptionUpcomingDvdMovies": "Beinhaltet Trailer von neuen und erscheinenden Filmen auf DVD & Blu-ray", "OptionUpcomingMoviesInTheaters": "Trailer von neuen und erscheinenden Filmen einbeziehen", "OptionUpcomingStreamingMovies": "Beinhaltet Trailer von neuen und erscheinenden Filmen auf Netflix", - "OptionVideoBitrate": "Video Bitrate", "OptionWakeFromSleep": "Aufwachen nach dem Schlafen", "OptionWatched": "Gesehen", "OptionWednesday": "Mittwoch", @@ -1471,7 +1345,6 @@ "PasswordResetConfirmation": "Möchtest du das Passwort wirklich zurücksetzen?", "PasswordResetHeader": "Passwort zurücksetzen", "PasswordSaved": "Passwort gespeichert", - "PersonTypePerson": "Person", "PictureInPicture": "Bild-in-Bild", "PinCodeResetComplete": "Der PIN wurde zurückgesetzt", "PinCodeResetConfirmation": "Sind Sie sich sicher, dass Sie Ihren PIN Code zurücksetzen möchten?", @@ -1519,7 +1392,6 @@ "ShowAdvancedSettings": "Zeige erweiterte Einstellungen", "SimultaneousConnectionLimitHelp": "Die maximale Anzahl der parallel erlaubten Streams. 0 für kein Limit.", "Sports": "Sport", - "Standard": "Standard", "StatusRecording": "Aufnehmen", "StatusRecordingProgram": "Aufzeichnung {0}", "StatusWatching": "Anschauing", @@ -1550,46 +1422,36 @@ "TabChannels": "Kanäle", "TabChapters": "Kapitel", "TabCinemaMode": "Kino-Modus", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titel", "TabCollections": "Sammlungen", "TabContainers": "Container", "TabControls": "Steuerungen", - "TabDLNA": "DLNA", "TabDashboard": "Übersicht", "TabDevices": "Geräte", "TabDirectPlay": "Direktwiedergabe", "TabDisplay": "Anzeige", "TabEpisodes": "Episoden", "TabExpert": "Experte", - "TabExtras": "Extras", "TabFavorites": "Favoriten", - "TabFilter": "Filter", "TabFolders": "Verzeichnisse", "TabGames": "Spiele", "TabGeneral": "Allgemein", - "TabGenres": "Genres", "TabGuide": "Programm", "TabHelp": "Hilfe", - "TabHome": "Home", "TabHomeScreen": "Startseite", - "TabHosting": "Hosting", "TabImage": "Bild", "TabImages": "Bilder", - "TabInfo": "Info", "TabLanguages": "Sprachen", "TabLatest": "Neueste", "TabLibrary": "Bibliothek", "TabLibraryAccess": "Bibliothekenzugriff", "TabLiveTV": "Live-TV", - "TabLogs": "Logs", "TabMetadata": "Metadaten", "TabMovies": "Filme", "TabMusic": "Musik", "TabMusicVideos": "Musikvideos", "TabMyLibrary": "Meine Bibliothek", "TabMyPlugins": "Meine Plugins", - "TabNavigation": "Navigation", "TabNetworks": "Sendergruppen", "TabNextUp": "Als Nächstes", "TabNfoSettings": "Nfo Einstellungen", @@ -1604,7 +1466,6 @@ "TabPlayback": "Wiedergabe", "TabPlaylist": "Wiedergabeliste", "TabPlaylists": "Wiedergabelisten", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profile", "TabRecordings": "Aufnahmen", @@ -1614,18 +1475,13 @@ "TabScheduledTasks": "Geplante Aufgaben", "TabSecurity": "Sicherheit", "TabSeries": "Serie", - "TabServer": "Server", "TabServices": "Dienste", "TabSettings": "Einstellungen", "TabShows": "Serien", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", "TabSubtitles": "Untertitel", "TabSuggestions": "Empfehlungen", "TabSync": "Synchronisieren", "TabSyncJobs": "Synchronisations-Aufgaben", - "TabTV": "TV", "TabTrailers": "Trailer", "TabTranscoding": "Transkodierung", "TabUpcoming": "Bevorstehend", @@ -1645,12 +1501,10 @@ "TitleNotifications": "Benachrichtigungen", "TitlePasswordReset": "Passwort zurücksetzen", "TitlePlayback": "Wiedergabe", - "TitlePlugins": "Plugins", "TitleRemoteControl": "Fernsteuerung", "TitleScheduledTasks": "Geplante Aufgaben", "TitleServer": "Server:", "TitleSignIn": "Einloggen", - "TitleSupport": "Support", "TitleSync": "Synchronisation", "TitleUsers": "Benutzer", "TvLibraryHelp": "Überprüfe die {0}Jellyfin Leitfaden zur Serienbenamung{1}.", @@ -1664,13 +1518,9 @@ "ValueArtist": "Künstler: {0}", "ValueArtists": "Künstler: {0}", "ValueAsRole": "als {0}", - "ValueAudioCodec": "Audio Codec: {0}", "ValueAwards": "Auszeichnungen: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Bedingungen: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Erstellungsdatum: {0}", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} Episoden", "ValueExample": "Beispiel: {0}", "ValueGameCount": "{0} Spiele", @@ -1695,14 +1545,9 @@ "ValueSeriesCount": "{0} Serien", "ValueSeriesYearToPresent": "{0} - heute", "ValueSongCount": "{0} Lieder", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", "ValueTimeLimitMultiHour": "Zeitlimit: {0} Stunden", "ValueTimeLimitSingleHour": "Zeitlimit: 1 Stunde", "ValueTrailerCount": "{0} Trailer", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", "ViewPlaybackInfo": "Abspielinfo ansehen", "ViewTypeFolders": "Verzeichnisse", "ViewTypeGames": "Spiele", @@ -1715,9 +1560,7 @@ "ViewTypeMusicFavoriteSongs": "Lieder Favoriten", "ViewTypeMusicFavorites": "Favoriten", "ViewTypeMusicSongs": "Lieder", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Willkommen bei Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Das ist alles was wir bis jetzt brauchen. Jellyfin hat nun angefangen Informationen über Ihre Medienbibliothek zu sammeln. Schauen dir doch ein paar unserer Apps an und klicke dann auf Fertig um das Server Dashboard anzuzeigen.", "XmlDocumentAttributeListHelp": "Diese Attribute werden für das Stammelement jeder XML-Antwort angewendet.", "XmlTvKidsCategoriesHelp": "Programme mit diesen Kategorien werden als Kinderprogramme angezeigt. Separiere mehrere mit '|'.", diff --git a/src/strings/el.json b/src/strings/el.json index 2314645ad6..5a9c27033f 100644 --- a/src/strings/el.json +++ b/src/strings/el.json @@ -1,28 +1,18 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Προσθήκη χρήστη", "AddUserByManually": "Προσθήκη τοπικού χρήστη με μη αυτόματη εισαγωγή πληροφοριών χρήστη.", "AdditionalNotificationServices": "Περιηγηθείτε στον κατάλογο plugin για να εγκαταστήσετε πρόσθετες υπηρεσίες ειδοποίησης.", "Advanced": "ΓιαΠροχωρημένους", - "Alerts": "Alerts", "All": "Όλα", "AllLibraries": "Όλες οι βιβλιοθήκες", "AllowDeletionFromAll": "Να επιτρέπεται η διαγραφή πολυμέσων από όλες τις βιβλιοθήκες", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "Να επιτρέπονται οι απομακρυσμένες συνδέσεις σε αυτόν το διακομιστή Jellyfin.", "AllowRemoteAccessHelp": "Εάν δεν επιλεχθεί, όλες οι απομακρυσμένες συνδέσεις θα αποκλειστούν.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Ήχος", "BirthDateValue": "Γεννήθηκε: {0}", "BirthPlaceValue": "Τόπος γέννησης: {0}", "Blacklist": "Μαύρη Λίστα", "BobAndWeaveWithHelp": "bob and weave (υψηλότερη ποιότητα, αλλά πιο αργή)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "Αναζήτηση", "BrowsePluginCatalogMessage": "Πλοηγηθείτε στον κατάλογο plugin μας για να δείτε τα διαθέσιμα plugins", "ButtonAccept": "Αποδοχή", @@ -51,7 +41,6 @@ "ButtonDelete": "Διαγραφή", "ButtonDeleteImage": "Διαγραφή εικόνας", "ButtonDown": "Κάτω", - "ButtonDownload": "Download", "ButtonEdit": "Επεξεργασία", "ButtonEditImages": "Επεξεργασία εικόνων", "ButtonEditOtherUserPreferences": "Επεξεργαστείτε το προφίλ, την εικόνα και τις προσωπικές προτιμήσεις αυτού του χρήστη.", @@ -74,7 +63,6 @@ "ButtonMore": "Περισσότερα", "ButtonMoreInformation": "Περισσότερες Πληροφορίες", "ButtonMute": "Σίγαση", - "ButtonNetwork": "Network", "ButtonNew": "Νέο", "ButtonNewServer": "Νέος Διακομιστής", "ButtonNext": "Επόμενο", @@ -82,8 +70,6 @@ "ButtonNextTrack": "Επομενο", "ButtonNo": "Οχι", "ButtonNowPlaying": "Παίζει Τώρα", - "ButtonOff": "Off", - "ButtonOk": "Ok", "ButtonOpen": "Άνοιγμα", "ButtonOther": "Άλλα", "ButtonParentalControl": "Γονικός έλεγχος", @@ -102,11 +88,9 @@ "ButtonQuality": "Ποιότητα", "ButtonQuickStartGuide": "Οδηγός Γρήγορης Εκκίνησης", "ButtonRecord": "Εγγραφή", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Ανανέωση", "ButtonRefreshGuideData": "Ανανέωση Δεδομένων Οδηγού", "ButtonReject": "Απόρριψη", - "ButtonRemote": "Remote", "ButtonRemoteControl": "Τηλεχειριστήριο", "ButtonRemove": "Κατάργηση", "ButtonRename": "Μετονομασία", @@ -123,7 +107,6 @@ "ButtonSave": "Αποθήκευση", "ButtonScanAllLibraries": "Σάρωση όλων των βιβλιοθηκών", "ButtonScanLibrary": "Σάρωση Βιβλιοθήκης", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "Αναζήτηση", "ButtonSelect": "Επιλογή", "ButtonSelectDirectory": "Επιλογή Φακέλου", @@ -134,7 +117,6 @@ "ButtonServer": "Διακομιστής", "ButtonServerDashboard": "Πίνακας Ελέγχου Server", "ButtonSettings": "Ρυθμίσεις", - "ButtonShare": "Share", "ButtonShuffle": "Τυχαία Αναπαραγωγή", "ButtonShutdown": "Απενεργοποίηση", "ButtonSignIn": "Είσοδος", @@ -142,7 +124,6 @@ "ButtonSignUp": "Εγγραφή", "ButtonSkip": "Παρέλειψε", "ButtonSort": "Ταξινόμηση", - "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonStart": "Έναρξη", "ButtonStop": "Διακοπή", "ButtonStopRecording": "Διακοπή εγγραφής", @@ -151,7 +132,6 @@ "ButtonSync": "Συχρονισμός", "ButtonTrailer": "Τρέϊλερ", "ButtonUninstall": "Απεγκατάσταση", - "ButtonUnmute": "Unmute", "ButtonUp": "Επάνω", "ButtonUpdateNow": "Αναβάθμιση", "ButtonUpload": "Ανεβάστε ", @@ -161,13 +141,11 @@ "ButtonViewWebsite": "Εμφάνιση ιστοσελίδας", "ButtonWebsite": "Ιστοσελίδα", "ButtonYes": "Ναι", - "CancelSeries": "Cancel series", "CategoryApplication": "Εφαρμογή", "CategoryPlugin": "Πρόσθετο", "CategorySync": "Συχρονισμός", "CategorySystem": "Σύστημα", "CategoryUser": "Χρήστης", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Επιλέξτε τα κανάλια που θέλετε να μοιραστείτε με αυτόν το χρήστη. Οι διαχειριστές θα μπορούν να επεξεργάζονται όλα τα κανάλια χρησιμοποιώντας τον διαχειριστή μεταδεδομένων.", "Channels": "Κανάλια", "CinemaModeConfigurationHelp": "Η λειτουργία Κινηματογράφου σάς προσφέρει την πραγματική κινηματογραφική εμπειρία με τρέιλερ και προσαρμοσμένα intros πριν από τη λειτουργία.", @@ -187,40 +165,23 @@ "DeleteUserConfirmation": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή τον χρήστη;", "DetectingDevices": "Ανίχνευση συσκευών", "DeviceAccessHelp": "Αυτό ισχύει μόνο για συσκευές που μπορούν να αναγνωριστούν με μοναδικό τρόπο και δεν θα εμποδίσουν την πρόσβαση του προγράμματος περιήγησης. Το φιλτράρισμα της πρόσβασης των συσκευών χρήστη θα αποτρέψει τη χρήση νέων συσκευών μέχρι να εγκριθούν εδώ.", - "DeviceLastUsedByUserName": "Last used by {0}", "Disabled": "Απενεργοποιημένο", - "Downloading": "Downloading", "Downloads": "Λήψεις", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", "EasyPasswordHelp": "Ο εύκολος κωδικός PIN χρησιμοποιείται για πρόσβαση χωρίς σύνδεση με υποστηριζόμενες εφαρμογές Jellyfin και μπορεί επίσης να χρησιμοποιηθεί για εύκολη είσοδο στο δίκτυο.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Ενεργοποίηση αποκωδικοποίησης υλικού", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", "ErrorAddingJellyfinConnectAccount1": "Παρουσιάστηκε σφάλμα κατά την προσθήκη του λογαριασμού Jellyfin Connect. Έχετε δημιουργήσει ένα λογαριασμό Jellyfin; Μπορείτε να εγγραφείτε στο {0}.", "ErrorAddingJellyfinConnectAccount2": "Αν εξακολουθείτε να αντιμετωπίζετε πρόβλημα, παρακαλώ στείλτε ένα email στο {0}.", "ErrorAddingJellyfinConnectAccount3": "Ο λογαριασμός Jellyfin είναι ήδη συνδεδεμένος με έναν υπάρχοντα τοπικό χρήστη. Ένας λογαριασμός Jellyfin μπορεί να συνδεθεί μόνο με έναν τοπικό χρήστη κάθε φορά.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "ErrorAddingMediaPathToVirtualFolder": "Παρουσιάστηκε σφάλμα κατά την προσθήκη της διαδρομής πολυμέσων. Βεβαιωθείτε ότι η διαδρομή είναι έγκυρη και ότι η διαδικασία του διακομιστή Jellyfin έχει πρόσβαση σε αυτήν τη θέση.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", "ErrorMessageEmailInUse": "Η διεύθυνση ηλεκτρονικού ταχυδρομείου είναι ήδη σε χρήση. Πληκτρολογήστε μια νέα διεύθυνση ηλεκτρονικού ταχυδρομείου και προσπαθήστε ξανά ή χρησιμοποιήστε τη δυνατότητα \"Ξέχασα τον κωδικό πρόσβασης\".", "ErrorMessagePasswordNotMatchConfirm": "Ο κωδικός πρόσβασης και η επιβεβαίωση κωδικού πρόσβασης πρέπει να ταιριάζουν.", "ErrorMessageStartHourGreaterThanEnd": "Η ώρα λήξης πρέπει να είναι μεγαλύτερη από την ώρα έναρξης.", "ErrorMessageUsernameInUse": "Το όνομα χρήστη είναι ήδη σε χρήση. Επιλέξτε ένα νέο όνομα και προσπαθήστε ξανά.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorReachingJellyfinConnect": "Παρουσιάστηκε ένα σφάλμα στο διακομιστή Jellyfin Connect. Βεβαιωθείτε ότι έχετε μια ενεργή σύνδεση στο Internet και προσπαθήστε ξανά.", "ErrorRemovingJellyfinConnectAccount": "Παρουσιάστηκε σφάλμα κατά την κατάργηση του λογαριασμού Jellyfin Connect. Βεβαιωθείτε ότι έχετε ενεργή σύνδεση στο internet και προσπαθήστε ξανά.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", "EveryNDays": "Κάθε {0} μέρες", "ExitFullscreen": "Έξοδος από τη πλήρη οθόνη", "ExtractChapterImagesHelp": "Η εξαγωγή των εικόνων κεφαλαίων θα επιτρέψει στις εφαρμογές Jellyfin να εμφανίζουν μενού επιλογών γραφικών σκηνών. Η διαδικασία μπορεί να είναι αργή, CPU-εντατική και μπορεί να απαιτήσει αρκετά gigabytes του χώρου. Τρέχει όταν ανακαλύπτονται βίντεο, αλλά και ως προγραμματισμένη νυχτερινή εργασία. Το πρόγραμμα μπορεί να ρυθμιστεί στην περιοχή προγραμματισμένων εργασιών. Δεν συνιστάται η εκτέλεση αυτής της εργασίας κατά τις ώρες αιχμής χρήσης.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "FastForward": "Γρήγορη αναπαραγωγή", "FeatureRequiresJellyfinPremiere": "Ξεκλειδώστε αυτό το χαρακτηριστικό με μία ενεργή συνδρομή στο Jellyfin Premiere.", "FileNotFound": "Το αρχείο δεν βρέθηκε", @@ -228,7 +189,6 @@ "FileReadError": "Παρουσιάστηκε σφάλμα κατά την ανάγνωση του αρχείου", "FolderTypeBooks": "Βιβλία", "FolderTypeGames": "Παιχνίδια", - "FolderTypeInherit": "Inherit", "FolderTypeMixed": "Ανάμεικτο Περιεχόμενο", "FolderTypeMovies": "Ταινίες", "FolderTypeMusic": "Μουσική", @@ -236,18 +196,11 @@ "FolderTypePhotos": "Φωτογραφίες", "FolderTypeTvShows": "Τηλεόραση", "FolderTypeUnset": "Αναίρεση (μικτό περιεχόμενο)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "ΠΛΗΡΗΣ ΟΘΟΝΗ", "General": "Γενικά", "GuestUserNotFound": "Ο χρήστης δεν βρέθηκε. Βεβαιωθείτε ότι το όνομα είναι σωστό και προσπαθήστε ξανά ή δοκιμάστε να εισαγάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου τους.", "GuideProviderLogin": "Σύνδεση", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "Η ενεργοποίηση της επιτάχυνσης υλικού ενδέχεται να προκαλέσει αστάθεια σε ορισμένα περιβάλλοντα. Βεβαιωθείτε ότι το λειτουργικό σας σύστημα και τα προγράμματα οδήγησης βίντεο είναι πλήρως ενημερωμένα. Αν δυσκολεύεστε να αναπαραγάγετε βίντεο μετά την ενεργοποίηση αυτής της ρύθμισης, θα πρέπει να αλλάξετε τη ρύθμιση ξανά σε αυτόματη.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "Ενεργές Συσκευές", "HeaderActiveRecordings": "Ενεργές εγγραφές", "HeaderActivity": "Δραστηριότητα", @@ -262,14 +215,12 @@ "HeaderAdmin": "Διαχειριστής", "HeaderAdvanced": "Για προχωρημένους", "HeaderAirDays": "Ημέρες Προβολής:", - "HeaderAlbums": "Albums", "HeaderAlert": "Ειδοποίηση", "HeaderAllRecordings": "Όλες οι Εγγραφές", "HeaderAllowMediaDeletionFrom": "Να επιτρέπεται η διαγραφή πολυμέσων από", "HeaderApiKey": "Κλειδί Api", "HeaderApiKeys": "Κλειδιά Api", "HeaderApiKeysHelp": "Οι εξωτερικές εφαρμογές πρέπει να διαθέτουν ένα κλειδί Api προκειμένου να επικοινωνούν με τον Jellyfin Server. Τα κλειδιά εκδίδονται με σύνδεση με λογαριασμό Jellyfin ή με χειροκίνητη χορήγηση της εφαρμογής κλειδιού.", - "HeaderApp": "App", "HeaderAudio": "Ήχος", "HeaderAudioSettings": "Ρυθμίσεις Ήχου", "HeaderAudioTracks": "Ηχητικά κομμάτια", @@ -280,7 +231,6 @@ "HeaderBecomeProjectSupporter": "Αποκτήστε Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Αποκλεισμός στοιχείων χωρίς ή μη αναγνωρισμένων πληροφοριών αξιολόγησης:", "HeaderBooks": "Βιβλία", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Προσαρμόστε την εμφάνιση του Jellyfin ώστε να ταιριάζει στις ανάγκες της ομάδας ή του οργανισμού σας.", "HeaderCameraUpload": "Μεταφορτώσεις Κάμερας", "HeaderCameraUploadHelp": "Οι εφαρμογές Jellyfin μπορούν αυτόματα να κάνουν upload τις φωτογραφίες που λαμβάνονται από τις κινητές συσκευές σας στον διακομιστή Jellyfin.", @@ -289,14 +239,10 @@ "HeaderCastCrew": "Ηθοποιοί και συνεργείο", "HeaderChangeFolderType": "Αλλαγή τύπου περιεχομένου", "HeaderChangeFolderTypeHelp": "Για να αλλάξετε τον τύπο, καταργήστε και δημιουργήστε ξανά τη βιβλιοθήκη με το νέο τύπο.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Κανάλια", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Κεφάλαια", "HeaderCinemaMode": "Λειτουργία Κινηματογράφου", "HeaderClients": "Πελάτες", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", "HeaderCodecProfileHelp": "Τα προφίλ κωδικοποιητή υποδεικνύουν τους περιορισμούς μιας συσκευής κατά την αναπαραγωγή συγκεκριμένων κωδικοποιητών. Εάν ισχύει περιορισμός, τότε τα μέσα θα κωδικοποιηθούν, ακόμα και αν ο κωδικοποιητής έχει ρυθμιστεί για άμεση αναπαραγωγή.", "HeaderCollections": "Συλλογές", "HeaderColumns": "Στήλες", @@ -311,9 +257,7 @@ "HeaderConfirmRevokeApiKey": "Ανακαλέστε το κλειδί Api", "HeaderConfirmSeriesCancellation": "Επιβεβαιώστε την ακύρωση Σειράς", "HeaderConfirmation": "Επιβεβαίωση", - "HeaderConnectToServer": "Connect to Server", "HeaderConnectionFailure": "Αποτυχία σύνδεσης", - "HeaderContainerProfile": "Container Profile", "HeaderContainerProfileHelp": "Τα προφίλ κοντέινερ υποδεικνύουν τους περιορισμούς μιας συσκευής κατά την αναπαραγωγή συγκεκριμένων μορφών. Εάν ισχύει περιορισμός, τότε τα μέσα θα κωδικοποιηθούν, ακόμα και αν η μορφή έχει ρυθμιστεί για άμεση αναπαραγωγή.", "HeaderContinueWatching": "Συνεχίστε την παρακολούθηση", "HeaderCreatePassword": "Δημιουργία κωδικού πρόσβασης ", @@ -327,8 +271,6 @@ "HeaderDeleteDevice": "Διαγραφή συσκευής", "HeaderDeleteImage": "Διαγραφή εικόνας", "HeaderDeleteItem": "Διαγραφή Αντικειμένου", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Διαδρομή", "HeaderDetails": "Λεπτομέριες", "HeaderDetectMyDevices": "Εντοπισμός των συσκευών μου", @@ -341,12 +283,10 @@ "HeaderDisplay": "Εμφάνιση", "HeaderDisplaySettings": "Ρυθμίσεις Εμφάνισης", "HeaderDownloadSubtitlesFor": "Κατεβάστε υπότιτλους για:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Κωδικός PIN", "HeaderEmbeddedImage": "Ενσωματωμένη εικόνα", "HeaderEpisodes": "Επεισόδια", "HeaderError": "Σφάλμα", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Εξωτερικός player αναπαραγωγή", "HeaderExternalServices": "Εξωτερικές υπηρεσίες", "HeaderFavoriteAlbums": "Αγαπημένα Άλμπουμ", @@ -360,7 +300,6 @@ "HeaderFeatureAccess": "Πρόσβαση χαρακτηριστικών", "HeaderFeatures": "Χαρακτηριστικά", "HeaderFetchImages": "Λήψη εικόνων:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Φίλτρα", "HeaderForKids": "Για τα Παιδιά", "HeaderForgotKey": "Ξεχάσατε τον κωδικό", @@ -370,15 +309,11 @@ "HeaderGames": "Παιχνίδια", "HeaderGenres": "Είδη", "HeaderGuests": "Επισκέπτες", - "HeaderGuideProviders": "TV Guide Data Providers", "HeaderHomePage": "Αρχική Σελίδα", "HeaderHomeScreenSettings": "Ρυθμίσεις αρχικής οθόνης", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", "HeaderIdentificationCriteriaHelp": "Καταχωρήστε τουλάχιστον ένα κριτήριο αναγνώρισης.", "HeaderIdentificationHeader": "Αναγνωριστικό Header", "HeaderImageBackdrop": "Φόντο", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Επιλογές Εικόνας", "HeaderImagePrimary": "Πρωτεύον", "HeaderImageSettings": "Ρυθμίσεις Εικόνας", @@ -395,12 +330,9 @@ "HeaderJellyfinAccountAdded": "Προστέθηκε Λογαριασμός Jellyfin", "HeaderJellyfinAccountRemoved": "Ο λογαριασμός Jellyfin καταργήθηκε", "HeaderJellyfinServer": "Διακομιστής Jellyfin", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Γλώσσα", "HeaderLatestAlbums": "Τελευταία Άλμπουμ", "HeaderLatestChannelItems": "Τελευταία στοιχεία καναλιού", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Τελευταία επεισόδια", "HeaderLatestFromChannel": "Τελευταία από {0}", "HeaderLatestItems": "Τελευταία Στοιχεία", @@ -419,7 +351,6 @@ "HeaderLinks": "Σύνδεσμοι", "HeaderLiveTV": "ΖΩΝΤΑΝΗ ΤΗΛΕΟΡΑΣΗ", "HeaderLiveTv": "ΖΩΝΤΑΝΗ ΤΗΛΕΩΡΑΣΗ", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "Αποτυχία εισόδου", "HeaderManagement": "Διαχείριση", "HeaderMedia": "Πολυμέσα", @@ -427,12 +358,10 @@ "HeaderMediaInfo": "Πληροφορίες πολυμέσων", "HeaderMediaLocations": "Τοποθεσίες πολυμέσων", "HeaderMenu": "Μενού", - "HeaderMissing": "Missing", "HeaderMoreLikeThis": "Περισσότερα Σαν Αυτό", "HeaderMovies": "Ταινίες", "HeaderMusicVideos": "Βίντεο Μουσικής", "HeaderMyMedia": "Τα Πολυμέσα μου", - "HeaderMyViews": "My Views", "HeaderName": "Όνομα", "HeaderNavigation": "Πλοήγηση", "HeaderNetwork": "Δίκτυο", @@ -445,13 +374,9 @@ "HeaderNotifications": "Ειδοποιήσεις", "HeaderNowPlaying": "Τώρα Παίζει:", "HeaderNumberOfPlayers": "Players:", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", "HeaderOnNow": "Παίζει Τώρα", "HeaderOptions": "Επιλογές", - "HeaderOtherDisplaySettings": "Display Settings", "HeaderOtherItems": "Άλλα Στοιχεία", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", "HeaderParentalRatings": "Καταλληλότητα", "HeaderPassword": "Κωδικός", @@ -459,10 +384,7 @@ "HeaderPaths": "Διαδρομή", "HeaderPendingInstallations": "Εκκρεμείς Εγκαταστάσεις", "HeaderPendingInvitations": "Εκκρεμείς προσκλήσεις", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Τύπος Προσώπου:", - "HeaderPhotoInfo": "Photo Info", "HeaderPinCodeReset": "Επαναφορά Pin Code", "HeaderPlayAll": "Αναπαραγωγή Όλων", "HeaderPlayback": "Αναπαραγωγή πολυμέσων", @@ -478,16 +400,12 @@ "HeaderRecentActivity": "Πρόσφατη Δραστηριότητα", "HeaderRecentlyPlayed": "Έγινε πρόσφατα Αναπαραγωγή", "HeaderRecordingGroups": "Ομάδες καταγραφής", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Τηλεχειριστήριο", - "HeaderRemoveMediaFolder": "Remove Media Folder", "HeaderRemoveMediaLocation": "Κατάργηση θέσης πολυμέσων", "HeaderRequireManualLogin": "Απαιτείται μη αυτόματη καταχώρηση ονόματος χρήστη για:", "HeaderRequireManualLoginHelp": "Όταν απενεργοποιηθούν, οι εφαρμογές Jellyfin ενδέχεται να παρουσιάσουν μια οθόνη σύνδεσης με μια οπτική επιλογή χρηστών.", "HeaderResetTuner": "Επαναφορά δέκτη", "HeaderResolution": "Ανάλυση", - "HeaderResponseProfile": "Response Profile", "HeaderResponseProfileHelp": "Τα προφίλ απόκρισης παρέχουν έναν τρόπο προσαρμογής των πληροφοριών που αποστέλλονται στη συσκευή κατά την αναπαραγωγή συγκεκριμένων μέσων.", "HeaderRestart": "Επανεκκίνηση", "HeaderResult": "Αποτέλεσμα", @@ -496,7 +414,6 @@ "HeaderReviews": "Κριτικές", "HeaderRevisionHistory": "Ιστορικό αναθεωρήσεων", "HeaderRunningTasks": "Προγραμματισμένες Εργασίες", - "HeaderRuntime": "Runtime", "HeaderScenes": "Σκηνές", "HeaderSchedule": "Πρόγραμμα", "HeaderScreenSavers": "Προφυλάξεις οθόνης", @@ -505,24 +422,12 @@ "HeaderSeasonNumber": "Αριθμός κύκλου", "HeaderSeasons": "Κύκλοι", "HeaderSelectAudio": "Επιλογή Ήχου", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", "HeaderSelectCustomIntrosPath": "Επιλέξτε Προσαρμοσμένη εισαγόμενη διαδρομή", "HeaderSelectDate": "Επιλέξτε Ημερομηνία", "HeaderSelectDevices": "Επιλογή συσκευών", "HeaderSelectExternalPlayer": "Επιλογή εξωτερικού Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", "HeaderSelectServer": "Επιλογή Διακομιστή", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectSubtitles": "Επιλογή Υποτίτλων", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Αποστολή Μηνύματος", "HeaderSeries": "Series:", "HeaderSeriesRecordings": "Εγγραφές Σειρών", @@ -539,10 +444,7 @@ "HeaderSource": "Πηγή", "HeaderSpecialEpisodeInfo": "Ειδικές πληροφορίες επεισοδίου", "HeaderSpecialFeatures": "Πρόσθετες Σκηνές", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Κατάσταση", - "HeaderStudios": "Studios", "HeaderSubtitleDownloads": "Λήψεις Υπότοιτλου", "HeaderSubtitleProfile": "Προφίλ Υπότιτλων", "HeaderSubtitleProfiles": "Προφίλ Υπότιτλων", @@ -563,28 +465,19 @@ "HeaderTime": "Ώρα:", "HeaderToAccessPleaseEnterEasyPinCode": "Για πρόσβαση, παρακαλώ δώστε τον κωδικό σας", "HeaderTopPlugins": "Κορυφαία Πρόσθετα", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", "HeaderTranscodingProfileHelp": "Προσθέστε προφίλ αποκωδικοποίησης για να δηλώσετε ποιες μορφές θα πρέπει να χρησιμοποιηθούν όταν απαιτείται μετασύνδεση.", "HeaderTunerDevices": "Συσκευές δεκτών", "HeaderTuners": "Δέκτες", "HeaderTvTuners": "Συντονιστές", "HeaderType": "Τύπος", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Εισαγωγή κειμένου", - "HeaderUnaired": "Unaired", "HeaderUnknownDate": "Άγνωστη γλώσσα", "HeaderUnknownYear": "Άγνωστη χρονιά ", "HeaderUnrated": "Χωρίς Βαθμολογία", "HeaderUpcomingEpisodes": "Επερχόμενα επεισόδια", "HeaderUpcomingNews": "Επερχόμενα Νέα", "HeaderUpcomingOnTV": "Επερχόμενα στην τηλεόραση", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Ανεβάστε νέα εικόνα", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Χρήστες ", "HeaderVideo": "Βίντεο", "HeaderVideoTypes": "Τύποι Βίντεο", @@ -600,16 +493,13 @@ "HeadersFolders": "Φάκελοι:", "HowToConnectFromJellyfinApps": "Πώς να συνδεθείτε από τις εφαρμογές Jellyfin", "HowWouldYouLikeToAddUser": "Πώς θα θέλατε να προσθέσετε ένα χρήστη;", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Προτεινόμενο 1:1 Aspect Ratio. JPG/PNG μόνο", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ImportMissingEpisodesHelp": "Εάν είναι ενεργοποιημένη, οι πληροφορίες σχετικά με τα επεισόδια που λείπουν θα εισαχθούν στη βάση δεδομένων σας Jellyfin και θα εμφανιστούν σε εποχές και σειρές. Αυτό μπορεί να προκαλέσει σημαντικά μεγαλύτερες σαρώσεις βιβλιοθήκης.", "Invitations": "Προσκλήσεις", "InviteAnJellyfinConnectUser": "Προσθήκη χρήστη στέλνοντας πρόσκληση με email.", "JellyfinIntroDownloadMessage": "Για να κατεβάσετε και να εγκαταστήσετε το δωρεάν διακομιστή Jellyfin επισκεφθείτε {0}.", "JellyfinIntroDownloadMessageWithoutLink": "Για να κατεβάσετε και να εγκαταστήσετε το δωρεάν διακομιστή Jellyfin επισκεφθείτε την ιστοσελίδα Jellyfin.", "JellyfinIntroMessage": "Με το Jellyfin μπορείτε εύκολα να προβάλλετε βίντεο, μουσική και φωτογραφίες σε έξυπνα τηλέφωνα, tablet και άλλες συσκευές από τον διακομιστή σας Jellyfin.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", "LabelAccessDay": "Ημέρα της εβδομάδας:", "LabelAccessEnd": "Ώρα λήξης:", "LabelAccessStart": "Ώρα έναρξης:", @@ -626,15 +516,10 @@ "LabelAlbumArtMaxWidth": "Μέγιστο πλάτος του άλμπουμ art:", "LabelAlbumArtMaxWidthHelp": "Μέγιστη ανάλυση του άλμπουμ art που εκτίθεται μέσω του upnp: albumArtURI.", "LabelAlbumArtPN": "PN άλμπουμ art:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", "LabelAll": "Όλα", "LabelAllLanguages": "Όλες οι γλώσσες", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Αυτόματη επανεκκίνηση του σέρβερ για να εγκαταστήσει τις αναβαθμίσεις", "LabelAllowServerAutoRestartHelp": "Ο server θα κάνει επανεκκίνηση μόνο κατά τη διάρκεια αδρανών περιόδων, όταν δεν υπάρχουν ενεργοί χρήστες.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Ανά πάσα στιγμή", "LabelAppName": "Όνομα App", "LabelAppNameExample": "Παράδειγμα: Sickbeard, NzbDrone", @@ -645,18 +530,12 @@ "LabelAudioLanguagePreference": "Προτίμηση Γλώσσας Ήχου", "LabelAutomaticallyRefreshInternetMetadataEvery": "Αυτόματη ανανέωση μεταδεδομένων από το internet:", "LabelAvailableTokens": "Διαθέσιμα διακριτικά:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelBlockContentWithTags": "Αποκλεισμός στοιχείων με ετικέτες:", "LabelCache": "Προσωρινή αποθήκευση", "LabelCachePath": "Διαδρομή προσωρ. αποθ.:", "LabelCachePathHelp": "Καθορίστε μια προσαρμοσμένη τοποθεσία για αρχεία προσωρινής μνήμης διακομιστή, όπως εικόνες. Αφήστε κενό για να χρησιμοποιήσετε την προεπιλογή του διακομιστή.", "LabelCameraUploadPath": "Διαδρομή upload Κάμερας:", "LabelCameraUploadPathHelp": "Επιλέξτε μια προσαρμοσμένη διαδρομή αποστολής. Αυτό θα αντικαταστήσει τις προεπιλεγμένες ρυθμίσεις που έχουν οριστεί στην ενότητα Αποστολή Κάμερας. Εάν μείνει κενό, θα χρησιμοποιηθεί ένας προεπιλεγμένος φάκελος. Εάν χρησιμοποιείτε μια προσαρμοσμένη διαδρομή, θα πρέπει επίσης να προστεθεί ως βιβλιοθήκη στη ρύθμιση βιβλιοθήκης Jellyfin.", - "LabelCancelled": "Cancelled", "LabelCertificatePassword": "Κωδικός πρόσβασης πιστοποιητικού:", "LabelCertificatePasswordHelp": "Εάν το πιστοποιητικό σας απαιτεί κωδικό πρόσβασης, πληκτρολογήστε τον εδώ.", "LabelChannelStreamQuality": "Προτιμώμενη ποιότητα καναλιού διαδικτύου:", @@ -672,27 +551,20 @@ "LabelConnectGuestUserNameHelp": "Αυτό είναι το όνομα χρήστη που χρησιμοποιεί ο φίλος σας για να εισέλθει στην ιστοσελίδα του Jellyfin ή η διεύθυνση ηλεκτρονικού ταχυδρομείου του.", "LabelContentType": "Τύπος αρχείων:", "LabelContentTypeValue": "Τύπος αρχείων:{0}", - "LabelContext": "Context:", "LabelConversionCpuCoreLimit": "Βασικό όριο CPU:", "LabelConversionCpuCoreLimitHelp": "Περιορίστε τον αριθμό των πυρήνων CPU που θα χρησιμοποιηθούν κατά τη μετατροπή συγχρονισμού.", "LabelConvertRecordingsTo": "Μετατροπή εγγραφών σε:", "LabelCountry": "Χώρα", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Τρέχοντας κωδικός πρόσβασης", - "LabelCurrentPath": "Current path:", "LabelCustomCertificatePath": "Προσαρμοσμένη διαδρομή πιστοποιητικού SSL", "LabelCustomCertificatePathHelp": "Προσθέστε το δικό σας αρχείο .pfx πιστοποιητικού ssl.", "LabelCustomCss": "Προσαρμοσμένο css:", "LabelCustomCssHelp": "Εφαρμόστε το δικό σας προσαρμοσμένο css στην διεπαφή ιστού.", "LabelCustomDeviceDisplayName": "Εμφάνιση ονόματος:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", "LabelCustomIntrosPath": "Προσαρμοσμένη διαδρομή intros:", "LabelCustomIntrosPathHelp": "Ένας φάκελος που περιέχει αρχεία βίντεο. Ένα βίντεο θα επιλεχθεί τυχαία και θα αναπαράγεται μετά από τα τρείλερ.", "LabelCustomizeOptionsPerMediaType": "Προσαρμογή για τύπο πολυμέσου:", "LabelDataProvider": "Πάροχος Δεδομένων:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelDateOfBirth": "Ημερομηνία γέννησης:", "LabelDay": "Ημέρα:", "LabelDeathDate": "Ημερομηνία θανάτου:", @@ -702,7 +574,6 @@ "LabelDefaultUserHelp": "Καθορίζει ποια βιβλιοθήκη χρηστών πρέπει να εμφανίζεται σε συνδεδεμένες συσκευές. Αυτό μπορεί να αντικατασταθεί για κάθε συσκευή που χρησιμοποιεί προφίλ.", "LabelDeinterlacingMethod": "Μέθοδος αποεπένδυσης:", "LabelDeviceDescription": "Περιγραφή Συσκευής", - "LabelDidlMode": "Didl mode:", "LabelDisabled": "Απενεργοποιημένο", "LabelDisplayCollectionsView": "Εμφάνιση μιας προβολής συλλογών για την εμφάνιση συλλογών ταινιών", "LabelDisplayCollectionsViewHelp": "Αυτό θα δημιουργήσει μια ξεχωριστή προβολή για την εμφάνιση συλλογών ταινιών. Για να δημιουργήσετε μια συλλογή, κάντε δεξί κλικ ή πατήστε-κρατήστε οποιαδήποτε ταινία και επιλέξτε ' Προσθήκη στη συλλογή '. ", @@ -710,16 +581,13 @@ "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Αυτό πρέπει επίσης να είναι ενεργοποιημένο για τις βιβλιοθήκες τηλεόρασης στην εγκατάσταση του Jellyfin Server.", "LabelDisplayName": "Εμφάνιση ονόματος:", "LabelDisplayPluginsFor": "Εμφάνιση plugins για:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", "LabelDownMixAudioScale": "Ενίσχυση ήχου όταν πραγματοποιείται downmixing:", "LabelDownMixAudioScaleHelp": "Ενίσχυση ήχου όταν πραγματοποιείται downmixing. Επιλέξτε 1 για την διατήρηση της αρχικής τιμής έντασης.", "LabelDownloadInternetMetadata": "Κατεβάστε εξώφυλλα και πληροφορίες από το internet ", "LabelDownloadInternetMetadataHelp": "Ο Jellyfin Server μπορεί να κατεβάσει πληροφορίες σχετικά με τα πολυμέσα σας για να ενεργοποιήσει τις πλούσιες παρουσιάσεις.", "LabelDownloadLanguages": "Λήψη γλωσσών:", "LabelDropImageHere": "Μεταφορά τις εικόνας εδώ.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Εύκολος κωδικός PIN:", - "LabelEmail": "Email:", "LabelEmailAddress": "Ηλεκτρονικό Ταχυδρομείο", "LabelEmbedAlbumArtDidl": "Ενσωμάτωση του άλμπουμ art στο Didl", "LabelEmbedAlbumArtDidlHelp": "Ορισμένες συσκευές προτιμούν αυτή τη μέθοδο για να αποκτήσουν τέχνη άλμπουμ. Άλλοι ενδέχεται να αποτύχουν να παίξουν με αυτήν την επιλογή ενεργοποιημένη.", @@ -747,7 +615,6 @@ "LabelEnableSingleImageInDidlLimit": "Περιορισμός σε ενιαία ενσωματωμένη εικόνα", "LabelEnableSingleImageInDidlLimitHelp": "Ορισμένες συσκευές δεν θα εκτυπωθούν σωστά αν ενσωματωθούν πολλές εικόνες μέσα στο Didl.", "LabelEnableThisTuner": "Ενεργοποίηση αυτού του δέκτη", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", "LabelEnabled": "Ενεργοποιημένο", "LabelEndDate": "Ημ/νία λήξης:", "LabelEndingEpisodeNumber": "Τερματισμός αριθμού επεισοδίου:", @@ -764,7 +631,6 @@ "LabelFailed": "Αποτυχία", "LabelFanartApiKey": "Προσωπικό κλειδί api :", "LabelFanartApiKeyHelp": "Τα αιτήματα για προβολή χωρίς προσωπικό κλειδί API επιστρέφουν εικόνες που εγκρίθηκαν πριν από 7 ημέρες. Με ένα προσωπικό κλειδί API που πέφτει σε 48 ώρες και αν είστε επίσης fanart μέλος VIP που θα μειωθεί περαιτέρω σε περίπου 10 λεπτά.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Τέλος", "LabelFolder": "Φάκελος:", "LabelFolderType": "Τύπος φακέλου:", @@ -775,11 +641,8 @@ "LabelFriendlyName": "Φιλικό όνομα", "LabelFriendlyServerName": "Όνομα διακομιστή:", "LabelFriendlyServerNameHelp": "Αυτό το όνομα θα χρησιμοποιηθεί για την αναγνώριση αυτού του διακομιστή. Αν παραμείνει κενό, θα χρησιμοποιηθεί το όνομα του υπολογιστή.", - "LabelFromHelp": "Example: {0} (on the server)", "LabelGroupMoviesIntoCollections": "Ομαδοποιήστε ταινίες σε συλλογές", "LabelGroupMoviesIntoCollectionsHelp": "Όταν προβάλλετε λίστες ταινιών, οι ταινίες που ανήκουν σε μια συλλογή θα εμφανίζονται ως ένα ομαδοποιημένο αντικείμενο.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", "LabelHardwareAccelerationType": "Επιτάχυνση υλικού:", "LabelHardwareAccelerationTypeHelp": "Διατίθεται μόνο σε υποστηριζόμενα συστήματα.", "LabelHttpsPort": "Τοπικός αριθμός θύρας http:", @@ -788,46 +651,29 @@ "LabelIconMaxHeightHelp": "Μέγιστη ανάλυση των εικονιδίων που εκτίθενται μέσω του στοιχείου upnp: εικονίδιο.", "LabelIconMaxWidth": "Μέγιστο πλάτος εικονιδίου:", "LabelIconMaxWidthHelp": "Μέγιστη ανάλυση των εικονιδίων που εκτίθενται μέσω του στοιχείου upnp: εικονίδιο.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", "LabelImage": "Εικόνα:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Τύπος Εικόνας:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", "LabelInNetworkSignInWithEasyPassword": "Ενεργοποίηση εισόδου στο δίκτυο με τον εύκολο κωδικό PIN", "LabelInNetworkSignInWithEasyPasswordHelp": "Εάν ενεργοποιηθεί, θα μπορείτε να χρησιμοποιείται τον εύκολο κωδικό PIN για να συνδεθείτε στις εφαρμογές Jellyfin μέσα από το οικιακό σας δίκτυο. Ο κανονικός κωδικός πρόσβασής σας θα απαιτείται μόνο μακριά από το σπίτι. Εάν ο κωδικός PIN παραμείνει κενός, δεν θα χρειαστείτε κωδικό πρόσβασης στο οικιακό σας δίκτυο.", "LabelIpAddressValue": "Διεύθυνση IP: {0}", "LabelJpgPngOnly": "JPG/PNG μόνο", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "LabelKodiMetadataEnablePathSubstitution": "Ενεργοποίηση υποκατάστασης διαδρομής", "LabelKodiMetadataEnablePathSubstitutionHelp": "Επιτρέπει την αντικατάσταση μονοπατιών των διαδρομών εικόνων χρησιμοποιώντας τις ρυθμίσεις υποκατάστασης διαδρομής του διακομιστή.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", "LabelKodiMetadataSaveImagePathsHelp": "Αυτό συνιστάται εάν έχετε ονόματα αρχείων εικόνας που δεν συμμορφώνονται με τις οδηγίες Kodi.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", "LabelLanNetworks": "Δίκτυα LAN:", "LabelLanguage": "Γλώσσα:", "LabelLastResult": "Τελευταίο αποτέλεσμα:", "LabelLimit": "Όριο:", "LabelLimitIntrosToUnwatchedContent": "Αναπαραγωγή τρέιλερ μόνο από μη αναπαραχθέντα στοιχεία", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Τοπικός αριθμός θύρας http:", "LabelLocalHttpServerPortNumberHelp": "Ο αριθμός θύρας tcp που πρέπει να συνδέσει ο διακομιστής http του Jellyfin.", "LabelLocalSyncStatusValue": "Κατάσταση: {0}", "LabelLoginDisclaimer": "Αποποίηση ευθυνών:", "LabelLoginDisclaimerHelp": "Αυτό θα εμφανιστεί στο κάτω μέρος της σελίδας σύνδεσης.", - "LabelLogs": "Logs:", "LabelManufacturer": "Κατασκευαστής", "LabelManufacturerUrl": "Σύνδεσμος Κατασκευαστή", "LabelMarkAs": "Σημείωσε ως:", "LabelMatchType": "Τύπος αντιστοίχησης:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Μέγιστος αριθμός σκηνικών ανά στοιχείο:", "LabelMaxBitrate": "Μέγιστο bitrate:", "LabelMaxBitrateHelp": "Καθορίστε ένα μέγιστο bitrate σε περιβάλλοντα περιορισμένου εύρους ζώνης ή εάν η συσκευή επιβάλλει δικό της όριο.", @@ -841,14 +687,8 @@ "LabelMessageTitle": "Τίτλος Μηνύματος:", "LabelMetadata": "Μεταδεδομένα:", "LabelMetadataDownloadLanguage": "Προτιμώμενη γλώσσα μεταδεδομένων:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Διαδρομή μεταδεδομένων:", "LabelMetadataPathHelp": "Καθορίστε μια προσαρμοσμένη τοποθεσία για τα αρχεία και τα μεταδεδομένα που έχετε λάβει.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", "LabelMethod": "Μέθοδος:", "LabelMinBackdropDownloadWidth": "Ελάχιστο πλάτος λήψης φόντου:", "LabelMinResumeDuration": "Ελάχιστη διάρκεια συνέχισης (δευτερόλεπτα):", @@ -865,7 +705,6 @@ "LabelMovie": "Ταινία", "LabelMovieCategories": "Κατηγορίες ταινιών:", "LabelMoviePrefix": "Πρόθεμα ταινίας:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Διαδρομή εγγραφής (προαιρετικό):", "LabelMusicStaticBitrate": "Bitrate συγχρονισμού μουσικής:", "LabelMusicStaticBitrateHelp": "Καθορίστε ένα μέγιστο bitrate κατά τη ροή.", @@ -888,10 +727,6 @@ "LabelNumberTrailerToPlay": "Αριθμός τρέϊλερ για αναπαραγωγή:", "LabelOpenSubtitlesPassword": "Open Subtitles κωδικός πρόσβασης:", "LabelOpenSubtitlesUsername": "Open Subtitles όνομα χρήστη:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Κωδικός:", "LabelPasswordConfirm": "Κωδικός πρόσβασης (επιβεβαίωση):", "LabelPasswordRecoveryPinCode": "Κωδικός PIN:", @@ -899,24 +734,13 @@ "LabelPinCode": "Κωδικός PIN:", "LabelPlayDefaultAudioTrack": "Αναπαραγωγή προεπιλεγμένου κομματιού ήχου ανεξάρτητα από τη γλώσσα", "LabelPlayMethodDirectPlay": "Γίνεται Άμεση Αναπαραγωγή", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Προτιμώμενη γλώσσα εμφάνισης:", "LabelPreferredDisplayLanguageHelp": "Η μετάφραση του Jellyfin είναι ένα συνεχιζόμενο έργο.", "LabelPrevious": "Προηγούμενο", "LabelProfile": "Προφίλ:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Διαχωρίζονται με κόμμα. Αυτό μπορεί να μείνει κενό για να εφαρμοστεί σε όλα τα codecs.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Διαχωρίζονται με κόμμα. Αυτό μπορεί να μείνει κενό για να εφαρμοστεί σε όλα τα containers.", - "LabelProfileVideoCodecs": "Video codecs:", "LabelProtocol": "Πρωτόκολλο:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Δημόσιος αριθμός θύρας http:", "LabelPublicHttpPortHelp": "Ο αριθμός δημόσιας θύρας που πρέπει να αντιστοιχιστεί στην τοπική θύρα http.", "LabelPublicHttpsPort": "Αριθμός δημόσιας https θύρας:", @@ -926,22 +750,16 @@ "LabelRecordingPath": "Προεπιλεγμένη διαδρομή εγγραφής:", "LabelRecordingPathHelp": "Καθορίστε την προεπιλεγμένη θέση για αποθήκευση εγγραφών. Εάν αφεθεί κενό, θα χρησιμοποιηθεί ο φάκελος δεδομένων του προγράμματος του διακομιστή.", "LabelReleaseDate": "Ημερομηνία κυκλοφορίας:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "Όριο ταχύτητας ροής στο Διαδίκτυο (Mbps):", "LabelRemoteClientBitrateLimitHelp": "Ένα προαιρετικό όριο bitrate ανά δευτερόλεπτο για όλες τις συσκευές δικτύου. Αυτό είναι χρήσιμο για να αποτρέψετε τις συσκευές να ζητούν υψηλότερο bitrate από ό, τι μπορεί να χειριστεί η σύνδεσή σας στο διαδίκτυο. Αυτό μπορεί να έχει ως αποτέλεσμα αυξημένο φορτίο CPU στο διακομιστή σας, προκειμένου να μετατρέψετε τα βίντεο σε κίνηση σε χαμηλότερο bitrate.", "LabelReport": "Αναφορά:", "LabelResumePoint": "Σημείο επαναφοράς:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "LabelRunningTimeValue": "Διάρκεια: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Αποθηκεύσετε το εξώφυλλο και τις πληροφορίες στους φακέλους των αρχείων", "LabelSaveLocalMetadataHelp": "Αποθηκεύοντας το εξώφυλλο και τις πληροφορίες απευθείας στους φακέλους των αρχείων θα σας επιτρέψει την ευκολότερη επεξεργασία τους.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "Μοτίβο φακέλου Κύκλου:", "LabelSeasonNumber": "Αριθμός κύκλου", "LabelSeasonZeroFolderName": "Όνομα φακέλου για μηδενικό Κύκλο", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Τρέιλερ Internet", "LabelSelectUsers": "Επιλογή Χρηστών:", "LabelSelectVersionToInstall": "Επιλέξτε έκδοση για εγκατάσταση:", @@ -949,25 +767,18 @@ "LabelSerialNumber": "Σειριακός Αριθμός", "LabelSeries": "Σειρές:", "LabelSeriesRecordingPath": "Διαδρομή καταγραφής Σειρών (προαιρετικό):", - "LabelServerHost": "Host:", "LabelServerHostHelp": "192.168.1.100 ή https://myserver.com", "LabelServerPort": "Θύρα:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Παράλειψη εάν το προεπιλεγμένο ηχητικό κομμάτι ταιριάζει με τη γλώσσα λήψης", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", "LabelSkipIfGraphicalSubsPresent": "Παράλειψη εάν το βίντεο περιέχει ήδη ενσωματωμένους υπότιτλους", "LabelSkipIfGraphicalSubsPresentHelp": "Κρατώντας εκδόσεις κειμένου των υπότιτλων θα οδηγήσει σε πιο αποτελεσματική παράδοση και θα μειώσει την πιθανότητα της μετακωδικοποίησης βίντεο.", "LabelSkipped": "Παράλειψη", - "LabelSonyAggregationFlags": "Sony aggregation flags:", "LabelSonyAggregationFlagsHelp": "Καθορίζει το περιεχόμενο του στοιχείου aggregationFlags στο urn:schemas-sonycom:av namespace.", "LabelSource": "Πηγή:", "LabelSpecialSeasonsDisplayName": "Ειδικό εμφανιζόμενο όνομα σεζόν:", - "LabelSportsCategories": "Sports categories:", "LabelStartWhenPossible": "Έναρξη όταν είναι δυνατό:", "LabelStatus": "Κατάσταση:", "LabelStopWhenPossible": "Διακοπή όταν είναι δυνατόν:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Παράδειγμα: srt", "LabelSubtitleLanguagePreference": "Γλώσσα υπότιτλων προτίμησης", "LabelSubtitlePlaybackMode": "Λειτουργία υπότιτλων:", @@ -976,23 +787,17 @@ "LabelSyncTempPath": "Φάκελος προσωρινών αρχείων:", "LabelSyncTempPathHelp": "Καθορίστε ένα προσαρμοσμένο φάκελο εργασίας συγχρονισμού. Τα μετατρεπόμενα μέσα που δημιουργήθηκαν κατά τη διαδικασία συγχρονισμού θα αποθηκευτούν εδώ.", "LabelTag": "Ετικέτα:", - "LabelTheme": "Theme:", "LabelTime": "Ώρα:", "LabelTimeLimitHours": "Όριο χρόνου (ώρες):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Προσωρινός φάκελος Κωδικοποίησης ", "LabelTranscodingTempPathHelp": "Αυτός ο φάκελος περιέχει αρχεία εργασίας που χρησιμοποιούνται από τον μετασχηματιστή. Καθορίστε μια προσαρμοσμένη διαδρομή ή αφήστε κενό για να χρησιμοποιήσετε την προεπιλογή στο φάκελο δεδομένων του διακομιστή.", "LabelTranscodingTemporaryFiles": "Προσωρινός φάκελος Κωδικοποίησης ", - "LabelTranscodingThreadCount": "Transcoding thread count:", "LabelTranscodingThreadCountHelp": "Επιλέξτε τον μέγιστο αριθμό θεμάτων που θα χρησιμοποιήσετε κατά την αναδιαμόρφωση. Η μείωση του αριθμού των νημάτων θα μειώσει τη χρήση του επεξεργαστή, αλλά δεν μπορεί να μετατρέψει αρκετά γρήγορα για μια ομαλή αναπαραγωγή.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "Μέθοδος μεταφοράς", "LabelTriggerType": "Τύπος διακόπτη", "LabelTunerIpAddress": "Διεύθυνση IP του δέκτη:", "LabelTunerType": "Τύπος δέκτη:", "LabelType": "Τύπος:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Κείμενο", "LabelUnairedMissingEpisodesWithinSeasons": "Εμφάνιση επεισοδίων μέσα στις σαιζόν που δεν προβλήθηκαν", "LabelUnknownLanguage": "Άγνωστη γλώσσα", @@ -1000,13 +805,10 @@ "LabelUrl": "Σύνδεσμος:", "LabelUseNotificationServices": "Χρησιμοποιήστε τις ακόλουθες υπηρεσίες:", "LabelUser": "Χρήστης:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Βιβλιοθήκη χρήστη:", "LabelUserLibraryHelp": "Επιλέξτε τη βιβλιοθήκη χρήστη που θα εμφανίζεται στη συσκευή. Αφήστε κενό για να κληρονομήσετε την προεπιλεγμένη ρύθμιση.", "LabelUserRemoteClientBitrateLimitHelp": "Αυτό θα αντικαταστήσει την προκαθορισμένη καθολική τιμή που έχει οριστεί στις ρυθμίσεις αναπαραγωγής του διακομιστή.", "LabelUsername": "Όνομα Χρήστη", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", "LabelValue": "Τιμή:", "LabelVersionInstalled": "{0} εγκαταστήθηκε", "LabelVersionNumber": "Έκδοση {0}", @@ -1014,62 +816,38 @@ "LabelVideoCodec": "Βίντεο: {0}", "LabelVideoType": "Τύπος Βίντεο:", "LabelView": "Εμφάνιση:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Καθορίζει το περιεχόμενο του στοιχείου X_DLNACAP στο urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Καθορίζει το περιεχόμενο του στοιχείου X_DLNACAP στο urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Το όνομά σας:", "LabelYoureDone": "Είστε Έτοιμοι!", "LabelZipCode": "Ταχυδ/κός κώδικας:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Τελευταία {0}", "LearnHowToCreateSynologyShares": "Μάθετε πώς μπορείτε να κάνετε κοινή χρήση φακέλων στο Synology.", "LetterButtonAbbreviation": "Α", "LibraryAccessHelp": "Επιλέξτε τους φακέλους μέσων για να το μοιραστείτε με αυτόν το χρήστη. Οι διαχειριστές θα έχουν τη δυνατότητα να επεξεργάζεστε όλα φακέλους χρησιμοποιώντας τα μεταδεδομένα manager.", - "LinkApi": "Api", "LinkCommunity": "Κοινότητα", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Μάθετε για το Jellyfin Premiere", "LiveTvUpdateAvailable": "(Υπάρχει αναβάθμιση)", "LoginDisclaimer": "Το Jellyfin έχει σχεδιαστεί για να σας βοηθήσει να διαχειριστείτε την προσωπική σας βιβλιοθήκη πολυμέσων, όπως οικιακά βίντεο και φωτογραφίες. Παρακαλούμε δείτε τους όρους χρήσης. Η χρήση οποιουδήποτε Jellyfin λογισμικού αποτελεί αποδοχή των παρόντων όρων.", "ManageLibrary": "Διαχείριση βιβλιοθήκης", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Το περιεχόμενο με την υψηλότερη βαθμολογία θα είναι κρυμμένα από αυτόν τον χρήστη", "MediaInfoAltitude": "Υψόμετρο", "MediaInfoAnamorphic": "Αναμορφωτικός", "MediaInfoAperture": "Διάφραγμα", "MediaInfoAspectRatio": "Αρχικός λόγος διαστάσεων:", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Κανάλια", "MediaInfoCodec": "Κωδικοποιητής", "MediaInfoCodecTag": "Ετικέτα κωδικοποιητή", - "MediaInfoContainer": "Container", "MediaInfoDefault": "Προεπιλογή", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", "MediaInfoFile": "Αρχείο", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", "MediaInfoFormat": "Μορφή", "MediaInfoFramerate": "Ρυθμός καρέ", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Γλώσσα", "MediaInfoLatitude": "Γεωγραφικό πλάτος", "MediaInfoLayout": "Σχέδιο", "MediaInfoLevel": "Επίπεδο", "MediaInfoLongitude": "Γεωγραφικό μήκος", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "Διαδρομή", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "Προφίλ", "MediaInfoRefFrames": "Πλαίσια αναφοράς", "MediaInfoResolution": "Ανάλυση", @@ -1082,11 +860,8 @@ "MediaInfoStreamTypeEmbeddedImage": "Ενσωματωμένη εικόνα", "MediaInfoStreamTypeSubtitle": "Υπότιτλος", "MediaInfoStreamTypeVideo": "Βίντεο", - "MediaInfoTimestamp": "Timestamp", "MessageAlreadyInstalled": "Αυτή η έκδοση είναι ήδη εγκατεστημένη.\n", - "MessageApplicationUpdated": "Jellyfin Server has been updated", "MessageAreYouSureYouWishToRemoveMediaFolder": "Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτόν το φάκελο πολυμέσων;", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", "MessageConfirmDeleteTunerDevice": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη συσκευή;", "MessageConfirmProfileDeletion": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το προφίλ;", "MessageConfirmRemoveMediaLocation": "Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτήν τη θέση;", @@ -1098,12 +873,7 @@ "MessageConfirmSubCancel": "Όχι, παρακαλώ μην φεύγετε... Θα σας λείψουν όλα τα μεγάλα χαρακτηριστικά του Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "Για να προσκαλέσετε guests θα πρέπει πρώτα να συνδέσετε το λογαριασμό σας Jellyfin σε αυτόν το διακομιστή.", "MessageContactAdminToResetPassword": "Παρακαλώ επικοινωνήστε με το διαχειριστή του συστήματός σας για να επαναφέρετε τον κωδικό πρόσβασης.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", "MessageDestinationTo": "στο:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", "MessageEnablingOptionLongerScans": "Η ενεργοποίηση αυτής της επιλογής ενδέχεται να έχει ως αποτέλεσμα σημαντικά μεγαλύτερες σαρώσεις βιβλιοθήκης.", "MessageEnsureOpenTuner": "Βεβαιωθείτε ότι υπάρχει διαθέσιμος ανοικτός δέκτης.", "MessageErrorLoadingSupporterInfo": "Παρουσιάστηκε σφάλμα κατά τη φόρτωση των πληροφοριών Jellyfin Premiere. Παρακαλώ δοκιμάστε ξανά αργότερα.", @@ -1114,9 +884,7 @@ "MessageFileWillBeDeleted": "Το ακόλουθο αρχείο θα διαγραφεί:", "MessageFollowingFileWillBeMovedFrom": "Το ακόλουθο αρχείο θα μετακινηθεί από:", "MessageForgotPasswordFileCreated": "Το ακόλουθο αρχείο έχει δημιουργηθεί στο διακομιστή σας και περιέχει οδηγίες για το πώς να συνεχίσετε:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", "MessageForgotPasswordInNetworkRequired": "Παρακαλώ δοκιμάστε ξανά μέσα στο οικιακό σας δίκτυο για να ξεκινήσετε τη διαδικασία επαναφοράς κωδικού πρόσβασης.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageGuestSharingPermissionsHelp": "Οι περισσότερες λειτουργίες αρχικά δεν είναι διαθέσιμες στους επισκέπτες, αλλά μπορούν να ενεργοποιηθούν ανάλογα με τις ανάγκες.", "MessageInstallPluginFromApp": "Αυτό το πρόσθετο πρέπει να εγκατασταθεί την εφαρμογή που σκοπεύετε να χρησιμοποιήσετε.", "MessageInvalidForgotPasswordPin": "Καταχωρήθηκε ένα άκυρο ή ληγμένο PIN. Παρακαλώ προσπαθήστε ξανά.", @@ -1128,13 +896,11 @@ "MessageJellyfinAccontRemoved": "Ο λογαριασμός Jellyfin καταργήθηκε από αυτόν τον χρήστη.", "MessageJellyfinAccountAdded": "Ο λογαριασμός Jellyfin έχει προστεθεί σε αυτόν το χρήστη.", "MessageLoggedOutParentalControl": "Η πρόσβαση είναι περιορισμένη αυτήν τη στιγμή. Παρακαλώ δοκιμάστε ξανά αργότερα.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageNoAvailablePlugins": "Δεν υπάρχουν διαθέσιμα plugins.", "MessageNoCollectionsAvailable": "Οι συλλογές σας επιτρέπουν να απολαμβάνετε εξατομικευμένες ομαδοποιήσεις ταινιών, σειρών, άλμπουμ, βιβλίων και παιχνιδιών. Κάντε κλικ στο κουμπί + για να ξεκινήσετε τη δημιουργία συλλογών.", "MessageNoMovieSuggestionsAvailable": "Δεν υπάρχουν διαθέσιμες προτάσεις ταινιών. Αρχίστε να παρακολουθείτε και να αξιολογείτε τις ταινίες σας και μετά επιστρέψτε για να δείτε τις συστάσεις σας.", "MessageNoPlaylistItemsAvailable": "Αυτή η λίστα αναπαραγωγής είναι αυτή τη στιγμή κενή.", "MessageNoPlaylistsAvailable": "Οι λίστες αναπαραγωγής σάς επιτρέπουν να δημιουργείτε λίστες περιεχομένου για αναπαραγωγή διαδοχικά κάθε φορά. Για να προσθέσετε στοιχεία σε λίστες αναπαραγωγής, κάντε δεξί κλικ ή πατήστε παρατεταμένα και, στη συνέχεια, επιλέξτε Προσθήκη στη λίστα αναπαραγωγής.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", "MessageNoPluginsInstalled": "Δεν έχετε εγκαταστήσει πρόσθετα.", "MessageNoServersAvailableToConnect": "Δεν υπάρχουν διαθέσιμοι διακομιστές για σύνδεση. Αν έχετε προσκληθεί να μοιραστείτε ένα διακομιστή, βεβαιωθείτε ότι το αποδεχθήκατε παρακάτω ή κάνοντας κλικ στο σύνδεσμο του μηνύματος ηλεκτρονικού ταχυδρομείου.", "MessageNoServicesInstalled": "Καμία υπηρεσία δεν είναι εγκατεστημένη.", @@ -1148,21 +914,16 @@ "MessagePleaseRestartServerToFinishUpdating": "Κάντε επανεκκίνηση του διακομιστή για να ολοκληρωθεί η εφαρμογή ενημερώσεων.", "MessagePleaseWait": "Παρακαλώ περιμένετε. Αυτό μπορεί να πάρει ένα λεπτό.", "MessagePluginConfigurationRequiresLocalAccess": "Για να ρυθμίσετε αυτό το πρόσθετο παρακαλώ συνδεθείτε στον τοπικό διακομιστή σας άμεσα.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", "MessagePluginRequiresSubscription": "Γι' αυτό το πρόσθετο θα απαιτείται μια ενεργή συνδρομή Jellyfin Premiere μετά από την ελεύθερη δοκιμή 14 ημερών.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", "MessageReenableUser": "Δες παρακάτω για ενεργοποιήση", "MessageServerConfigurationUpdated": "Οι ρυθμίσεις του διακομιστή ενημερώθηκαν", "MessageSettingsSaved": "Οι ρυθμίσεις αποθηκεύτηκαν.", "MessageThankYouForConnectSignUp": "Σας ευχαριστούμε για την εγγραφή σας στο Jellyfin Connect. Ένα email θα σταλεί στη διεύθυνσή σας με οδηγίες για το πώς να επιβεβαιώσετε το νέο σας λογαριασμό. Επιβεβαιώστε το λογαριασμό και, στη συνέχεια, επιστρέψτε εδώ για να συνδεθείτε.", "MessageThankYouForConnectSignUpNoValidation": "Σας ευχαριστούμε για την εγγραφή σας στο Jellyfin Connect! Τώρα θα σας ζητηθεί να συνδεθείτε με τις πληροφορίες σας Jellyfin Connect.", "MessageThankYouForSupporting": "Ευχαριστούμε για την υποστήριξη σας", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", "MessageTrialExpired": "Η δοκιμαστική περίοδος για αυτήν τη λειτουργία έχει λήξει", "MessageTrialWillExpireIn": "Η δοκιμαστική περίοδος για αυτήν τη λειτουργία θα λήξει στις {0} ημέρες", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", "MessageUnableToConnectToServer": "Δεν είναι δυνατή η σύνδεση με τον επιλεγμένο διακομιστή αυτή τη στιγμή. Βεβαιωθείτε ότι εκτελείται και προσπαθήστε ξανά.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "MessageYouHaveVersionInstalled": "Αυτήν τη στιγμή έχετε εγκατεστημένη την έκδοση {0}.", "Metadata": "Μεταδεδομένα", "MetadataManager": "Ανανέωση μεταδεδομένων ", @@ -1175,13 +936,11 @@ "MissingPrimaryImage": "Λείπει κύρια εικόνα.", "MoreFromValue": "Περισσότερα από {0}", "MoreUsersCanBeAddedLater": "Περισσότεροι χρήστες μπορούν να προστεθούν αργότερα στον πίνακα ελέγχου.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Σίγαση", "Never": "Ποτέ", "NewVersionOfSomethingAvailable": "Μια νέα έκδοση του {0} είναι διαθέσιμη!", "News": "Ειδήσεις", "NextUp": "Επόμενο", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Δεν βρέθηκε κανένα. Ξεκινήστε παρακολουθώντας τις εκπομπές σας!", "NoPluginConfigurationMessage": "Αυτό το plugin δεν απαιτεί ρυθμίσεις.", "NoPluginsInstalledMessage": "Έχετε εγκαταστήσει κανένα plugins ", @@ -1189,10 +948,6 @@ "Notifications": "Ειδοποιήσεις", "NumLocationsValue": "{0} φάκελοι", "OpenSubtitleInstructions": "Θα χρειαστεί να ρυθμίσετε τις πληροφορίες λογαριασμού Open Subtitles στην οθόνη Open Subtitles στον πίνακα ελέγχου του Jellyfin Server.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Ηθοποιός", "OptionActors": "Ηθοποιοί", "OptionAdminUsers": "Διαχειριστές", @@ -1223,10 +978,7 @@ "OptionAscending": "Αύξουσα", "OptionAuto": "Αυτόματο", "OptionAutomatic": "Αυτόματο", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Φόντο", - "OptionBackdropSlideshow": "Backdrop slideshow", "OptionBackdrops": "Σκηνικά", "OptionBanner": "Πανό", "OptionBestAvailableStreamQuality": "Το καλύτερο διαθέσιμο", @@ -1240,20 +992,14 @@ "OptionBlockMovies": "Ταινίες", "OptionBlockMusic": "Μουσική", "OptionBlockOthers": "Άλλα", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "Τηλεοπτικά προγράμματα", - "OptionBluray": "Bluray", "OptionBooks": "Βιβλία", "OptionBox": "Κουτί", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Συλλογές", "OptionCommunityRating": "Βαθμολογία Κοινότητας", "OptionComposer": "Συνθέτης", "OptionComposers": "Συνθέτες", "OptionContinuing": "Συνέχιση", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", "OptionConvertRecordingsToStreamingFormat": "Αυτόματη μετατροπή των εγγραφών σε μια φιλική προς το streaming μορφή", "OptionConvertRecordingsToStreamingFormatHelp": "Οι ηχογραφήσεις θα μετατραπούν στο MKV για εύκολη αναπαραγωγή στις συσκευές σας.", "OptionCriticRating": "Βαθμολογία κριτικών", @@ -1261,7 +1007,6 @@ "OptionDaily": "Καθημερινά", "OptionDateAdded": "Ημερομηνία Προσθήκης", "OptionDateAddedFileTime": "Χρήση της ημερομηνίας δημιουργίας αρχείου", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Ημερομηνία Αναπαραγωγής", "OptionDefaultSort": "Προεπιλογή", "OptionDescending": "Φθίνουσα", @@ -1284,26 +1029,18 @@ "OptionDownloadDiscImage": "Δίσκος", "OptionDownloadImagesInAdvance": "Κατεβάστε εικόνες εκ των προτέρων", "OptionDownloadImagesInAdvanceHelp": "Από προεπιλογή, οι περισσότερες εικόνες μεταφορτώνονται μόνο όταν ζητούνται από μια εφαρμογή Jellyfin. Ενεργοποιήστε αυτήν την επιλογή για να κάνετε λήψη όλων των εικόνων εκ των προτέρων, καθώς εισάγονται νέα μέσα. Αυτό μπορεί να προκαλέσει σημαντικά μεγαλύτερες σαρώσεις βιβλιοθήκης.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Μενού", "OptionDownloadPrimaryImage": "Πρώτο", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Ενσωματωμένο στο container", "OptionEnableAccessFromAllDevices": "Πρόσβαση από όλες τις συσκευές", "OptionEnableAccessToAllChannels": "Ενεργοποιήστε την πρόσβαση σε όλα τα κανάλια", "OptionEnableAccessToAllLibraries": "Πρόσβαση σε όλες τις Βιβλιοθήκες", "OptionEnableAutomaticServerUpdates": "Ενεργοποίηση αυτόματων ενημερώσεων διακομιστή", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Να επιτρέπεται η συμπερίληψη internet trailers και προγράμματα live tv στο προτεινόμενο περιεχόμενο.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", "OptionEnableFullSpeedConversion": "Ενεργοποίηση πλήρης ταχύτητα στη μετατροπή", "OptionEnableFullSpeedConversionHelp": "Από προεπιλογή, η μετατροπή συγχρονισμού εκτελείται με χαμηλή ταχύτητα για να ελαχιστοποιηθεί η κατανάλωση πόρων.", "OptionEnableFullscreen": "Ενεργοποίηση πλήρους οθόνης", "OptionEnableM2tsMode": "Ενεργοποίηση λειτουργίας M2ts", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", "OptionEnableRecordingSubfolders": "Δημιουργία υποφακέλων για κατηγορίες όπως Σπορ,Παιδικά, κτλ", "OptionEnableTranscodingThrottle": "Ενεργοποίηση throttling", "OptionEnableTranscodingThrottleHelp": "Το throttling θα ρυθμίσει αυτόματα την ταχύτητα μεταγραφής, ώστε να ελαχιστοποιηθεί η χρήση της cpu του server κατά την αναπαραγωγή.", @@ -1311,10 +1048,8 @@ "OptionEpisodeSortName": "Όνομα ταξινόμησης επεισοδίου", "OptionEpisodes": "Επεισόδια", "OptionEquals": "Ίσα", - "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionEveryday": "Κάθε μέρα", "OptionExternallyDownloaded": "Εξωτερική λήψη", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Αγαπημένα", "OptionFolderSort": "Φάκελοι", "OptionFriday": "Παρασκευή", @@ -1330,17 +1065,11 @@ "OptionHasTrailer": "Τρέϊλερ", "OptionHideUser": "Απόκρυψη αυτού του χρήστη από τις οθόνες σύνδεσης", "OptionHideUserFromLoginHelp": "Χρήσιμο για ιδιωτικούς ή κρυφό λογαριασμούς διαχειριστή. Ο χρήστης θα πρέπει να συνδεθεί χειροκίνητα εισάγοντας το όνομα χρήστη και τον κωδικό πρόσβασής του.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "OptionHomeVideos": "Προσωπικά βίντεο & φωτογραφίες", "OptionIcon": "Εικονίδιο", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", "OptionImages": "Εικόνες", "OptionImdbRating": "Βαθμολογία IMDb ", "OptionInProgress": "Σε εξελιξη", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Λέξεις-κλειδιά", "OptionLatestChannelMedia": "Τελευταία στοιχεία καναλιού", "OptionLatestMedia": "Τελευταία Πολυμέσα", @@ -1356,7 +1085,6 @@ "OptionMissingImdbId": "Δεν υπάρχει αναγνωριστικό IMDb", "OptionMissingOverview": "Λείπει επισκόπηση", "OptionMissingParentalRating": "Λείπει η γονική βαθμολογία", - "OptionMissingTmdbId": "Missing Tmdb Id", "OptionMissingTvdbId": "Λείπει το αναγνωριστικό TVDB", "OptionMobileApps": "Εφαρμογές για κινητά", "OptionMonday": "Δευτέρα", @@ -1371,7 +1099,6 @@ "OptionNoTrailer": "Χωρίς Τρέϊλερ", "OptionNone": "Κανένα", "OptionOff": "σβηστός", - "OptionOn": "On", "OptionOnAppStartup": "Κατά την εκκίνηση της εφαρμογής", "OptionOnInterval": "Σε ένα διάστημα", "OptionOtherApps": "Άλλες εφαρμογές", @@ -1395,37 +1122,23 @@ "OptionProducer": "Παραγωγός", "OptionProducers": "Παραγωγοί", "OptionProfileAudio": "Ήχος", - "OptionProfilePhoto": "Photo", "OptionProfileVideo": "Βίντεο", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Εγγραφή ανά πάσα στιγμή", "OptionRecordOnAllChannels": "Εγγραφή σε όλα τα κανάλια", "OptionRecordOnlyNewEpisodes": "Εγγραφή μόνο νέων επεισοδίων", "OptionRecordSeries": "Εγγραφή Σειρών", - "OptionRegex": "Regex", "OptionRelease": "Η επίσημη έκδοση", "OptionReleaseDate": "Ημερομηνία Προβολής", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Αναληπτέος", "OptionResumablemedia": "συνέχιση", - "OptionRuntime": "Runtime", "OptionSaturday": "Σάββατο", "OptionSaturdayShort": "Σαβ", "OptionSaveMetadataAsHidden": "Αποθηκεύστε τα μεταδεδομένα και τις εικόνες ως κρυφά αρχεία", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Στιγμιότυπο ", "OptionSeason0": "Κύκλος 0", "OptionSeasons": "Κύκλοι", "OptionSeries": "Σειρές", "OptionSongs": "Τραγούδια", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Στούντιο", "OptionSubstring": "Υποσύνολο", "OptionSunday": "Κυρ", @@ -1433,8 +1146,6 @@ "OptionSyncLosslessAudioOriginal": "Συγχρονισμός ήχου χωρίς απώλειες στην αρχική ποιότητα", "OptionSyncOnlyOnWifi": "Συγχρονισμός μόνο από WiFi", "OptionTags": "Ετικέτες", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", "OptionThursday": "Πέμπτη", "OptionThursdayShort": "Πεμ", "OptionTimeline": "Χρονοδιάγραμμα", @@ -1470,53 +1181,34 @@ "PasswordResetConfirmation": "Είστε σίγουροι ότι θέλετε να επαναφέρετε τον κωδικό πρόσβασης;", "PasswordResetHeader": "Επαναφορά του κωδικού πρόσβασης", "PasswordSaved": "Ο κωδικός πρόσβασης αποθηκεύτηκε", - "PersonTypePerson": "Person", "PictureInPicture": "Εικόνα στην εικόνα", "PinCodeResetComplete": "Το pin code επαναφέρθηκε.", "PinCodeResetConfirmation": "Είστε σίγουροι ότι θέλετε να επαναφέρετε το pin code;", "PlayOnAnotherDevice": "Αναπαραγωγή σε άλλη συσκευή", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "PleaseConfirmPluginInstallation": "Παρακαλώ κάντε κλικ στο OK για να επιβεβαιώσετε ότι έχετε διαβάσει τα ανωτέρω και επιθυμείτε να προχωρήσετε με την εγκατάσταση του πρόσθετου.", "PleaseUpdateManually": "Απενεργοποιήστε το Jellyfin Server και εγκαταστήστε την τελευταία έκδοση.", "PluginInstalledMessage": "Η προσθήκη έχει εγκατασταθεί με επιτυχία. Θα πρέπει να γίνει επανεκκίνηση του διακομιστή Jellyfin για να εφαρμοστούν οι αλλαγές.", - "PluginInstalledWithName": "{0} was installed", "PluginTabAppClassic": "Jellyfin για Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", "PreferredNotRequired": "Προτιμώμενο, αλλά δεν απαιτείται", "Programs": "Προγράμματα", "ProviderValue": "Πάροχος: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Επειδή σας αρέσει {0}", "RecommendationBecauseYouWatched": "Επειδή παρακολουθήσατε {0}", "RecommendationDirectedBy": "Σκηνοθεσία {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Εγγραφή με Paypal", "ReleaseYearValue": "Έτος κυκλοφορίας: {0}", "RememberMe": "Να με θυμάσαι", - "Reporting": "Reporting", "RequireHttps": "Απαιτείται https για εξωτερικές συνδέσεις", "RequireHttpsHelp": "Αν είναι ενεργοποιημένη, οι συνδέσεις μέσω του http θα μεταφερθούν στο https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Αναπαραγωγή προς τα πίσω", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Σάρωση βιβλιοθήκης", "SelectCameraUploadServers": "Μεταφορτώστε τις φωτογραφίες της φωτογραφικής μηχανής στους παρακάτω διακομιστές:", "SendMessage": "Αποστολή Μηνύματος", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "Θα πρέπει να γίνει επανεκκίνηση του διακομιστή Jellyfin μετά την εγκατάσταση ενός plugin.", "ServerUpdateNeeded": "Αυτός ο διακομιστής Jellyfin πρέπει να ενημερωθεί. Για να κάνετε λήψη της τελευταίας έκδοσης, επισκεφθείτε την {0}", "Settings": "Ρυθμίσεις", "SettingsSaved": "Οι ρυθμίσεις αποθηκεύτηκαν", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Προβολή ρυθμίσεων για προχωρημένους", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Αθλητικά", "Standard": "Πρότυπο", "StatusRecording": "Εγγραφή", @@ -1525,13 +1217,9 @@ "StatusWatchingProgram": "Παρακολουθώντας {0}", "StopRecording": "Διακοπή εγγραφής", "Subscriptions": "Συνδρομές", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Υπότιτλοι", "Sync": "Συγχρονισμός", "SyncMedia": "Συγχρονισμός πολυμέσων", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", "SystemDlnaProfilesHelp": "Τα προφίλ του συστήματος είναι μόνο για ανάγνωση. Οι αλλαγές σε ένα προφίλ συστήματος θα αποθηκευτούν σε ένα νέο προσαρμοσμένο προφίλ.", "TabAbout": "Περί..", "TabAccess": "Πρόσβαση", @@ -1544,24 +1232,19 @@ "TabBasic": "Βασικό", "TabBasics": "Βασικά", "TabCameraUpload": "Upload Κάμερας", - "TabCast": "Cast", "TabCatalog": "Κατάλογος", "TabChannels": "Κανάλια", "TabChapters": "Κεφάλαια", "TabCinemaMode": "Λειτουργία Κινηματογράφου", - "TabCodecs": "Codecs", "TabCollectionTitles": "Τίτλοι", "TabCollections": "Συλλογές", - "TabContainers": "Containers", "TabControls": "Έλεγχοι", - "TabDLNA": "DLNA", "TabDashboard": "Πίνακας Ελέγχου", "TabDevices": "Συσκευές", "TabDirectPlay": "Άμεση Αναπαραγωγή", "TabDisplay": "Εμφάνιση", "TabEpisodes": "Επεισόδια", "TabExpert": "Ειδικός", - "TabExtras": "Extras", "TabFavorites": "Αγαπημένα", "TabFilter": "Φίλτρο", "TabFolders": "Φάκελοι", @@ -1580,8 +1263,6 @@ "TabLatest": "Τελευταία", "TabLibrary": "Βιβλιοθήκη", "TabLibraryAccess": "Πρόσβαση στη βιβλιοθήκη", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "Μεταδεδομένα", "TabMovies": "Ταινίες", "TabMusic": "Μουσική", @@ -1608,7 +1289,6 @@ "TabProfiles": "Προφίλ", "TabRecordings": "Εγγραφές", "TabResponses": "Απαντήσεις", - "TabResumeSettings": "Resume Settings", "TabScenes": "Σκηνές", "TabScheduledTasks": "Προγραμματισμένες Εργασίες", "TabSecurity": "Aσφάλεια ", @@ -1638,7 +1318,6 @@ "ThisWizardWillGuideYou": "Αυτός ο οδηγός θα σας καθοδηγήσει στη διαδικασία εγκατάστασης. Για να ξεκινήσετε, παρακαλούμε επιλέξτε τη γλώσσα που προτιμάτε.", "TitleDevices": "Συσκευές", "TitleHardwareAcceleration": "Επιτάχυνση υλικού", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "ΖΩΝΤΑΝΗ ΤΗΛΕΌΡΑΣΗ", "TitleNewUser": "Νέος Χρήστης", "TitleNotifications": "Ειδοποιήσεις", @@ -1652,22 +1331,18 @@ "TitleSupport": "Υποστήριξη", "TitleSync": "Συγχρονισμός", "TitleUsers": "Χρήστες ", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Είστε σίγουροι ότι θέλετε να απεγκαταστήσετε;", "UninstallPluginHeader": "απεγκατάστησετε το plugin", "Unmute": "Με ήχο", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Το Jellyfin περιλαμβάνει ενσωματωμένη υποστήριξη για προφίλ χρηστών, επιτρέποντας σε κάθε χρήστη να έχει τις δικές του ρυθμίσεις εμφάνισης, το playstate και τα γονικά στοιχεία ελέγχου.", "Users": "Οι χρήστες", "ValueAlbumCount": "{0} άλμπουμ", "ValueArtist": "Καλλιτέχνης: {0}", "ValueArtists": "Καλλιτέχνες: {0}", - "ValueAsRole": "as {0}", "ValueAudioCodec": "Κωδικοποιητής ήχου : {0}", "ValueAwards": "Βραβεία: {0}", "ValueCodec": "Κωδικοποιητής : {0}", "ValueConditions": "Όροι: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Ημερομηνία δημιουργίας: {0}", "ValueDiscNumber": "Δίσκος {0}", "ValueEpisodeCount": "{0} επεισόδια", @@ -1688,11 +1363,9 @@ "ValueOneSeries": "1 Σειρά", "ValueOneSong": "1 τραγούδι", "ValueOneTrailer": "1 Τρέϊλερ", - "ValuePremiered": "Premiered {0}", "ValuePremieres": "Πρεμιέρες {0}", "ValuePriceUSD": "Τιμή: {0} (USD)", "ValueSeriesCount": "{0} Σειρές", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} τραγούδια", "ValueStatus": "Κατάσταση: {0}", "ValueStudio": "Στούντιο: {0}", @@ -1709,20 +1382,9 @@ "ViewTypeLiveTvRecordingGroups": "Εγγραφές", "ViewTypeMovies": "Ταινίες", "ViewTypeMusic": "Μουσική", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", "ViewTypeTvShows": "Τηλεόραση", "WelcomeToProject": "Καλως ήρθατε στο Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Αυτά είναι όλα που χρειαζόμαστε για τώρα. Ο Jellyfin έχει αρχίσει να συλλέγει πληροφορίες σχετικά με τη βιβλιοθήκη πολυμέσων σας. Ελέγξτε μερικές από τις εφαρμογές μας, και στη συνέχεια κάντε κλικ Τέλος για να δείτε τον Πίνακα ελέγχου του Server.", "XmlDocumentAttributeListHelp": "Αυτά τα χαρακτηριστικά εφαρμόζονται στο στοιχείο ρίζας κάθε απάντησης xml.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", "Yesterday": "Εχθές" } diff --git a/src/strings/es-AR.json b/src/strings/es-AR.json index 822a9ec67d..12f7a01e28 100644 --- a/src/strings/es-AR.json +++ b/src/strings/es-AR.json @@ -1,1728 +1,46 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", "ButtonNextPage": "Página siguiente", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", "ButtonPreviousPage": "Página anterior", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Guía de inicio rápido", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Habilitar la codificación de hardware", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Agregar Usuario", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", "HeaderDeleteImage": "Borrar imagen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Últimos capítulos", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", "HeaderLiveTV": "TV en vivo", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Términos de servicios de Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", "LabelAll": "Todo", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", - "LabelConfigureSettings": "Configure settings", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Mostar capítulos no disponibles en temporadas", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Terminar", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Siguiente", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Anterior", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Su nombre:", "LabelYoureDone": "Ha terminado!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", "MissingEpisode": "Falta capítulo.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Más usuarios se pueden agregar más tarde dentro del panel.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", "OptionBirthLocation": "Lugar de nacimiento", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", "OptionEpisodeSortName": "Nombre corto del capítulo", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", "OptionImages": "Imágenes", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Palabras clave", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Capítulos faltantes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", "OptionName": "Nombre", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordOnlyNewEpisodes": "Grabar sólo nuevos capítulos", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Estudios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", "OptionTags": "Etiquetas", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", "OptionUnairedEpisode": "Capítulos no emitidos", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Capítulos", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Contanos acerca de vos", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Disfrute los extras", - "Themes": "Themes", "ThisWizardWillGuideYou": "Este asistente le ayudará a guiarlo durante el proceso de configuración. Para comenzar, seleccione su idioma preferido.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin incluye soporte integrado para los perfiles de usuario, lo que permite a cada usuario tener su propia configuración de pantalla, estado de reproducción y controles parentales.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", "ValueAudioCodec": "Códec de audio: {0}", - "ValueAwards": "Awards: {0}", "ValueCodec": "Códec: {0}", "ValueConditions": "Condiciones: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", "ValueVideoCodec": "Códec de video: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bienvenidos a Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Eso es todo lo que necesitamos por ahora. Jellyfin ha comenzado a recolectar información sobre su biblioteca de medios. Dale un vistazo a algunas de nuestras aplicaciones y, a continuación, hacé clic en Finalizar para ver el Panel de control del servidor.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/es-MX.json b/src/strings/es-MX.json index 3ca6fff214..28150ef8cc 100644 --- a/src/strings/es-MX.json +++ b/src/strings/es-MX.json @@ -17,7 +17,6 @@ "AllowRemoteAccess": "Permitir conexiones remotas a este Servidor Jellyfin", "AllowRemoteAccessHelp": "Si se deshabilita, todas las conexiones remotas serán bloqueadas.", "AllowedRemoteAddressesHelp": "Lista separada por comas de direcciones IP/mascaras de subred para las redes a las que se les permitirá conectarse remotamente. Si se deja en blanco, todas las IP remotas serán permitidas.", - "Audio": "Audio", "BirthDateValue": "Nacimiento: {0}", "BirthPlaceValue": "Lugar de nacimiento: {0}", "Blacklist": "Bloqueados", @@ -63,7 +62,6 @@ "ButtonHelp": "Ayuda", "ButtonHide": "Ocultar", "ButtonHome": "Inicio", - "ButtonInfo": "Info", "ButtonInviteUser": "Invitar Usuario", "ButtonLearnMore": "Aprenda más", "ButtonLibraryAccess": "Acceso a biblioteca", @@ -80,10 +78,8 @@ "ButtonNext": "Siguiente", "ButtonNextPage": "Página Siguiente", "ButtonNextTrack": "Pista siguiente", - "ButtonNo": "No", "ButtonNowPlaying": "Reproduciéndo Ahora", "ButtonOff": "Apagar", - "ButtonOk": "Ok", "ButtonOpen": "Abrir", "ButtonOther": "Otros", "ButtonParentalControl": "Control parental", @@ -149,7 +145,6 @@ "ButtonSubmit": "Enviar", "ButtonSubtitles": "Subtítulos", "ButtonSync": "Sincronizar", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Desinstalar", "ButtonUnmute": "Quitar mudo", "ButtonUp": "Arriba", @@ -172,7 +167,6 @@ "Channels": "Canales", "CinemaModeConfigurationHelp": "El modo cine trae la experiencia del cine directo al la sala de TV con la habilidad de reproducir tráilers e intros personalizados antes de la presentación estelar.", "CinemaModeConfigurationHelp2": "Las aplicaciones Jellyfin tendrán una configuración para habilitar o deshabilitar el modo cine. Las aplicaciones de TV habilitaran el modo cine por defecto.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Crear un perfil personalizado para un nuevo dispositivo o reemplazar un perfil del sistema.", "DeathDateValue": "Fallcimiento: {0}", "DefaultCameraUploadPathHelp": "Seleccione una ruta personalizada de subida. Si se deja en blanco, se utilizara una carpeta predeterminada. Si se usa una ruta personalizada necesita ser agregada también como una biblioteca en la configuración de bibliotecas de Jellyfin.", @@ -238,7 +232,6 @@ "FolderTypeUnset": "Contenido mixto", "ForAdditionalLiveTvOptions": "Para proveedores adicionales de TV en Vivo, de clic en la pestaña de Servicios para ver las opciones disponibles.", "Fullscreen": "Pantalla Completa", - "General": "General", "GuestUserNotFound": "Usuario no encontrado. Por favor asegúrese de que el nombre es correcto e intente de nuevo, o intente introducir la dirección de correo de su invitado.", "GuideProviderLogin": "Iniciar Sesión", "GuideProviderSelectListings": "Elegir Listados", @@ -259,7 +252,6 @@ "HeaderAddUpdateImage": "Agregar/Actualizar Imágen", "HeaderAddUser": "Agregar Usuario", "HeaderAdditionalParts": "Partes Adicionales", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avanzado", "HeaderAirDays": "Días de Emisión", "HeaderAlbums": "Álbumes", @@ -269,8 +261,6 @@ "HeaderApiKey": "Llave de API", "HeaderApiKeys": "Llaves de API", "HeaderApiKeysHelp": "Son necesarias aplicaciones externas para obtener una clave Api para comunicarse con el Servidor Jellyfin. Las clave son emitidas accediendo con una cuenta Jellyfin, u obteniendo manualmente la clave de la aplicación.", - "HeaderApp": "App", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Configuración de Audio", "HeaderAudioTracks": "Pistas de Audio", "HeaderAutomaticUpdates": "Actualizaciones Automáticas", @@ -345,7 +335,6 @@ "HeaderEasyPinCode": "Código Pin Sencillo", "HeaderEmbeddedImage": "Imágen embebida", "HeaderEpisodes": "Episodios", - "HeaderError": "Error", "HeaderExport": "Exportar", "HeaderExternalPlayerPlayback": "Reproducción con Reproductor Externo", "HeaderExternalServices": "Servicios Externos", @@ -378,7 +367,6 @@ "HeaderIdentificationCriteriaHelp": "Introduzca, al menos, un criterio de identificación.", "HeaderIdentificationHeader": "Encabezado de Identificación", "HeaderImageBackdrop": "Imagen de Fondo", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Opciones de Imagen", "HeaderImagePrimary": "Principal", "HeaderImageSettings": "Configuración de Imágenes", @@ -553,7 +541,6 @@ "HeaderSync": "Sincronizar", "HeaderSyncJobInfo": "Trabajo de Sincronización", "HeaderSystemDlnaProfiles": "Perfiles del Sistema", - "HeaderTV": "TV", "HeaderTags": "Etiquetas", "HeaderTaskTriggers": "Disparadores de Tarea", "HeaderTermsOfService": "Términos de Servicio de Jellyfin", @@ -586,9 +573,7 @@ "HeaderUser": "Usuario", "HeaderUserPrimaryImage": "Imagen de Usuario", "HeaderUsers": "Usuarios", - "HeaderVideo": "Video", "HeaderVideoTypes": "Tipos de Video", - "HeaderVideos": "Videos", "HeaderViewOrder": "Orden de Despliegue", "HeaderViewStyles": "Ver Estilos", "HeaderWelcomeToJellyfin": "Bienvenidos a Jellyfin", @@ -641,7 +626,6 @@ "LabelArtist": "Artista", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar múltiples empleando:", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Preferencia de idioma de audio:", "LabelAutomaticallyRefreshInternetMetadataEvery": "Actualizar automáticamente metadatos de internet:", "LabelAvailableTokens": "Detalles disponibles:", @@ -717,9 +701,7 @@ "LabelDownloadInternetMetadataHelp": "El Servidor Jellyfin puede descargar información sobre sus medios para habilitar presentaciones mas enriquecidas.", "LabelDownloadLanguages": "Descargar lenguajes:", "LabelDropImageHere": "Arrastre la imagen aquí.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Código pin sencillo:", - "LabelEmail": "Email:", "LabelEmailAddress": "Correo Electrónico", "LabelEmbedAlbumArtDidl": "Incrustar arte del álbum en DIDL", "LabelEmbedAlbumArtDidlHelp": "Algunos dispositivos prefieren este método para obtener arte del álbum. Otros podrían fallar al reproducir con esta opción habilitada.", @@ -909,7 +891,6 @@ "LabelPrevious": "Anterior", "LabelProfile": "Perfíl:", "LabelProfileAudioCodecs": "Codecs de Audio:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Separados por comas. Puede dejarse vació para aplicarlo a todos los codecs.", "LabelProfileContainer": "Contenedor:", "LabelProfileContainersHelp": "Separados por comas. Puede dejarse vació para aplicarlo a todos los contenedores.", @@ -947,7 +928,6 @@ "LabelSelectVersionToInstall": "Seleccionar versión a instalar:", "LabelSendNotificationToUsers": "Enviar la notificación a:", "LabelSerialNumber": "Número de serie:", - "LabelSeries": "Series:", "LabelSeriesRecordingPath": "Ruta para grabaciones de Series (Opcional):", "LabelServerHost": "Servidor:", "LabelServerHostHelp": "192.168.1.100 O https://miservidor.com", @@ -997,7 +977,6 @@ "LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios aún no emitidos en las temporadas", "LabelUnknownLanguage": "Idioma Desconocido", "LabelUploadSpeedLimit": "Límite de velocidad de subida (mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Emplear los siguientes servicios:", "LabelUser": "Usuario:", "LabelUserAgent": "Agente de usuario:", @@ -1011,7 +990,6 @@ "LabelVersionInstalled": "{0} instalado", "LabelVersionNumber": "Versión {0}", "LabelVersionUpToDate": "¡Actualizado!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tipo de Video:", "LabelView": "Vista:", "LabelXDlnaCap": "X-DLNA cap:", @@ -1027,11 +1005,8 @@ "LanNetworksHelp": "Lista separada por comas de direcciones IP/mascaras de subred para las redes que serán consideradas como locales al enforzar restricciones de ancho de banda. Si se establece, todas las demás direcciones IP serán consideradas como redes externas y estarán sujetas a restricciones de ancho de banda. Si se deja en blanco, sólo la subred del servidor será considerada como red local.", "LatestFromLibrary": "Más recientes {0}", "LearnHowToCreateSynologyShares": "Aprenda como compartir carpetas en Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Seleccione las carpetas de medios para compartir con este usuario. Los administradores podrán editar todas las carpetas usando el administrador de metadatos.", - "LinkApi": "Api", "LinkCommunity": "Comunidad", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Aprenda sobre Jellyfin Premier", "LiveTvUpdateAvailable": "(Actualización disponible)", "LoginDisclaimer": "Jellyfin esta diseñado para ayudarlo a administrar su biblioteca de medios personal, tales como videos caseros y fotografías. Por favor lea nuestros términos de uso. El uso de cualquier software de Jellyfin constituye la aceptación de estos términos.", @@ -1049,7 +1024,6 @@ "MediaInfoCameraMake": "Marca de la cámara", "MediaInfoCameraModel": "Modelo de la cámara", "MediaInfoChannels": "Canales", - "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Etiqueta de Codec", "MediaInfoContainer": "Contenedor", "MediaInfoDefault": "Por defecto", @@ -1076,12 +1050,9 @@ "MediaInfoSampleRate": "Tasa de muestreo", "MediaInfoShutterSpeed": "Velocidad del obturador", "MediaInfoSize": "Tamaño", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Datos", "MediaInfoStreamTypeEmbeddedImage": "Imágen Embebida", "MediaInfoStreamTypeSubtitle": "Subtítulo", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Fecha y hora", "MessageAlreadyInstalled": "Esta versión ya se encuentra instalada.", "MessageApplicationUpdated": "El servidor Jellyfin ha sido actualizado", @@ -1189,11 +1160,6 @@ "Notifications": "Notificaciones", "NumLocationsValue": "{0} carpetas", "OpenSubtitleInstructions": "Necesita configurar la información de cuenta de Open Subtitles en la pantalla de configuración de Open Subtitles en el Panel de Control del Servidor.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Actores", "OptionAdminUsers": "Administradores", "OptionAfterSystemEvent": "Después de un evento del sistema", @@ -1230,7 +1196,6 @@ "OptionBackdrops": "Fondos", "OptionBanner": "Cartél", "OptionBestAvailableStreamQuality": "La mejor disponible", - "OptionBeta": "Beta", "OptionBirthLocation": "Lugar de Nacimiento", "OptionBlockBooks": "Libros", "OptionBlockChannelContent": "Contenido de Canales de Internet", @@ -1242,11 +1207,9 @@ "OptionBlockOthers": "Otros", "OptionBlockTrailers": "Tráilers", "OptionBlockTvShows": "Programas de TV", - "OptionBluray": "Bluray", "OptionBooks": "Libros", "OptionBox": "Caja", "OptionBoxRear": "Reverso de caja", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Colecciones", "OptionCommunityRating": "Calificación de la Comunidad", "OptionComposer": "Compositor", @@ -1266,7 +1229,6 @@ "OptionDefaultSort": "Por defecto", "OptionDescending": "Descendente", "OptionDev": "Desarrollo", - "OptionDirector": "Director", "OptionDirectors": "Directores", "OptionDisableUser": "Desactivar este usuario", "OptionDisableUserHelp": "Si está desactivado, el servidor no aceptará conexiones de este usuario. Las conexiones existentes serán finalizadas abruptamente.", @@ -1284,7 +1246,6 @@ "OptionDownloadDiscImage": "DIsco", "OptionDownloadImagesInAdvance": "Descargar las imágenes desde el inicio.", "OptionDownloadImagesInAdvanceHelp": "Por defecto, la mayoría de las imágenes son descargadas solo cuando son solicitadas por alguna aplicación Jellyfin. Habilite esta opción para descargar todas las imágenes desde por adelantado, conforme se vayan agregando mas medios. Esto podría causar escaneos de bibliotecas mas largos.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menú", "OptionDownloadPrimaryImage": "Principal", "OptionDownloadThumbImage": "Miniatura", @@ -1338,8 +1299,6 @@ "OptionImages": "Imágenes", "OptionImdbRating": "Calificación de IMDb", "OptionInProgress": "En Progreso", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Palabras clave", "OptionLatestChannelMedia": "Ítems recientes de canales", @@ -1367,7 +1326,6 @@ "OptionMusicVideos": "Videos musicales", "OptionName": "Nombre", "OptionNameSort": "Nombre", - "OptionNo": "No", "OptionNoTrailer": "Sin Avance", "OptionNone": "Ninguno", "OptionOff": "No", @@ -1394,17 +1352,13 @@ "OptionPriority": "Prioridad", "OptionProducer": "Productor", "OptionProducers": "Productores", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Audio del Video", "OptionProtocolHls": "Transmisión en vivo por Http", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Grabar en cualquier momento", "OptionRecordOnAllChannels": "Grabar en todos los canales", "OptionRecordOnlyNewEpisodes": "Grabar sólo nuevos episodios", "OptionRecordSeries": "Grabar Series", - "OptionRegex": "Regex", "OptionRelease": "Versión Oficial", "OptionReleaseDate": "Fecha de Estreno", "OptionReportByteRangeSeekingWhenTranscoding": "Reportar que el servidor soporta busqueda de bytes al transcodificar", @@ -1422,7 +1376,6 @@ "OptionScreenshot": "Captura de pantalla", "OptionSeason0": "Temporada 0", "OptionSeasons": "Temporadas", - "OptionSeries": "Series", "OptionSongs": "Canciones", "OptionSortName": "Nombre para ordenar", "OptionSpecialEpisode": "Especiales", @@ -1507,7 +1460,6 @@ "ScanLibrary": "Escanear biblioteca", "SelectCameraUploadServers": "Subir fotografías desde la cámara hacia el siguiente servidor:", "SendMessage": "Enviar mensaje", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "El Servidor Jellyfin necesitará reiniciarse después de instalar un complemento.", "ServerUpdateNeeded": "Este Servidor Jellyfin necesita ser actualizado. Para descargar la ultima versión, por favor visite {0}", "Settings": "Configuración", @@ -1549,24 +1501,20 @@ "TabChannels": "Canales", "TabChapters": "Capítulos", "TabCinemaMode": "Modo Cine", - "TabCodecs": "Codecs", "TabCollectionTitles": "Títulos", "TabCollections": "Colecciones", "TabContainers": "Contenedores", "TabControls": "Controles", - "TabDLNA": "DLNA", "TabDashboard": "Panel de Control", "TabDevices": "Dispositivos", "TabDirectPlay": "Reproducción Directa", "TabDisplay": "Pantalla", "TabEpisodes": "Episodios", "TabExpert": "Experto", - "TabExtras": "Extras", "TabFavorites": "Favoritos", "TabFilter": "Filtro", "TabFolders": "Carpetas", "TabGames": "Juegos", - "TabGeneral": "General", "TabGenres": "Géneros", "TabGuide": "Guía", "TabHelp": "Ayuda", @@ -1575,7 +1523,6 @@ "TabHosting": "Hospedaje", "TabImage": "Imagen", "TabImages": "Imágenes", - "TabInfo": "Info", "TabLanguages": "Idiomas", "TabLatest": "Recientes", "TabLibrary": "Biblioteca", @@ -1612,7 +1559,6 @@ "TabScenes": "Escenas", "TabScheduledTasks": "Tareas Programadas", "TabSecurity": "Seguridad", - "TabSeries": "Series", "TabServer": "Servidor", "TabServices": "Servicios", "TabSettings": "Configuración", @@ -1624,7 +1570,6 @@ "TabSuggestions": "Sugerencias", "TabSync": "Sincronizar", "TabSyncJobs": "Trabajos de Sincronizacion", - "TabTV": "TV", "TabTrailers": "Tráilers", "TabTranscoding": "Transcodificación", "TabUpcoming": "Proximamente", @@ -1677,7 +1622,6 @@ "ValueItemCount": "{0} ítem", "ValueItemCountPlural": "{0} ítems", "ValueLinks": "Enlaces: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} videos musicales", "ValueOneAlbum": "1 álbum", @@ -1691,7 +1635,6 @@ "ValuePremiered": "Estrenado: {0}", "ValuePremieres": "Estrenos: {0}", "ValuePriceUSD": "Precio: {0} (USD)", - "ValueSeriesCount": "{0} series", "ValueSeriesYearToPresent": "{0} - Actualidad", "ValueSongCount": "{0} canciones", "ValueStatus": "Estado: {0}", @@ -1714,7 +1657,6 @@ "ViewTypeMusicFavoriteSongs": "Canciones Favoritas", "ViewTypeMusicFavorites": "Favoritos", "ViewTypeMusicSongs": "Canciones", - "ViewTypeTvShows": "TV", "WelcomeToProject": "¡Bienvenido a Jellyfin!", "Whitelist": "Permitidos", "WizardCompleted": "Eso es todo lo que necesitamos por ahora, Jellyfin ha comenzado a recolectar información sobre su biblioteca de medios. Revise algunas de nuestras aplicaciones, y haga clic en Finalizar para ver el Panel de Control", diff --git a/src/strings/es.json b/src/strings/es.json index c3dcd1ba76..dec3ab7048 100644 --- a/src/strings/es.json +++ b/src/strings/es.json @@ -17,7 +17,6 @@ "AllowRemoteAccess": "Permitir conexiones remotas a este servidor Jellyfin", "AllowRemoteAccessHelp": "Si no está activado, todas las conexiones remotas serán bloqueadas", "AllowedRemoteAddressesHelp": "Lista separada por comas de direcciones IP o entradas de IP / máscara de red para redes a las que se les permitirá conectarse de forma remota. Si se deja en blanco, se permitirán todas las direcciones remotas.", - "Audio": "Audio", "BirthDateValue": "Nació: {0}", "BirthPlaceValue": "Lugar de nacimiento: {0}", "Blacklist": "Lista negra", @@ -63,7 +62,6 @@ "ButtonHelp": "Ayuda", "ButtonHide": "Esconder", "ButtonHome": "Inicio", - "ButtonInfo": "Info", "ButtonInviteUser": "Invitar usuario", "ButtonLearnMore": "Aprende más", "ButtonLibraryAccess": "Acceso a la biblioteca", @@ -80,7 +78,6 @@ "ButtonNext": "Siguiente", "ButtonNextPage": "Página siguiente", "ButtonNextTrack": "Pista siguiente", - "ButtonNo": "No", "ButtonNowPlaying": "Reproduciendo ahora", "ButtonOff": "Apagado", "ButtonOk": "OK", @@ -89,7 +86,6 @@ "ButtonParentalControl": "Control parental", "ButtonPause": "Pausa", "ButtonPlay": "Reproducir", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Lista de reproducción", "ButtonPreferences": "Preferencias", "ButtonPrevious": "Anterior", @@ -163,16 +159,13 @@ "ButtonYes": "Si", "CancelSeries": "Cancelar serie", "CategoryApplication": "Aplicación", - "CategoryPlugin": "Plugin", "CategorySync": "Sincronizar", "CategorySystem": "Sistema", "CategoryUser": "Usuario", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Seleccione los canales para compartir con este usuario. Los administradores podrán editar todos los canales mediante el gestor de metadatos.", "Channels": "Canales", "CinemaModeConfigurationHelp": "El modo cine proporciona la experiencia del cine directamente en su sala de estar con la capacidad de reproducir trailers e introducciones personalizadas antes de la función principal.", "CinemaModeConfigurationHelp2": "Las aplicaciones de Jellyfin tendrán una opción para activar o desactivar el modo cine. Las aplicaciones de TV tienen el modo cine activado de forma predeterminada.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Crear un perfil personalizado para un nuevo dispositivo o reemplazar un perfil del sistema.", "DeathDateValue": "Murió: {0}", "DefaultCameraUploadPathHelp": "Seleccione una ruta de carga personalizada. Si se deja en blanco, se usará una carpeta predeterminada. Si usa una ruta personalizada, también deberá agregarse como una biblioteca en la configuración de la biblioteca Jellyfin.", @@ -238,9 +231,7 @@ "FolderTypeUnset": "Sin especificar (contenido mixto)", "ForAdditionalLiveTvOptions": "Para proveedores adicionales de TV en directo, haga clic en la pestaña Servicios para ver las opciones disponibles.", "Fullscreen": "Pantalla completa", - "General": "General", "GuestUserNotFound": "Usuario no encontrado. Asegúrese de que el nombre es correcto y vuelva a intentarlo o intente ingresar su dirección de correo electrónico.", - "GuideProviderLogin": "Login", "GuideProviderSelectListings": "Seleccionar listados", "H264CrfHelp": "El factor de velocidad constante (CRF) es el ajuste de calidad predeterminado para el codificador x264. Puede establecer los valores entre 0 y 51, donde valores más bajos resultarían en una mejor calidad (a expensas de tamaños de archivo más altos). Los valores sanos están entre 18 y 28. El valor predeterminado para x264 es 23, por lo que puede utilizar esto como punto de partida.", "H264EncodingPresetHelp": "Elija un valor más rápido para mejorar el rendimiento o un valor más lento para mejorar la calidad.", @@ -262,15 +253,12 @@ "HeaderAdmin": "Administrador", "HeaderAdvanced": "Avanzado", "HeaderAirDays": "Dias al aire", - "HeaderAlbums": "Albums", "HeaderAlert": "Alerta", "HeaderAllRecordings": "Todas la grabaciones", "HeaderAllowMediaDeletionFrom": "Permitir borrar contenido desde", "HeaderApiKey": "Clave Api", "HeaderApiKeys": "Keys de Api", "HeaderApiKeysHelp": "Las aplicaciones externas requieren de una clave API para comunicarse con el servidor Jellyfin. Las claves se facilitan iniciando sesión con una cuenta de Jellyfin, o otorgando manualmente una clave a la aplicación.", - "HeaderApp": "App", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Ajustes de audio", "HeaderAudioTracks": "Pistas de audio", "HeaderAutomaticUpdates": "Actualizaciones automáticas", @@ -280,7 +268,6 @@ "HeaderBecomeProjectSupporter": "Conseguir Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Bloquear artículos sin valoraciones o si son desconocidas:", "HeaderBooks": "Libros", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Personalice la apariencia de Jellyfin para que se ajuste a las necesidades de su grupo u organización.", "HeaderCameraUpload": "Subidas de la cámara", "HeaderCameraUploadHelp": "Las aplicaciones Jellyfin pueden cargar automáticamente fotos tomadas desde sus dispositivos móviles en tu servidor Jellyfin.", @@ -345,7 +332,6 @@ "HeaderEasyPinCode": "Código PIN fácil:", "HeaderEmbeddedImage": "Imagen", "HeaderEpisodes": "Episodios", - "HeaderError": "Error", "HeaderExport": "Exportar", "HeaderExternalPlayerPlayback": "Playback del reproductor externo", "HeaderExternalServices": "Servicios externos", @@ -378,7 +364,6 @@ "HeaderIdentificationCriteriaHelp": "Entre al menos un criterio de identificación.", "HeaderIdentificationHeader": "Cabecera de indentificación", "HeaderImageBackdrop": "Fondo", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Opciones de imagen", "HeaderImagePrimary": "Principal", "HeaderImageSettings": "Opciones de imágen", @@ -496,7 +481,6 @@ "HeaderReviews": "Análisis", "HeaderRevisionHistory": "Histórico de revisiones", "HeaderRunningTasks": "Tareas en ejecución", - "HeaderRuntime": "Runtime", "HeaderScenes": "Escenas", "HeaderSchedule": "Horario", "HeaderScreenSavers": "Salvapantallas", @@ -553,7 +537,6 @@ "HeaderSync": "Sincronizar", "HeaderSyncJobInfo": "Trabajo de Sync", "HeaderSystemDlnaProfiles": "Perfiles del sistema", - "HeaderTV": "TV", "HeaderTags": "Etiquetas", "HeaderTaskTriggers": "Tareas de activación", "HeaderTermsOfService": "Términos del servicio de Jellyfin", @@ -564,8 +547,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su código PIN fácil.", "HeaderTopPlugins": "Mejores Plugins", "HeaderTrack": "Pista", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Perfil de transcodificación", "HeaderTranscodingProfileHelp": "Añadir perfiles de transcodificación para indicar qué formatos se deben utilizar cuando se requiera transcodificación.", "HeaderTunerDevices": "Sintonizadores", @@ -586,7 +567,6 @@ "HeaderUser": "Usuario", "HeaderUserPrimaryImage": "Imagen de usuario", "HeaderUsers": "Usuarios", - "HeaderVideo": "Video", "HeaderVideoTypes": "Tipos de vídeos", "HeaderVideos": "Vídeos", "HeaderViewOrder": "Ver Orden", @@ -641,7 +621,6 @@ "LabelArtist": "Artista", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar multiples usando ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Preferencia de idioma de audio", "LabelAutomaticallyRefreshInternetMetadataEvery": "Actualizar los metadatos automáticamente de internet:", "LabelAvailableTokens": "Tokens disponibles:", @@ -947,9 +926,7 @@ "LabelSelectVersionToInstall": "Seleccionar versión a instalar", "LabelSendNotificationToUsers": "Enviar la notificación a:", "LabelSerialNumber": "Número de serie", - "LabelSeries": "Series:", "LabelSeriesRecordingPath": "Ruta de grabaciones de series (opcional):", - "LabelServerHost": "Host:", "LabelServerHostHelp": "192.168.1.100 o https://miservidor.com", "LabelServerPort": "Puerto:", "LabelSimultaneousConnectionLimit": "Límite de transmisiones simultáneas:", @@ -997,7 +974,6 @@ "LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios aún no emitidos en temporadas", "LabelUnknownLanguage": "Idioma desconocido", "LabelUploadSpeedLimit": "Límite de velocidad de subida (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Usar los siguientes servicios:", "LabelUser": "Usuario:", "LabelUserAgent": "Agente de usuario:", @@ -1011,12 +987,9 @@ "LabelVersionInstalled": "{0} instalado", "LabelVersionNumber": "Versión {0}", "LabelVersionUpToDate": "¡Actualizado!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tipo de video", "LabelView": "Vista:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Determina el contenido del elemento X_DLNACAP en el espacio de nombre urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Determina el contenido del elemento X_DLNADOC en el espacio de nombreurn:schemas-dlna-org:device-1-0.", "LabelYourFirstName": "Tu nombre:", "LabelYoureDone": "Ha Terminado!", @@ -1027,11 +1000,9 @@ "LanNetworksHelp": "Lista de direcciones IP separadas por comas o entradas de IP / máscara de red para redes que se considerarán en la red local al imponer restricciones de ancho de banda. Si se establece, todas las demás direcciones IP se considerarán en la red externa y estarán sujetas a las restricciones de ancho de banda externo. Si se deja en blanco, solo se considera que la subred del servidor está en la red local.", "LatestFromLibrary": "Últimas {0}", "LearnHowToCreateSynologyShares": "Aprende a compartir carpetas en Synology", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Seleccione las carpetas de medios para compartir con este usuario. Los administradores podrán editar todas las carpetas usando el gestor de metadatos.", "LinkApi": "API", "LinkCommunity": "Comunidad", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Saber más sobre Jellyfin Premiere", "LiveTvUpdateAvailable": "(Actualización disponible)", "LoginDisclaimer": "Jellyfin está diseñado para ayudarte a gestionar tu biblioteca de medios personal, como fotos y vídeos caseros. Por favor mira nuestros términos de uso, el uso de cualquier software de Jellyfin conlleva aceptar estos términos.", @@ -1076,8 +1047,6 @@ "MediaInfoSampleRate": "Frecuencia de muestreo", "MediaInfoShutterSpeed": "Velocidad del obturador", "MediaInfoSize": "Tamaño", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Datos", "MediaInfoStreamTypeEmbeddedImage": "Imagen incrustada", "MediaInfoStreamTypeSubtitle": "Subtítulos", @@ -1189,11 +1158,6 @@ "Notifications": "Notificaciones", "NumLocationsValue": "{0} carpetas", "OpenSubtitleInstructions": "Deberás configurar la información de la cuenta de Open Subtitles en la pantalla de configuración de Open Subtitles en el panel de control del servidor.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Actores", "OptionAdminUsers": "Administradores", "OptionAfterSystemEvent": "Después de un evento de sistema", @@ -1221,16 +1185,12 @@ "OptionArt": "Arte", "OptionArtist": "Artista", "OptionAscending": "Ascendente", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Combinar automáticamente series que se distribuyen en varias carpetas", "OptionAutomaticallyGroupSeriesHelp": "Si está activada, las series que se distribuyen entre varias carpetas dentro de esta biblioteca se fusionarán automáticamente en una sola serie.", "OptionBackdrop": "Imagen de fondo", "OptionBackdropSlideshow": "Presentación de fondos", "OptionBackdrops": "Imágenes de fondo", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Mejor disponible", - "OptionBeta": "Beta", "OptionBirthLocation": "Lugar de nacimiento", "OptionBlockBooks": "Libros", "OptionBlockChannelContent": "Contenido de canales de Internet", @@ -1240,13 +1200,10 @@ "OptionBlockMovies": "Películas", "OptionBlockMusic": "Música", "OptionBlockOthers": "Otros", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "Programas TV", - "OptionBluray": "Bluray", "OptionBooks": "Libros", "OptionBox": "Caja", "OptionBoxRear": "Trasera caja", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Colecciones", "OptionCommunityRating": "Valoración comunidad", "OptionComposer": "Compositor", @@ -1266,7 +1223,6 @@ "OptionDefaultSort": "Por defecto", "OptionDescending": "Descendente", "OptionDev": "Desarrollo", - "OptionDirector": "Director", "OptionDirectors": "Directores", "OptionDisableUser": "Deshabilitar este usuario", "OptionDisableUserHelp": "Si está deshabilitado, el servidor no aceptará conexiones de este usuario. Si existen conexiones de este usuario, finalizarán inmediatamente.", @@ -1284,11 +1240,9 @@ "OptionDownloadDiscImage": "Disco", "OptionDownloadImagesInAdvance": "Descargar imagenes con antelación", "OptionDownloadImagesInAdvanceHelp": "Por defecto, la mayoría de las imágenes solo se descargan cuando lo solicita una aplicación Jellyfin. Activa esta opción para descargar todas las imágenes por adelantado, a medida que se importan nuevos medios. Esto puede causar escaneos de biblioteca significativamente más largos.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menú", "OptionDownloadPrimaryImage": "Principal", "OptionDownloadThumbImage": "Miniatura", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Integrado con el contenedor", "OptionEnableAccessFromAllDevices": "Habilitar acceso desde todos los equipos", "OptionEnableAccessToAllChannels": "Habilitar acceso a todos los canales", @@ -1327,7 +1281,6 @@ "OptionHasSubtitles": "Subtítulos", "OptionHasThemeSong": "Banda sonora", "OptionHasThemeVideo": "Vídeo temático", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Ocultar este usuario en las pantallas de inicio de sesión", "OptionHideUserFromLoginHelp": "Útil para privado o cuentas de administradores escondidos. El usuario tendrá que acceder entrando su nombre de usuario y contraseña manualmente.", "OptionHlsSegmentedSubtitles": "Subtítulos segmentados hls", @@ -1338,9 +1291,6 @@ "OptionImages": "Imágenes", "OptionImdbRating": "Valoración IMDb", "OptionInProgress": "En progreso", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Palabras clave", "OptionLatestChannelMedia": "Ultimos elementos de canales", "OptionLatestMedia": "Últimos medios", @@ -1349,7 +1299,6 @@ "OptionLikes": "Me gusta", "OptionList": "Lista", "OptionLocked": "Bloqueado", - "OptionLogo": "Logo", "OptionMax": "Máximo", "OptionMenu": "Menú", "OptionMissingEpisode": "Episodios que faltan", @@ -1367,7 +1316,6 @@ "OptionMusicVideos": "Vídeos de música", "OptionName": "Nombre", "OptionNameSort": "Nombre", - "OptionNo": "No", "OptionNoTrailer": "Sin trailer", "OptionNone": "Nada", "OptionOff": "Apagado", @@ -1387,24 +1335,19 @@ "OptionPlainVideoItemsHelp": "Si está habilitado, todos los vídeos están representados en DIDL como \"object.item.videoItem\" en lugar de un tipo más específico, como por ejemplo \"object.item.videoItem.movie\".", "OptionPlayCount": "Número de reproducc.", "OptionPlayed": "Reproducido", - "OptionPoster": "Poster", "OptionPosterCard": "Cartelera", "OptionPremiereDate": "Fecha de estreno", "OptionPrimary": "Primaria", "OptionPriority": "Prioridad", "OptionProducer": "Productor", "OptionProducers": "Productores", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Video audio", "OptionProtocolHls": "Emisión http en vivo", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Grabar a cualquier hora", "OptionRecordOnAllChannels": "Grabar en cualquier canal", "OptionRecordOnlyNewEpisodes": "Grabar sólo nuevos episodios", "OptionRecordSeries": "Grabar serie", - "OptionRegex": "Regex", "OptionRelease": "Release Oficial", "OptionReleaseDate": "Fecha de Lanzamiento", "OptionReportByteRangeSeekingWhenTranscoding": "Indicar que el servidor soporta la búsqueda de byte al transcodificar", @@ -1422,12 +1365,10 @@ "OptionScreenshot": "Captura de pantalla", "OptionSeason0": "Temporada 0", "OptionSeasons": "Temporadas", - "OptionSeries": "Series", "OptionSongs": "Canciones", "OptionSortName": "Ordenar por nombre", "OptionSpecialEpisode": "Especiales", "OptionStudios": "Estudios", - "OptionSubstring": "Substring", "OptionSunday": "Domingo", "OptionSundayShort": "Dom", "OptionSyncLosslessAudioOriginal": "Sincronizar audio sin pérdidas en calidad original", @@ -1451,7 +1392,6 @@ "OptionUpcomingDvdMovies": "Incluir tráilers de nuevas y próximas películas en DVD y Blu-ray", "OptionUpcomingMoviesInTheaters": "Incluir trailers de nuevas y próximas películas", "OptionUpcomingStreamingMovies": "Incluir tráilers de nuevas y próximas películas en Netflix", - "OptionVideoBitrate": "Video Bitrate", "OptionWakeFromSleep": "Despertar", "OptionWatched": "Visto", "OptionWednesday": "Miércoles", @@ -1471,7 +1411,6 @@ "PasswordResetHeader": "Reestablecer contraseña", "PasswordSaved": "Contraseña guardada.", "PersonTypePerson": "Persona", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "El código PIN se ha restablecido.", "PinCodeResetConfirmation": "¿Está seguro que desea restablecer el código PIN?", "PlayOnAnotherDevice": "Reproducir en otro dispositivo", @@ -1507,7 +1446,6 @@ "ScanLibrary": "Escanear biblioteca", "SelectCameraUploadServers": "Subir fotos de la cámara a los siguientes servidores:", "SendMessage": "Enviar mensaje", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "El servidor de Jellyfin necesitará ser reiniciado tras instalarse un plugin.", "ServerUpdateNeeded": "El servidor necesita actualizarse. Para descargar la última versión visita {0}", "Settings": "Opciones", @@ -1554,19 +1492,16 @@ "TabCollections": "Colecciones", "TabContainers": "Contenedores", "TabControls": "Controles", - "TabDLNA": "DLNA", "TabDashboard": "Panel de control", "TabDevices": "Dispositivos", "TabDirectPlay": "Reproducción directa", "TabDisplay": "Pantalla", "TabEpisodes": "Episodios", "TabExpert": "Experto", - "TabExtras": "Extras", "TabFavorites": "Favoritos", "TabFilter": "Filtrar", "TabFolders": "Carpetas", "TabGames": "Juegos", - "TabGeneral": "General", "TabGenres": "Géneros", "TabGuide": "Guía", "TabHelp": "Ayuda", @@ -1575,13 +1510,11 @@ "TabHosting": "Servidor", "TabImage": "imagen", "TabImages": "Imágenes", - "TabInfo": "Info", "TabLanguages": "Idiomas", "TabLatest": "Novedades", "TabLibrary": "Biblioteca", "TabLibraryAccess": "Acceso a biblioteca", "TabLiveTV": "TV en directo", - "TabLogs": "Logs", "TabMetadata": "Metadatos", "TabMovies": "Películas", "TabMusic": "Música", @@ -1603,7 +1536,6 @@ "TabPlayback": "Reproducción", "TabPlaylist": "Lista de reproducción", "TabPlaylists": "Listas de reproducción", - "TabPlugins": "Plugins", "TabProfile": "Perfil", "TabProfiles": "Perfiles", "TabRecordings": "Grabaciones", @@ -1612,7 +1544,6 @@ "TabScenes": "Escenas", "TabScheduledTasks": "Tareas programadas", "TabSecurity": "Seguridad", - "TabSeries": "Series", "TabServer": "Servidor", "TabServices": "Servicios", "TabSettings": "Opciones", @@ -1624,8 +1555,6 @@ "TabSuggestions": "Sugerencias", "TabSync": "Sincronizar", "TabSyncJobs": "Trabajos de sincronización", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Transcodificación", "TabUpcoming": "Próximos", "TabUsers": "Usuarios", @@ -1644,7 +1573,6 @@ "TitleNotifications": "Notificaciones", "TitlePasswordReset": "Reestablecer contraseña", "TitlePlayback": "Reproducción", - "TitlePlugins": "Plugins", "TitleRemoteControl": "Control remoto", "TitleScheduledTasks": "Tareas programadas", "TitleServer": "Servidor", @@ -1665,7 +1593,6 @@ "ValueAsRole": "como {0}", "ValueAudioCodec": "Codec de audio: {0}", "ValueAwards": "Premios: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Condiciones: {0}", "ValueContainer": "Contenedor: {0}", "ValueDateCreated": "Fecha de creación: {0}", @@ -1677,7 +1604,6 @@ "ValueItemCount": "ítem {0}", "ValueItemCountPlural": "ítems {0}", "ValueLinks": "Enlaces: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} vídeos musicales", "ValueOneAlbum": "1 álbum", @@ -1691,7 +1617,6 @@ "ValuePremiered": "Estrenada {0}", "ValuePremieres": "Estrenos {0}", "ValuePriceUSD": "Precio: {0} (USD)", - "ValueSeriesCount": "{0} series", "ValueSeriesYearToPresent": "{0} - Actualidad", "ValueSongCount": "{0} canciones", "ValueStatus": "Estado: {0}", @@ -1714,7 +1639,6 @@ "ViewTypeMusicFavoriteSongs": "Canciones favoritas", "ViewTypeMusicFavorites": "Favoritos", "ViewTypeMusicSongs": "Canciones", - "ViewTypeTvShows": "TV", "WelcomeToProject": "¡Bienvenido a Jellyfin!", "Whitelist": "Lista blanca", "WizardCompleted": "Eso es todo lo que necesitamos por ahora. Jellyfin a empezado a recolectar información de su biblioteca. Echale un vistazo a nuestras aplicaciones, y después presione Finalizar para ver el Panel de control", diff --git a/src/strings/fa.json b/src/strings/fa.json index cbca852e37..26ff3a8fac 100644 --- a/src/strings/fa.json +++ b/src/strings/fa.json @@ -1,231 +1,33 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", "AddUserByManually": "افزودن کاربری محلی با وارد کردن اطلاعات کاربر بصورت دستی", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "Advanced": "پیشرفته", - "Alerts": "Alerts", "All": "همه", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", "AllowMediaConversion": "اجازه تبدیل رسانه ها", "AllowMediaConversionHelp": "دادن یا ندادن دسترسی به ویژگی تبدیل رسانه ها", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "اجازه دادن اتصال از راه دور به سرور Jellyfin", "AllowRemoteAccessHelp": "اگرانتخاب نشود، تمامی اتصال های از راه دور بلوکه می شوند.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "مرور کردن", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "افزودن کاربر", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "لغو کردن", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "انتخاب پین کد", - "ButtonConnect": "Connect", "ButtonConvertMedia": "تبدیل رسانه", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", "ButtonDeleteImage": "حذف عکس", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "خروج", "ButtonFilter": "فیلتر", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "دعوت کاربر", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "جدید", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "خوب", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", "ButtonPlay": "پخش", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "سیاست حفظ حریم خصوصی", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "راهنمای شروع سریع", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "تنظیم مجدد رمز", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "ذخیره", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "مرتب سازی", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "آپلود", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "همگام سازی", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "حذف رسانه", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", "Disabled": "غیرفعال شده", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "کتاب ها", "FolderTypeGames": "بازی ها", "FolderTypeInherit": "به ارث می برند", @@ -235,1494 +37,142 @@ "FolderTypeMusicVideos": "موزیک ویدئوها", "FolderTypePhotos": "تصاویر", "FolderTypeTvShows": "سریال تلویزیونی", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", "HeaderAddLocalUser": "افزودن کاربر محلی", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "اضافه کردن کاربر", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", "HeaderAdvanced": "پیشرفته", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "همه ی ضبط شده ها", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "شنیداری", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", "HeaderAvailableServices": "سرویس های در دسترس", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "ادامه تماشا", "HeaderCreatePassword": "ایجاد رمز", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "پروفایل های سفارشی", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "دسترسی دستگاه", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "پین کد آسان", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", "HeaderFetcherSettings": "تنظیمات ورودی", "HeaderFilters": "فیلتر ها", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "گزینه های تصویر", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "سرویس های نصب شده", "HeaderInstantMix": "درهم کردن فوری", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "دعوت با Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "برای فعال یا غیرفعال سازی متاداده های Nfo ، یک کتابخانه را در صفحه تنظیم کتابخانه Jellyfin ویرایش کرده و قسمت سرورهای متاداده را مسیردهی کنید.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "آخرین قسمت ها", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "بعدی", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "مسیرها", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "انواع شخصیت ها:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "پخش همه", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "تنظیمات پخش", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "زبان مدنظر اطلاعات محتوی", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", "HeaderResume": "ادامه", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "تنظیم کتابخانه های محتوی", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "همگام سازی", "HeaderSyncJobInfo": "انجام همگام سازی", "HeaderSystemDlnaProfiles": "پروفایل های سیستم", "HeaderTV": "تلویزیون", - "HeaderTags": "Tags", "HeaderTaskTriggers": "فعال سازی عملیات ها", "HeaderTermsOfService": "شرایط خدمات Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "برای دسترسی لطفا کد پین آسان خود را وارد کنید", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", "HeaderTypeImageFetchers": "{0} هماهنگ کننده تصویر", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "خبرهای رسیده", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "آپلود تصویر جدید", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "کاربران", "HeaderVideo": "تصویری", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", "HowWouldYouLikeToAddUser": "چگونه می خواهید یک کاربر را اضافه کنید؟", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "قاب 1:1 پیشنهاد میشود. فقط JPG/PNG", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "افزودن یک کاربر با فرستادن یک ایمیل دعوتنامه", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "برای اضافه کردن کاربری که در این فهرست نیست، در ابتدا باید حسابهایشان را به سرویس Jellyfin Connect اتصال دهید.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "اولویت زبان صدا:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "پیکربندی تنظیمات", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "نوع محتوی", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "کشور", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "رمز فعلی:", - "LabelCurrentPath": "Current path:", "LabelCustomCertificatePath": "مسیر اختصصای گواهینامه SSL:", "LabelCustomCertificatePathHelp": "پچ به فایل PKCS #12 حاوی یک گواهینامه و کلید خصوصی است تا پشتیبانی از TLS را در یک دامنه شخصی فعال کند.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "نمایش قسمت های ناموجود در بین فصل ها", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "پوستر و اطلاعات محتوی از اینترنت دانلود شود", "LabelDownloadInternetMetadataHelp": "سرور Jellyfin میتواند اطلاعاتی در مورد رسانه های شما دانلود کند تا نمایشی غنی داشته باشید", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "پایان", - "LabelFolder": "Folder:", "LabelFolderType": "نوع پوشه", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "زبان", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "حداکثر درجه سنی مجاز والدین", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "رمز جدید:", "LabelNewPasswordConfirm": "تایید رمز جدید:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "بعدی", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "پین کد:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "قبلی", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "جدا شده توسط کاما این می تواند برای همه کدک ها اعمال شود.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "پوستر در پوشه مدیا ذخیره گردد", "LabelSaveLocalMetadataHelp": "ذخیره ی پوستر ها داخل پوشه های رسانه، امکان ویرایش آسان آنها را در یک مکان میسر میکند.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", "LabelSecureConnectionsMode": "حالت اتصال ایمن:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "انتخاب کاربران:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "اولویت زبان زیرنویس:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "مسیر فایل های موقت:", "LabelSyncTempPathHelp": "مشخص کردن یک پوشه سفارشی برای کارهای همگامسازی. رسانه های تبدیل شده در حین انجام پروسه همگامسازی در اینجا ذخیره خواهند شد.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "محدودیت زمان (ساعت):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", "LabelTypeMetadataDownloaders": "{0} دانلود کننده ی متاداده:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "نمایش قسمت های روی آنتن نرفته در بین فصل ها", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", "LabelUrl": "آدرس:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "اسم کوچک شما:", "LabelYoureDone": "به پایان رسید!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "انتخاب پوشه های رسانه برای اشتراک گذاری با این کاربر. مدیر سیستم میتواند با استفاده از مدیریت متاداده همه ی پوشه ها را ویرایش کند.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", "ManageLibrary": "مدیریت کتابخانه", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "محتواهای با درجه سنی بالاتر ، از دید این کاربر پنهان میشود.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "هیچ سرویسی در حال حاضر نصب نشده است", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "چیزی نیست.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "لطفا مطمئن شوید دانلود متاداده از اینترنت فعال است.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "بعدا میتوانید کاربران بیشتری را در داشبورد اضافه کنید.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", "NextUp": "بعدی چیه", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "چیزی یافت نشد. دیدن سریال ها یتان را شروع کنید!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "بازیگران", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", "OptionAscending": "صعودی", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "آزمایشی", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", "OptionDescending": "نزولی", "OptionDev": "توسعه", - "OptionDirector": "Director", "OptionDirectors": "کارگردان ها", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", "OptionDislikes": "پسندیده نشده ها", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "فعالسازی دسترسی از همه ی دستگاه ها", "OptionEnableAccessToAllChannels": "فعالسازی دسترسی به همه ی کانال ها", "OptionEnableAccessToAllLibraries": "فعالسازی دسترسی به همه ی کتابخانه ها", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "مورد علاقه ها", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "بازیگران مهمان", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "پسندها", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", "OptionPlayed": "پخش شده", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", "OptionProducers": "تهیه کنندگان", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", "OptionProfileVideo": "ویدیو", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "پخش نشده", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", "OptionWriters": "نویسندگان", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", "PreferredNotRequired": "ترجیح داده شده، اما الزامی نیست", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "ثبت نام با پی پال", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "نمایش تنظیمات پیشرفته", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", "TabAccess": "دسترسی", - "TabActivity": "Activity", "TabAdvanced": "پیشرفته", "TabAlbumArtists": "هنرمندان آلبوم", "TabAlbums": "آلبوم ها", - "TabAppSettings": "App Settings", "TabArtists": "هنرمندان", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "عناوین", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "قسمت ها", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", "TabGenres": "ژانرها", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "تصویر", "TabImages": "تصاویر", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "آخرین", - "TabLibrary": "Library", "TabLibraryAccess": "دسترسی به کتابخانه", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "اطلاعات محتوی", - "TabMovies": "Movies", - "TabMusic": "Music", "TabMusicVideos": "موزیک ویدیو ها", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", "TabNetworks": "شبکه ها", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "اعلان ها", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "رمز عبور", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "لیست پخش", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "پروفایل", "TabProfiles": "پروفایل ها", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "امنیت", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", "TabShows": "سریال ها", "TabSongs": "آهنگ ها", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", "TabSuggestions": "پیشنهادات", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", "TabUpcoming": "بزودی", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "در مورد خودتان به ما بگویید", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "این ویزارد برای انجام تنظیمات به شما کمک می کند. برای شروع، لطفا زبان مورد نظر خود را انتخاب فرمایید", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", "TitleNotifications": "اعلان ها", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "عملیات های برنامه ریزی شده", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin دارای پشتیبانی داخلی از پروفایل کاربران می باشد. با فعال سازی هر کاربر، او می تواند تنظیمات ، وضعیت پخش و کنترل والدین خاص خودش را داشته باشد.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "به Jellyfin خوش آمدید!", - "Whitelist": "Whitelist", "WizardCompleted": "همه چیزی که فعلا می خواهیم همین است.جمع آوری اطلاعات کتابخانه های شما هم اکنون توسط Jellyfin آغاز شده است. اپلیکیشن های ما را امتحان کنید و سپس بر روی پایان کلیک کنید تا پیشخوان سرور را مشاهده نمایید.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/fi.json b/src/strings/fi.json index 4843313371..567c25b81a 100644 --- a/src/strings/fi.json +++ b/src/strings/fi.json @@ -1,1728 +1,65 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Lisää Käyttäjä", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Selaa meidän lisäosa listaa katsoaksesi saatavilla olevia lisäosia.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Lisää Käyttäjä", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Lopeta", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", "ButtonDeleteImage": "Poista Kuva", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Uusi Salasana", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Tallenna", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Poista", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "Poista Kuva", "DeleteImageConfirmation": "Oletko varma että haluat poistaa tämän kuvan?", - "DeleteMedia": "Delete media", "DeleteUser": "Poista käyttäjä", "DeleteUserConfirmation": "Oletko varma että haluat poistaa tämän käyttäjän?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "Tiedostoa ei löydy.", "FileReadCancelled": "Tiedoston luku on peruutettu.", "FileReadError": "Virhe tiedoston luvun aikana.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAddUser": "Add User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Luo Salasana:", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Äänen ensisijainen kieli:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Muuta asetuksia", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Maa:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Tämän hetkinen salsana:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Näytä puuttuvat jaksot tuotantokausissa", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Lataa kuvamateriaali ja metadata internetistä", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Valmis", - "LabelFolder": "Folder:", "LabelFolderType": "Kansion tyyppi:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Kieli:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Suurin sallittu vanhempien arvostelu:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Uusi salasana:", "LabelNewPasswordConfirm": "Uuden salasanan varmistus:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Seuraava", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Edellinen", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Tallenna kuvamateriaali ja metadata media kansioihin.", "LabelSaveLocalMetadataHelp": "Kuvamateriaalin ja metadatan tallentaminen suoraan kansioihin missä niitä on helppo muuttaa.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Tekstityksien ensisijainen kieli:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Näytä julkaisemattomat jaksot tuotantokausissa", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Sinun ensimmäinen nimi:", "LabelYoureDone": "Olet valmis!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Valitse media kansiot jotka haluat jakaa tämän käyttäjän kanssa. Järjestelmänvalvoja pystyy muokkaamaan kaikkia kansioita käyttäen metadata hallintaa.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Suuremman arvosanan takia, sisältö tulla piilottamaan käyttäjältä.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Käyttäjiä voi lisätä lisää myöhemmin Dashboardista", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Sinulla ei ole mitään lisäosia asennettuna.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", "OptionRelease": "Virallinen Julkaisu", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Salasana", "PasswordMatchError": "Salasana ja salasanan vahvistuksen pitää olla samat.", "PasswordResetComplete": "Salasana on palauttettu.", "PasswordResetConfirmation": "Oletko varma, että haluat palauttaa salasanan?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "Salasana tallennettu.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "Asetukset tallennettu.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Kuva", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", "TabLibraryAccess": "Kirjaston Pääsy", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "Salasana", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profiili", "TabProfiles": "Profiilit", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Suojaus", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Kerro meille itsestäsi", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Tämä työkalu auttaa sinua asennus prosessin aikana. loittaaksesi valitse kieli.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Oletko varma, että haluat poistaa {0}?", "UninstallPluginHeader": "Poista Lisäosa", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "Käyttäjät", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", - "WelcomeToProject": "Welcome to Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/fr-CA.json b/src/strings/fr-CA.json index b390c7c566..3f7a04be09 100644 --- a/src/strings/fr-CA.json +++ b/src/strings/fr-CA.json @@ -1,1728 +1,27 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Convertir le média", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Politique de confidentialité", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Guide de démarrage rapide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "Séries TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAddUser": "Add User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Continuer à regarder", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", "HeaderMyMedia": "Mes Médias", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "À Suivre", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Conditions d'utilisation de Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Configurer les paramètres", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Terminer", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Suivant", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Précédent", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Votre prénom:", "LabelYoureDone": "Vous avez Terminé!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "D'autres utilisateurs pourront être ajoutés ultérieurement à partir du tableau de bord.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", "TabNextUp": "À Suivre", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Parlez-nous de vous", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Cet assistant vous guidera dans le processus de configuration. Pour commencer, merci de sélectionner votre langue préférée.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin supporte nativement les profils utilisateurs, les préférences d'affichage, la sauvegarde de l'état de lecture et le contrôle parental.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bienvenue dans Jellyfin !", - "Whitelist": "Whitelist", "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Jellyfin a commencé à collecter les informations de votre bibliothèque de médias. Jetez un oeil à quelques unes de nos applications, puis cliquez sur Terminer pour consulter le Tableau de bord du serveur.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/fr.json b/src/strings/fr.json index 386924a391..b011a35415 100644 --- a/src/strings/fr.json +++ b/src/strings/fr.json @@ -17,7 +17,6 @@ "AllowRemoteAccess": "Autoriser les connexions distantes à ce serveur Jellyfin.", "AllowRemoteAccessHelp": "Si l'option est désactivée, toutes les connexions distantes seront bloquées.", "AllowedRemoteAddressesHelp": "Liste d'adresses IP ou d'IP/masque de sous-réseau séparées par des virgules qui seront autorisées à se connecter à distance. Si la liste est vide, toutes les adresses distantes seront autorisées.", - "Audio": "Audio", "BirthDateValue": "Né(e) le {0}", "BirthPlaceValue": "Lieu de naissance : {0}", "Blacklist": "Liste noire", @@ -59,7 +58,6 @@ "ButtonFilter": "Filtre", "ButtonForgotPassword": "Mot de passe oublié", "ButtonFullscreen": "Plein écran", - "ButtonGuide": "Guide", "ButtonHelp": "Aide", "ButtonHide": "Cacher", "ButtonHome": "Accueil", @@ -70,7 +68,6 @@ "ButtonManageFolders": "Gérer les dossiers", "ButtonManageServer": "Gérer le serveur", "ButtonManualLogin": "Connexion manuelle", - "ButtonMenu": "Menu", "ButtonMore": "Plus", "ButtonMoreInformation": "Plus d'informations", "ButtonMute": "Sourdine", @@ -83,11 +80,9 @@ "ButtonNo": "Non", "ButtonNowPlaying": "En cours de lecture", "ButtonOff": "Arrêt", - "ButtonOk": "Ok", "ButtonOpen": "Ouvrir", "ButtonOther": "Autre", "ButtonParentalControl": "Contrôle parental", - "ButtonPause": "Pause", "ButtonPlay": "Lire", "ButtonPlayTrailer": "Bande-annonce", "ButtonPlaylist": "Liste de lecture", @@ -162,8 +157,6 @@ "ButtonWebsite": "Site Web", "ButtonYes": "Oui", "CancelSeries": "Annuler la série", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Synchroniser", "CategorySystem": "Système", "CategoryUser": "Utilisateur", @@ -233,7 +226,6 @@ "FolderTypeMovies": "Films", "FolderTypeMusic": "Musique", "FolderTypeMusicVideos": "Vidéos musicales", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", "FolderTypeUnset": "Contenu mixte", "ForAdditionalLiveTvOptions": "Pour d'autres fournisseurs de TV en direct, cliquez sur l'onglet Services afin de voir les options disponibles.", @@ -262,7 +254,6 @@ "HeaderAdmin": "Administrateur", "HeaderAdvanced": "Avancé", "HeaderAirDays": "Jours de diffusion", - "HeaderAlbums": "Albums", "HeaderAlert": "Alerte", "HeaderAllRecordings": "Tous les enregistrements", "HeaderAllowMediaDeletionFrom": "Autoriser la suppression de médias à partir de", @@ -270,7 +261,6 @@ "HeaderApiKeys": "Clés API", "HeaderApiKeysHelp": "Les applications externes ont besoin d'une clé d'API pour communiquer avec le serveur Jellyfin. Les clés sont distribuées lors d'une connexion avec un compte Jellyfin, ou bien en accordant manuellement une clé à une application.", "HeaderApp": "Application", - "HeaderAudio": "Audio", "HeaderAudioLanguages": "Langues audio", "HeaderAudioSettings": "Paramètres audio", "HeaderAudioTracks": "Pistes audio", @@ -295,11 +285,9 @@ "HeaderChapterImages": "Images des chapitres", "HeaderChapters": "Chapitres", "HeaderCinemaMode": "Mode cinéma", - "HeaderClients": "Clients", "HeaderCloudSync": "Synchronisation dans le cloud", "HeaderCodecProfile": "Profil de codec", "HeaderCodecProfileHelp": "Les profils de codec indiquent les limites d'un appareil lors de la lecture de codecs spécifiques. Si la limite s'applique au média, ce dernier sera transcodé, même si le codec est configuré pour la lecture directe.", - "HeaderCollections": "Collections", "HeaderColumns": "Colonnes", "HeaderConfigureRemoteAccess": "Configurer l'accès distant", "HeaderConfirm": "Confirmer", @@ -311,7 +299,6 @@ "HeaderConfirmRemoveUser": "Supprimer l'utilisateur", "HeaderConfirmRevokeApiKey": "Révoquer la clé API", "HeaderConfirmSeriesCancellation": "Confirmez l'annulation de la série", - "HeaderConfirmation": "Confirmation", "HeaderConnectToServer": "Connexion au serveur", "HeaderConnectionFailure": "Échec de connexion", "HeaderContainerProfile": "Profil de conteneur", @@ -321,7 +308,6 @@ "HeaderCredits": "Crédits", "HeaderCustomDlnaProfiles": "Profils personnalisés", "HeaderDashboardUserPassword": "Les mots de passe utilisateurs sont gérés dans les paramètres de profil personnel de chaque utilisateur.", - "HeaderDate": "Date", "HeaderDateIssued": "Date de publication", "HeaderDays": "Jours", "HeaderDefaultRecordingSettings": "Paramètres d'enregistrement par défaut", @@ -330,7 +316,6 @@ "HeaderDeleteItem": "Supprimer l'élément", "HeaderDeleteProvider": "Supprimer le fournisseur", "HeaderDeleteTaskTrigger": "Supprimer le déclencheur de tâche", - "HeaderDestination": "Destination", "HeaderDetails": "Détails", "HeaderDetectMyDevices": "Détecter mes appareils", "HeaderDeveloperInfo": "Informations du développeur", @@ -369,26 +354,21 @@ "HeaderFreeApps": "Applications Jellyfin gratuites", "HeaderFrequentlyPlayed": "Fréquemment lus", "HeaderGames": "Jeux", - "HeaderGenres": "Genres", "HeaderGuests": "Invités", "HeaderGuideProviders": "Fournisseurs de données de guides TV", "HeaderHomePage": "Accueil", "HeaderHomeScreenSettings": "Paramètres de l'écran d'accueil", "HeaderHttpHeaders": "En-têtes HTTP", - "HeaderIdentification": "Identification", "HeaderIdentificationCriteriaHelp": "Saisissez au moins un critère d'identification.", "HeaderIdentificationHeader": "En-tête d'identification", "HeaderImageBackdrop": "Image d'arrière-plan", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Options d'image", "HeaderImagePrimary": "Primaire", "HeaderImageSettings": "Paramètres d'image", - "HeaderImages": "Images", "HeaderInstall": "Installer", "HeaderInstalledServices": "Services installés", "HeaderInstantMix": "Mix instantané", "HeaderInvitationSent": "Invitation envoyée", - "HeaderInvitations": "Invitations", "HeaderInviteUser": "Inviter un utilisateur", "HeaderInviteUserHelp": "Le partage de média avec vos amis n'a jamais été aussi facile avec Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "Inviter via Jellyfin Connect", @@ -427,7 +407,6 @@ "HeaderMediaFolders": "Dossiers multimédias", "HeaderMediaInfo": "Informations du média", "HeaderMediaLocations": "Emplacements de média", - "HeaderMenu": "Menu", "HeaderMissing": "Manquant", "HeaderMoreLikeThis": "Similaires", "HeaderMovies": "Films", @@ -435,7 +414,6 @@ "HeaderMyMedia": "Mes Médias", "HeaderMyViews": "Mes vues", "HeaderName": "Nom", - "HeaderNavigation": "Navigation", "HeaderNetwork": "Réseau", "HeaderNewApiKey": "Nouvelle clé API", "HeaderNewApiKeyHelp": "Permet à une application de communiquer avec le serveur Jellyfin.", @@ -443,13 +421,11 @@ "HeaderNewServer": "Nouveau serveur", "HeaderNewUsers": "Nouveaux utilisateurs", "HeaderNextUp": "À suivre", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Lecture en cours", "HeaderNumberOfPlayers": "Lecteurs", "HeaderOffline": "Hors ligne", "HeaderOfflineSync": "Synchronisation hors ligne", "HeaderOnNow": "En ce moment", - "HeaderOptions": "Options", "HeaderOtherDisplaySettings": "Paramètres d'affichage", "HeaderOtherItems": "Autres éléments", "HeaderOverview": "Aperçu", @@ -528,7 +504,6 @@ "HeaderSeries": "Séries", "HeaderSeriesRecordings": "Enregistrements de séries", "HeaderServerSettings": "Paramètres du serveur", - "HeaderServices": "Services", "HeaderSettings": "Paramètres", "HeaderSetupLibrary": "Configurer vos médiathèques", "HeaderSetupTVGuide": "Configuration du guide TV", @@ -537,13 +512,11 @@ "HeaderSignUp": "S'inscrire", "HeaderSortBy": "Trier par", "HeaderSortOrder": "Ordre de tri", - "HeaderSource": "Source", "HeaderSpecialEpisodeInfo": "Informations de l'épisode spécial", "HeaderSpecialFeatures": "Bonus", "HeaderSpecials": "Épisodes spéciaux", "HeaderSplitMedia": "Séparer les médias", "HeaderStatus": "État", - "HeaderStudios": "Studios", "HeaderSubtitleDownloads": "Téléchargements des sous-titres", "HeaderSubtitleProfile": "Profil de sous-titre", "HeaderSubtitleProfiles": "Profils de sous-titre", @@ -554,7 +527,6 @@ "HeaderSync": "Synchroniser", "HeaderSyncJobInfo": "Tâche de synchronisation", "HeaderSystemDlnaProfiles": "Profils système", - "HeaderTV": "TV", "HeaderTags": "Étiquettes", "HeaderTaskTriggers": "Déclencheurs de tâches", "HeaderTermsOfService": "Conditions d'utilisation d'Jellyfin", @@ -570,9 +542,6 @@ "HeaderTranscodingProfile": "Profil de transcodage", "HeaderTranscodingProfileHelp": "Ajoutez des profils de transcodage pour indiquer quels formats utiliser quand le transcodage est nécessaire.", "HeaderTunerDevices": "Appareils tuner", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", "HeaderTypeImageFetchers": "{0} chercheurs d'image", "HeaderTypeText": "Entrer texte", "HeaderUnaired": "Non diffusé", @@ -605,7 +574,6 @@ "ImageUploadAspectRatioHelp": "Rapport d'aspect 1:1 recommandé. Seulement JPG/PNG.", "ImportFavoriteChannelsHelp": "Activez cette option pour n'importer que les chaînes ajoutées aux favoris sur le tuner.", "ImportMissingEpisodesHelp": "Les informations à propos des épisodes manquants seront importées dans votre base de donnée Jellyfin et affichées dans les saisons et séries. Cela peut accroître significativement la durée d'actualisation de la médiathèque.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "Ajouter un utilisateur en lui envoyant un email d'invitation", "JellyfinIntroDownloadMessage": "Pour télécharger et installer le serveur Jellyfin gratuit, visitez {0}.", "JellyfinIntroDownloadMessageWithoutLink": "Pour télécharger et installer le serveur Jellyfin gratuit, veuillez visitez le site web d'Jellyfin.", @@ -664,7 +632,6 @@ "LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualité garantit un bon confort d'utilisation pour le streaming.", "LabelCodecIntrosPath": "Chemin des introductions des codecs :", "LabelCodecIntrosPathHelp": "Un dossier contenant des fichiers vidéo. Si le nom d'un fichier vidéo d'introduction correspond au codec vidéo, au codec audio, au profil audio ou à une étiquette, alors il sera lu avant le film principal.", - "LabelCollection": "Collection", "LabelCommunityRating": "Note de la communauté :", "LabelCompleted": "Terminé avec succès", "LabelComponentsUpdated": "Les composants suivants ont été installés ou mis à jour :", @@ -718,7 +685,6 @@ "LabelDownloadInternetMetadataHelp": "Le serveur Jellyfin peut télécharger les informations des médias pour enrichir la présentation.", "LabelDownloadLanguages": "Téléchargement des langues :", "LabelDropImageHere": "Déposez l'image ici.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Code Easy PIN :", "LabelEmail": "Courriel :", "LabelEmailAddress": "Adresse courriel", @@ -1010,7 +976,6 @@ "LabelVaapiDeviceHelp": "Ceci est le nœud de rendu qui est utilisé pour l'accélération matérielle.", "LabelValue": "Valeur :", "LabelVersionInstalled": "{0} installé(s)", - "LabelVersionNumber": "Version {0}", "LabelVersionUpToDate": "À jour !", "LabelVideoCodec": "Vidéo : {0}", "LabelVideoType": "Type de vidéo:", @@ -1032,7 +997,6 @@ "LibraryAccessHelp": "Sélectionnez les dossiers multimédia à partager avec cet utilisateur. Les administrateurs pourront modifier tous les dossiers en utilisant le gestionnaire de métadonnées.", "LinkApi": "API", "LinkCommunity": "Communauté", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Apprenez-en davantage sur Jellyfin Premiere", "LiveTvUpdateAvailable": "(Mise à jour disponible)", "LoginDisclaimer": "Jellyfin est conçu pour vous aider à gérer votre médiathèque personnelle, tels que vos photos et vidéos. Veuillez lire nos conditions d'utilisation. L'utilisation de tout logiciel Jellyfin implique que vous acceptiez ces conditions.", @@ -1041,7 +1005,6 @@ "MapChannels": "Carte des chaînes", "MarkFFmpegExec": "Si vous utilisez Linux ou OSX, vous devrez trouver les fichiers ffmpeg et ffprobe et les rendre exécutables. C'est nécessaire pour qu'Jellyfin puisse les exécuter.", "MaxParentalRatingHelp": "Le contenu ayant une classification parentale plus élevée ne sera pas visible par cet utilisateur.", - "MediaInfoAltitude": "Altitude", "MediaInfoAnamorphic": "Anamorphique", "MediaInfoAperture": "Ouverture", "MediaInfoAspectRatio": "Ratio d'aspect original", @@ -1050,7 +1013,6 @@ "MediaInfoCameraMake": "Fabricant", "MediaInfoCameraModel": "Modèle de l'appareil photo", "MediaInfoChannels": "Chaînes", - "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Étiquette du codec", "MediaInfoContainer": "Conteneur", "MediaInfoDefault": "Défaut", @@ -1059,16 +1021,12 @@ "MediaInfoFile": "Fichier", "MediaInfoFocalLength": "Longueur focale", "MediaInfoForced": "Forcé", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Images par seconde", "MediaInfoInterlaced": "Entrelacé", "MediaInfoIsoSpeedRating": "Vitesse ISO", "MediaInfoLanguage": "Langue", - "MediaInfoLatitude": "Latitude", "MediaInfoLayout": "Répartition", "MediaInfoLevel": "Niveau", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "Chemin", "MediaInfoPixelFormat": "Format de pixel", "MediaInfoProfile": "Profil", @@ -1078,7 +1036,6 @@ "MediaInfoShutterSpeed": "Vitesse d'obturation", "MediaInfoSize": "Taille", "MediaInfoSoftware": "Logiciel", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Données", "MediaInfoStreamTypeEmbeddedImage": "Image intégrée", "MediaInfoStreamTypeSubtitle": "Sous-titre", @@ -1187,18 +1144,12 @@ "NoPluginConfigurationMessage": "Cette extension n'a aucun paramètre à configurer.", "NoPluginsInstalledMessage": "Vous n'avez aucune extensions installée.", "NoResultsFound": "Aucun résultat trouvé.", - "Notifications": "Notifications", "NumLocationsValue": "{0} dossiers", "OpenSubtitleInstructions": "Vous devez configurer les informations de compte Open Subtitles sur l'écran de configuration Open Subtitles du tableau de bord du serveur Jellyfin.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Acteur(trice)", "OptionActors": "Acteurs(trices)", "OptionAdminUsers": "Administrateurs", "OptionAfterSystemEvent": "Après un évènement système", - "OptionAlbum": "Album", "OptionAlbumArtist": "Artiste de l'album", "OptionAll": "Tous", "OptionAllUsers": "Tous les utilisateurs", @@ -1219,7 +1170,6 @@ "OptionAllowVideoPlaybackRemuxing": "Autoriser la lecture de vidéos nécessitant une conversion sans réencodage", "OptionAllowVideoPlaybackTranscoding": "Autoriser la lecture de vidéos nécessitant un transcodage", "OptionAnyNumberOfPlayers": "N'importe", - "OptionArt": "Art", "OptionArtist": "Artiste", "OptionAscending": "Croissant", "OptionAuto": "Automatique", @@ -1231,7 +1181,6 @@ "OptionBackdrops": "Arrière-plans", "OptionBanner": "Bannière", "OptionBestAvailableStreamQuality": "Meilleur qualité disponible", - "OptionBeta": "Beta", "OptionBirthLocation": "Lieu de naissance", "OptionBlockBooks": "Livres", "OptionBlockChannelContent": "Chaînes Internet", @@ -1243,12 +1192,9 @@ "OptionBlockOthers": "Autres", "OptionBlockTrailers": "Bandes-annonces", "OptionBlockTvShows": "Émissions TV", - "OptionBluray": "Bluray", "OptionBooks": "Livres", "OptionBox": "Boîtier", "OptionBoxRear": "Dos de boîtier", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Note de la communauté", "OptionComposer": "Compositeur(trice)", "OptionComposers": "Compositeurs(trices)", @@ -1278,15 +1224,12 @@ "OptionDisplayChannelsInlineHelp": "Si l'option est activée, les chaînes seront affichées directement à côté des autres médiathèques. Sinon, elles seront affichées dans un dossier Chaînes séparé.", "OptionDisplayFolderView": "Afficher une vue de dossiers pour montrer les dossiers multimédia en intégralité.", "OptionDisplayFolderViewHelp": "Les applications Jellyfin vont afficher une catégorie Dossiers à côté de votre médiathèque. C'est utile si vous souhaitez avoir une vue complète des dossiers.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Dos", "OptionDownloadBannerImage": "Bannière", "OptionDownloadBoxImage": "Boîtier", "OptionDownloadDiscImage": "Disque", "OptionDownloadImagesInAdvance": "Télécharger les images en avance", "OptionDownloadImagesInAdvanceHelp": "Par défaut, la plupart des images sont téléchargées seulement lorsqu'une application Jellyfin le demande. Sélectionnez cette option pour télécharger toutes les images à l'avance, lorsqu'un nouveau média est importé. Cela peut allonger significativement la durée d'actualisation de la médiathèque.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Principal", "OptionDownloadThumbImage": "Vignette", "OptionDvd": "DVD", @@ -1322,7 +1265,6 @@ "OptionFridayShort": "Ven", "OptionGameSystems": "Plateformes de jeu", "OptionGames": "Jeux", - "OptionGenres": "Genres", "OptionGuestStars": "Guest stars", "OptionHasSpecialFeatures": "Bonus", "OptionHasSubtitles": "Sous-titres", @@ -1336,11 +1278,8 @@ "OptionIcon": "Icône", "OptionIgnoreTranscodeByteRangeRequests": "Ignore les requêtes de transcodage de plage d'octets", "OptionIgnoreTranscodeByteRangeRequestsHelp": "Si l'option est activée, ces requêtes seront honorées mais l'en-tête de plage d'octets sera ignoré.", - "OptionImages": "Images", "OptionImdbRating": "Note IMDb", "OptionInProgress": "En cours", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Mots-clés", "OptionLatestChannelMedia": "Dernières éléments de la chaines", @@ -1350,9 +1289,7 @@ "OptionLikes": "Aimés", "OptionList": "Liste", "OptionLocked": "Verrouillé", - "OptionLogo": "Logo", "OptionMax": "Maximum", - "OptionMenu": "Menu", "OptionMissingEpisode": "Épisodes manquantes", "OptionMissingImdbId": "Identifiant IMDb manquant", "OptionMissingOverview": "Résumé manquant", @@ -1371,8 +1308,6 @@ "OptionNo": "Non", "OptionNoTrailer": "Aucune bande-annonce", "OptionNone": "Aucun", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Au démarrage de l'application", "OptionOnInterval": "Par intervalle", "OptionOtherApps": "Autres applications", @@ -1395,17 +1330,13 @@ "OptionPriority": "Priorité", "OptionProducer": "Producteur(trice)", "OptionProducers": "Producteurs", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", "OptionProfileVideo": "Vidéo", "OptionProfileVideoAudio": "Vidéo Audio", "OptionProtocolHls": "Streaming Http en direct", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Enregistrer à n'importe quel moment", "OptionRecordOnAllChannels": "Enregistrer sur toutes les chaînes", "OptionRecordOnlyNewEpisodes": "Enregistrer seulement les nouveaux épisodes", "OptionRecordSeries": "Enregistrer la série", - "OptionRegex": "Regex", "OptionRelease": "Version officielle", "OptionReleaseDate": "Date de sortie", "OptionReportByteRangeSeekingWhenTranscoding": "Signaler que le serveur prend en charge la recherche d'octets lors du transcodage", @@ -1427,7 +1358,6 @@ "OptionSongs": "Chansons", "OptionSortName": "Clé de tri", "OptionSpecialEpisode": "Spéciaux", - "OptionStudios": "Studios", "OptionSubstring": "Sous-chaîne", "OptionSunday": "Dimanche", "OptionSundayShort": "Dim", @@ -1518,8 +1448,6 @@ "SetupFFmpegHelp": "Jellyfin peut avoir besoin d'une librairie ou d'une application pour convertir certains types de média. Il y a beaucoup d'applications différentes, cependant Jellyfin a été testé avec FFmpeg. Jellyfin n'est en rien affilié avec FFmpeg, sa propriété, son code ou sa distribution.", "ShowAdvancedSettings": "Configuration avancée", "SimultaneousConnectionLimitHelp": "Le nombre maximal de flux simultanés autorisés. Entrez 0 pour aucune limite.", - "Sports": "Sports", - "Standard": "Standard", "StatusRecording": "Enregistrement en cours", "StatusRecordingProgram": "Enregistrement de {0}", "StatusWatching": "Lecture en cours", @@ -1539,7 +1467,6 @@ "TabActivity": "Activité", "TabAdvanced": "Avancé", "TabAlbumArtists": "Artistes sur l'album", - "TabAlbums": "Albums", "TabAppSettings": "Paramètres d'application", "TabArtists": "Artistes", "TabBasic": "Standard", @@ -1550,33 +1477,24 @@ "TabChannels": "Chaînes", "TabChapters": "Chapitres", "TabCinemaMode": "Mode cinéma", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titres", - "TabCollections": "Collections", "TabContainers": "Conteneurs", "TabControls": "Commandes", - "TabDLNA": "DLNA", "TabDashboard": "Tableau de bord", "TabDevices": "Appareils", "TabDirectPlay": "Lecture directe", "TabDisplay": "Affichage", "TabEpisodes": "Épisodes", - "TabExpert": "Expert", "TabExtras": "Bonus", "TabFavorites": "Favoris", "TabFilter": "Filtre", "TabFolders": "Répertoires", "TabGames": "Jeux", "TabGeneral": "Général", - "TabGenres": "Genres", - "TabGuide": "Guide", "TabHelp": "Aide", "TabHome": "Accueil", "TabHomeScreen": "Écran d'accueil", "TabHosting": "Hébergement", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", "TabLanguages": "Langues", "TabLatest": "Derniers", "TabLibrary": "Médiathèque", @@ -1589,22 +1507,18 @@ "TabMusicVideos": "Vidéos musicales", "TabMyLibrary": "Ma médiathèque", "TabMyPlugins": "Mes extensions", - "TabNavigation": "Navigation", "TabNetworks": "Réseaux", "TabNextUp": "À suivre", "TabNfoSettings": "Paramètres NFO", - "TabNotifications": "Notifications", "TabNowPlaying": "Lecture en cours", "TabOther": "Autre", "TabOthers": "Autres", "TabParentalControl": "Contrôle Parental", "TabPassword": "Mot de passe", "TabPaths": "Chemins", - "TabPhotos": "Photos", "TabPlayback": "Lecture", "TabPlaylist": "Liste de lecture", "TabPlaylists": "Listes de lecture", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profils", "TabRecordings": "Enregistrements", @@ -1615,17 +1529,12 @@ "TabSecurity": "Sécurité", "TabSeries": "Séries", "TabServer": "Serveur", - "TabServices": "Services", "TabSettings": "Paramètres", "TabShows": "Séries", "TabSongs": "Chansons", - "TabStreaming": "Streaming", - "TabStudios": "Studios", "TabSubtitles": "Sous-titres", - "TabSuggestions": "Suggestions", "TabSync": "Synchroniser", "TabSyncJobs": "Tâches de synchronisation", - "TabTV": "TV", "TabTrailers": "Bandes-annonces", "TabTranscoding": "Transcodage", "TabUpcoming": "À venir", @@ -1642,7 +1551,6 @@ "TitleHostingSettings": "Paramètres d'hébergement", "TitleLiveTV": "TV en direct", "TitleNewUser": "Nouvel utilisateur", - "TitleNotifications": "Notifications", "TitlePasswordReset": "Mot de passe réinitialisé", "TitlePlayback": "Lecture", "TitlePlugins": "Extensions", @@ -1660,7 +1568,6 @@ "UserAgentHelp": "Fournissez un en-tête http user agent personnalisé, si nécessaire.", "UserProfilesIntro": "Jellyfin supporte nativement les profils utilisateurs, permettant à chaque utilisateur d'avoir ses propres préférences d'affichage, sauvegarde de l'état de lecture et contrôle parental.", "Users": "Utilisateurs", - "ValueAlbumCount": "{0} albums", "ValueArtist": "Artiste : {0}", "ValueArtists": "Artistes : {0}", "ValueAsRole": "en tant que {0}", @@ -1678,10 +1585,8 @@ "ValueItemCount": "{0} élément", "ValueItemCountPlural": "{0} éléments", "ValueLinks": "Liens : {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} vidéos musicales", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 épisode", "ValueOneGame": "1 jeu", "ValueOneMovie": "1 film", @@ -1702,7 +1607,6 @@ "ValueTimeLimitSingleHour": "Limite de temps : 1 heure", "ValueTrailerCount": "{0} bandes-annonces", "ValueVideoCodec": "Codec Vidéo : {0}", - "VersionNumber": "Version {0}", "ViewPlaybackInfo": "Voir les informations de lecture", "ViewTypeFolders": "Dossiers", "ViewTypeGames": "Jeux", @@ -1715,7 +1619,6 @@ "ViewTypeMusicFavoriteSongs": "Chansons favorites", "ViewTypeMusicFavorites": "Favoris", "ViewTypeMusicSongs": "Chansons", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bienvenue dans Jellyfin !", "Whitelist": "Liste blanche", "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Jellyfin a commencé à collecter les informations de votre médiathèque. Jetez un coup d'œil à quelques-unes de nos applications, puis cliquez sur Terminer pour consulter le Tableau de bord du serveur.", diff --git a/src/strings/gsw.json b/src/strings/gsw.json index 1fb6276b9c..d1434c8a86 100644 --- a/src/strings/gsw.json +++ b/src/strings/gsw.json @@ -1,1728 +1,178 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Erstell en User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Abbreche", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Konfigurier de Pin Code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Konvertiere Medie", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", "ButtonDeleteImage": "Lösch Bild", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Verlasse", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "Lad en User i", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Neu", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "OK", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Datenutzig-Richtlinie", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Schnellstart Instruktione", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Passwort zrug setze", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Speichere", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Sortiere", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Synchronisierig", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Wähl en Kanal us, um de mit dem User z'teile. Administratore werded immer d'Möglichkeit ha alli Kanäl mitm Metadate Manager z'bearbeite.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Das betrifft nur Grät wo einzigartig indentifiziert werded und tuet ned Browser Zuegriff verhindere. En Filter för Grät Zuegriff verhindered, dass neui Grät dezue gfüegt werded, bovor si ned überprüefd worde sind.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Büecher", - "FolderTypeGames": "Games", "FolderTypeInherit": "erbfähig", - "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Film", "FolderTypeMusic": "Musig", "FolderTypeMusicVideos": "Musigvideos", "FolderTypePhotos": "Föteli", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Erstell en User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", "HeaderAirDays": "Usstrahligs Täg", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Automatischi Updates", "HeaderAvailableServices": "Verfüegbari Dienst", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Erstell es Passwort", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Grät Zuegriff", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Eifache Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Vell gspellt", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Installierti Dienst", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Letschti Albene", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Letschti Episode", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "Letschti Film", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLatestSongs": "Letschti Songs", "HeaderLatestTrailers": "Letschti Trailer", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Verwaltig", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "Als nöchsts", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Jetz am spelle", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Pfad", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Persone Art:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Abspell iistellige", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Erst grad dezue gfüegt", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", "HeaderResume": "Fortsetze", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "synchronisiere", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Jellyfin Nutzigsbedingige", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Um Zuegriff z'ha, gib bitte diin eifache Pin Code i", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Lad es neus Bild ue", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "User", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 Siiteverhältnis wär vo Vorteil - nur JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'wähle, muesch z'erst no sin Account mit Jellyfin Connect im Userprofil verbinde.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artist:", "LabelArtistsHelp": "Trenn mehreri iisträg dur es ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Audio Sproch iistellig:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Bearbeite iistellige", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Date Art:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Land:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Jetzigs Passwort:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Zeig fehlendi Episode innerhalb vo de einzelne Staffle", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Lade Bilder und Metadate vom Internet abe", "LabelDownloadInternetMetadataHelp": "Jellyfin Server chan Infos vo diine Medie abelade um grösseri und schöneri Asichte z'generiere.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Beende", - "LabelFolder": "Folder:", "LabelFolderType": "Ordner Art:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Sproch:", "LabelLastResult": "Letschti Ergebnis:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Maximum erlaubti Kindersicherig:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Neus Passwort:", "LabelNewPasswordConfirm": "Neus Passwort bestätige:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Nöchst", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Pin Code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Vorher", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Speicher Bilder und Metadate i d'Medieordner", "LabelSaveLocalMetadataHelp": "Wennd Bilder und Metadate direkt i d'Medieordner speicherisch, chasch sie eifach weder finde und au bearbeite.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Wähl User:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Undertitel Sproch iistellig:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Pfad för temporäri Date:", "LabelSyncTempPathHelp": "Gib en eigene Arbetsordner för d'Synchronisierig a. Konvertierti Medie werded während em Sync-Prozess det gspeichered.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "Ziitlimit (h):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Zeig ned usgstrahlti Episode innerhalb vo de einzelne Staffle", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video Art:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Din Vorname:", "LabelYoureDone": "Du besch fertig!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Wähl en Medieordner us, um de mit dem User z'teile. Administratore werded immer d'Möglichkeit ha alli Verzeichnis mitm Metadate Manager z'bearbeite.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Date mit enere höhere Kindersicherig werded vo dem User versteckt.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Es sind momentan kei Dienst installiert.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Nix da.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Bitte stell sicher, dass Abelade vo Metadate vom Internet aktiviert worde esch.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Meh User chönt spöter im Dashboard hinzuegfüegt werde.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nix da. Fang mal a Serie luege!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Darsteller", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", "OptionAlbumArtist": "Album-Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", "OptionAscending": "Ufstiigend", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Hindergrund", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", "OptionBluray": "BluRay", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Community Bewertig", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "Fortlaufend", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Kritiker Bewertig", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", "OptionDateAdded": "Dezue gfüegt am", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Abgspellt am", - "OptionDefaultSort": "Default", "OptionDescending": "Abstiigend", - "OptionDev": "Dev", - "OptionDirector": "Director", "OptionDirectors": "Regisseur", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Aktiviere de Zuegriff vo allne Grät", "OptionEnableAccessToAllChannels": "Aktiviere de Zuegriff zu allne Kanäl", "OptionEnableAccessToAllLibraries": "Aktiviere de Zuegriff zu allne Bibliotheke", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Beendent", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Favorite", "OptionFolderSort": "Ordner", "OptionFriday": "Friitig", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "Gast Stars", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "Undertitel", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "IMDB Bewertig", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", "OptionMissingImdbId": "Fehlendi IMDB ID", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Mäntig", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", "OptionParentalRating": "Altersfriigab", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Zähler", "OptionPlayed": "Gspellt", - "OptionPoster": "Poster", "OptionPosterCard": "Postercharte", "OptionPremiereDate": "Premiere Datum", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", "OptionProducers": "Produzent", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", "OptionReleaseDate": "Release Ziit:", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Chan fortgsetzt werde", - "OptionResumablemedia": "Resume", "OptionRuntime": "Laufziit", "OptionSaturday": "Samstig", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Sonntig", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", "OptionThumbCard": "Thumbcharte", "OptionThursday": "Donnstig", - "OptionThursdayShort": "Thu", "OptionTimeline": "Ziitlinie", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Tsischtig", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Ungspellt", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", "OptionWednesday": "Mittwoch", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", "OptionWriters": "Autor", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registrier di mit PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", "TabAccess": "Zuegriff", - "TabActivity": "Activity", "TabAdvanced": "Erwiitert", "TabAlbumArtists": "Album-Artist", "TabAlbums": "Albene", - "TabAppSettings": "App Settings", "TabArtists": "Artist", "TabBasic": "Eifach", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Katalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titel", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Episode", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", "TabGenres": "Genre", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Bild", "TabImages": "Bilder", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "Letschti", - "TabLibrary": "Library", "TabLibraryAccess": "Bibliothek Zuegriff", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "Metadate", "TabMovies": "Film", - "TabMusic": "Music", "TabMusicVideos": "Musigvideos", - "TabMyLibrary": "My Library", "TabMyPlugins": "Miini Plugins", - "TabNavigation": "Navigation", "TabNetworks": "Studios", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Mitteilige", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "Passwort", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Playliste", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profil", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Sicherheit", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", "TabShows": "Serie", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", "TabSuggestions": "Vorschläg", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", "TabUpcoming": "Usstehend", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Verzell was über dech selber", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Erleb di ganze Bonis", - "Themes": "Themes", "ThisWizardWillGuideYou": "De Assistent hilft der dur de Installations Prozess. Zum afange, wähl bitte dini Sproch us.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", "TitleNotifications": "Mitteilige", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "Planti Ufgabe", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin beinhaltet iibauti Unterstützig för User-Profil, wo mer siini eigene Asichte, Spellständ und Altersfriigobe iistelle chan.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Willkomme bi Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Das esch alles wo mer momentan müend wüsse. Jellyfin het i de zwüscheziit agfange informatione über diini medie-bibliothek z'sammle. Lueg der es paar vo eusne Apps a und denn klick uf Beende um zum Server Dashboard z'cho.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/he.json b/src/strings/he.json index 7fadc26d1d..0dece92d4c 100644 --- a/src/strings/he.json +++ b/src/strings/he.json @@ -1,855 +1,203 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "הוסף משתמש", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "עיין בקטלוג התוספים להתקנת שרותי התראות נוספים", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "הכל", "AllLibraries": "כל הספרייה\n", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "עבור לקטלוג התוספים לראות אילו זמינים.", - "ButtonAccept": "Accept", "ButtonAdd": "הוסף", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "הוסף משתמש", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "בטל", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "המר מדיה", "ButtonCreate": "צור", "ButtonDelete": "מחק", "ButtonDeleteImage": "מחק תמונה", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "ערוך", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "יציאה", "ButtonFilter": "מסנן", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", "ButtonManageServer": "נהל שרת", "ButtonManualLogin": "התחברות ידנית", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "חדש", - "ButtonNewServer": "New Server", "ButtonNext": "הבא", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", "ButtonNo": "לא", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "אשר", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", "ButtonPlay": "נגן", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", "ButtonPrevious": "הקודם", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "מדיניות הפרטיות", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "מדריך מהיר", "ButtonRecord": "הקלט", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", "ButtonRefreshGuideData": "רענן את מדריך השידור", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "הסר", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "איפוס סיסמא", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "התחר מחדש", "ButtonRestartNow": "התחל מחדש כעט", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "שמור", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "סרוק ספרייה", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "חיפוש", "ButtonSelect": "בחר", "ButtonSelectDirectory": "בחר תיקיות", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", "ButtonShare": "שתף", - "ButtonShuffle": "Shuffle", "ButtonShutdown": "כבה", "ButtonSignIn": "היכנס", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "מיין", "ButtonSplitVersionsApart": "פצל גרסאות בנפרד", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", "ButtonUpdateNow": "עדכן עכשיו", "ButtonUpload": "העלה", - "ButtonView": "View", "ButtonViewAlbum": "צפה באלבום", "ButtonViewArtist": "צפה באמן", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", "ButtonYes": "כן", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "סנכרן", "CategorySystem": "מערכת", "CategoryUser": "משתמש", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "צור פרופיל מותאם אישית למכשיר חדש או לעקוף פרופיל מערכת", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "מחק", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "מחק תמונה", "DeleteImageConfirmation": "האם אתה בטוח שברצונך למחוק תמונה זו?", "DeleteMedia": "מחק מדיה", "DeleteUser": "מחק משתמש", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", "ErrorMessageUsernameInUse": "שם המשתמש תפוס. אנא בחר שם משתמש חדש ונסה שוב", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "קובץ לא נמצא.", "FileReadCancelled": "קריאת הקובץ בוטלה.", "FileReadError": "חלה שגיאה בקריאת הקובץ.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "סרטים", "FolderTypeMusic": "מוזיקה", "FolderTypeMusicVideos": "וידאו קליפ", "FolderTypePhotos": "תמונות", "FolderTypeTvShows": "תוכניות טלויזיה", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "מכשירים פעילים", "HeaderActiveRecordings": "הקלטות פעילות", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "הוסף כותר", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "הוסף משתמש", "HeaderAdditionalParts": "חלקים נוספים", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "כל ההקלטות", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "אודיו", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "עידכונים אוטומטים", "HeaderAvailableServices": "שירותים זמינים", "HeaderAwardsAndReviews": "פרסים וביקורות", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "שחקנים וצוות", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "ערוצים", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", "HeaderCinemaMode": "מצב קולנוע", "HeaderClients": "משתמשים", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "אוספים", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "אשר", - "HeaderConfirmDeletion": "Confirm Deletion", "HeaderConfirmPluginInstallation": "אשר התקנת תוסף", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "צור סיסמא", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "פרופילים מותאמים אישית", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "תאריך", - "HeaderDateIssued": "Date Issued", "HeaderDays": "ימים", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "יעד", "HeaderDetails": "פרטים", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", "HeaderDisplaySettings": "הגדרות תצוגה", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "קוד אישי קל", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", "HeaderFavoriteArtists": "אמנים מועדפים", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", "HeaderFavoriteMovies": "סרטים מועדפים", - "HeaderFavoriteShows": "Favorite Shows", "HeaderFavoriteSongs": "שירים מועדפים", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "גישה למאפיינים", - "HeaderFeatures": "Features", "HeaderFetchImages": "הבא תמונות:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", "HeaderForgotKey": "שחכתי את המפתח", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "נוגנו לרוב", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "הגדרות תמונה", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "שירותים מותקנים", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "אלבומים אחרונים", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "פרקים אחרונים", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "סרטים אחרונים שהוספו.", "HeaderLatestMusic": "מוזיקה אחרונה.\n", "HeaderLatestRecordings": "הקלטות אחרונות", "HeaderLatestSongs": "שירים אחרונים", "HeaderLatestTrailers": "טריילירים אחרונים", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "לינקים", "HeaderLiveTV": "שידור ישיר", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "ניהול", - "HeaderMedia": "Media", "HeaderMediaFolders": "ספריות מדיה", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", "HeaderMovies": "סרטים", "HeaderMusicVideos": "קליפים", "HeaderMyMedia": "הספרייה שלי.", - "HeaderMyViews": "My Views", "HeaderName": "שם", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "הבא בתור", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "מנגן עכשיו", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "נתיבים", "HeaderPendingInstallations": "התקנות בהמתנה", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "סוגי אנשים:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "נגן הכל", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "אפשרויות ניגון", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "אנא היכנס", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", "HeaderProgram": "תוכנה", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "נוגנו לאחרונה", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", "HeaderRequireManualLogin": "דרוש הכנסת שם משתמש באופן ידני עבור:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", "HeaderResult": "תוצאה", "HeaderResume": "המשך", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", "HeaderRunningTasks": "משימות רצות", - "HeaderRuntime": "Runtime", "HeaderScenes": "סצנות", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "סדרה", - "HeaderSeriesRecordings": "Series Recordings", "HeaderServerSettings": "הגדרות שרת", - "HeaderServices": "Services", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "הגדר את ספריית המדיה שלך.", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "מקור", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "מאפיינים מיוחדים", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "מצב", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "סנכרן", - "HeaderSyncJobInfo": "Sync Job", "HeaderSystemDlnaProfiles": "פרופילי מערכת", "HeaderTV": "טלויזיה", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "תנאי השירות של Jellyfin", "HeaderThemeSongs": "שיר נושא", "HeaderThemeVideos": "סרטי נושא", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", "HeaderTvTuners": "טונרים", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "העלה תמונה חדשה", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "משתמשים", "HeaderVideo": "וידאו", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "שנה", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "מומלץ יחס גובה של 1:1. רק JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "אפשר לשרת להתחיל אוטומטית כדי לאפשר את העידכונים", "LabelAllowServerAutoRestartHelp": "השרת יתחיל מחדש רק כשאר אין משתמשים פעילים", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "אמן", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "שפת קול מועדפת:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "אסימונים קיימים", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "אינטרוול הודעות דחיפה (בשניות)", "LabelBlastMessageIntervalHelp": "מגדיר את משך הזמן בשניות בין הודעות דחיפה של השרת.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "נתיב cache:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", "LabelCompleted": "הושלם", "LabelComponentsUpdated": "הרכיבים הבאים הותקנו או עודכנו:", "LabelConfigureSettings": "קבע את תצורת ההגדרות", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "סוג התוכן", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "מדינה:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "סיסמא נוכחית:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "CSS מותאם אישית", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "יום:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", "LabelDefaultUser": "משתמש ברירת מחדש:", "LabelDefaultUserHelp": "מגדיר אילו ספריות משתמש יוצגו במכשירים מחוברים. ניתן לעקוף זאת לכל מכשיר על ידי שימוש בפרופילים.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "הצג פרקים חסרים בתוך העונות", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScaleHelp": "הגבר אודיו כאשר הוא ממוזג. הגדר ל-1 לשמור על ערך הווליום המקורי", "LabelDownloadInternetMetadata": "הורד תמונות רקע ומידע מהאינרנט", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", "LabelEmailAddress": "כתובת אימייל", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", "LabelEnableBlastAliveMessages": "הודעות דחיפה", "LabelEnableBlastAliveMessagesHelp": "אפשר זאת אם השרת לא מזוהה כאמין על ידי מכשירי UPnP אחרים ברשת שלך.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", "LabelEnableDebugLogging": "אפשר תיעוד פעילות לאיתור תקלות", "LabelEnableDlnaClientDiscoveryInterval": "זמן גילוי קליינטים (בשניות)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", "LabelEnableDlnaDebugLogging": "אפשר ניהול רישום באגים בDLNA", "LabelEnableDlnaDebugLoggingHelp": "אפשרות זו תיצור קבצי לוג גדולים יותר ועליך להשתמש בה רק על מנת לפתור תקלות.", "LabelEnableDlnaPlayTo": "מאפשר ניגון DLNA ל", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", "LabelEnableDlnaServer": "אפשר שרת Dina", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "אפשר מעקב בזמן אמת", "LabelEnableRealtimeMonitorHelp": "שינויים יעשו באופן מיידית על מערכות קבצים נתמכות.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", "LabelEndingEpisodeNumber": "מספר סיום פרק:", "LabelEndingEpisodeNumberHelp": "הכרחי רק עבור קבצים של פרקים מחוברים", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "אירוע:", "LabelEveryXMinutes": "כל:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "נכשל", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "סיים", - "LabelFolder": "Folder:", "LabelFolderType": "סוג התיקייה:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "שם שרת ידידותי:", "LabelFriendlyServerNameHelp": "השם יתן לזיהוי השרת. אם מושאר ריק, שם השרת יהיה שם המחשב.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "שפה:", "LabelLastResult": "תוצאה סופית", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "מספר פורט HTTP מקומי", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "מספר תמונות רקע מקסימאלי לפריט:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "דירוג הורים מקסימאלי:", "LabelMaxResumePercentage": "אחוזי המשכה מקסימאלים", "LabelMaxResumePercentageHelp": "קובץ מוגדר כנוגן במלואו אם נעצר אחרי הזמן הזה", "LabelMaxScreenshotsPerItem": "מספר תמונות מסך מקסימאלי לפריט:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", "LabelMessageTitle": "כותרת הודעה:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "נתיב Metadata:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "רוחב תמונת רקע מינימאלי להורדה:", "LabelMinResumeDuration": "משך המשכה מינימאלי (בשניות):", "LabelMinResumeDurationHelp": "קובץ קצר מזה לא יהיה ניתן להמשך ניגון מנקודת העצירה", @@ -857,471 +205,104 @@ "LabelMinResumePercentageHelp": "כותרים יוצגו כלא נוגנו אם נצרו לפני הזמן הזה", "LabelMinScreenshotDownloadWidth": "רחוב תמונת מסך מינימאלית להורדה:", "LabelMissing": "חסר", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", "LabelMonitorUsers": "עקוב אחר פעילות מ:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "שם:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "סיסמא חדשה:", "LabelNewPasswordConfirm": "אימות סיסמא חדשה:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "הבא", - "LabelNoUnreadNotifications": "No unread notifications.", "LabelNotificationEnabled": "אפשר התראה זו", "LabelNumberOfGuideDays": "מספר ימי לוח שידורים להורדה", "LabelNumberOfGuideDaysHelp": "הורדת יותר ימי לוח שידורים מאפשרת יכולת לתכנן ולראות יותר תוכניות קדימה, אבל גם זמן ההורדה יעלה. מצב אוטומטי ייקבע לפני מספר הערוצים.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "סיסמא:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "קוד אישי", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "שפת ממשק מועדפת", "LabelPreferredDisplayLanguageHelp": "תרגום הממשק של Jellyfin הוא תהליך ממושך", "LabelPrevious": "הקודם", - "LabelProfile": "Profile:", "LabelProfileAudioCodecs": "מקודדי צליל", "LabelProfileCodecs": "מקודדים", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileVideoCodecs": "מקודדי וידאו", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "מספר פורט HTTP פומבי", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", "LabelReadHowYouCanContribute": "למד איך תוכל לתרום", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "שמור תמונות רקע בתוך ספריות המדיה", "LabelSaveLocalMetadataHelp": "שמירת תמונות רקע בתוך ספריות המדיה תשים אותם במקום שבו יהיה קל לערוך אותם.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "תבנית ספריית עונה", - "LabelSeasonNumber": "Season number:", "LabelSeasonZeroFolderName": "שם לתקיית עונה אפס", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "בחר משתמשים:", - "LabelSelectVersionToInstall": "Select version to install:", "LabelSendNotificationToUsers": "שלח את ההתראה ל:", - "LabelSerialNumber": "Serial number", "LabelSeries": "סדרה", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "דולג", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "שפת כתוביות מועדפת:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "זמן:", "LabelTimeLimitHours": "הגבלת זמן (בשעות)", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "נתיב לקידוד זמני:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "שיטת העברה", "LabelTriggerType": "סוגר טריגר:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", "LabelType": "סוג", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "הצג פרקים שעדין אל שודרו בתוך העונות", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "השתמש בשירותים הבאים:", "LabelUser": "משתמש:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "ספריית משתמש", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "גוד ווידאו:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "שמך הפרטי:", "LabelYoureDone": "סיימת!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "בחר את ספריות המדיה אשר ישותפו עם המשתמש. מנהלים יוכלו לערות את כל התיקיות באמצעות עורך המידע.", - "LinkApi": "Api", "LinkCommunity": "קהילה", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "תוכן עם דירוג גובה יותר יוסתר מהמשתמש.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "שום שירות לא הותקן עד כה.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "אין כאן כלום.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "בבקשה וודא כי הורדת מידע מהאינטרנט מאופשרת", - "MessagePleaseRestart": "Please restart to finish updating.", "MessagePleaseRestartServerToFinishUpdating": "אנא אתחל מחדש את השרת לביצוע העידכונים.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "ניתן להגדיר משתמשים נוספים מאוחר יותר דרך לוח הבקרה.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "לא נמצא כלום. התחלת לצפות בסדרות שלך!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "אין לך תוספים מותקנים.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", "Option3D": "תלת מימד", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "שחקנים", "OptionAdminUsers": "מנהלים", "OptionAfterSystemEvent": "אחרי אירוע מערכת", "OptionAlbum": "אלבום", "OptionAlbumArtist": "אמן אלבום", - "OptionAll": "All", "OptionAllUsers": "כל המשתמשים", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "אפשר שיתוף ברשתות חברתיות", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", "OptionAllowMediaPlayback": "הרשה נגינת מדיה", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "אפשר למשתמש זה לנהל את השרת", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "הכל", - "OptionArt": "Art", "OptionArtist": "אמן", "OptionAscending": "סדר עולה", - "OptionAuto": "Auto", "OptionAutomatic": "אוטומטי", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "תמונות רקע", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "באנר", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "בטא", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockLiveTvPrograms": "תוכניות טלויזיה בשידור ישיר", "OptionBlockMovies": "סרטים", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "תוכניות טלויזיה", "OptionBluray": "בלו-ריי", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "דירוג הקהילה", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "ממשיך", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "ציון מבקרים", "OptionCustomUsers": "מותאם אישית", "OptionDaily": "יומי", "OptionDateAdded": "תאריך הוספה", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "תאריך ניגון", - "OptionDefaultSort": "Default", "OptionDescending": "סדר יורד", - "OptionDev": "Dev", - "OptionDirector": "Director", "OptionDirectors": "במאים", "OptionDisableUser": "בטל משתמש זה", "OptionDisableUserHelp": "אם מבוטל, השרת שלא יאפשר חיבורים ממשתמש זה. חיבורים פעילים יבוטלו מייד.", - "OptionDisc": "Disc", "OptionDislikes": "לא אוהב", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "עטיפה", "OptionDownloadBackImage": "גב", "OptionDownloadBannerImage": "באנר", "OptionDownloadBoxImage": "מארז", "OptionDownloadDiscImage": "דיסק", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "לוגו", "OptionDownloadMenuImage": "תפריט", "OptionDownloadPrimaryImage": "ראשי", - "OptionDownloadThumbImage": "Thumb", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "הסתיים", "OptionEpisodeSortName": "מיון שמות פרקים", "OptionEpisodes": "פרקים", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "מועדפים", "OptionFolderSort": "תיקיות", "OptionFriday": "שישי", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "שחקן אורח", "OptionHasSpecialFeatures": "מאפיינים מיוחדים", "OptionHasSubtitles": "כתוביות", @@ -1329,47 +310,18 @@ "OptionHasThemeVideo": "סרט נושא", "OptionHasTrailer": "טריילר", "OptionHideUser": "הסתר משתמש זה בחלון ההתחברות", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "דירוג IMDb", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "נבחרים", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "פרקים חסרים", "OptionMissingImdbId": "חסר מזהה IMBb", "OptionMissingOverview": "חסרה סקירה", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "חזר מזהה Tmdb", "OptionMissingTvdbId": "חסר מזהה TheTVDB", "OptionMobileApps": "אפליקציות לנייד", "OptionMonday": "שני", - "OptionMondayShort": "Mon", "OptionMovies": "סרטים", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "שם", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", "OptionOff": "כבוי", "OptionOn": "פועל", "OptionOnAppStartup": "בהפעלת התוכנה", @@ -1377,352 +329,115 @@ "OptionOtherApps": "תוכנות אחרות", "OptionOtherTrailers": "כלול קדימונים מסרטים ישנים יותר", "OptionOtherVideos": "קטעי ווידיאו אחרים", - "OptionOthers": "Others", - "OptionOverview": "Overview", "OptionParentalRating": "דירוג בקרת הורים", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "מספר השמעות", "OptionPlayed": "נוגן", "OptionPoster": "פוסטר", - "OptionPosterCard": "Poster card", "OptionPremiereDate": "תאריך שידור ראשון", - "OptionPrimary": "Primary", "OptionPriority": "עדיפות", - "OptionProducer": "Producer", "OptionProducers": "מפיקים", "OptionProfileAudio": "צליל", "OptionProfilePhoto": "תמונה", "OptionProfileVideo": "וידאו", "OptionProfileVideoAudio": "צליל וידאו", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", "OptionRecordOnAllChannels": "הקלט בכל הערוצים", "OptionRecordOnlyNewEpisodes": "הקלט רק פרקים חדשים", "OptionRecordSeries": "הלקט סדרות", - "OptionRegex": "Regex", "OptionRelease": "שיחרור רשמי", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "ניתן להמשיך", - "OptionResumablemedia": "Resume", "OptionRuntime": "משך", "OptionSaturday": "שבת", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "ספיישלים", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "ראשון", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", "OptionThursday": "חמישי", - "OptionThursdayShort": "Thu", "OptionTimeline": "ציר זמן", "OptionTrackName": "שם השיר", "OptionTrailersFromMyMovies": "כלול קדימונים מסרטים בספריה שלי", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "שלישי", - "OptionTuesdayShort": "Tue", "OptionTvdbRating": "דירוג Tvdb", "OptionUnairedEpisode": "פרקים שלא שודרו", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "לא נוגן", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", "OptionUpcomingMoviesInTheaters": "כלול קדימונים מסרטים המגיעים לקולנוע", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "קצת ווידאו", "OptionWakeFromSleep": "הער ממצב שינה", - "OptionWatched": "Watched", "OptionWednesday": "רביעי", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "שבועי", "OptionWriters": "כותבים", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", "Password": "סיסמא", "PasswordMatchError": "הסיסמא ואימות הסיסמא צריכות להיות זהות.", "PasswordResetComplete": "הסיסמא אופסה.", "PasswordResetConfirmation": "האם אתה בטוח שברצונך לאפס את הסיסמא?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "הסיסמא נשמרה.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "הירשם דרך PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "ההגדרות נשמרו.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", "SystemDlnaProfilesHelp": "פרופלי מערכת הם לקריאה בלבד. שינויים בפרופילי מערכת ישמרו לפרופיל מוצאם אישית חדש.", "TabAbout": "אודות", "TabAccess": "גישה", - "TabActivity": "Activity", "TabAdvanced": "מתקדם", "TabAlbumArtists": "אמני אלבום", "TabAlbums": "אלבומים", - "TabAppSettings": "App Settings", "TabArtists": "אמנים", "TabBasic": "בסיסי", "TabBasics": "כללי", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "קטלוג", "TabChannels": "ערוצים", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", "TabCodecs": "מקודדים", "TabCollectionTitles": "כותרים", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", "TabDashboard": "לוח בקרה", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "פרקים", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "מועדפים", - "TabFilter": "Filter", "TabFolders": "תיקיות", "TabGames": "משחקים", "TabGeneral": "כללי", "TabGenres": "זאנרים", "TabGuide": "מדריך", - "TabHelp": "Help", "TabHome": "בית", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "תמונה", "TabImages": "תמונות", "TabInfo": "מידע", - "TabLanguages": "Languages", "TabLatest": "אחרון", - "TabLibrary": "Library", "TabLibraryAccess": "גישה לתיקיות", "TabLiveTV": "שידור ישיר", - "TabLogs": "Logs", - "TabMetadata": "Metadata", "TabMovies": "סרטים", "TabMusic": "מוסיקה", "TabMusicVideos": "קליפים", "TabMyLibrary": "הספריה שלי", "TabMyPlugins": "התוספים שלי", - "TabNavigation": "Navigation", "TabNetworks": "רשתות", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "התראות", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", "TabOthers": "אחרים", - "TabParentalControl": "Parental Control", "TabPassword": "סיסמא", "TabPaths": "נתיבים", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "רשימת נגינה", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "פרופיל", "TabProfiles": "פרופילים", "TabRecordings": "הקלטות", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "בטיחות", "TabSeries": "סדרות", "TabServer": "שרת", - "TabServices": "Services", "TabSettings": "הגדרות", "TabShows": "תוכניות", "TabSongs": "שירים", - "TabStreaming": "Streaming", "TabStudios": "אולפנים", - "TabSubtitles": "Subtitles", "TabSuggestions": "המלצות", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", "TabTV": "טלויזיה", "TabTrailers": "טריילרים", "TabTranscoding": "קידוד", "TabUpcoming": "בקרוב", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "ספר לנו על עצמך", "TermsOfUse": "תנאי שימוש", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "אשף זה יעזור לך בהתליך ההתקנה.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "טלוויזיה חייה", - "TitleNewUser": "New User", "TitleNotifications": "התראה", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "משימות מתוזמנות", - "TitleServer": "Server", "TitleSignIn": "היכנס", "TitleSupport": "תמיכה", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "האם אתה בטוח שברצונך להסיר {0}?", "UninstallPluginHeader": "הסר תוסף", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "משתמשים", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "גירסא {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", "ViewTypeMovies": "סרטים", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", "ViewTypeMusicFavorites": "מועדפים", - "ViewTypeMusicSongs": "Songs", "ViewTypeTvShows": "טלויזיה", "WelcomeToProject": "ברוך הבא ל Jellyfin", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/hi-IN.json b/src/strings/hi-IN.json index c46138aebd..ca46ee3cdb 100644 --- a/src/strings/hi-IN.json +++ b/src/strings/hi-IN.json @@ -1,1728 +1,21 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "मीडिया परिवर्तित करें", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "गोपनीयता नीति", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "तुरंत आरंभ मार्गदर्शिका", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", - "FolderTypeTvShows": "TV Shows", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "उपयोगकर्ता जोडें", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "एम्बि सेवा की शर्तें", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "कॉन्फ़िगर सेटिंग्स", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "समाप्त", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "अगला", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "पिन कोड:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "पिछला", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "आपका प्रथम नामः", "LabelYoureDone": "आपने पूरा कर लिया है!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "अधिक उपयोगकर्ताओं को बाद में डैशबोर्ड के अंतर्गत जोड़ा जा सकता है।", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "हमें अपने बारे में बताएं", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "यह विज़ार्ड आपकी इस सेटअप प्रक्रिया से गुजरने में मदद करेगा। शुरू करने के लिए, कृपया अपनी पसंद की भाषा को चुनें।", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "एम्बि में उपयोगकर्ता प्रोफाइल अन्तर्निहित मौजूद है, जो हर उपयोगकर्ता को अपनी अलग प्रदर्शन सेटिंग्स, प्ले-अवस्था, पैतृक नियंत्रणो में सक्षम करता है।", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "एम्बी में आपका स्वागत है!", - "Whitelist": "Whitelist", "WizardCompleted": "अभी के लिए बस हमें यही जानना है। एम्बि ने आपकी मीडिया लाइब्रेरी के बारे में जानकारी जमा करना आरंभ कर दिया है। हमारी कुछ एेप्स को देखें, और फिर सर्वर डैशबोर्ड देखने के लिए समाप्त पर क्लिक करें।", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/hr.json b/src/strings/hr.json index c9d3b6d6b1..7faa70ca30 100644 --- a/src/strings/hr.json +++ b/src/strings/hr.json @@ -2,28 +2,10 @@ "AddGuideProviderHelp": "Dodaj izvor za informacije TV vodiča", "AddItemToCollectionHelp": "Pretraživanjem stavaka i korištenjem desnog klika ili izbornika dodavanja u kolekciju možete ih dodati u kolekciju.", "AddUser": "Dodaj korisnika", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "Pretražite katalog dodataka kako bi instalirali dodatne servise za obavijesti.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", "AllowHWTranscodingHelp": "Ako je omogućeno, omogućite TV/radio uređaju da konvertira strujanja u letu. Ovo može pomoći smanjiti konvertiranje koje zahtijeva Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", "BirthDateValue": "Rođen: {0}", "BirthPlaceValue": "Mjesto rođenja: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Pregledajte dostupne dodatke u našem katalogu.", "ButtonAccept": "Prihvati", "ButtonAdd": "Dodaj", @@ -56,14 +38,12 @@ "ButtonEditImages": "Uređivanje slika", "ButtonEditOtherUserPreferences": "Uredite ovaj korisnički profil, slike i osobne postavke.", "ButtonExit": "Izlaz", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Zaboravili ste lozinku", "ButtonFullscreen": "Puni zaslon", "ButtonGuide": "Vodič", "ButtonHelp": "Pomoć", "ButtonHide": "Sakrij", "ButtonHome": "Početna", - "ButtonInfo": "Info", "ButtonInviteUser": "Pozovi korisnika", "ButtonLearnMore": "Nauči još", "ButtonLibraryAccess": "Pristup biblioteci", @@ -121,7 +101,6 @@ "ButtonResume": "Nastavi", "ButtonRevoke": "Opozvati", "ButtonSave": "Snimi", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "Skeniraj biblioteku", "ButtonScheduledTasks": "Zakazani zadaci", "ButtonSearch": "Traži", @@ -131,7 +110,6 @@ "ButtonSelectView": "Odaberi pogled", "ButtonSend": "Pošalji", "ButtonSendInvitation": "Pošalji poziv", - "ButtonServer": "Server", "ButtonServerDashboard": "Nadzorna ploča poslužitelja", "ButtonSettings": "Postavke", "ButtonShare": "Dijeli", @@ -144,8 +122,6 @@ "ButtonSort": "Složi", "ButtonSplitVersionsApart": "Razdvoji verzije", "ButtonStart": "Početak", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Podnesi", "ButtonSubtitles": "Titlovi", "ButtonSync": "Sink.", @@ -161,67 +137,46 @@ "ButtonViewWebsite": "Posjeti web stranice", "ButtonWebsite": "Web stranica", "ButtonYes": "Da", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplikacija", "CategoryPlugin": "Dodatak", "CategorySync": "Sink.", "CategorySystem": "Sistem", "CategoryUser": "Korisnik", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Odaberite kanale za dijeljenje sa ovim korisnikom. Administratori će moći mijenjati sve kanale koristeći metadata menadžer.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "Način kino donosi iskustvo kina izravno u vaš dnevni boravak s mogućnošću da se pokreću kratki filmovi i prilagođeni isječci prije glavne značajke.", "CinemaModeConfigurationHelp2": "Jellyfin aplikacije imati će postavku za omogućavanje ili onemogućavanje kino načina. TV aplikacije omogućuju kino načina po zadanom.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Kreiraj prilagođeni profili za novi uređaj ili doradi neki od sistemskih profila.", "DeathDateValue": "Umro: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Došlo je do pogreške prilikom obrade zahtjeva. Molimo pokušajte ponovo kasnije.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Izbriši", "DeleteDeviceConfirmation": "Jeste li sigurni da želite izbrisati ovaj uređaj? Pojavit će se sljedeći put kad se korisnik prijavi s njim.", "DeleteImage": "Izbriši sliku", "DeleteImageConfirmation": "Da li ste sigurni da želite izbrisati ovu sliku?", - "DeleteMedia": "Delete media", "DeleteUser": "Izbriši korisnika", "DeleteUserConfirmation": "Da li ste sigurni da želite izbrisati odabranog korisnika?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "To se odnosi samo na uređaje koji se mogu jedinstveno identificirati i neće spriječiti pristup preglednika. Filtriranje pristupa korisničkim uređajima spriječiti će ih u korištenju novih uređaja sve dok nisu ovdje odobreni.", "DeviceLastUsedByUserName": "Zadnje koristio {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", "Downloads": "Preuzimanja", "DrmChannelsNotImported": "Kanali s DRM se neće uvesti.", "EasyPasswordHelp": "Vaš laki PIN kod se koristi za izvan-mrežni pristup s podržanim Jellyfin aplikacijama, a također se može koristiti za jednostavnu mrežnu prijavu.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", "EnablePhotos": "Omogući slike", "EnablePhotosHelp": "Slike će biti otkrite i prikazivane zajedno s drugim medijskim datotekama.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", "EnterFFmpegLocation": "Unesi FFmpeg putanju", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "Jellyfin račun već je povezan s postojećim lokalnim korisnikom. Jellyfin račun može se povezati samo s jednim lokalnim korisnikom u isto vrijeme.", "ErrorAddingListingsToSchedulesDirect": "Došlo je do pogreške prilikom dodavanja postava vašim zakazanim direktnim računima. Raspored dopušta samo ograničen broj postava po računu. Možda ćete morati se prijavite u zakazanim \"Direct\" web stranicama i ukloniti unose drugih s računa prije nastavka.", "ErrorAddingMediaPathToVirtualFolder": "Došlo je do pogreške prilikom dodavanja putanje medija. Provjerite dali je putanja valjana i da proces Jellyfin Server-a ima pristup tom mjestu.", "ErrorAddingTunerDevice": "Došlo je do pogreške prilikom dodavanja uređaja TV/radio pretraživača. Provjerite da je dostupan i pokušajte ponovno.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", "ErrorGettingTvLineups": "Došlo je do pogreške prilikom preuzimanja tv postave. Provjerite dali su vaše informacije točne i pokušajte ponovno.", "ErrorMessageEmailInUse": "Adresa e-pošte već je u upotrebi. Unesite novu adresu e-pošte i pokušajte ponovno, ili koristite značajku zaboravljene lozinke.", "ErrorMessagePasswordNotMatchConfirm": "Lozinka i lozinka potvrde moraju biti identične.", "ErrorMessageStartHourGreaterThanEnd": "Vrijeme završetka mora biti veće od početka.", "ErrorMessageUsernameInUse": "Korisničko ime je već u uporabi. Molimo odaberite novo ime i pokušajte ponovno.", "ErrorPleaseSelectLineup": "Odaberite postavu i pokušajte ponovno. Ako niti jedna postava nije dostupna provjerite dali su korisničko ime, lozinka i poštanski broj točni.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", "ErrorRemovingJellyfinConnectAccount": "Došlo je do pogreške prilikom uklanjanja \"Jellyfin Connect\" računa. Provjerite imate li aktivnu internetsku vezu i pokušajte ponovno.", "ErrorSavingTvProvider": "Došlo je do pogreške prilikom snimanja TV pružatelja. Provjerite da je dostupan i pokušajte ponovno.", "ErrorValidatingSupporterInfo": "Došlo je do pogreške prilikom provjere informacije Jellyfin Premijere. Molimo pokušajte ponovo kasnije.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", "ExtractChapterImagesHelp": "Izdvajanje slika poglavlja omogućiti će Jellyfin aplikaciji za prikaz grafičkih izbornika za odabir scena. Proces može biti spor, CPU intenzivno korišten i može zahtijevati nekoliko gigabajta prostora. Ono se pokreće kad je otkriven video, a također i kao noćni zadatak. Raspored je podesiv u području rasporeda zadataka. Ne preporučuje se za pokretanje ovog zadatka tijekom sati čestog korištenja.", "FFmpegSavePathNotFound": "Nismo mogli locirati FFmpeg korištenjem putanje koju ste unijeli. FFprobe je također potreban i mora postojati u istoj mapi. Te komponente su obično u paketu zajedno u istom preuzimanju. Provjerite putanju i pokušajte ponovno.", - "FastForward": "Fast-forward", "FeatureRequiresJellyfinPremiere": "Ova značajka zahtijeva aktivnu pretplatu Jellyfin Premijere.", "FileNotFound": "Datoteka nije pronađena.", "FileReadCancelled": "Učitavanje datoteke je prekinuto.", @@ -236,15 +191,11 @@ "FolderTypePhotos": "Slike", "FolderTypeTvShows": "TV", "FolderTypeUnset": "Isključi (miješani sadržaj)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", "GuestUserNotFound": "Korisnik nije pronađen. Provjerite da je naziv ispravan i pokušajte ponovno ili pokušajte unijeti svoju adresu e-pošte.", "GuideProviderLogin": "Prijava", "GuideProviderSelectListings": "Odaberi ispis", "H264CrfHelp": "Konstante brzine faktora (CRF) je postavka zadane kvalitete za x264 enkodera. Možete postaviti vrijednosti između 0 i 51, gdje će niže vrijednosti rezultirati boljom kvalitetom (na račun veće veličine datoteka). Razumne vrijednosti su između 18 i 28. Zadana za x264 je 23, tako da to možete koristiti kao početnu točku.", "H264EncodingPresetHelp": "Odaberite bržu vrijednost za poboljšanje performansi ili sporiju za poboljšanje kvalitete.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "Omogućavanje hardverskog ubrzanja može uzrokovati nestabilnostima u nekim sredinama. Pobrinite se da Vaš operativni sustav i video drajveri su u potpunosti ažurni. Ako imate poteškoća s reprodukcijom videa nakon omogućavanja ovoga, morat ćete promijeniti postavku natrag na Automatski.", "HeaderAccessSchedule": "Raspored pristupa", "HeaderAccessScheduleHelp": "Napravite raspored pristupa da bi ograničili pristup određenim satima.", @@ -252,25 +203,20 @@ "HeaderActiveRecordings": "Aktivna snimanja", "HeaderActivity": "Aktivnosti", "HeaderAddDevice": "Dodaj uređaj", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Dodaj okidač", "HeaderAddTag": "Dodaj oznaku", "HeaderAddTitles": "Dodaj naslove", "HeaderAddUpdateImage": "Dodaj/ažuriraj sliku", "HeaderAddUser": "Dodaj korisnika", "HeaderAdditionalParts": "Dodatni djelovi", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Napredno", "HeaderAirDays": "Dani emitiranja", - "HeaderAlbums": "Albums", "HeaderAlert": "Uzbuna", "HeaderAllRecordings": "Sve snimke", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "API ključ", "HeaderApiKeys": "API ključevi", "HeaderApiKeysHelp": "Vanjske aplikacije moraju imati API ključ kako bi komunicirale s Jellyfin Serverom. Ključevi se izdaju prijavom s Jellyfin računom ili ručnim odobravanjem zahtjeva ključa.", "HeaderApp": "Aplikacija", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Postavke zvuka", "HeaderAudioTracks": "Audio pjesme", "HeaderAutomaticUpdates": "Automatske nadogradnje", @@ -278,12 +224,10 @@ "HeaderAwardsAndReviews": "Nagrade i recenzije", "HeaderBackdrops": "Pozadine", "HeaderBecomeProjectSupporter": "Nabavite Jellyfin Premijeru", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Knjige", "HeaderBranding": "Brendiranje", "HeaderBrandingHelp": "Prilagodite izgled Jellyfin da odgovara potrebama vaše grupe ili organizacije.", "HeaderCameraUpload": "Slike kamere", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", "HeaderCancelSyncJob": "Odustani od sink.", "HeaderCastAndCrew": "Glumci i ekipa", "HeaderCastCrew": "Glumci i ekipa", @@ -291,7 +235,6 @@ "HeaderChangeFolderTypeHelp": "Za promjenu tipa, uklonite i ponovno izgraditi biblioteku s novim tipom.", "HeaderChannelAccess": "Pristup kanalima", "HeaderChannels": "Kanali", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Poglavlja", "HeaderCinemaMode": "Kino način", "HeaderClients": "Kljenti", @@ -300,7 +243,6 @@ "HeaderCodecProfileHelp": "Profili kodeka definiraju ograničenja kada uređaji izvode sadržaj u specifičnom kodeku. Ako se ograničenja podudaraju tada će sadržaj biti transkodiran, iako je kodek konfiguriran za direktno izvođenje.", "HeaderCollections": "Kolekcije", "HeaderColumns": "Stupci", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "Potvrdi", "HeaderConfirmDeletion": "Potvrdite brisanje", "HeaderConfirmPluginInstallation": "Potvrdi instalaciju dodatka", @@ -315,7 +257,6 @@ "HeaderConnectionFailure": "Neuspjelo spajanje", "HeaderContainerProfile": "Profil spremnika", "HeaderContainerProfileHelp": "Profil spremnika definira ograničenja za uređaje kada izvode specifične formate. Ako se ograničenja podudaraju tada će sadržaj biti transkodiran, iako je format konfiguriran za direktno izvođenje.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Kreiraj lozinku", "HeaderCredits": "Zasluge", "HeaderCustomDlnaProfiles": "Prilagođen profil", @@ -323,7 +264,6 @@ "HeaderDate": "Datum", "HeaderDateIssued": "Datum izdavanja", "HeaderDays": "Dani", - "HeaderDefaultRecordingSettings": "Default Recording Settings", "HeaderDeleteDevice": "Izbriši uređaj", "HeaderDeleteImage": "Izbriši sliku", "HeaderDeleteItem": "Izbriši stavku", @@ -331,7 +271,6 @@ "HeaderDeleteTaskTrigger": "Brisanje okidača zadataka", "HeaderDestination": "Cilj", "HeaderDetails": "Detalji", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "Razvojne informacije", "HeaderDevice": "Uređaj", "HeaderDeviceAccess": "Pristup uređaja", @@ -341,9 +280,7 @@ "HeaderDisplay": "Prikaz", "HeaderDisplaySettings": "Postavke prikaza", "HeaderDownloadSubtitlesFor": "Preuzmi titlove prijevoda za:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Lagan PIN", - "HeaderEmbeddedImage": "Embedded image", "HeaderEpisodes": "Epizode", "HeaderError": "Greška", "HeaderExport": "Izvoz", @@ -356,11 +293,9 @@ "HeaderFavoriteMovies": "Omiljeni filmovi", "HeaderFavoriteShows": "Omiljene emisije", "HeaderFavoriteSongs": "Omiljene pjesme", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Pristup opcijama", "HeaderFeatures": "Mogućnosti", "HeaderFetchImages": "Dohvati slike:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtri", "HeaderForKids": "Za djecu", "HeaderForgotKey": "Zaboravili ste ključ", @@ -368,7 +303,6 @@ "HeaderFreeApps": "Besplatne Jellyfin aplikacije", "HeaderFrequentlyPlayed": "Često izvođeno", "HeaderGames": "Igre", - "HeaderGenres": "Genres", "HeaderGuests": "Gosti", "HeaderGuideProviders": "Pružatelji vodiča", "HeaderHomePage": "Početna stranica", @@ -377,30 +311,21 @@ "HeaderIdentification": "Identifikacija", "HeaderIdentificationCriteriaHelp": "Unesite barem jedan kriterij za identifikaciju.", "HeaderIdentificationHeader": "Identifikacija zaglavlja", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Postavke slike", "HeaderImages": "Slike", "HeaderInstall": "Instaliraj", "HeaderInstalledServices": "Instalirani servisi", - "HeaderInstantMix": "Instant Mix", "HeaderInvitationSent": "Poziv poslan", "HeaderInvitations": "Pozivi", "HeaderInviteUser": "Pozovi korisnika", "HeaderInviteUserHelp": "Dijeljenje medija sa prijateljima je lakše nego ikad prije sa \"Jellyfin Connect\".", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", "HeaderItems": "Stavke", "HeaderJellyfinAccountAdded": "Jellyfin račun je dodan", "HeaderJellyfinAccountRemoved": "Jellyfin račun je uklonjen", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Jezik", "HeaderLatestAlbums": "Zadnji albumi", "HeaderLatestChannelItems": "Najnoviji kanali", "HeaderLatestChannelMedia": "Najnoviji kanali", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Zadnje epizode", "HeaderLatestFromChannel": "Zadnje od {0}", "HeaderLatestItems": "Najnovije stavke", @@ -415,11 +340,9 @@ "HeaderLibrary": "Biblioteka", "HeaderLibraryAccess": "Pristup biblioteci", "HeaderLibraryFolders": "Mape medija", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "Poveznice", "HeaderLiveTV": "TV uživo", "HeaderLiveTv": "TV uživo", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "Neuspjela prijava", "HeaderManagement": "Upravljanje", "HeaderMedia": "Medij", @@ -435,10 +358,8 @@ "HeaderMyViews": "Moji pogledi", "HeaderName": "Ime", "HeaderNavigation": "Navigacija", - "HeaderNetwork": "Network", "HeaderNewApiKey": "Novi API ključ", "HeaderNewApiKeyHelp": "Odobri dozvolu aplikacije za komunikaciju s Jellyfin Serverom.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "Novi Server", "HeaderNewUsers": "Novi korisnici", "HeaderNextUp": "Sljedeće je", @@ -447,24 +368,19 @@ "HeaderNumberOfPlayers": "Izvođači", "HeaderOffline": "Nedostupno", "HeaderOfflineSync": "Izvanmrežno sink.", - "HeaderOnNow": "On Now", "HeaderOptions": "Opcije", "HeaderOtherDisplaySettings": "Postavke prikaza", "HeaderOtherItems": "Ostale stavke", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", "HeaderPassword": "Lozinka", "HeaderPasswordReset": "Poništenje lozinke", "HeaderPaths": "Putanje", "HeaderPendingInstallations": "Instalacije u toku", "HeaderPendingInvitations": "Neriješeni pozivi", - "HeaderPeople": "People", "HeaderPersonInfo": "Informacije osobe", "HeaderPersonTypes": "Tip osobe:", "HeaderPhotoInfo": "Info slike", "HeaderPinCodeReset": "Poništi PIN", - "HeaderPlayAll": "Play All", "HeaderPlayback": "Reprodukcija medija", "HeaderPlaybackSettings": "Postavke reprodukcije", "HeaderPlaylists": "Popisi", @@ -474,19 +390,15 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Informacija profila", "HeaderProfileServerSettingsHelp": "Ove vrijednosti kontroliraju kako će se Jellyfin Server predstaviti na uređaju.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Nedavne aktivnosti", "HeaderRecentlyPlayed": "Zadnje izvođeno", "HeaderRecordingGroups": "Grupa snimka", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Daljinsko upravljanje", "HeaderRemoveMediaFolder": "Ukloni mape medija", "HeaderRemoveMediaLocation": "Ukloni lokacije medija", "HeaderRequireManualLogin": "Zahtjevaj ručni unos korisničkog imena za:", "HeaderRequireManualLoginHelp": "Kada je onemogućeno, Jellyfin aplikacije mogu otvoriti prozor za prijavu sa vizualnim odabirom korisnika.", "HeaderResetTuner": "Resetiraj pretraživač", - "HeaderResolution": "Resolution", "HeaderResponseProfile": "Profil odziva", "HeaderResponseProfileHelp": "Profili odgovora pružaju način prilagodbe informacija koje se šalju na uređaj kada reproducirate određene vrste medija.", "HeaderRestart": "Ponovo pokreni", @@ -496,13 +408,9 @@ "HeaderReviews": "Recenzije", "HeaderRevisionHistory": "Povijest revizije", "HeaderRunningTasks": "Zadatci koji se izvode", - "HeaderRuntime": "Runtime", "HeaderScenes": "Scene", "HeaderSchedule": "Raspored", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Traži", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", "HeaderSeasons": "Sezone", "HeaderSelectAudio": "Odaberi audio", "HeaderSelectCertificatePath": "Odaberi put certifikata:", @@ -539,11 +447,7 @@ "HeaderSource": "Izvor", "HeaderSpecialEpisodeInfo": "Posebni podaci o epizodi", "HeaderSpecialFeatures": "Specijalne značajke", - "HeaderSpecials": "Specials", "HeaderSplitMedia": "Razdvoji medije", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "Profil titlova prijevoda", "HeaderSubtitleProfiles": "Profili titlova prijevoda", "HeaderSubtitleProfilesHelp": "Profili titlova prijevoda opisuju format titlova koji podržava uređaj.", @@ -553,7 +457,6 @@ "HeaderSync": "Sink.", "HeaderSyncJobInfo": "Sink. posao", "HeaderSystemDlnaProfiles": "Sistemski profil", - "HeaderTV": "TV", "HeaderTags": "Oznake", "HeaderTaskTriggers": "Okidači zadataka", "HeaderTermsOfService": "Jellyfin Uvjeti korištenja", @@ -563,30 +466,22 @@ "HeaderTime": "Vrijeme", "HeaderToAccessPleaseEnterEasyPinCode": "Molimo unesite svoj lagan PIN kako biste pristupili", "HeaderTopPlugins": "Najbolji dodaci", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", "HeaderTrailers": "Kratki filmovi", "HeaderTranscodingProfile": "Profil transkodiranja", "HeaderTranscodingProfileHelp": "Dodaj profile konvertiranja za označavanje koji se formati trebaju koristiti kada je potrebno konvertiranje.", "HeaderTunerDevices": "TV/Radio uređaji", "HeaderTuners": "TV uređaji", "HeaderTvTuners": "TV uređaji", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Unesite tekst", "HeaderUnaired": "Ne-emitirano", "HeaderUnknownDate": "Nepoznati datum", "HeaderUnknownYear": "Nepoznata godina", "HeaderUnrated": "Neocijenjeno", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", "HeaderUpcomingOnTV": "Sljedeće na TV-u", "HeaderUploadImage": "Prenesi sliku", "HeaderUploadNewImage": "Dostavi novu sliku", "HeaderUser": "Korisnik", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Korisnici", - "HeaderVideo": "Video", "HeaderVideoTypes": "Tip videa", "HeaderVideos": "Videi", "HeaderViewOrder": "Poredak pogleda", @@ -599,13 +494,8 @@ "HeaderYears": "Godine", "HeadersFolders": "Mape", "HowToConnectFromJellyfinApps": "Kako se spojiti s Jellyfin aplikacije", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 Omjer, preporučamo. Samo JPG/PNG.", "ImportFavoriteChannelsHelp": "Ako je omogućeno, samo kanali koji su označeni kao omiljeni na uređaju TV/radio pretraživača će se uvesti.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", "JellyfinIntroDownloadMessage": "Da biste preuzeli i instalirali besplatni Jellyfin Server posjetite {0}.", "JellyfinIntroDownloadMessageWithoutLink": "Da biste preuzeli i instalirali besplatni Jellyfin Server posjetite Jellyfin web stranice.", "JellyfinIntroMessage": "Uz Jellyfin možete jednostavno gledati video, glazbu i fotografije na pametnim telefonima, tabletima i drugim uređajima iz svog Jellyfin Servera.", @@ -619,7 +509,6 @@ "LabelAirDays": "Dani emitiranja:", "LabelAirTime": "Vrijeme emitiranja:", "LabelAirTime:": "Vrijeme emitiranja:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN se koristi za grafiku albuma sa dlna:profileID atributom na upnp:albumArtURI. Neki uređaji zahtijevaju specifičnu vrijednost bez obzira na veličinu slike.", "LabelAlbumArtMaxHeight": "Maksimalna visina Album art-a:", "LabelAlbumArtMaxHeightHelp": "Maksimalna rezolucija albuma izloženih putem UPnP:albumArtURI.", @@ -633,32 +522,24 @@ "LabelAllowHWTranscoding": "Dopusti hardversko konvertiranje", "LabelAllowServerAutoRestart": "Dopusti serveru da se automatski resetira kako bi proveo nadogradnje", "LabelAllowServerAutoRestartHelp": "Server će se resetirati dok je u statusu mirovanja, odnosno kada nema aktivnih korisnika.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Bilo kada", "LabelAppName": "Ime aplikacije", "LabelAppNameExample": "Primjer: Sickbeard, NzbDrone", "LabelArtist": "Izvođač", "LabelArtists": "Izvođači:", "LabelArtistsHelp": "Odvoji višestruko koristeći ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Postavke audio jezika:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "Dostupne varijable:", "LabelBindToLocalNetworkAddress": "Veži za lokalnu mrežnu adresu:", "LabelBindToLocalNetworkAddressHelp": "Neobvezno. Nadjačaj lokalnu IP adresu da se veže na http server. Ako se ostavi prazno, server će se vezati na svim dostupnim adresama. Mijenjanje ove vrijednosti zahtijeva ponovno pokretanje Jellyfin Server-a.", "LabelBitrateMbps": "Brzina prijenosa (Mbps):", "LabelBlastMessageInterval": "Interval poruka dostupnosti (sekunde)", "LabelBlastMessageIntervalHelp": "Određuje trajanje u sekundama između svake poruke dostupnosti servera.", - "LabelBlockContentWithTags": "Block items with tags:", "LabelCache": "Predmemorija:", "LabelCachePath": "Putanja predmemorije:", "LabelCachePathHelp": "Odredite prilagođenu lokaciju za predmemorijske datoteke servera, kao što su slike. Ostavite prazno za korištenje zadanog poslužitelja.", "LabelCameraUploadPath": "Putanja slika kamere za preuzimanje:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Otkazan", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", "LabelChannelStreamQuality": "Željena kvaliteta internet kanala:", "LabelChannelStreamQualityHelp": "U okruženju slabe propusnosti, ograničavanje kvalitete može osigurati iskustvo glatkog strujanja.", "LabelCodecIntrosPath": "Putanja codec-a isječka:", @@ -681,8 +562,6 @@ "LabelCreateCameraUploadSubfolderHelp": "Posebne mape mogu biti dodijeljene na uređaj tako da kliknete na njega sa stranice uređaji.", "LabelCurrentPassword": "Sadašnja lozinka:", "LabelCurrentPath": "Trenutna putanja:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "Prilagođen css:", "LabelCustomCssHelp": "Primijenite svoj vlastiti prilagođeni css na web sučelje.", "LabelCustomDeviceDisplayName": "Prikaz naziva:", @@ -700,14 +579,12 @@ "LabelDefaultStream": "(Zadano)", "LabelDefaultUser": "Zadani korisnik:", "LabelDefaultUserHelp": "Određuje koja će biblioteka biti prikazana na spojenim uređajima. Ovo se može zaobići za svaki uređaj koristeći profile.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Opis uređaja", "LabelDidlMode": "Didl način:", "LabelDisabled": "Onesposobljeno", "LabelDisplayCollectionsView": "Kako biste pokazali kolekcije filmova prikaži pregled kolekcija", "LabelDisplayCollectionsViewHelp": "Stvoriti će se poseban pogled na zaslon kolekcije filmova. Da biste stvorili kolekciju, desni klik ili pritisnite i zadržite bilo koji film i odaberite \"Dodaj u kolkeciju\". ", "LabelDisplayMissingEpisodesWithinSeasons": "Prikaži epizode koje nedostaju unutar sezone", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "LabelDisplayName": "Prikaz naziva:", "LabelDisplayPluginsFor": "Prikaži dodatak za:", "LabelDisplaySpecialsWithinSeasons": "Prikaz specijalnih dodataka unutar sezona u kojima su emitirani", @@ -716,8 +593,6 @@ "LabelDownloadInternetMetadata": "Preuzmi ilustracije i metadata (opise) sa interneta", "LabelDownloadInternetMetadataHelp": "Jellyfin Server može preuzeti informacije o Vašim medijima i omogućiti bogate prezentacije.", "LabelDownloadLanguages": "Jezici za preuzimanje:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Lagan PIN kod:", "LabelEmail": "E-mail:", "LabelEmailAddress": "E-mail adresa", @@ -739,7 +614,6 @@ "LabelEnableDlnaServer": "Omogući Dlna server", "LabelEnableDlnaServerHelp": "Omogućuje UPnP uređajima na mreži da pregledavaju i pokreću Jellyfin sadržaj.", "LabelEnableFullScreen": "Omogući način punog zaslona", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "Omogući pametnu roditeljsku kontrolu", "LabelEnableIntroParentalControlHelp": "Kratki filmovi će biti izabrani samo uz roditeljski rejting jednak ili manji od sadržaja koji se prikazuju.", "LabelEnableRealtimeMonitor": "Omogući nadgledanje u realnom vremenu", @@ -757,7 +631,6 @@ "LabelEvent": "Događaj:", "LabelEveryXMinutes": "Svaki:", "LabelExternalDDNS": "Vanjska domena:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Vanjski pokretači:", "LabelExtractChaptersDuringLibraryScan": "Izvadi slike poglavlja dok traje skeniranje biblioteke", "LabelExtractChaptersDuringLibraryScanHelp": "Ako je omogućeno, slike poglavlje će se izdvojiti kad se videozapisi uvezu tijekom skeniranja biblioteke. Ako je onemogućeno izdvojiti će se u rasporedu zadatka slika poglavlja, čime se omogućuje da se skeniranje redovne biblioteke završiti brže.", @@ -770,7 +643,6 @@ "LabelFolderType": "Tip mape:", "LabelForcedStream": "(Prisilno)", "LabelForgotPasswordUsernameHelp": "Unesite korisničko ime, ako se sjećate.", - "LabelFormat": "Format:", "LabelFree": "Slobodno", "LabelFriendlyName": "Prijateljsko ime", "LabelFriendlyServerName": "Prijateljsko ime servera:", @@ -807,18 +679,13 @@ "LabelKodiMetadataEnablePathSubstitutionHelp": "Omogućuje zamjensku putanju putanje slika koristeći serverskih postavka zamjenske putanje.", "LabelKodiMetadataSaveImagePaths": "Spremanje staze slika unutar NFO datoteka", "LabelKodiMetadataSaveImagePathsHelp": "Preporuča se ako imate nazive datoteka slika koje ne udovoljavaju Kodi smjernicama.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Jezik:", "LabelLastResult": "Posljednji rezultat:", "LabelLimit": "Ograničenje:", "LabelLimitIntrosToUnwatchedContent": "Samo pokreči kratke filmove iz nepregledanog sadržaja", "LabelLineup": "Svrastavanje:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Lokalni broj http porta:", "LabelLocalHttpServerPortNumberHelp": "Broj TCP porta na koji se treba vezati Jellyfin-jev HTTP poslužitelj.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Prijava odricanja:", "LabelLoginDisclaimerHelp": "Prikazano će biti na dnu stranice za prijavu.", "LabelLogs": "Dnevnici:", @@ -835,12 +702,10 @@ "LabelMaxResumePercentage": "Maksimalni postotak za nastavak:", "LabelMaxResumePercentageHelp": "Naslovi će biti označeni kao pogledani ako budu zaustavljeni nakon ovog vremena", "LabelMaxScreenshotsPerItem": "Maksimalni broj isječaka po stavci:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Odredite maksimalnu brzinu prijenosa pri strujanju.", "LabelMessageText": "Tekst poruke:", "LabelMessageTitle": "Naslov poruke:", "LabelMetadata": "Meta-podaci:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "Preuzimači meta-podataka:", "LabelMetadataDownloadersHelp": "Omogućite i poredajte željene preuzimatelje meta-podataka po redu prioriteta. Manjeg prioriteta preuzimatelji koristit će se samo za ispunjavanje nedostajućih informacija.", "LabelMetadataPath": "Put meta-podataka:", @@ -864,8 +729,6 @@ "LabelMonitorUsers": "Obrazac nadzora aktivnosti:", "LabelMovie": "Film", "LabelMovieCategories": "Filmske kategorije:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Putanja za snimanje filmova (neobavezno):", "LabelMusicStaticBitrate": "Brzina prijenosa sinkronizacije glazbe:", "LabelMusicStaticBitrateHelp": "Odredite maksimalnu brzinu prijenosa prilikom sinkronizacije glazbe", @@ -873,7 +736,6 @@ "LabelMusicStreamingTranscodingBitrateHelp": "Odredite maksimalnu brzinu prijenosa pri strujanju glazbe", "LabelMusicVideo": "Glazbeni video", "LabelName": "Ime:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", "LabelNewName": "Novo ime:", "LabelNewPassword": "Nova lozinka:", "LabelNewPasswordConfirm": "Potvrda nove lozinke:", @@ -901,9 +763,6 @@ "LabelPlayMethodDirectPlay": "Direktno izvođenje", "LabelPlayMethodDirectStream": "Direktno strujanje", "LabelPlayMethodTranscoding": "Konvertiranje", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Željeni jezik za prikaz:", "LabelPreferredDisplayLanguageHelp": "Prevađanje Jellyfin-a je projekt u tijeku.", "LabelPrevious": "Prethodni", @@ -926,9 +785,7 @@ "LabelRecordingPath": "Zadana putanja za snimanje:", "LabelRecordingPathHelp": "Odredite zadano mjesto za spremanje snimaka. Ako se ostavi prazno, koristit će se mapa poslužitelja programskih podaka.", "LabelReleaseDate": "Datum izdavanja:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "Granica brzine strujanja prijenosa preko Interneta (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "Izvještaj:", "LabelResumePoint": "Točka nastavka:", "LabelRunningOnPort": "Izvodi se na http port-u {0}.", @@ -941,7 +798,6 @@ "LabelSeasonFolderPattern": "Obrazac naziva mape - sezone:", "LabelSeasonNumber": "Broj sezone:", "LabelSeasonZeroFolderName": "Obrazac naziva mape - Nulte sezone:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Kratki filmovi sa Interneta:", "LabelSelectUsers": "Odaberite korisnika:", "LabelSelectVersionToInstall": "Odaberi verziju za instalaciju:", @@ -951,23 +807,15 @@ "LabelSeriesRecordingPath": "Putanja za snimanje serija (neobavezno):", "LabelServerHost": "Domaćin:", "LabelServerHostHelp": "192.168.1.100 ili https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Preskoči ako zadani audio zapis odgovara jeziku preuzimanja", "LabelSkipIfAudioTrackPresentHelp": "Poništite ovo da bi osigurali da svi videi imaju titlove, bez obzira na audio jezik.", "LabelSkipIfGraphicalSubsPresent": "Preskoči ako video već sadrži ugrađene titlove prijevoda", "LabelSkipIfGraphicalSubsPresentHelp": "Zadržavanjem tekstualne verzije titlova prijevoda rezultirati će učinkovitijoj isporuci i smanjiti vjerojatnost video konvertiranja.", "LabelSkipped": "Preskočeno", - "LabelSonyAggregationFlags": "Sony aggregation flags:", "LabelSonyAggregationFlagsHelp": "Određuje sadržaj aggregationFlags elementa u urn:schemas-sonycom:av namespace.", "LabelSource": "Izvor:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSportsCategories": "Sportske kategorije:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", "LabelStopping": "Zaustavljanje", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Npr.: srt", "LabelSubtitleLanguagePreference": "Postavke jezika titlova prijevoda", "LabelSubtitlePlaybackMode": "Način titlova prijevoda", @@ -976,7 +824,6 @@ "LabelSyncTempPath": "Privremena putanja datoteka:", "LabelSyncTempPathHelp": "Odredite prilagođeni sinkronizacijski radni direktorij. Pretvoren medij stvorene tijekom postupka sinkronizacije biti će pohranjen ovdje.", "LabelTag": "Oznaka:", - "LabelTheme": "Theme:", "LabelTime": "Vrijeme:", "LabelTimeLimitHours": "Rok (sati):", "LabelTranscodingAudioCodec": "Audio koder:", @@ -992,18 +839,14 @@ "LabelTunerIpAddress": "IP adresa TV/Radio uređaja:", "LabelTunerType": "Vrsta pretraživača:", "LabelType": "Tip:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Tekst", "LabelUnairedMissingEpisodesWithinSeasons": "Prikaži epizode koje nisu emitirane unutar sezone", "LabelUnknownLanguage": "Nepoznati jezik", "LabelUploadSpeedLimit": "Ograničenje brzine prijenosa (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Koristite sljedeće servise:", "LabelUser": "Korisnik:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Korisnička biblioteka:", "LabelUserLibraryHelp": "Odaberite koju korisničku biblioteku će te prikazati uređaju. Ostavite prazno ako želite preuzeti definirane postavke.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Korisničko ime:", "LabelVaapiDevice": "VA API uređaj:", "LabelVaapiDeviceHelp": "Ovo je čvor provođenja koji se koristi za hardversko ubrzanje.", @@ -1011,12 +854,9 @@ "LabelVersionInstalled": "{0} instaliran", "LabelVersionNumber": "Verzija {0}", "LabelVersionUpToDate": "(Aktualan)", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tip Videa:", "LabelView": "Pogled:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Određuje sadržaj X_DLNACAP elementa u urn:shemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Određuje sadržaj X_DLNADOC elementa u urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Ime:", "LabelYoureDone": "Završeno!", @@ -1024,21 +864,13 @@ "LabelffmpegPath": "FFmpeg putanja:", "LabelffmpegPathHelp": "Putanja do FFmpeg aplikacijske datoteke ili mape koja sadrži FFmpeg.", "LabelffmpegVersion": "FFmpeg verzija:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Odaberite medijske mape za djeljenje sa ovim korisnikom. Administratori će moći mjenjati sve mape preko Metadata menadžera.", - "LinkApi": "Api", "LinkCommunity": "Zajednica", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Naučite o Jellyfin Premijeri", "LiveTvUpdateAvailable": "(Dostupno ažuriranje)", "LoginDisclaimer": "Jellyfin je osmišljen kako bi vam pomogao upravljati vašim osobnim medijskom bibliotekom, kao što su kućni videozapisi i fotografije. Molimo pogledajte naše uvjete korištenja. Uporabom Jellyfin softvera prihvaćate ove uvjete.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "Upravljanje izvanmrežnim preuzimanjima", "MapChannels": "Mapiraj kanale", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Sadržaj sa višom ocjenom će biti skriven od ovog korisnika.", "MediaInfoAltitude": "Visina", "MediaInfoAnamorphic": "Anamorfno", @@ -1058,7 +890,6 @@ "MediaInfoFile": "Datoteka", "MediaInfoFocalLength": "Žarišna duljina", "MediaInfoForced": "Prisilno", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Okvirna brzina", "MediaInfoInterlaced": "Prepleteno", "MediaInfoIsoSpeedRating": "ISO vrijednost", @@ -1077,11 +908,9 @@ "MediaInfoShutterSpeed": "Brzina okidača", "MediaInfoSize": "Veličina", "MediaInfoSoftware": "Softver", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Podatci", "MediaInfoStreamTypeEmbeddedImage": "Ugrađena slika", "MediaInfoStreamTypeSubtitle": "Titlovi", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Vremenski žig", "MessageAlreadyInstalled": "Ova verzija je već instalirana.", "MessageApplicationUpdated": "Jellyfin Server je ažuriran", @@ -1095,7 +924,6 @@ "MessageConfirmRevokeApiKey": "Jeste li sigurni da želite poništiti ovaj API ključ? Veza aplikacije s Jellyfin Server-om će se naglo prekinuti.", "MessageConfirmShutdown": "Dali ste sigurni da želite ugasiti Jellyfin Server?", "MessageConfirmSplitMedia": "Jeste li sigurni da želite podijeliti izvore medija u zasebne stavke?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "Kako bi ste pozvali goste prvo trebate povezati svoj Jellyfin račun na ovom serveru.", "MessageContactAdminToResetPassword": "Molim obratite se administratoru sustava kako biste poništili zaporku.", "MessageCreateAccountAt": "Otvori račun kod {0}", @@ -1104,7 +932,6 @@ "MessageDirectoryPickerBSDInstruction": "Za BSD možda ćete morati podesiti pohranu unutar vašega FreeNAS kako bi se omogućilo Jellyfin-u pristup.", "MessageDirectoryPickerInstruction": "Mrežne putanje mogu se unijeti ručno u slučaju da gumb Mreže ne uspije locirati vaše uređaje. Na primjer, {0} ili {1}.", "MessageDirectoryPickerLinuxInstruction": "Za Linux na Arch Linux, CentOS, Debian, Fedora, OpenSuse ili Ubuntu morate dati korisniku Jellyfin sistema barem pristup čitanja vašim lokacijama za skladištenje.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", "MessageEnsureOpenTuner": "Provjerite postoji li otvoren TV/radio pretraživač na raspolaganju.", "MessageErrorLoadingSupporterInfo": "Došlo je do pogreške prilikom učitavanja informacije Jellyfin Premijere. Molimo pokušajte ponovo kasnije.", "MessageErrorPlayingVideo": "Došlo je do pogreške reproduciranja videa.", @@ -1146,7 +973,6 @@ "MessagePleaseEnsureInternetMetadata": "Molimo provjerite da je preuzimanje metadata sa interneta omogućeno.", "MessagePleaseRestart": "Molimo ponovo pokrenite kako bi se završila ažuriranja.", "MessagePleaseRestartServerToFinishUpdating": "Molimo ponovo pokrenite server kako bi se završila ažuriranja.", - "MessagePleaseWait": "Please wait. This may take a minute.", "MessagePluginConfigurationRequiresLocalAccess": "Za podešavanje ovog dodatka prijavite se izravno na lokalni server.", "MessagePluginInstallDisclaimer": "Dodaci izgrađeni od strane članova Jellyfin zajednice su sjajan način kako bi unaprijedili Vaše iskustvo Jellyfin s dodatnim značajkama i prednostima. Prije instaliranja budite svjesni učinaka koje mogu imati na vaš Jellyfin Server, kao što je duže skeniranje biblioteke, dodatna pozadinska obrada, a smanjena stabilnost sustava.", "MessagePluginRequiresSubscription": "Ovaj dodatak zahtijeva aktivnu pretplatu Jellyfin Premijere nakon 14 dana probnog razdoblja.", @@ -1164,35 +990,20 @@ "MessageUnableToConnectToServer": "Nismo u mogućnosti spojiti se na odabrani poslužitelj. Provjerite dali je pokrenut i pokušajte ponovno.", "MessageUnsetContentHelp": "Sadržaj će biti prikazan kao obične mape. Za najbolje rezultate upotrijebite upravitelj meta-podataka za postavljanje vrste sadržaja pod-mapa.", "MessageYouHaveVersionInstalled": "Trenutno imate instaliranu {0} verziju.", - "Metadata": "Metadata", "MetadataManager": "Upravitelj meta-podacima", "MetadataSettingChangeHelp": "Promjena postavki meta-podataka utjecati će da novi sadržaji koji se dodaju idu naprijed. Za osvježavanje postojećih sadržaja otvorite zaslon pojedinosti i kliknite gumb za osvježavanje ili obavite skupno osvježavanje pomoću upravitelja meta-podataka.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", "MissingBackdropImage": "Nedostaje pozadinska slika.", "MissingEpisode": "Nedostaje epizoda", "MissingLogoImage": "Nedostaje slika logo-a.", "MissingPrimaryImage": "Nedostaje glavna slika.", "MoreFromValue": "Više od {0}", "MoreUsersCanBeAddedLater": "Više korisnika možete dodati naknadno preko nadzorne ploče.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", "NewVersionOfSomethingAvailable": "Nova verzija {0} je dostupna", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nije pronađeno. Krenite sa gledanjem vaše emisije!", "NoPluginConfigurationMessage": "Ovaj dodatak nema postavke za podesiti.", "NoPluginsInstalledMessage": "Nemate instaliranih dodataka.", "NoResultsFound": "Nije ništa pronađeno.", - "Notifications": "Notifications", "NumLocationsValue": "{0} mape", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Glumac", "OptionActors": "Glumci", "OptionAdminUsers": "Administratori", @@ -1208,12 +1019,10 @@ "OptionAllowLinkSharingHelp": "Samo web stranice koje sadrže informacije medija su podijeljene. Medijske datoteke nikada nisu podijeljene javno. Dijeljenja su vremenski ograničena i isteći će nakon {0} dana.", "OptionAllowManageLiveTv": "Dopusti upravljanje snimanja TV uživo", "OptionAllowMediaPlayback": "Dopusti reprodukciju medija", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Dopusti daljinsko upravljanje drugih korisnika", "OptionAllowRemoteSharedDevices": "Dopusti daljinsko upravljanje dijeljenih uređaja", "OptionAllowRemoteSharedDevicesHelp": "DLNA uređaji smatraju se dijeljeni sve dok ih korisnik ne započne kontrolirati.", "OptionAllowSyncContent": "Dozvoli sink.", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Dopusti ovom korisniku da upravlja serverom", "OptionAllowVideoPlaybackRemuxing": "Dopusti video reprodukciju koja zahtijeva konvertiranje bez ponovnog kodiranja", "OptionAllowVideoPlaybackTranscoding": "Dopusti video reprodukciju koja zahtijeva konvertiranje", @@ -1223,14 +1032,11 @@ "OptionAscending": "Uzlazno", "OptionAuto": "Automatski", "OptionAutomatic": "Automatski", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Pozadina", "OptionBackdropSlideshow": "Slajdovi pozadina", "OptionBackdrops": "Pozadine", "OptionBanner": "Zaglavlje", "OptionBestAvailableStreamQuality": "Najbolje dostupno", - "OptionBeta": "Beta", "OptionBirthLocation": "Lokacije rođenja", "OptionBlockBooks": "Knjige", "OptionBlockChannelContent": "Sadržaj Internet kanala", @@ -1242,11 +1048,9 @@ "OptionBlockOthers": "Ostali", "OptionBlockTrailers": "Kratki filmovi", "OptionBlockTvShows": "TV emisije", - "OptionBluray": "Bluray", "OptionBooks": "Knjige", "OptionBox": "Kutija", "OptionBoxRear": "Poleđina kutije", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Kolekcije", "OptionCommunityRating": "Ocjeni zajednice", "OptionComposer": "Kompozitor", @@ -1255,7 +1059,6 @@ "OptionConvertRecordingPreserveAudio": "Očuvanje izvornog zvuka prilikom pretvaranja snimke (kada je moguće)", "OptionConvertRecordingPreserveAudioHelp": "Ovo će pružiti bolji zvuk, ali može zahtijevati konvertiranje tijekom reprodukcije na nekim uređajima.", "OptionConvertRecordingsToStreamingFormat": "Automatski pretvoriti snimke na prijateljskom formatu strujanja", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Ocjeni kritike", "OptionCustomUsers": "Prilagođeno", "OptionDaily": "Dnevno", @@ -1265,7 +1068,6 @@ "OptionDatePlayed": "Datumu izvođenja", "OptionDefaultSort": "Zadano", "OptionDescending": "Silazno", - "OptionDev": "Dev", "OptionDirector": "Režiser", "OptionDirectors": "Redatelji", "OptionDisableUser": "Onemogući ovog korisnika", @@ -1283,12 +1085,9 @@ "OptionDownloadBoxImage": "Kutija", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Preuzmi slike unaprijed", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Meni", "OptionDownloadPrimaryImage": "Primarno", "OptionDownloadThumbImage": "Sličica", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Omogući unutar spremnika", "OptionEnableAccessFromAllDevices": "Omogući pristup svim uređajima", "OptionEnableAccessToAllChannels": "Omogući pristup svim kanalima", @@ -1338,9 +1137,6 @@ "OptionImages": "Slike", "OptionImdbRating": "IMDb ocjena", "OptionInProgress": "U toku", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Ključne riječi", "OptionLatestChannelMedia": "Najnoviji kanali", "OptionLatestMedia": "Najnoviji mediji", @@ -1349,7 +1145,6 @@ "OptionLikes": "Volim", "OptionList": "Popis", "OptionLocked": "Zaključano", - "OptionLogo": "Logo", "OptionMax": "Maksimalno", "OptionMenu": "Izbornik", "OptionMissingEpisode": "Epizode koje nedostaju", @@ -1370,8 +1165,6 @@ "OptionNo": "Ne", "OptionNoTrailer": "Nema kratkog videa", "OptionNone": "Ništa", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Kada se aplikacija pokrene", "OptionOnInterval": "U intervalu", "OptionOtherApps": "Druge aplikacije", @@ -1387,31 +1180,23 @@ "OptionPlainVideoItemsHelp": "Ako je omogućeno, sav video se prezentira u DIDL-u kao \"objekt.stavka.videoStavka\" umjesto više specijaliziranog tipa kao \"objekt.stavka.videoStavka.film\".", "OptionPlayCount": "Broju izvođenja", "OptionPlayed": "Izvođeni", - "OptionPoster": "Poster", "OptionPosterCard": "Kartice postera", "OptionPremiereDate": "Datum premijere", "OptionPrimary": "Primarno", "OptionPriority": "Prioritet", "OptionProducer": "Producent", "OptionProducers": "Producenti", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Slika", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", "OptionProtocolHls": "Http strujanje uživo", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Snimanje bilo kada", "OptionRecordOnAllChannels": "Snimanje na svim kanalima", "OptionRecordOnlyNewEpisodes": "Snimi samo nove epizode", "OptionRecordSeries": "Snimi serije", - "OptionRegex": "Regex", "OptionRelease": "Službeno izdanje", "OptionReleaseDate": "Datum izdavanja", "OptionReportByteRangeSeekingWhenTranscoding": "Izvješće da li poslužitelj podržava bajt traženja kada se konvertira", "OptionReportByteRangeSeekingWhenTranscodingHelp": "To je potrebno za neke uređaje koji ne mogu dobro koristiti pretraživanje vremena.", "OptionRequirePerfectSubtitleMatch": "Samo preuzimanje titlova prijevoda koji su savršen izbor za moje video datoteke", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Nastavi", "OptionResumablemedia": "Nastavi", "OptionRuntime": "Trajanje", @@ -1471,24 +1256,13 @@ "PasswordResetHeader": "Poništi lozinku", "PasswordSaved": "Lozinka snimljena.", "PersonTypePerson": "Osoba", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "PIN je resetiran.", "PinCodeResetConfirmation": "Da li ste sigurni da želite resetirati PIN?", - "PlayOnAnotherDevice": "Play on another device", "PleaseAddAtLeastOneFolder": "Dodajte barem jednu mapu u ovu biblioteku klikom na gumb Dodaj.", "PleaseConfirmPluginInstallation": "Molimo kliknite U redu da biste potvrdili da ste pročitali gore navedeno i želite nastaviti s instalacijom dodataka.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} je instalirano", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} je deinstalirano", "PluginUpdatedWithName": "{0} je ažurirano", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Zato što volite {0}", "RecommendationBecauseYouWatched": "Zato što ste gledali {0}", "RecommendationDirectedBy": "Režisirao {0}", @@ -1497,38 +1271,18 @@ "RegisterWithPayPal": "Registracija sa PayPal-om", "ReleaseYearValue": "Godina izdanja: {0}", "RememberMe": "Zapamti me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", "SelectCameraUploadServers": "Prenesi slike kamere na slijedeće poslužitelje:", - "SendMessage": "Send message", "Series": "Serija", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", "ServerUpdateNeeded": "Jellyfin Server treba ažurirati. Da biste preuzeli najnoviju verziju, posjetite {0}", - "Settings": "Settings", "SettingsSaved": "Postavke snimljene", "SettingsWarning": "Mijenjanje ove vrijednosti može uzrokovati nestabilnost ili kvarove na povezivanju. Ako naiđete na bilo kakve probleme, preporučamo da ih promijenite natrag na zadane.", "SetupFFmpeg": "FFmpeg postavke", "SetupFFmpegHelp": "Jellyfin može zahtijevati biblioteku ili program za konvertiranje određenih vrsta medija. Postoji mnogo različitih aplikacija koje su dostupne, međutim, Jellyfin je testiran za rad s FFmpeg. Jellyfin ni na koji način nije povezan s FFmpeg, vlasništvo, kod ili distribuciju.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Sportovi", - "Standard": "Standard", "StatusRecording": "Snimanje", "StatusRecordingProgram": "Snimanje {0}", "StatusWatching": "Gledanje", "StatusWatchingProgram": "Gledanje {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", "SyncMedia": "Sink. medija", "SyncToOtherDevices": "Sinkronizacija na druge uređaje", "SynologyUpdateInstructions": "Molimo, prijavite se u DSM i otiđite na centar paketa za ažuriranje.", @@ -1554,7 +1308,6 @@ "TabCollections": "Kolekcije", "TabContainers": "Spremnik", "TabControls": "Kontrole", - "TabDLNA": "DLNA", "TabDashboard": "Nadzorna ploča", "TabDevices": "Uređaji", "TabDirectPlay": "Direktna reprodukcija", @@ -1563,7 +1316,6 @@ "TabExpert": "Stručnjak", "TabExtras": "Dodaci", "TabFavorites": "Omiljeni", - "TabFilter": "Filter", "TabFolders": "Mapa", "TabGames": "Igre", "TabGeneral": "Opće", @@ -1575,7 +1327,6 @@ "TabHosting": "Posluživanje", "TabImage": "Slika", "TabImages": "Slike", - "TabInfo": "Info", "TabLanguages": "Jezici", "TabLatest": "Zadnje", "TabLibrary": "Biblioteka", @@ -1613,7 +1364,6 @@ "TabScheduledTasks": "Zakazani zadaci", "TabSecurity": "Sigurnost", "TabSeries": "Serije", - "TabServer": "Server", "TabServices": "Servisi", "TabSettings": "Postavke", "TabShows": "Emisije", @@ -1624,7 +1374,6 @@ "TabSuggestions": "Prijedlozi", "TabSync": "Sink.", "TabSyncJobs": "Poslovi sink.", - "TabTV": "TV", "TabTrailers": "Kratki filmovi", "TabTranscoding": "Konvertiranje", "TabUpcoming": "Uskoro", @@ -1634,7 +1383,6 @@ "TermsOfUse": "Uvjeti korištenja", "TextConnectToServerManually": "Spoji se ručno na Server", "TextEnjoyBonusFeatures": "Uživajte u bonus značajkama", - "Themes": "Themes", "ThisWizardWillGuideYou": "Ovaj pomoćnik će Vas voditi kroz proces podešavanja. Za početak, odaberite željeni jezik.", "TitleDevices": "Uređaji", "TitleHardwareAcceleration": "Hardversko ubrzanje", @@ -1647,16 +1395,12 @@ "TitlePlugins": "Dodaci", "TitleRemoteControl": "Daljinsko upravljanje", "TitleScheduledTasks": "Zakazani zadaci", - "TitleServer": "Server", "TitleSignIn": "Prijava", "TitleSupport": "Podrška", "TitleSync": "Sink.", "TitleUsers": "Korisnici", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Da li ste sigurni da želite ukloniti {0}?", "UninstallPluginHeader": "Ukloni dodatak", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin uključuje ugrađenu podršku za korisničke profile što omogućuje svakom korisniku da ima svoje vlastite postavke prikaza, PlayStation i roditeljski nadzor.", "Users": "Korisnici", "ValueAlbumCount": "{0} albuma", @@ -1680,7 +1424,6 @@ "ValueMinutes": "{0} minuta", "ValueMovieCount": "{0} filmova", "ValueMusicVideoCount": "{0} glazbenih videa", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 igra", "ValueOneMovie": "1 film", @@ -1694,29 +1437,18 @@ "ValueSeriesCount": "{0} serija", "ValueSeriesYearToPresent": "{0} - sada", "ValueSongCount": "{0} pjesma", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studia: {0}", "ValueTimeLimitMultiHour": "Vremensko ograničenje: {0} sati", "ValueTimeLimitSingleHour": "Vremensko ograničenje: 1 sat", "ValueTrailerCount": "{0} kratki filmovi", "ValueVideoCodec": "Video koder: {0}", "VersionNumber": "Verzija {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", "ViewTypeMusicFavoriteAlbums": "Omiljeni albumi", "ViewTypeMusicFavoriteArtists": "Omiljeni izvođači", "ViewTypeMusicFavoriteSongs": "Omiljene pjesme", "ViewTypeMusicFavorites": "Omiljeni", "ViewTypeMusicSongs": "Pjesme", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Dobrodošli u Jellyfin", - "Whitelist": "Whitelist", "WizardCompleted": "To je sve što nam treba za sada. Jellyfin je počeo prikupljati podatke o vašoj medijskoj knjižnici. Provjerite neke od naših aplikacija, a zatim kliknite na Završi za prikaz Serverske kontrolne ploče.", "XmlDocumentAttributeListHelp": "Ovi atributi se primjenjuju na korijen elementa svakog xml odgovora.", "XmlTvKidsCategoriesHelp": "Programi s tim kategorijama će biti prikazani kao dječji programi. Odvojite više s '|'.", diff --git a/src/strings/hu.json b/src/strings/hu.json index 01a96655ae..fab4e541c6 100644 --- a/src/strings/hu.json +++ b/src/strings/hu.json @@ -1,80 +1,48 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Új felhasználó", "AddUserByManually": "Helyi felhasználó felvitele az adatok manuális beírásával.", "AdditionalNotificationServices": "Keresd meg a Bővítmények katalógust további értesítési szolgáltatások telepítéséhez.", - "Advanced": "Advanced", "Alerts": "Riasztások", "All": "Összes", "AllLibraries": "Összes könyvtár", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Audió", "BirthDateValue": "Született: {0}", "BirthPlaceValue": "Születési hely: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "Tallózás", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", "ButtonAdd": "Hozzáad", "ButtonAddMediaLibrary": "Új Média Könyvtár felvétele", - "ButtonAddScheduledTaskTrigger": "Add Trigger", "ButtonAddServer": "Szerver Hozzáadása", "ButtonAddUser": "Új felhasználó", "ButtonArrowDown": "Le", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", "ButtonArrowUp": "Fel", "ButtonAudioTracks": "Audió Sávok", - "ButtonBack": "Back", "ButtonCancel": "Mégsem", - "ButtonCancelSeries": "Cancel Series", "ButtonChangeContentType": "Tartalom típusának megváltoztatása", "ButtonChangeServer": "Szerver váltás", - "ButtonClear": "Clear", "ButtonClose": "Bezár", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Pin kód beállítása", "ButtonConnect": "Kapcsolódás", "ButtonConvertMedia": "Média konvertálás", - "ButtonCreate": "Create", "ButtonDelete": "Törlés", "ButtonDeleteImage": "Kép törlése", "ButtonDown": "Le", "ButtonDownload": "Letöltés", "ButtonEdit": "Szerkesztés", "ButtonEditImages": "Képek szerkesztése", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Kilépés", "ButtonFilter": "Szűrő", "ButtonForgotPassword": "Elfelejtett jelszó", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", "ButtonHelp": "Segítség", "ButtonHide": "Elrejt", "ButtonHome": "Kezdőlap", - "ButtonInfo": "Info", "ButtonInviteUser": "Felhasználó meghívása", - "ButtonLearnMore": "Learn more", "ButtonLibraryAccess": "Könyvtár hozzáférés", "ButtonManageFolders": "Könyvtárak kezelése", "ButtonManageServer": "Szerver Kezelés", "ButtonManualLogin": "Manuális belépés", - "ButtonMenu": "Menu", "ButtonMore": "Tovább", "ButtonMoreInformation": "További Információ", "ButtonMute": "Némít", - "ButtonNetwork": "Network", "ButtonNew": "Új", "ButtonNewServer": "Új Szerver", "ButtonNext": "Következő", @@ -83,43 +51,31 @@ "ButtonNo": "Nem", "ButtonNowPlaying": "Most játszott", "ButtonOff": "Ki", - "ButtonOk": "Ok", "ButtonOpen": "Megnyitás", - "ButtonOther": "Other", "ButtonParentalControl": "Szülői felügyelet", "ButtonPause": "Szünet", "ButtonPlay": "Lejátszás", "ButtonPlayTrailer": "Előzetes", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", "ButtonPrevious": "Előző", "ButtonPreviousPage": "Előző oldal", "ButtonPreviousTrack": "Előző sáv", "ButtonPrivacyPolicy": "Adatvédelmi szabályzat", "ButtonProfile": "Profil", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", "ButtonQuality": "Minőség", "ButtonQuickStartGuide": "Gyorsbeállítás varázsló", "ButtonRecord": "Felvétel", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Frissítés", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", "ButtonRemote": "Távirányító", "ButtonRemoteControl": "Távirányítás", "ButtonRemove": "Eltávolítás", "ButtonRename": "Átnevezés", "ButtonRepeat": "Ismétlés", "ButtonReports": "Naplók", - "ButtonReset": "Reset", "ButtonResetEasyPassword": "Pin kód visszaállítása", "ButtonResetPassword": "Jelszó visszaállítás", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Újraindítás", "ButtonRestartNow": "Újraindítás Most", "ButtonResume": "Folytatás", - "ButtonRevoke": "Revoke", "ButtonSave": "Mentés", "ButtonScanAllLibraries": "Minden könyvtár beolvasása", "ButtonScanLibrary": "Könyvtár beolvasása", @@ -128,7 +84,6 @@ "ButtonSelect": "Válassz", "ButtonSelectDirectory": "Könyvtár választása", "ButtonSelectServer": "Szerver Kiválasztás", - "ButtonSelectView": "Select view", "ButtonSend": "Küldés", "ButtonSendInvitation": "Meghívó küldése", "ButtonServer": "Szerver", @@ -139,96 +94,33 @@ "ButtonShutdown": "Leállítás", "ButtonSignIn": "Bejelentkezés", "ButtonSignOut": "Kijelentkezés", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Rendezés", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", "ButtonStop": "Leállít", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Elküld", "ButtonSubtitles": "Feliratok", - "ButtonSync": "Sync", "ButtonTrailer": "Előzetes", "ButtonUninstall": "Eltávolítás", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", "ButtonUpdateNow": "Frissítsd most", "ButtonUpload": "Feltöltés", "ButtonView": "Megtekint", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", "ButtonWebsite": "Weboldal", "ButtonYes": "Igen", - "CancelSeries": "Cancel series", "CategoryApplication": "Alkalmazás", "CategoryPlugin": "Bővítmény", - "CategorySync": "Sync", "CategorySystem": "Rendszer", "CategoryUser": "Felhasználó", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", "Channels": "Csatornák", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Töröl", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "Média törlése", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", "Downloading": "Letöltés", "Downloads": "Letöltések", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Hardveres kódolás engedélyezése", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "Kilépés a teljes képernyőből", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "FastForward": "Ugrás előre", "FeatureRequiresJellyfinPremiere": "Ez a szolgáltatás aktív Jellyfin Premier előfizetést igényel.", "FileNotFound": "Fájl nem található.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Könyvek", "FolderTypeGames": "Játékok", - "FolderTypeInherit": "Inherit", "FolderTypeMixed": "Vegyes tartalom", "FolderTypeMovies": "Filmek", "FolderTypeMusic": "Zenék", @@ -236,40 +128,15 @@ "FolderTypePhotos": "Fényképek", "FolderTypeTvShows": "TV Műsorok", "FolderTypeUnset": "Vegyes tartalom ", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Teljes képernyő", "General": "Általános", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "Aktív eszközök", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", "HeaderAddLocalUser": "Helyi felhasználó felvitele", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", "HeaderAddUpdateImage": "Kép hozzáadása / frissítése", "HeaderAddUser": "Új felhasználó", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Haladó", "HeaderAirDays": "Vetítési Napok", "HeaderAlbums": "Albumok", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Audió", "HeaderAudioSettings": "Audió Beállítások", "HeaderAudioTracks": "Audió sávok", @@ -278,75 +145,33 @@ "HeaderAwardsAndReviews": "Díjak és Jelölések", "HeaderBackdrops": "Hátterek", "HeaderBecomeProjectSupporter": "Jellyfin Premiere beszerzése", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", "HeaderCameraUpload": "Kamera Feltöltés", "HeaderCameraUploadHelp": "Az Jellyfin alkalmazások automatikusan feltölthetik a mobileszközökkel készített képeket az Jellyfin Serverre.", - "HeaderCancelSyncJob": "Cancel Sync", "HeaderCastAndCrew": "Szereplők és Stáb", "HeaderCastCrew": "Szereplők és Stáb", "HeaderChangeFolderType": "Tartalom típusának megváltoztatása", "HeaderChangeFolderTypeHelp": "A típus megváltoztatásához távolítsd el és építsd fel újra a könyvtárat az új típussal.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Csatornák", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Jelenetek", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Gyűjtemények", "HeaderColumns": "Oszlopok", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", "HeaderConnectToServer": "Kapcsolódás a Szerverhez", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Vetítés(ek) folytatása", "HeaderCreatePassword": "Jelszó létrehozzás", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Egyedi profilok", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Dátum", - "HeaderDateIssued": "Date Issued", "HeaderDays": "Nap", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", "HeaderDetails": "Részletek", "HeaderDetectMyDevices": "Érzékelje az eszközöket", "HeaderDeveloperInfo": "Fejlesztői információk", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Eszköz Hozzáférések", "HeaderDevices": "Eszközök", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", "HeaderDisplay": "Megjelenítés", "HeaderDisplaySettings": "Megjelenítési beállítások", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", "HeaderDownloadSync": "Letöltés & Sync", "HeaderEasyPinCode": "Pin kód", "HeaderEmbeddedImage": "Beágyazott kép", "HeaderEpisodes": "Epizódok", - "HeaderError": "Error", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Külső lejátszós megtekintés", "HeaderExternalServices": "Külső Szolgáltatások", "HeaderFavoriteAlbums": "Kedvenc Albumok", @@ -356,78 +181,37 @@ "HeaderFavoriteMovies": "Kedvenc Filmek", "HeaderFavoriteShows": "Kedvenc Műsorok", "HeaderFavoriteSongs": "Kedvenc Dalok", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", "HeaderFeatures": "Jellemzők", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Szűrők", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", "HeaderForgotPassword": "Elfelejtett Jelszó", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Gyakran játszott", - "HeaderGames": "Games", "HeaderGenres": "Műfajok", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", "HeaderHomePage": "Kezdő Oldal", "HeaderHomeScreenSettings": "Kezdőképernyő beállítások", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", "HeaderImageBackdrop": "Háttér", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Elsődleges", "HeaderImageSettings": "Kép beállítások", "HeaderImages": "Képek", "HeaderInstall": "Telepítés", "HeaderInstalledServices": "Telepített szolgáltatások", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "Meghívás Jellyfin Connect segítségével", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Nyelv", "HeaderLatestAlbums": "Legújabb albumok", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Legújabb Epizódok", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", "HeaderLatestMedia": "Legújabb Média", "HeaderLatestMovies": "Legújabb Filmek", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLatestSongs": "Legújabb dalok", "HeaderLatestTrailers": "Legújabb előzetes", - "HeaderLatestTvRecordings": "Latest Recordings", "HeaderLibraries": "Könyvtárak", "HeaderLibrary": "Médiatár", "HeaderLibraryAccess": "Könyvtár Hozzáférés", "HeaderLibraryFolders": "Média Könyvtárak", "HeaderLibrarySettings": "Könyvtárbeállítások", "HeaderLinks": "Linkek", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", "HeaderLiveTvTunerSetup": "Élő TV tuner beállítása", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", "HeaderMedia": "Média", "HeaderMediaFolders": "Média Könyvtárak", "HeaderMediaInfo": "Média Infó", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", "HeaderMoreLikeThis": "További hasonló filmek", "HeaderMovies": "Filmek", "HeaderMusicVideos": "Zenei videók", @@ -436,33 +220,20 @@ "HeaderName": "Név", "HeaderNavigation": "Navigáció", "HeaderNetwork": "Hálózat", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "Új Szerver", "HeaderNewUsers": "Új Felhasználók", "HeaderNextUp": "Következik", "HeaderNotifications": "Értesítések", "HeaderNowPlaying": "Most játszott", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", "HeaderOnNow": "Most", - "HeaderOptions": "Options", "HeaderOtherDisplaySettings": "Megjelenítési beállítások", - "HeaderOtherItems": "Other Items", "HeaderOverview": "Tartalom", "HeaderParentalRating": "Korhatár besorolás", "HeaderParentalRatings": "Korhatár besorolás", "HeaderPassword": "Jelszó", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Útvonalak", "HeaderPendingInstallations": "Függő telepítések", - "HeaderPendingInvitations": "Pending Invitations", "HeaderPeople": "Személyek", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", "HeaderPinCodeReset": "Pin kód visszaállítása", "HeaderPlayAll": "Összes vetítése", "HeaderPlayback": "Média Lejátszás", @@ -472,855 +243,298 @@ "HeaderPluginInstallation": "Bővítmény Telepítése", "HeaderPreferredMetadataLanguage": "Elsődleges metaadat nyelv", "HeaderProfile": "Profil", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Legutóbbi események", "HeaderRecentlyPlayed": "Nemrég játszott", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", "HeaderReleaseDate": "Megjelenés dátuma", "HeaderRemoteControl": "Távirányítás", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Felbontás", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "Újraindítás", - "HeaderResult": "Result", "HeaderResume": "Befejezetlen", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", "HeaderRevisionHistory": "Módosítási előzmények", "HeaderRunningTasks": "Futó folyamatok", "HeaderRuntime": "Játékidő", "HeaderScenes": "Jelenetek", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", "HeaderSeason": "Évad", "HeaderSeasonNumber": "Évad száma", "HeaderSeasons": "Évad", "HeaderSelectAudio": "Válassz Audiót", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", "HeaderSelectExternalPlayer": "Válassz külső lejátszót", - "HeaderSelectMediaPath": "Select Media Path", "HeaderSelectMetadataPath": "Válaszd ki a metaadat útvonalat", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", "HeaderSelectPlayer": "Lejátszó", "HeaderSelectServer": "Szerver Kiválasztás", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectSubtitles": "Válassz Feliratot", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Üzenet küldése", "HeaderSeries": "Sorozatok:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", "HeaderServices": "Szolgáltatások", "HeaderSettings": "Beállítások", "HeaderSetupLibrary": "Média könyvtárak beállítása", - "HeaderSetupTVGuide": "Setup TV Guide", "HeaderShareMediaFolders": "Média Könyvtárak megosztása", "HeaderShutdown": "Leállítás", - "HeaderSignUp": "Sign Up", "HeaderSortBy": "Megjelenítés", "HeaderSortOrder": "Sorrend", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "Speciális lehetőségek", "HeaderSpecials": "Speciális", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Állapot", "HeaderStudios": "Stúdiók", "HeaderSubtitleDownloads": "Felirat letöltések", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", "HeaderSubtitleSettings": "Felirat Beállítások", "HeaderSubtitles": "Feliratok", "HeaderSupportTheTeam": "Támogasd az Jellyfin csapatot", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", "HeaderSystemDlnaProfiles": "Rendszer profilok", - "HeaderTV": "TV", "HeaderTags": "Címkék", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Jellyfin felhasználási feltételek", "HeaderThemeSongs": "Főcím dalok", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Az eléréshez kérlek add meg a PIN kódod", "HeaderTopPlugins": "Legjobb bővítmények", "HeaderTrack": "Sáv", "HeaderTracks": "Sávok", "HeaderTrailers": "Előzetesek", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", "HeaderType": "Típus", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", "HeaderUnknownDate": "Ismeretlen dátum", "HeaderUnknownYear": "Ismeretlen év", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", "HeaderUploadImage": "Kép feltöltés", "HeaderUploadNewImage": "Új kép feltöltése", "HeaderUser": "Felhasználó", "HeaderUserPrimaryImage": "Felhasználó Kép", "HeaderUsers": "Felhasználók", "HeaderVideo": "Videó", - "HeaderVideoTypes": "Video Types", "HeaderVideos": "Videók", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Év:", "HeaderYears": "Év", "HeadersFolders": "Könyvtárak", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", "HowWouldYouLikeToAddUser": "Hogyan szeretnél hozzáadni felhasználót?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 méretarány ajánlott. Csak JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "Adj hozzá egy felhasználót e-mailen keresztül történt meghívással.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", "LabelAlbumArtists": "Album előadók:", "LabelAll": "Összes", "LabelAllLanguages": "Összes nyelv", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Automatikus újraindítás engedélyezése a szervernek a frissítések telepítéséhez", "LabelAllowServerAutoRestartHelp": "A szerver csak akkor indul újra ha nincs felhasználói tevékenység", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Előadók:", - "LabelArtistsHelp": "Separate multiple using ;", "LabelAudioCodec": "Audió: {0}", "LabelAudioLanguagePreference": "Audió nyelvének beállítása:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", "LabelBitrateMbps": "Bitráta (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Gyorsítótár útvonal:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCameraUploadPath": "Kamera feltöltési útvonal:", "LabelCameraUploadPathHelp": "Válassz egy egyéni feltöltési útvonalat. Ez felülbírálja a Kamera feltöltése részben beállított alapértelmezett beállításokat. Ha üresen hagyod, az alapértelmezett mappát fogja használni. Ha egyéni elérési utat használsz, akkor hozzá kell adni mint könyvtár a Médiatár beállítási területén.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "LabelCollection": "Gyűjtemény", "LabelCommunityRating": "Közösségi értékelés:", - "LabelCompleted": "Completed", "LabelComponentsUpdated": "A következő komponensek telepítve, vagy frissítve lettek.", "LabelConfigureSettings": "Beállítások szerkesztése", "LabelConnectGuestUserName": "Jellyfin Connect e-mail cím vagy felhasználónév:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tartalom típusa:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Ország:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Jelenlegi jelszó:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", "LabelCustomDeviceDisplayName": "Megjelenítendő név:", "LabelCustomDeviceDisplayNameHelp": "Adj meg egy egyedi nevet, vagy hagyd üresen a készülék által elküldött név használatához.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelDateOfBirth": "Születési dátum:", "LabelDay": "Nap:", - "LabelDeathDate": "Death date:", "LabelDefaultForcedStream": "(Alapértelmezett/Égetett)", "LabelDefaultStream": "(Alapértelmezett)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Hiányzó évad epizódok megjelenítése", "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Ezt engedélyezni kell az Jellyfin Szerver beállításban lévő TV könyvtárak esetében is.", "LabelDisplayName": "Megjelenítendő név:", "LabelDisplayPluginsFor": "Bővítmények megjelenítése:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", "LabelDownloadLanguages": "Nyelvek letöltése", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Pin kód:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Automatikus port mapping engedélyezése", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", "LabelEnableDebugLogging": "Hibakeresési naplózás engedélyezése", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEnableHardwareDecodingFor": "Hardveres dekódolás engedélyezése a következőkhöz:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "Valós idejű figyelés engedélyezése", "LabelEnableRealtimeMonitorHelp": "A módosítások azonnal feldolgozásra kerülnek a támogatott fájlrendszereken.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", "LabelEndingEpisodeNumber": "Befejező epizód száma:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", "LabelEpisodeNumber": "Epizód száma:", "LabelEvent": "Esemény:", "LabelEveryXMinutes": "Minden:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Külső lejátszók:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Befejez", - "LabelFolder": "Folder:", "LabelFolderType": "Könyvtár típusa:", "LabelForcedStream": "(Égetett)", "LabelForgotPasswordUsernameHelp": "Add meg a felhasználóneved, ha emlékszel rá.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "Könnyen megjegyezhető szerver név:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", "LabelFromHelp": "Például: {0} (a szerveren)", "LabelGroupMoviesIntoCollections": "Filmek csoportosítása gyűjteményekbe", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", "LabelH264EncodingPreset": "H264 kódolási beállítások:", "LabelHardwareAccelerationType": "Hardveres gyorsítás:", "LabelHardwareAccelerationTypeHelp": "Csak támogatott rendszereken érhető el.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Kép típusa", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelIpAddressValue": "IP cím: {0}", "LabelJpgPngOnly": "Csak JPG/PNG", - "LabelKidsCategories": "Children's categories:", "LabelKodiMetadataDateFormat": "Megjelenési dátum formátuma:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Nyelv:", "LabelLastResult": "Utolsó eredmény:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", "LabelLocalAccessUrl": "Helyi (LAN) hozzáférés: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLogs": "Naplók:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", "LabelMaxBitrate": "Max bitráta:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", "LabelMessageText": "Üzenet szövege:", "LabelMessageTitle": "Üzenet címe:", "LabelMetadata": "Metaadat:", "LabelMetadataDownloadLanguage": "Elsődleges metaadat nyelv:", "LabelMetadataDownloaders": "Metaadat gyűjtők:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Metaadat útvonal:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", "LabelMetadataReaders": "Metaadat olvasók:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", "LabelMetadataSavers": "Metaadat mentés:", "LabelMetadataSaversHelp": "A metaadat letöltésének formátuma.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", "LabelMissing": "Hiányzó", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "Név:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Új jelszó:", "LabelNewPasswordConfirm": "Új jelszó megerősítése:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Következő", "LabelNoUnreadNotifications": "Nincsenek olvasatlan értesítések.", "LabelNotificationEnabled": "Értesítés engedélyezése", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", "LabelOpenSubtitlesPassword": "Open Subtitles jelszó:", "LabelOpenSubtitlesUsername": "Open Subtitles felhasználónév:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "LabelOptionalNetworkPath": "(Opcionális) Megosztott hálózati mappa:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Jelszó:", - "LabelPasswordConfirm": "Password (confirm):", "LabelPasswordRecoveryPinCode": "Pin kód:", "LabelPath": "Útvonal:", "LabelPinCode": "Pin kód:", "LabelPlayDefaultAudioTrack": "Az alapértelmezett hangsáv lejátszása a nyelvtől függetlenül", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Elsődleges megjelenítendő nyelv:", "LabelPreferredDisplayLanguageHelp": "Az Jellyfin fordítása egy folyamatban lévő project.", "LabelPrevious": "Előző", "LabelProfile": "Profil:", "LabelProfileAudioCodecs": "Audió kódekek:", "LabelProfileCodecs": "Kódek:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainer": "Tároló:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileVideoCodecs": "Videó kódekek:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", "LabelQuality": "Minőség:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", "LabelReleaseDate": "Megjelenés dátuma:", "LabelRemoteAccessUrl": "Távoli (WAN) hozzáférés: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "Jelentés:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "A következő {0} http porton futtatva.", "LabelRunningOnPorts": "A következő http: {0}, és https: {1} porton futtatva.", "LabelRunningTimeValue": "Futási idő: {0}", "LabelRuntimeMinutes": "Játékidő (perc):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", "LabelSeasonNumber": "Évad száma:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Felhasználó kiválasztása:", "LabelSelectVersionToInstall": "Válaszd ki a verziót a telepítéshez:", "LabelSendNotificationToUsers": "Értesítés küldése a következőknek:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", "LabelServerHostHelp": "192.168.1.100 vagy https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Státusz:", - "LabelStopWhenPossible": "Stop when possible:", "LabelStopping": "Megállítás", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Például: srt", "LabelSubtitleLanguagePreference": "Felirat nyelvének beállítása:", "LabelSubtitlePlaybackMode": "Felirat mód:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Ideiglenes fájlok útvonala:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", "LabelTheme": "Kinézet:", "LabelTime": "Idő:", "LabelTimeLimitHours": "Időlimit (óra):", "LabelTranscodingAudioCodec": "Audió kódek:", "LabelTranscodingContainer": "Tároló:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", "LabelTranscodingVideoCodec": "Videó kódek:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", "LabelTunerType": "Tuner típusa:", - "LabelType": "Type:", "LabelTypeMetadataDownloaders": "{0} metaadat letöltő:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Nem vetített évad epizódok megjelenítése", "LabelUnknownLanguage": "Ismeretlen nyelv", "LabelUploadSpeedLimit": "Feltöltési korlát (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Az alábbi szolgáltatások használata:", "LabelUser": "Felhasználó:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Felhasználónév:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", "LabelVersionInstalled": "{0} telepítve", "LabelVersionNumber": "Verzió {0}", - "LabelVersionUpToDate": "Up to date!", "LabelVideoCodec": "Videó: {0}", "LabelVideoType": "Videó típus:", "LabelView": "Nézet:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Keresztneved:", "LabelYoureDone": "Készen vagy!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Legújabb {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", "ManageLibrary": "Könyvtár kezelése", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", "MediaInfoBitrate": "Bitráta", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Csatornák", "MediaInfoCodec": "Kódek", - "MediaInfoCodecTag": "Codec tag", "MediaInfoContainer": "Tároló", "MediaInfoDefault": "Alapértelmezett", - "MediaInfoExposureTime": "Exposure time", "MediaInfoExternal": "Külső", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", "MediaInfoForced": "Égetett", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Filmkocka", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Nyelv", - "MediaInfoLatitude": "Latitude", "MediaInfoLayout": "Formátum", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "Útvonal", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "Profil", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Felbontás", "MediaInfoSampleRate": "Mintavételi ráta", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Audió", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", "MediaInfoStreamTypeSubtitle": "Felirat", "MediaInfoStreamTypeVideo": "Videó", - "MediaInfoTimestamp": "Timestamp", "MessageAlreadyInstalled": "Ez a verzió már telepítve van.", "MessageApplicationUpdated": "Jellyfin Szerver frissítve", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmRestart": "Biztosan újra szeretnéd indítani az Jellyfin Szervert?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", "MessageConfirmShutdown": "Biztosan le akarod állítani az Jellyfin Szervert?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "Annak érdekében, hogy meghívd vendégeid, először kapcsold össze az Jellyfin fiókod ezzel a szerverrel.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", "MessageFileNotFound": "Fájl nem található.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", "MessageItemsAdded": "Elem hozzáadva", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", "MessageNamedServerConfigurationUpdatedWithValue": "Szerver konfigurációs rész {0} frissítve", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", "MessageNoPluginsInstalled": "Nincs bővítmény telepítve.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Nincs szolgáltatás telepítve", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Nincs itt semmi.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Kérlek ellenőrizd hogy az Internetes metaadat letöltés engedélyezve van.", "MessagePleaseRestart": "Indítsd újra a frissítés befejezéséhez.", "MessagePleaseRestartServerToFinishUpdating": "Indítsd újra szervert a frissítések érvényesítéséhez.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", "MessageServerConfigurationUpdated": "Szerver beállítások frissítve", "MessageSettingsSaved": "Beállítások mentve.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", "MessageTrialExpired": "Ennek a funkciónak a próbaidőszaka lejárt", "MessageTrialWillExpireIn": "A funkció próbaidőszaka {0} nap múlva lejár", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", "Metadata": "Metaadat", "MetadataManager": "Metaadat Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", "MissingBackdropImage": "Hiányzó háttér kép.", "MissingEpisode": "Hiányzó epizód.", "MissingLogoImage": "Hiányzó logo.", "MissingPrimaryImage": "Hiányzó elsődleges kép.", "MoreFromValue": "Még több {0}", "MoreUsersCanBeAddedLater": "Több felhasználót a vezérlőpultban adhatsz hozzá.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Némít", - "Never": "Never", "NewVersionOfSomethingAvailable": "Egy újabb {0} verzió érhető el!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Nincs bővítmény telepítve.", "NoResultsFound": "Nincs találat.", "Notifications": "Értesítések", "NumLocationsValue": "{0} könyvtár", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Színészek", "OptionAdminUsers": "Adminisztrátorok", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", "OptionAll": "Összes", "OptionAllUsers": "Összes felhasználó", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "Élő TV hozzáférés engedélyezése", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "Közösségi médiamegosztás engedélyezése", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", "OptionAllowMediaPlayback": "Média lejátszás engedélyezése", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Egyéb felhasználók távoli irányításának engedélyezése", "OptionAllowRemoteSharedDevices": "Megosztott eszközök távirányításának engedélyezése", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Szerver kezelés engedélyezése a felhasználónak", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Bármilyen", - "OptionArt": "Art", - "OptionArtist": "Artist", "OptionAscending": "Növekvő", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Háttér", "OptionBackdropSlideshow": "Háttér diavetítés", "OptionBackdrops": "Hátterek", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", "OptionBirthLocation": "Születési hely", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", "OptionBlockMovies": "Filmek", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", "OptionBlockTrailers": "Előzetesek", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Gyűjtemények", "OptionCommunityRating": "Közösségi értékelés", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Kritikusok értékelése", - "OptionCustomUsers": "Custom", "OptionDaily": "Napi", "OptionDateAdded": "Hozzáadva", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Lejátszási dátum", "OptionDefaultSort": "Alapértelmezett", "OptionDescending": "Csökkenő", - "OptionDev": "Dev", "OptionDirector": "Rendező", "OptionDirectors": "Rendezők", "OptionDisableUser": "Felhasználó letiltása", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", "OptionDislikes": "Nemtetszések", "OptionDisplayAdultContent": "Felnőtt tartalom megjelenítése", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Vissza", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Doboz", "OptionDownloadDiscImage": "Lemez", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "Logó", "OptionDownloadMenuImage": "Menü", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Hozzáférés engedélyezése minden eszközről", "OptionEnableAccessToAllChannels": "Hozzáférés engedélyezése minden csatornához", "OptionEnableAccessToAllLibraries": "Hozzáférés engedélyezése minden könyvtárhoz", "OptionEnableAutomaticServerUpdates": "Automatikus szerver frissítés engedélyezése ", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", "OptionEnableExternalVideoPlayers": "Külső videó lejátszók engedélyezése", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", "OptionEpisodes": "Epizódok", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", "OptionExternallyDownloaded": "Külső letöltés", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Kedvencek", "OptionFolderSort": "Könyvtárak", "OptionFriday": "Péntek", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", "OptionGenres": "Műfajok", "OptionGuestStars": "Meghívott sztárok", "OptionHasSpecialFeatures": "Speciális lehetőségek", @@ -1329,217 +543,81 @@ "OptionHasThemeVideo": "Filmzene", "OptionHasTrailer": "Előzetes", "OptionHideUser": "Felhasználó elrejtése a bejelentkezési képernyőn", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "OptionHomeVideos": "Házi videók és fényképek", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", "OptionImages": "Képek", "OptionImdbRating": "IMDb értékelés", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", "OptionLatestMedia": "Legújabb média", - "OptionLatestTvRecordings": "Latest recordings", "OptionLibraryFolders": "Média könyvtárak", "OptionLikes": "Kedveltek", "OptionList": "Lista", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Hiányzó Epizódok", "OptionMissingImdbId": "Hiányzó IMDb azonosító", "OptionMissingOverview": "Hiányzó tartalom", "OptionMissingParentalRating": "Hiányzó korhatár besorolás", "OptionMissingTmdbId": "Hiányzó Tmdb azonosító", "OptionMissingTvdbId": "Hiányzó TheTVDB azonosító", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Hétfő", - "OptionMondayShort": "Mon", "OptionMovies": "Filmek", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", "OptionMusicVideos": "Zenei videók", "OptionName": "Név", "OptionNameSort": "Név", "OptionNo": "Nem", "OptionNoTrailer": "Nincs Előzetes", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "Egyéb Videók", - "OptionOthers": "Others", "OptionOverview": "Tartalom", "OptionParentalRating": "Korhatár besorolás", "OptionPeople": "Személyek", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Lejátszások száma", "OptionPlayed": "Megnézett", "OptionPoster": "Poszter", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", "OptionPriority": "Prioritás", - "OptionProducer": "Producer", "OptionProducers": "Producerek", "OptionProfileAudio": "Audió", - "OptionProfilePhoto": "Photo", "OptionProfileVideo": "Videó", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", "OptionReleaseDate": "Megjelenés dátuma", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Folytatható", "OptionResumablemedia": "Folytatás", "OptionRuntime": "Játékidő", "OptionSaturday": "Szombat", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", "OptionSongs": "Dalok", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Stúdiók", - "OptionSubstring": "Substring", "OptionSunday": "Vasárnap", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", "OptionTags": "Címkék", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", "OptionThursday": "Csütörtök", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", "OptionTrackName": "Sáv Címe", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Kedd", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", "OptionUnairedEpisode": "Nem vetített Epizódok", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Nemjátszott", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "Videó bitráta", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", "OptionWednesday": "Szerda", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "Heti", "OptionWriters": "Írók", "OptionYes": "Igen", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Jelszó", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", "PlayOnAnotherDevice": "Lejátszás másik eszközön", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "PleaseUpdateManually": "Kérlek állítsd le az Jellyfin szervert és telepítsd a legújabb verziót.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} telepítve", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} eltávolítva", "PluginUpdatedWithName": "{0} frissítve", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Mert tetszett a(z) {0}", "RecommendationBecauseYouWatched": "Ha már megnézted a(z) {0}", "RecommendationDirectedBy": "Rendezte: {0}", "RecommendationStarring": "Főszerepben: {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Regisztráció PayPal használatával", - "ReleaseYearValue": "Release year: {0}", "RememberMe": "Emlékezz rám", "Reporting": "Jelentés", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Ugrás vissza", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Könyvtár beolvasása", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", "SendMessage": "Üzenet küldés", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Beállítások", "SettingsSaved": "Beállítások mentve.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", "SubtitleDownloadInstructions": "A felirat letöltés kezeléséhez kattintson az Jellyfin Médiatár beállításban található könyvtárra, és módosítsa a felirat letöltési beállításait a Könyvtárak kezelése helyi menüben.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Feliratok", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "Névjegy", "TabAccess": "Hozzáférés", - "TabActivity": "Activity", "TabAdvanced": "Haladó", "TabAlbumArtists": "Album Előadók", "TabAlbums": "Albumok", - "TabAppSettings": "App Settings", "TabArtists": "Előadók", "TabBasic": "Alap", "TabBasics": "Alapok", @@ -1548,16 +626,13 @@ "TabCatalog": "Katalógus", "TabChannels": "Csatornák", "TabChapters": "Jelenetek", - "TabCinemaMode": "Cinema Mode", "TabCodecs": "Kódek", "TabCollectionTitles": "Címek", "TabCollections": "Gyűjtemények", "TabContainers": "Tároló", "TabControls": "Vezérlés", - "TabDLNA": "DLNA", "TabDashboard": "Vezérlőpult", "TabDevices": "Eszközök", - "TabDirectPlay": "Direct Play", "TabDisplay": "Megjelenítés", "TabEpisodes": "Epizódok", "TabExpert": "Szakértő", @@ -1580,7 +655,6 @@ "TabLatest": "Legújabb", "TabLibrary": "Médiatár", "TabLibraryAccess": "Médiatár Hozzáférés", - "TabLiveTV": "Live TV", "TabLogs": "Naplók", "TabMetadata": "Metaadat", "TabMovies": "Filmek", @@ -1607,8 +681,6 @@ "TabProfile": "Profil", "TabProfiles": "Profilok", "TabRecordings": "Felvételek", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", "TabScenes": "Jelenetek", "TabScheduledTasks": "Ütemezett feladatok", "TabSecurity": "Biztonság", @@ -1618,31 +690,22 @@ "TabSettings": "Beállítások", "TabShows": "Műsorok", "TabSongs": "Dalok", - "TabStreaming": "Streaming", "TabStudios": "Stúdiók", "TabSubtitles": "Feliratok", "TabSuggestions": "Javaslatok", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Előzetesek", "TabTranscoding": "Átkódolás", "TabUpcoming": "Hamarosan érkezik", "TabUsers": "Felhasználók", "TabView": "Nézet", "TellUsAboutYourself": "Mondj valamit magadról", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Élvezd a bónusz funkciókat", "Themes": "Kinézetek", "ThisWizardWillGuideYou": "Ez a varázsló végigvezet a telepítésen. A kezdéshez válasz nyelvet.", "TitleDevices": "Eszközök", "TitleHardwareAcceleration": "Hardveres gyorsítás", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "Élő TV", - "TitleNewUser": "New User", "TitleNotifications": "Értesítések", - "TitlePasswordReset": "Password Reset", "TitlePlayback": "Lejátszás", "TitlePlugins": "Bővítmények", "TitleRemoteControl": "Távirányítás", @@ -1650,55 +713,25 @@ "TitleServer": "Szerver", "TitleSignIn": "Bejelentkezés", "TitleSupport": "Támogatás", - "TitleSync": "Sync", "TitleUsers": "Felhasználók", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Biztosan el szeretnéd távolítani a következőt: {0} ?", "UninstallPluginHeader": "Bővítmény Eltávolítása", "Unmute": "Hangosít", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "Felhasználók", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", "ValueAsRole": "mint {0}", "ValueAudioCodec": "Audió Kódek: {0}", "ValueAwards": "Díjak: {0}", "ValueCodec": "Kódek: {0}", - "ValueConditions": "Conditions: {0}", "ValueContainer": "Tároló: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} epizód", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", "ValueLinks": "Linkek: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} zenei videó", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", "ValueOneTrailer": "1 előzetes", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", "ValueSeriesYearToPresent": "{0} - Napjainkig", "ValueSongCount": "{0} dal", - "ValueStatus": "Status: {0}", "ValueStudio": "Stúdió: {0}", "ValueStudios": "Stúdiók: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTrailerCount": "{0} előzetes", "ValueVideoCodec": "Videó kódek: {0}", "VersionNumber": "Verzió {0}", @@ -1714,15 +747,6 @@ "ViewTypeMusicFavoriteSongs": "Kedvenc Dalok", "ViewTypeMusicFavorites": "Kedvencek", "ViewTypeMusicSongs": "Dalok", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Üdv az Jellyfinben!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", "Yesterday": "Tegnap" } diff --git a/src/strings/id.json b/src/strings/id.json index e5cf1757eb..78374160bd 100644 --- a/src/strings/id.json +++ b/src/strings/id.json @@ -1,1728 +1,64 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Atur kode pin", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Konversi media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Keluar", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Kebijakan privasi", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Panduan cepat", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Singkron", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", "FolderTypeInherit": "Mewarisi", "FolderTypeMixed": "Kontent Campuran", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Tambah User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", "HeaderAvailableServices": "Layanan Tersedia", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Kode Pin Mudah", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Layanan terpasang", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "Atur pustaka media Anda", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", "HeaderSyncJobInfo": "Kerja Sinkron", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Persyaratan Layanan Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Untuk masuk, silahkan masukkan kode pin mudah.", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Untuk menambahkan pengguna yang belum terdaftar, Anda harus terlebih dahulu menghubungkan account mereka ke Jellyfin Connect dari halaman profil pengguna mereka.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Ubah pengaturan", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tipe konten:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Negara:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Unduh artwork dan metadata dari internet", "LabelDownloadInternetMetadataHelp": "Server Jellyfin dapat mengunduh informasi tentang media Anda untuk mengaktifkan presentasi yang lebih kaya.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Selesai", - "LabelFolder": "Folder:", "LabelFolderType": "Tipe folder:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Bahasa:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Berikutnya", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Kode Pin:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Sebelumnya", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Simpan artwork dan metadata ke dalam folder media", "LabelSaveLocalMetadataHelp": "Menyimpan artwork dan metadata langsung ke folder media akan meletakkan mereka di tempat yang mudah diedit.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Alamat file sementara:", "LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "Batas waktu (jam):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Nama depan anda:", "LabelYoureDone": "Kamu sudah selesai!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPluginsDueToAppStore": "Untuk mengatur semua plugin, silahkan gunakan aplikasi web Jellyfin.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Tidak ada layanan terpasang.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Tidak ada disini.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Pastikan unduh metadata dari internet diaktifkan.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Pengguna lainnya dapat ditambahkan di Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Aktifkan akses dari semua perangkat", "OptionEnableAccessToAllChannels": "Aktifkan akses ke semua channel", "OptionEnableAccessToAllLibraries": "Aktifkan akses ke semua pustaka", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registrasi menggunakan PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", "TabAccess": "Akses", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Judul", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Gambar", "TabImages": "Gambar", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", "TabLibraryAccess": "Akses Pustaka", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Daftar Putar", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profil", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Beritahu kami tentang anda", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Panduan ini akan memandu Anda melalui proses setup. Untuk memulai, silahkan pilih bahasa yang Anda gunakan.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "Jadwal Kerja", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin mendukung profil pengguna, memungkinkan setiap pengguna memiliki tampilan mereka sendiri, kondisi pemutaran dan pengawasan orang tua.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Selamat datang di Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Itu semua yang kami butuhkan saat ini. Jellyfin sudah memulai mengkoleksi informasi pustaka media. Lihatlah beberapa aplikasi kami, kemudian klik Selesai untuk menuju ke Dashboard Server", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/is-IS.json b/src/strings/is-IS.json index c66ed52fe4..d4d33f6439 100644 --- a/src/strings/is-IS.json +++ b/src/strings/is-IS.json @@ -1,1728 +1,59 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "Advanced": "Ítarlegt", - "Alerts": "Alerts", "All": "Allt", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "Vafra", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Hætta við", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Umbreyta margmiðlunarefni", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Hætta", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Nýtt", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "Í lagi", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Persónuverndarstefna", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Samþætting", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "Eyða margmiðlunarefni", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Bækur", "FolderTypeGames": "Leikir", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Kvikmyndir", "FolderTypeMusic": "Tónlist", "FolderTypeMusicVideos": "Tónlistarmyndbönd", "FolderTypePhotos": "Ljósmyndir", "FolderTypeTvShows": "Sjónvarpsþættir", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Bæta við notenda", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Allar upptökur", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Hljóð", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", "HeaderAvailableServices": "Þjónustur í boði", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Aðgangur tækja", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Auðvelt Pin númer", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Uppsettar þjónustur", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Slóðir", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "Spila allt", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "Samþætting", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", "HeaderTV": "Sjónvarp", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Skilmálar Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", "HeaderVideo": "Myndband", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Breyta stillingum", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tegund efnis:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Land:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Ljúka", - "LabelFolder": "Folder:", "LabelFolderType": "Möppu gerð:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Tungumál:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Næsta", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Pin númer:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Fyrra", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "Tímamörk (í klukkustundum)", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Fyrra nafn", - "LabelYoureDone": "You're Done!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Engar þjónustur uppsettar", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Þú getur bætt við fleiri notendum síðar undir stjórnborðinu.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", "NextUp": "Næst á dagskrá", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "Tilrauna", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Virkja aðgang frá öllum tækjum", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Skráning með PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Birta ítarlegar stillingar", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", "TabAccess": "Aðgangur", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Mynd", "TabImages": "Myndir", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Tilkynningar", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "Lykilorð", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Afspilunar listi", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", - "TellUsAboutYourself": "Tell us about yourself", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", - "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Velkomin/n í Jellyfin", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/it.json b/src/strings/it.json index c08bd13d38..44123a796a 100644 --- a/src/strings/it.json +++ b/src/strings/it.json @@ -5,22 +5,17 @@ "AddUserByManually": "Aggiungi un utente locale inserendo manualmente le informazioni dell'utente.", "AdditionalNotificationServices": "Sfoglia il catalogo plugin per installare i servizi di notifica aggiuntivi.", "Advanced": "Avanzato", - "Alerts": "Alerts", "All": "Tutti", "AllLibraries": "Tutte le librerie", "AllowDeletionFromAll": "Consenti l'eliminazione dei media da tutte le librerie", "AllowHWTranscodingHelp": "Se abilitato, abilita il sintonizzatore per codificare i flussi al volo. Ciò potrebbe contribuire a ridurre la transcodifica richiesta da Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", "AllowOnTheFlySubtitleExtraction": "Consenti l'estrazione sottotitoli al volo", "AllowOnTheFlySubtitleExtractionHelp": "I sottotitoli incorporati possono essere estratti dai video e consegnati ad applicazioni Jellyfin in testo semplice per evitare la transcodifica dei video. In alcuni sistemi questo può richiedere molto tempo e causare un rallentamento della riproduzione video durante il processo di estrazione. Disattivare questa opzione per avere i sottotitoli incorporati con la transcodifica video quando non sono supportati nativamente dal dispositivo client.", "AllowRemoteAccess": "Abilità connessioni remote a questo Server Jellyfin.", "AllowRemoteAccessHelp": "Se deselezionato, tutte le connessioni remote saranno bloccate.", "AllowedRemoteAddressesHelp": "Elenco separato da virgola di indirizzi IP o voci IP / maschera di rete per reti che potranno connettersi da remoto. Se lasciato vuoto, saranno consentiti tutti gli indirizzi remoti.", - "Audio": "Audio", "BirthDateValue": "Nato il: {0}", "BirthPlaceValue": "nato a: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Schivare e colpire (migliore qualità, ma più lento)", "BookLibraryHelp": "Libri testuali e audiolibri sono supportati. Rivedere {0} la guida ai nomi di Jellyfin Book {1}", "Browse": "Esplora", @@ -51,7 +46,6 @@ "ButtonDelete": "Elimina", "ButtonDeleteImage": "Elimina immagine", "ButtonDown": "Giu", - "ButtonDownload": "Download", "ButtonEdit": "Modifica", "ButtonEditImages": "Modifica Immagini", "ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.", @@ -62,15 +56,12 @@ "ButtonGuide": "Guida", "ButtonHelp": "Aiuto", "ButtonHide": "Nascondi", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "Invita un utente", "ButtonLearnMore": "saperne di più", "ButtonLibraryAccess": "Accesso biblioteca", "ButtonManageFolders": "Gestisci cartelle", "ButtonManageServer": "Gestisci Server", "ButtonManualLogin": "Accesso Manuale", - "ButtonMenu": "Menu", "ButtonMore": "Altro", "ButtonMoreInformation": "Maggiori informazioni", "ButtonMute": "Muto", @@ -80,17 +71,13 @@ "ButtonNext": "Prossimo", "ButtonNextPage": "Prossima pagina", "ButtonNextTrack": "Traccia Successiva", - "ButtonNo": "No", "ButtonNowPlaying": "In riproduzione ora", "ButtonOff": "Spento", - "ButtonOk": "Ok", "ButtonOpen": "Apri", "ButtonOther": "Altro", "ButtonParentalControl": "Controllo parentale", "ButtonPause": "Pausa", "ButtonPlay": "Riproduci", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", "ButtonPreferences": "Preferenze", "ButtonPrevious": "Precedente", "ButtonPreviousPage": "Pagina precedente", @@ -131,7 +118,6 @@ "ButtonSelectView": "Seleziona vista", "ButtonSend": "Invia", "ButtonSendInvitation": "Invia Invito", - "ButtonServer": "Server", "ButtonServerDashboard": "Pannello di Controllo del Server", "ButtonSettings": "Impostazioni", "ButtonShare": "Condividi", @@ -144,12 +130,10 @@ "ButtonSort": "Ordina", "ButtonSplitVersionsApart": "Separa Versioni", "ButtonStart": "Avvio", - "ButtonStop": "Stop", "ButtonStopRecording": "Ferma Registrazione", "ButtonSubmit": "Invia", "ButtonSubtitles": "Sottotitoli", "ButtonSync": "Sinc.", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Disinstalla", "ButtonUnmute": "Togli muto", "ButtonUp": "Su", @@ -163,19 +147,15 @@ "ButtonYes": "Si", "CancelSeries": "Annulla Serie", "CategoryApplication": "Applicazione", - "CategoryPlugin": "Plugin", "CategorySync": "Sinc.", "CategorySystem": "Sistema", "CategoryUser": "Utente", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Seleziona i canali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutti i canali usando il gestore dei metadati", - "Channels": "Channels", "CinemaModeConfigurationHelp": "Modalità Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilità di vedere trailer e intro personalizzati prima la caratteristica principale.", "CinemaModeConfigurationHelp2": "Le applicazioni Jellyfin avranno un'impostazione per attivare o disattivare la modalità cinema. Le applicazioni TV consentono la modalità cinema di default.", "CoverArt": "Copertine", "CustomDlnaProfilesHelp": "Crea un profilo personalizzato per un nuovo dispositivo o sovrascrivi quello di sistema", "DeathDateValue": "Morto: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Si è verificato un errore durante l'elaborazione della richiesta. Si prega di riprovare più tardi.", "DefaultMetadataLangaugeDescription": "Queste sono le tue impostazioni predefinite e possono essere personalizzate per ogni libreria.", "Delete": "Elimina", @@ -234,11 +214,9 @@ "FolderTypeMusic": "Musica", "FolderTypeMusicVideos": "Video musicali", "FolderTypePhotos": "Foto", - "FolderTypeTvShows": "TV Shows", "FolderTypeUnset": "Contenuto Misto", "ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi per vedere le opzioni disponibili.", "Fullscreen": "Schermo Intero", - "General": "General", "GuestUserNotFound": "Utente non trovato. Assicurati che il nome sia corretto e riprovare o provare ad inserire l'indirizzo email.", "GuideProviderLogin": "Accedi", "GuideProviderSelectListings": "selezionare Annunci", @@ -269,8 +247,6 @@ "HeaderApiKey": "Chiave Api", "HeaderApiKeys": "Chiavi Api", "HeaderApiKeysHelp": "Le Applicazioni esterne devono avere una chiave API per comunicare con il Server Jellyfin. Le chiavi sono emesse accedendo con un account Jellyfin, o fornendo manualmente una chiave all'applicazione.", - "HeaderApp": "App", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Impostazioni audio", "HeaderAudioTracks": "Tracce audio", "HeaderAutomaticUpdates": "Aggiornamenti Automatici", @@ -285,8 +261,6 @@ "HeaderCameraUpload": "Caricamenti Fotocamera", "HeaderCameraUploadHelp": "Le app di Jellyfin possono caricare automaticamente le foto scattate dai tuoi dispositivi mobile nel server Jellyfin.", "HeaderCancelSyncJob": "Cancella Sinc", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", "HeaderChangeFolderType": "Cambia il tipo di contenuto", "HeaderChangeFolderTypeHelp": "Per modificare il tipo, rimuovere e ricostruire la raccolta con il nuovo tipo.", "HeaderChannelAccess": "Accesso canali", @@ -360,7 +334,6 @@ "HeaderFeatureAccess": "Accesso alle funzionalità", "HeaderFeatures": "Caratteristiche", "HeaderFetchImages": "Identifica Immagini:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtri", "HeaderForKids": "Per Bambini", "HeaderForgotKey": "Chiave dimenticata", @@ -376,10 +349,7 @@ "HeaderHttpHeaders": "Intestazioni Http", "HeaderIdentification": "Identificazione", "HeaderIdentificationCriteriaHelp": "Inserire almeno un criterio di identificazione.", - "HeaderIdentificationHeader": "Identification Header", "HeaderImageBackdrop": "Sfondo", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Primaria", "HeaderImageSettings": "Impostazioni Immagini", "HeaderImages": "Immagini", @@ -394,7 +364,6 @@ "HeaderItems": "Elementi", "HeaderJellyfinAccountAdded": "Account Jellyfin aggiunto", "HeaderJellyfinAccountRemoved": "Account Jellyfin rimosso", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "Jellyfin include il supporto nativo per i file metadati Nfo. Per attivare o disattivare i metadati Nfo, utilizzare la scheda Metadati per configurare le opzioni per i tipi di supporto.", "HeaderLanguage": "Lingua", "HeaderLatestAlbums": "Ultimi Album", @@ -422,11 +391,9 @@ "HeaderLiveTvTunerSetup": "Configura Ricevitore TV", "HeaderLoginFailure": "Errore di accesso", "HeaderManagement": "Gestione", - "HeaderMedia": "Media", "HeaderMediaFolders": "Cartelle dei media", "HeaderMediaInfo": "Informazioni Media", "HeaderMediaLocations": "Posizioni Media", - "HeaderMenu": "Menu", "HeaderMissing": "Assente", "HeaderMoreLikeThis": "Simili a questo", "HeaderMovies": "Film", @@ -454,7 +421,6 @@ "HeaderOverview": "Panoramica", "HeaderParentalRating": "Valutazione parentale", "HeaderParentalRatings": "Valutazioni genitori", - "HeaderPassword": "Password", "HeaderPasswordReset": "Reset della Password", "HeaderPaths": "Percorsi", "HeaderPendingInstallations": "installazioni in coda", @@ -499,7 +465,6 @@ "HeaderRuntime": "Durata", "HeaderScenes": "Scene", "HeaderSchedule": "Programmazione", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Ricerca", "HeaderSeason": "Stagione", "HeaderSeasonNumber": "Stagione Numero", @@ -542,7 +507,6 @@ "HeaderSpecials": "Speciali", "HeaderSplitMedia": "Dividi Media", "HeaderStatus": "Stato", - "HeaderStudios": "Studios", "HeaderSubtitleDownloads": "Download sottotitoli", "HeaderSubtitleProfile": "Profilo sottotitolo", "HeaderSubtitleProfiles": "Profili sottotitoli", @@ -553,7 +517,6 @@ "HeaderSync": "Sinc.", "HeaderSyncJobInfo": "Processo Sinc.", "HeaderSystemDlnaProfiles": "Profili di sistema", - "HeaderTV": "TV", "HeaderTags": "Tag", "HeaderTaskTriggers": "Operazioni Pianificate", "HeaderTermsOfService": "Termini di servizio di Jellyfin", @@ -565,14 +528,12 @@ "HeaderTopPlugins": "Migliori Plugins", "HeaderTrack": "Traccia", "HeaderTracks": "Traccia", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Profilo Transcodifica", "HeaderTranscodingProfileHelp": "Aggiungere i profili di transcodifica per indicare quali formati utilizzare quando è richiesta la transcodifica.", "HeaderTunerDevices": "Dispositivi Tuner", "HeaderTuners": "Sinton. TV", "HeaderTvTuners": "Tuner TV", "HeaderType": "Tipo", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Inserisci il testo", "HeaderUnaired": "mai in onda", "HeaderUnknownDate": "Data Sconosciuta", @@ -586,7 +547,6 @@ "HeaderUser": "Utente", "HeaderUserPrimaryImage": "Immagine utente", "HeaderUsers": "Utenti", - "HeaderVideo": "Video", "HeaderVideoTypes": "Tipi Video", "HeaderVideos": "Video", "HeaderViewOrder": "Visualizza ordine", @@ -619,7 +579,6 @@ "LabelAirDays": "In onda da (gg):", "LabelAirTime": "In onda da:", "LabelAirTime:": "In onda da:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN utilizzato per le copertine degli album, all'interno dell'attributo dlna:profileID su upnp:albumArtURI. Alcuni dispositivi richiedono un valore specifico, indipendentemente dalla dimensione dell'immagine.", "LabelAlbumArtMaxHeight": "Altezza massima copertina Album:", "LabelAlbumArtMaxHeightHelp": "Risoluzione massima copertina Album inviata tramite upnp:albumArtURI", @@ -641,17 +600,14 @@ "LabelArtist": "Artista", "LabelArtists": "Artisti:", "LabelArtistsHelp": "Separa valori multipli usando ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Lingua audio preferita:", "LabelAutomaticallyRefreshInternetMetadataEvery": "Aggiorna automaticamente i metadati da Internet:", "LabelAvailableTokens": "Gettoni disponibili:", "LabelBindToLocalNetworkAddress": "Assegna ad indirizzo di rete locale:", "LabelBindToLocalNetworkAddressHelp": "Opzionale. Sovrascrivere l'indirizzo IP locale per associare il server http a. Se lasciato vuoto, il server verrà associato a tutti gli indirizzi disponibili. Modificare questo valore richiede di riavviare Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "Intervallo messaggi di presenza (secondi)", "LabelBlastMessageIntervalHelp": "Determina la durata in secondi tra i messaggi di presenza del server.", "LabelBlockContentWithTags": "Blocco degli elementi con le etichette:", - "LabelCache": "Cache:", "LabelCachePath": "Percorso cache:", "LabelCachePathHelp": "Specificare un percorso personalizzato per i file della cache del server, ad esempio immagini. Lasciare vuoto per usare il server predefinito.", "LabelCameraUploadPath": "Fotocamera percorso di upload:", @@ -717,7 +673,6 @@ "LabelDownloadInternetMetadataHelp": "Il Server Jellyfin può scaricare informazioni sui tuoi file multimediali per creare presentazioni più complete.", "LabelDownloadLanguages": "Scarica lingue:", "LabelDropImageHere": "Rilasciare l'immagine qui.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Codice Pin", "LabelEmail": "E-mail:", "LabelEmailAddress": "Indirizzo email", @@ -825,7 +780,6 @@ "LabelManufacturer": "Produttore", "LabelManufacturerUrl": "Url Produttore", "LabelMarkAs": "Segna come:", - "LabelMatchType": "Match type:", "LabelMaxAudioFileBitrate": "Massimo bitrate per file audio:", "LabelMaxAudioFileBitrateHelp": "I file audio con un valore più alto di bitrate saranno convertiti dal Server Jellyfin. Seleziona un valore più alto per una qualità migliore, oppure, un valore più basso per risparmiare spazio di archiviazione.", "LabelMaxBackdropsPerItem": "Massimo numero di sfondi per oggetto:", @@ -841,13 +795,11 @@ "LabelMessageTitle": "Titolo messaggio:", "LabelMetadata": "Metadati:", "LabelMetadataDownloadLanguage": "Lingua preferita per i metadati:", - "LabelMetadataDownloaders": "Metadata downloaders:", "LabelMetadataDownloadersHelp": "Abilitare e classificare i tuoi downloader metadati preferite in ordine di priorità. Downloader di priorità inferiori saranno utilizzati solo per riempire le informazioni mancanti.", "LabelMetadataPath": "Percorso per i metadati:", "LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati.", "LabelMetadataReaders": "Lettori Metadati:", "LabelMetadataReadersHelp": "Classificare le origini metadati locali preferite in ordine di priorità. Il primo file trovato verrà letto.", - "LabelMetadataSavers": "Metadata savers:", "LabelMetadataSaversHelp": "Scegliere i formati di file per salvare i metadati", "LabelMethod": "Metodo:", "LabelMinBackdropDownloadWidth": "Massima larghezza sfondo:", @@ -892,7 +844,6 @@ "LabelOptionalM3uUrlHelp": "Alcuni dispositivi supportano le liste canali M3U.", "LabelOptionalNetworkPath": "Cartella condivisa (Opzionale):", "LabelOptionalNetworkPathHelp": "Se questa cartella è condivisa sulla rete, fornendo il percorso di condivisione di rete si può consentire alle applicazioni Jellyfin su altri dispositivi di accedere direttamente ai file multimediali.", - "LabelPassword": "Password:", "LabelPasswordConfirm": "Conferma la password:", "LabelPasswordRecoveryPinCode": "Codice Pin:", "LabelPath": "Percorso:", @@ -929,7 +880,6 @@ "LabelRemoteAccessUrl": "Accesso remoto (WAN): {0}", "LabelRemoteClientBitrateLimit": "Bitrate limite per lo streaming via internet (Mbps):", "LabelRemoteClientBitrateLimitHelp": "Un limite bitrate per-stream opzionale per tutti i dispositivi di rete. Ciò è utile per impedire ai dispositivi di richiedere un bitrate superiore a quello in grado di gestire la connessione a Internet. Questo può provocare un aumento del carico della CPU sul server per transcodificare i video in volo ad un bitrate inferiore.", - "LabelReport": "Report:", "LabelResumePoint": "Punto di ripristino:", "LabelRunningOnPort": "In esecuzione sulla porta HTTP {0}.", "LabelRunningOnPorts": "In esecuzione sulla porta HTTP {0}, e porta HTTPS {1}", @@ -949,8 +899,6 @@ "LabelSerialNumber": "Numero di serie", "LabelSeries": "Serie:", "LabelSeriesRecordingPath": "Percorso di registrazione serie TV (opzionale):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", "LabelServerPort": "Porta:", "LabelSimultaneousConnectionLimit": "Limite stream simultanei:", "LabelSkipIfAudioTrackPresent": "Ignora se la traccia audio di default corrisponde alla lingua di download", @@ -958,7 +906,6 @@ "LabelSkipIfGraphicalSubsPresent": "Ignora se il video integra già dei sottotitoli", "LabelSkipIfGraphicalSubsPresentHelp": "Mantenere le versioni testuali dei sottotitoli si tradurrà in una riproduzione più efficiente e diminuirà la probabilità che sia necessaria la transcodifica video", "LabelSkipped": "Saltato", - "LabelSonyAggregationFlags": "Sony aggregation flags:", "LabelSonyAggregationFlagsHelp": "Determina il contenuto dell'elemento aggregationFlags in urn:schemas-sonycom: namespace av.", "LabelSource": "Origine:", "LabelSpecialSeasonsDisplayName": "Nome della stagione speciale:", @@ -975,7 +922,6 @@ "LabelSyncPath": "Sincronizzato percorso del contenuto:", "LabelSyncTempPath": "Percorso file temporanei:", "LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I media creati durante la sincronizzazione verranno memorizzati qui.", - "LabelTag": "Tag:", "LabelTheme": "Tema:", "LabelTime": "Ora:", "LabelTimeLimitHours": "Tempo limite (ore):", @@ -992,12 +938,10 @@ "LabelTunerIpAddress": "Tuner Indirizzo IP:", "LabelTunerType": "Tipo sintonizzatore:", "LabelType": "Tipo:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Testo", "LabelUnairedMissingEpisodesWithinSeasons": "Visualizza episodi mai andati in onda nelle stagioni", "LabelUnknownLanguage": "Lingua Sconosciuta", "LabelUploadSpeedLimit": "Velocità limite di upload (Mbps)", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Utilizzare i seguenti servizi:", "LabelUser": "Utente:", "LabelUserAgent": "Agente utente:", @@ -1011,12 +955,9 @@ "LabelVersionInstalled": "{0} installato", "LabelVersionNumber": "Versione {0}", "LabelVersionUpToDate": "Aggiornato!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tipo di video:", "LabelView": "Vista:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Determina il contenuto dell'elemento X_DLNACAP in urn:schemas-dlna-org:device-1-0", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Determina il contenuto dell'elemento X_DLNACAP nella urn: schemas-DLNA-org: dispositivo 1-0 namespace.", "LabelYourFirstName": "Il tuo nome:", "LabelYoureDone": "Hai Finito!", @@ -1031,11 +972,9 @@ "LibraryAccessHelp": "Seleziona le cartelle multimediali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutte le cartelle utilizzando il gestore dei metadati.", "LinkApi": "API", "LinkCommunity": "Comunità", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Informazioni su Jellyfin Premiere", "LiveTvUpdateAvailable": "(Aggiornamento disponibile)", "LoginDisclaimer": "Jellyfin è progettato per aiutarti a gestire i tuoi contenuti personali quali foto e video. Per favore prendi visione delle condizioni d'uso. L'utilizzo di qualunque software Jellyfin costituisce accettazione delle stesse.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "Gestisci scaricamenti offline", "MapChannels": "Mappa Canali", "MarkFFmpegExec": "Se stai utilizzando Linux o OSX, è necessario individuare i file ffmpeg e ffprobe e contrassegnarli come eseguibili. Ciò è necessario per consentire a Jellyfin di eseguirli.", @@ -1045,21 +984,16 @@ "MediaInfoAperture": "Apertura", "MediaInfoAspectRatio": "Formato", "MediaInfoBitDepth": "Profondità Bit", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", "MediaInfoCameraModel": "Camera modello", "MediaInfoChannels": "Canali", - "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Tag codec", "MediaInfoContainer": "Contenitore", "MediaInfoDefault": "Predefinito", "MediaInfoExposureTime": "Tempo Esposizione", "MediaInfoExternal": "Esterno", - "MediaInfoFile": "File", "MediaInfoFocalLength": "Lunghezza focale", "MediaInfoForced": "Forzato", "MediaInfoFormat": "Formato", - "MediaInfoFramerate": "Framerate", "MediaInfoInterlaced": "Interlacciato", "MediaInfoIsoSpeedRating": "Sensibilità ISO", "MediaInfoLanguage": "Lingua", @@ -1076,13 +1010,9 @@ "MediaInfoSampleRate": "frequenza di campion.", "MediaInfoShutterSpeed": "velocità otturatore", "MediaInfoSize": "Dimensione", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", "MediaInfoStreamTypeData": "Dati", "MediaInfoStreamTypeEmbeddedImage": "Immagine incorporata", "MediaInfoStreamTypeSubtitle": "Sottotitolo", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", "MessageAlreadyInstalled": "Questa versione è già installata.", "MessageApplicationUpdated": "Il Server Jellyfin è stato aggiornato", "MessageAreYouSureYouWishToRemoveMediaFolder": "Sei sicuro di voler rimuovere questa posizione?", @@ -1164,7 +1094,6 @@ "MessageUnableToConnectToServer": "Non siamo in grado di connettersi al server selezionato al momento. Per favore assicurati che sia in esecuzione e riprova.", "MessageUnsetContentHelp": "Il contenuto verrà visualizzato come pianura cartelle. Per ottenere i migliori risultati utilizzare il gestore di metadati per impostare i tipi di contenuto di sottocartelle.", "MessageYouHaveVersionInstalled": "Attualmente hai la versione {0} installato.", - "Metadata": "Metadata", "MetadataManager": "Gestisci Metadati", "MetadataSettingChangeHelp": "Modificare le impostazioni dei metadati influenzerà il nuovo contenuto aggiunto in avanti. Per aggiornare i contenuti esistenti, aprire la schermata dei dettagli e fare click sul pulsante di aggiornamento oppure eseguire aggiornamenti di massa utilizzando il gestore di metadati.", "MinutesAfter": "minuti dopo", @@ -1180,24 +1109,17 @@ "Never": "Mai", "NewVersionOfSomethingAvailable": "Una nuova versione di {0} è disponibile!", "News": "Notizie", - "NextUp": "Next Up", "NoNewDevicesFound": "Non sono stati trovati nuovi dispositivi. Per aggiungere un nuovo sintonizzatore, chiudere questa finestra di dialogo e immettere manualmente le informazioni sul dispositivo.", "NoNextUpItemsMessage": "Trovato niente. Inizia a guardare i tuoi programmi!", "NoPluginConfigurationMessage": "Questo Plugin non ha impostazioni da configurare.", "NoPluginsInstalledMessage": "Non ci sono Plugins installati.", "NoResultsFound": "Nessun risultato.", - "Notifications": "Notifications", "NumLocationsValue": "{0} cartelle", "OpenSubtitleInstructions": "È necessario configurare le informazioni sull'account di Open Subtitles nella schermata di configurazione nella dashboard di Jellyfin Server.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Attore", "OptionActors": "Attori", "OptionAdminUsers": "Amministratori", "OptionAfterSystemEvent": "Dopo un evento di sistema", - "OptionAlbum": "Album", "OptionAlbumArtist": "Artista Album", "OptionAll": "Tutto", "OptionAllUsers": "Tutti gli utenti", @@ -1218,19 +1140,15 @@ "OptionAllowVideoPlaybackRemuxing": "Consenti la riproduzione di video che necessitano di conversione ma non di ricodifica", "OptionAllowVideoPlaybackTranscoding": "Abilita la riproduzione di video che necessita di transcodifica", "OptionAnyNumberOfPlayers": "Qualsiasi:", - "OptionArt": "Art", "OptionArtist": "Artista", "OptionAscending": "Crescente", "OptionAuto": "Automatico", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Fondi automaticamente le serie sparse su più cartelle", "OptionAutomaticallyGroupSeriesHelp": "Se abilitato, le serie distribuite in più cartelle di questa libreria saranno automaticamente combinate in un'unica serie.", "OptionBackdrop": "Sfondo", "OptionBackdropSlideshow": "Scenografia presentazione", "OptionBackdrops": "Sfondi", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Migliore disponibile", - "OptionBeta": "Beta", "OptionBirthLocation": "Nascita Posizione", "OptionBlockBooks": "Libri", "OptionBlockChannelContent": "Contenuto di Canali Internet", @@ -1242,11 +1160,8 @@ "OptionBlockOthers": "Altri", "OptionBlockTrailers": "Trailer", "OptionBlockTvShows": "Serie TV", - "OptionBluray": "Bluray", "OptionBooks": "Libri", - "OptionBox": "Box", "OptionBoxRear": "Retro Box", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Collezioni", "OptionCommunityRating": "Voto del pubblico", "OptionComposer": "Compositore", @@ -1265,7 +1180,6 @@ "OptionDatePlayed": "Visto il", "OptionDefaultSort": "Predefinito", "OptionDescending": "Decrescente", - "OptionDev": "Dev", "OptionDirector": "Regista", "OptionDirectors": "Registi", "OptionDisableUser": "Disabilita questo utente", @@ -1277,18 +1191,13 @@ "OptionDisplayChannelsInlineHelp": "Se abilitata, i canali verranno visualizzati direttamente accanto alle altre librerie di media. Se disattivato, saranno esposti all'interno di una cartella Canali separata.", "OptionDisplayFolderView": "Visualizza cartelle come normali cartelle dei media", "OptionDisplayFolderViewHelp": "Se abilitato, le applicazioni Jellyfin visualizzeranno una categoria Cartelle accanto alla libreria multimediale. Ciò è utile se si desidera avere viste di cartelle semplici.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Indietro", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Disco", "OptionDownloadImagesInAdvance": "Scarica preventivamente le immagini", "OptionDownloadImagesInAdvanceHelp": "Di default, la maggior parte delle immagini vengono scaricate solo quando richieste da un'applicazione Jellyfin. Abilita questa opzione per scaricare tutte le immagini in anticipo, quando nuovi file multimediali vengono importati. Ciò può causare scansioni librarie molto più lunghe.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menù", "OptionDownloadPrimaryImage": "Locandina", "OptionDownloadThumbImage": "Foto", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Incorpora all'interno del contenitore", "OptionEnableAccessFromAllDevices": "Abilita l'accesso da tutti i dispositivi", "OptionEnableAccessToAllChannels": "Abilita l'accesso a tutti i canali", @@ -1327,7 +1236,6 @@ "OptionHasSubtitles": "Sottotitoli", "OptionHasThemeSong": "Sigla", "OptionHasThemeVideo": "Video Sigla", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Nascondi questo utente dalla schermata di accesso", "OptionHideUserFromLoginHelp": "Utile per account nascosti o amministratore. L'utente avrà bisogno di accedere manualmente utilizzando la propria username e password", "OptionHlsSegmentedSubtitles": "Hls segmentato sottotitoli", @@ -1338,9 +1246,6 @@ "OptionImages": "Immagini", "OptionImdbRating": "Voto IMDB", "OptionInProgress": "In Corso", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Parole", "OptionLatestChannelMedia": "Ultime voci del canale", "OptionLatestMedia": "Ultimi media", @@ -1349,9 +1254,6 @@ "OptionLikes": "Mi piace", "OptionList": "Lista", "OptionLocked": "Bloccato", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Episodi mancanti", "OptionMissingImdbId": "Id IMDB mancante", "OptionMissingOverview": "Trama mancante", @@ -1367,11 +1269,8 @@ "OptionMusicVideos": "Video", "OptionName": "Nome", "OptionNameSort": "Nome", - "OptionNo": "No", "OptionNoTrailer": "Nessun Trailer", "OptionNone": "Nessuno", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "All'avvio", "OptionOnInterval": "Su intervallo", "OptionOtherApps": "Altre app", @@ -1394,17 +1293,11 @@ "OptionPriority": "Priorità", "OptionProducer": "Produttore", "OptionProducers": "Produttori", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Registra a qualsiasi ora", "OptionRecordOnAllChannels": "Registra su tutti i canali", "OptionRecordOnlyNewEpisodes": "Registra solo i nuovi episodi", "OptionRecordSeries": "Registra Serie TV", - "OptionRegex": "Regex", "OptionRelease": "Versione Ufficiale", "OptionReleaseDate": "Data di Uscita", "OptionReportByteRangeSeekingWhenTranscoding": "Segnala che il server supporta la ricerca di byte durante la transcodifica", @@ -1426,7 +1319,6 @@ "OptionSongs": "Canzoni", "OptionSortName": "Nome ordinato", "OptionSpecialEpisode": "Speciali", - "OptionStudios": "Studios", "OptionSubstring": "Sottostringa", "OptionSunday": "Domenica", "OptionSundayShort": "Dom", @@ -1464,14 +1356,12 @@ "OptionWriters": "Sceneggiatori", "OptionYes": "Si", "OriginalAirDateValue": "Prima messa in onda: {0}", - "Password": "Password", "PasswordMatchError": "Le password non coincidono.", "PasswordResetComplete": "la password è stata ripristinata.", "PasswordResetConfirmation": "Sei sicuro di voler ripristinare la password?", "PasswordResetHeader": "Ripristina Password", "PasswordSaved": "Password salvata.", "PersonTypePerson": "Persona", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "Il codice PIN è stato resettato", "PinCodeResetConfirmation": "Sei sicuro di voler resettare il codice PIN?", "PlayOnAnotherDevice": "Riproduci su altro dispositivo", @@ -1487,7 +1377,6 @@ "PreferEmbeddedTitlesOverFileNamesHelp": "Determina il titolo predefinito usato quando non sono disponibili metadati locali o da Internet.", "PreferredNotRequired": "Preferito, ma non richiesto", "Programs": "Programmi", - "ProviderValue": "Provider: {0}", "Rate": "Vota", "RecommendationBecauseYouLike": "Perché ti piace {0}", "RecommendationBecauseYouWatched": "Perché hai visto {0}", @@ -1497,7 +1386,6 @@ "RegisterWithPayPal": "Registrati con PayPal", "ReleaseYearValue": "Anno di uscita: {0}", "RememberMe": "Ricordami", - "Reporting": "Reporting", "RequireHttps": "Richiedi https per connessioni esterne", "RequireHttpsHelp": "Se abilitato, le connessione attraverso http verranno reinderizzate tramite https.", "RequiredForAllRemoteConnections": "Richiesto per tutte le connessioni remote", @@ -1515,10 +1403,8 @@ "SettingsWarning": "La modifica di questi valori può causare problemi di instabilità o di connettività. Se si verificano problemi, si consiglia di modificarli all'impostazione predefinita.", "SetupFFmpeg": "Configura FFmpeg", "SetupFFmpegHelp": "Jellyfin può richiedere una libreria o un'applicazione per convertire alcuni tipi di supporti. Esistono molte applicazioni diverse, tuttavia, Jellyfin è stato testato per funzionare con ffmpeg. Jellyfin non è in alcun modo affiliato con ffmpeg, la sua proprietà, codice o distribuzione.", - "ShowAdvancedSettings": "Show advanced settings", "SimultaneousConnectionLimitHelp": "Numero massimo di streaming simultanei permessi. Inserisci 0 per nessun limite.", "Sports": "Sport", - "Standard": "Standard", "StatusRecording": "Registrazione", "StatusRecordingProgram": "Registrando {0}", "StatusWatching": "Sto guardando", @@ -1528,7 +1414,6 @@ "SubtitleDownloadInstructions": "Per gestire il download dei sottotitoli, fare clic su una libreria nell'impostazione della libreria Jellyfin e modificare le impostazioni di download dei sottotitoli.", "SubtitleDownloadersHelp": "Abilita e classifica i tuoi downloader di sottotitoli preferiti in ordine di priorità.", "Subtitles": "Sottotitoli", - "Sync": "Sync", "SyncMedia": "Sync media", "SyncToOtherDevices": "Sinc. con altri dispositivi", "SynologyUpdateInstructions": "Accedi al DSM e vai nel Package Center per aggiornarlo.", @@ -1544,7 +1429,6 @@ "TabBasic": "Base", "TabBasics": "Base", "TabCameraUpload": "Caricamenti Fotocamera", - "TabCast": "Cast", "TabCatalog": "Catalogo", "TabChannels": "Canali", "TabChapters": "capitoli", @@ -1554,7 +1438,6 @@ "TabCollections": "Collezioni", "TabContainers": "Contenitori", "TabControls": "Controlli", - "TabDLNA": "DLNA", "TabDashboard": "Pannello Controllo", "TabDevices": "Dispositivi", "TabDirectPlay": "Riproduzione Diretta", @@ -1570,18 +1453,14 @@ "TabGenres": "Generi", "TabGuide": "Guida", "TabHelp": "Aiuto", - "TabHome": "Home", "TabHomeScreen": "Pagina iniziale", - "TabHosting": "Hosting", "TabImage": "Immagine", "TabImages": "Immagini", - "TabInfo": "Info", "TabLanguages": "Lingue", "TabLatest": "Novità", "TabLibrary": "Librerie", "TabLibraryAccess": "Accesso alla libreria", "TabLiveTV": "Tv in Diretta", - "TabLogs": "Logs", "TabMetadata": "Metadati", "TabMovies": "Film", "TabMusic": "Musica", @@ -1597,13 +1476,10 @@ "TabOther": "Altro", "TabOthers": "Altro", "TabParentalControl": "Controllo Genitore", - "TabPassword": "Password", "TabPaths": "Percorsi", "TabPhotos": "Foto", "TabPlayback": "Riproduzione", - "TabPlaylist": "Playlist", "TabPlaylists": "Playlist", - "TabPlugins": "Plugins", "TabProfile": "Profilo", "TabProfiles": "Profili", "TabRecordings": "Registrazioni", @@ -1613,13 +1489,10 @@ "TabScheduledTasks": "Operazioni Pianificate", "TabSecurity": "Sicurezza", "TabSeries": "Serie TV", - "TabServer": "Server", "TabServices": "Servizi", "TabSettings": "Impostazioni", "TabShows": "Spettacoli", "TabSongs": "Brani", - "TabStreaming": "Streaming", - "TabStudios": "Studios", "TabSubtitles": "Sottotitoli", "TabSuggestions": "Suggerimenti", "TabSync": "Sinc", @@ -1647,7 +1520,6 @@ "TitlePlugins": "Plug-in", "TitleRemoteControl": "Telecomando", "TitleScheduledTasks": "Operazioni Pianificate", - "TitleServer": "Server", "TitleSignIn": "Accedi", "TitleSupport": "Supporto", "TitleSync": "Sincronizza", @@ -1665,7 +1537,6 @@ "ValueAsRole": "è {0}", "ValueAudioCodec": "Codec Audio: {0}", "ValueAwards": "Premi: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Condizioni: {0}", "ValueContainer": "Contenitore: {0}", "ValueDateCreated": "Data di creazione {0}", @@ -1677,17 +1548,14 @@ "ValueItemCount": "{0} elemento", "ValueItemCountPlural": "{0} elementi", "ValueLinks": "Collegamenti: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} video musicali", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 episodio", "ValueOneGame": "1 gioco", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 video musicale", "ValueOneSeries": "1 serie", "ValueOneSong": "1 canzone", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Debuttato {0}", "ValuePremieres": "Debuttato {0}", "ValuePriceUSD": "Prezzo: {0} (USD)", @@ -1695,7 +1563,6 @@ "ValueSeriesYearToPresent": "{0} - Oggi", "ValueSongCount": "{0} Canzoni", "ValueStatus": "Stato {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studi: {0}", "ValueTimeLimitMultiHour": "Tempo limite: {0} ore", "ValueTimeLimitSingleHour": "Tempo limite: 1 ora", @@ -1716,7 +1583,6 @@ "ViewTypeMusicSongs": "Canzoni", "ViewTypeTvShows": "Serie Tv", "WelcomeToProject": "Benvenuto in Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Questo è tutto ciò che serve per ora. Jellyfin ha iniziato a raccogliere informazioni sulla tua libreria di media. Scopri alcune delle nostre app, quindi clicca su Fine per visualizzare il Pannello di Controllo del server.", "XmlDocumentAttributeListHelp": "Questi attributi vengono applicati all'elemento radice di ogni risposta XML.", "XmlTvKidsCategoriesHelp": "I programmi con queste categorie saranno visualizzati come programmi per i bambini. Separa multipli con '|'.", diff --git a/src/strings/kk.json b/src/strings/kk.json index 4450d1569e..35fac47281 100644 --- a/src/strings/kk.json +++ b/src/strings/kk.json @@ -167,12 +167,10 @@ "CategorySync": "Үндестіру", "CategorySystem": "Жүйе", "CategoryUser": "Пайдаланушы", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Бұл пайдаланушымен ортақтасу үшін арналарды бөлектеңіз. Метадерек реттеушіні пайдаланып әкімшілер барлық арналарды өңдеуі мүмкін.", "Channels": "Арналар", "CinemaModeConfigurationHelp": "Кинотеатр режімі трейлерлерді және теңшелген көрнеуді негізгі фильм алдында ойнату қабілетімен көрермендер залы әсерін қонақжайыңызға тікелей жеткізеді.", "CinemaModeConfigurationHelp2": "Jellyfin қолданбаларда кино режімін қосу немесе өшіру параметрі болады. ТД-қолданбаларда кино режімі әдепкі бойынша қосылады.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Жаңа құрылғы мақсаты үшін теңшелген профайлды жасау не жүйелік профайлды қайта анықтау.", "DeathDateValue": "Өлгені: {0}", "DefaultCameraUploadPathHelp": "Теңшелген кері қотару жолды таңдаңыз. Егер анықталмаса, әдепкі қалта пайдаланылады. Егер теңшелетін жол пайдаланылса, бұны сондай-ақ Jellyfin тасығышханасын орнату және теңшеу аймағында тасығышхана сияқты үстеу қажет.", @@ -394,7 +392,6 @@ "HeaderItems": "Тармақтар", "HeaderJellyfinAccountAdded": "Jellyfin тіркелгісі үстелінді", "HeaderJellyfinAccountRemoved": "Jellyfin тіркелгісі аласталды", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "NFO метадеректерін қосу немесе өшіру үшін, Jellyfin тасығышханалар орнату бөлімінде тасығышхана ны өңдеңіз және метадеректер сақтауыш бөлімін табыңыз.", "HeaderLanguage": "Тіл", "HeaderLatestAlbums": "Ең кейіңгі альбомдар", @@ -717,7 +714,6 @@ "LabelDownloadInternetMetadataHelp": "Мазмұнды көрмелерді қосу үшін Jellyfin Server тасығышдеректер туралы мәліметтерді жүктеуі мүмкін.", "LabelDownloadLanguages": "Жүктеп алынатын тілдер:", "LabelDropImageHere": "Суретті мұнда сүйретіңіз.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Оңайтылған PIN-код:", "LabelEmail": "Э-пошта:", "LabelEmailAddress": "Э-поштаның мекенжайы", @@ -1189,10 +1185,6 @@ "Notifications": "Хабарландырулар", "NumLocationsValue": "{0} қалта", "OpenSubtitleInstructions": "Open Subtitles тіркелгі мәліметтерін Jellyfin Server басқару тақтасындағы Open Subtitles экранында теңшеу қажет.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Актер", "OptionActors": "Актерлер", "OptionAdminUsers": "Әкімшілер", @@ -1246,7 +1238,6 @@ "OptionBooks": "Кітаптар", "OptionBox": "Қорап", "OptionBoxRear": "Қорап арты", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Жиынтықтар", "OptionCommunityRating": "Қауым бағалауы", "OptionComposer": "Композитор", @@ -1338,8 +1329,6 @@ "OptionImages": "Суреттер", "OptionImdbRating": "IMDb бағалауы", "OptionInProgress": "Орындалуда", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Кілт сөздер", "OptionLatestChannelMedia": "Арналардың ең кейінгі тармақтары", @@ -1411,7 +1400,6 @@ "OptionReportByteRangeSeekingWhenTranscodingHelp": "Бұл уақыт іріктеуі онша емес кейбір құрылғылар үшін қажет.", "OptionRequirePerfectSubtitleMatch": "Бейне файлдарым үшін тек қана кемелді сәйкес келген субтитрлерді жүктеп алу", "OptionRequirePerfectSubtitleMatchHelp": "Керемет сәйкестік талап етілгенде тек қана нақты бейне файлыңызбен сынақтаудан және тексеруден өткен субтитрлер сүзіледі. Белгіні аластау субтитрлерді жүктеу ықтималдығын арттырады, бірақ қате уақыты бар немесе бұрыс болу субтитрлер мәтінінің мүмкіндіктерін өсіреді.", - "OptionResElement": "res element", "OptionResumable": "Жалғастыралатын", "OptionResumablemedia": "Жалғастырмалы", "OptionRuntime": "Ұзақтығы", @@ -1554,7 +1542,6 @@ "TabCollections": "Жиынтықтар", "TabContainers": "Контейнерлер", "TabControls": "Басқару элементтері", - "TabDLNA": "DLNA", "TabDashboard": "Тақта", "TabDevices": "Құрылғылар", "TabDirectPlay": "Тікелей ойнату", diff --git a/src/strings/ko.json b/src/strings/ko.json index c642a4e80a..4c37aecf27 100644 --- a/src/strings/ko.json +++ b/src/strings/ko.json @@ -1,33 +1,15 @@ { "AddGuideProviderHelp": "TV 가이드 소스 추가", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "사용자 추가", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "추가 알림 서비스를 설치하려면 플러그인 카탈로그를 탐색하세요.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "모두", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "오디오", "BirthDateValue": "출생: {0}", "BirthPlaceValue": "출생지: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Bob and weave(품질은 높지만 느리다)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "사용 가능한 플러그인을 보려면 플러그인 카탈로그를 탐색하세요.", "ButtonAccept": "수락", "ButtonAdd": "추가", - "ButtonAddMediaLibrary": "Add Media Library", "ButtonAddScheduledTaskTrigger": "트리거 추가", "ButtonAddServer": "서버 추가", "ButtonAddUser": "사용자 추가", @@ -35,13 +17,11 @@ "ButtonArrowLeft": "왼쪽", "ButtonArrowRight": "오른쪽", "ButtonArrowUp": "위", - "ButtonAudioTracks": "Audio Tracks", "ButtonBack": "뒤로", "ButtonCancel": "취소", "ButtonCancelSeries": "시리즈 취소", "ButtonChangeContentType": "콘텐트 종류 변경", "ButtonChangeServer": "서버 변경", - "ButtonClear": "Clear", "ButtonClose": "닫기", "ButtonConfigurePassword": "비밀번호 설정", "ButtonConfigurePinCode": "PIN 코드 설정", @@ -50,15 +30,12 @@ "ButtonCreate": "생성", "ButtonDelete": "삭제", "ButtonDeleteImage": "이지지 삭제", - "ButtonDown": "Down", "ButtonDownload": "다운로드", "ButtonEdit": "편집", - "ButtonEditImages": "Edit images", "ButtonEditOtherUserPreferences": "사용자 프로파일, 이미지, 개인 설정을 편집합니다.", "ButtonExit": "종료", "ButtonFilter": "필터", "ButtonForgotPassword": "비밀번호 분실", - "ButtonFullscreen": "Fullscreen", "ButtonGuide": "가이드", "ButtonHelp": "도움말", "ButtonHide": "숨김", @@ -66,8 +43,6 @@ "ButtonInfo": "정보", "ButtonInviteUser": "사용자 초대", "ButtonLearnMore": "더 알아보기", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", "ButtonManageServer": "서버 관리", "ButtonManualLogin": "수동 로그인", "ButtonMenu": "메뉴", @@ -82,11 +57,8 @@ "ButtonNextTrack": "다음 트랙", "ButtonNo": "아니오", "ButtonNowPlaying": "지금 재생 중", - "ButtonOff": "Off", "ButtonOk": "OK", "ButtonOpen": "열기", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", "ButtonPause": "일시 중지", "ButtonPlay": "재생", "ButtonPlayTrailer": "예고편", @@ -102,7 +74,6 @@ "ButtonQuality": "품질", "ButtonQuickStartGuide": "빠른 시작 가이드", "ButtonRecord": "녹화", - "ButtonReenable": "Re-enable", "ButtonRefresh": "새로 고침", "ButtonRefreshGuideData": "가이드 데이터 새로 고침", "ButtonReject": "거절", @@ -111,7 +82,6 @@ "ButtonRemove": "제거", "ButtonRename": "이름 변경", "ButtonRepeat": "반복", - "ButtonReports": "Reports", "ButtonReset": "초기화", "ButtonResetEasyPassword": "간편 PIN 코드 초기화", "ButtonResetPassword": "비밀번호 재설정", @@ -119,9 +89,7 @@ "ButtonRestart": "다시 시작", "ButtonRestartNow": "지금 다시 시작", "ButtonResume": "이어서 재생", - "ButtonRevoke": "Revoke", "ButtonSave": "저장", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "라이브러리 검색", "ButtonScheduledTasks": "예약 작업", "ButtonSearch": "찾기", @@ -135,24 +103,19 @@ "ButtonServerDashboard": "서버 대시보드", "ButtonSettings": "설정", "ButtonShare": "공유", - "ButtonShuffle": "Shuffle", "ButtonShutdown": "종료", "ButtonSignIn": "로그인", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", "ButtonSkip": "건너뛰기", "ButtonSort": "정렬", "ButtonSplitVersionsApart": "분활 버전 제외", "ButtonStart": "시작", "ButtonStop": "중지", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "전송", "ButtonSubtitles": "자막", "ButtonSync": "동기화", - "ButtonTrailer": "Trailer", "ButtonUninstall": "설치 제거", "ButtonUnmute": "음소거 취소", - "ButtonUp": "Up", "ButtonUpdateNow": "지금 업데이트", "ButtonUpload": "업로드", "ButtonView": "보기", @@ -161,98 +124,51 @@ "ButtonViewWebsite": "웹사이트 보기", "ButtonWebsite": "웹사이트", "ButtonYes": "예", - "CancelSeries": "Cancel series", "CategoryApplication": "애플리케이션", "CategoryPlugin": "플러그인", "CategorySync": "동기화", "CategorySystem": "시스템", "CategoryUser": "사용자", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "이 사용자와 공유할 채널을 선택합니다. 관리자는 메타데이터 매니저를 사용하여 모든 채널을 수정할 수 있습니다.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "시네마 모드는 본 영화 전에 예고편과 소개 영상등을 재생하여 을 사용자의 거실에서 극장의 경험을 제공합니다.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "대상 장치를 새 기기로 사용자 프로파일을 생성하거나 시스템 프로파일로 덮어씁니다.", "DeathDateValue": "사망: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "요구 처리 과정에 오류가 발생하였습니다. 다시 시도하세요.", "DefaultMetadataLangaugeDescription": "이는 기본값이며 라이브러리별로 사용자 정의 할 수 있습니다.", "Delete": "삭제", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "이미지 삭제", "DeleteImageConfirmation": "이 이미지를 삭제하겠습니까?", "DeleteMedia": "미디어 지우기", "DeleteUser": "사용자 삭제", "DeleteUserConfirmation": "이 사용자를 삭제하겠습니까?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "이것은 고유하게 식별할 수 있고 브라우저 액세스를 방해하지 않는 장치에만 적용됩니다. 사용자 장치 액세스를 필터링하면 여기에서 승인 될 때까지 새 장치를 사용할 수 없게 됩니다.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", "ErrorAddingTunerDevice": "튜너 장치를 추가하는데 오류가 발생하였습니다. 접속 가능한지 확인하고 다시 시도하세요.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", "ErrorMessageEmailInUse": "이미 사용 중인 이메일 주소입니다. 다른 이메일 주소로 다시 시도하거나 비밀번호 분실 기능을 사용하세요.", "ErrorMessagePasswordNotMatchConfirm": "비밀번호와 비밀번호 확인이 일치하여야 합니다.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", "ErrorMessageUsernameInUse": "이미 사용 중인 사용자명입니다. 다른 이름으로 다시 시도하세요.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ErrorSavingTvProvider": "TV 제공자를 저장하는데 오류가 발생하였습니다. 접속 가능한지 확인하고 다시 시도하세요.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "전체화면 나가기", "ExtractChapterImagesHelp": "쳅터 이미지를 추출하면 EMBY앱에서 그래픽 장면 선택 메뉴를 표시할 수 있습니다. 이 프로세스는 느지고, CPU자원을 많이 사용 할 수도 있으며 몇 수 기가 바이트의 공간이 필요할 수 있습니다. 동영상이 검색될때 실행되며 야간에 예약된 작업으로 실행됩니다. 일정은 예약된 작업 영역에서 구성할 수 있습니다. 사용량이 가장 많은 시간에 이 작업를 실행하는 것은 권장되지 않습니다.\n", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "FastForward": "빨리 감기", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "파일을 찾을 수 없습니다.", - "FileReadCancelled": "The file read has been canceled.", "FileReadError": "파일을 읽는 동안 오류가 발생하였습니다.", "FolderTypeBooks": "책", "FolderTypeGames": "게임", - "FolderTypeInherit": "Inherit", "FolderTypeMixed": "혼합 콘텐츠", "FolderTypeMovies": "영화", "FolderTypeMusic": "음악", "FolderTypeMusicVideos": "뮤직 비디오", "FolderTypePhotos": "사진", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "전체화면", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "GuideProviderLogin": "로그인", "GuideProviderSelectListings": "목록 선택", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", "HeaderAccessSchedule": "접속 일정", "HeaderAccessScheduleHelp": "특정 시간대에 접속을 제한하기 위한 접속 일정을 만듭니다.", "HeaderActiveDevices": "활성 기기", "HeaderActiveRecordings": "활성화 된 녹화", "HeaderActivity": "활성화", "HeaderAddDevice": "장치 추가", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "트리거 추가", "HeaderAddTag": "태그 추가", "HeaderAddTitles": "제목 추가", @@ -265,10 +181,8 @@ "HeaderAlbums": "앨범", "HeaderAlert": "경고", "HeaderAllRecordings": "모든 녹화", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "API 키", "HeaderApiKeys": "API 키", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", "HeaderApp": "앱", "HeaderAudio": "오디오", "HeaderAudioSettings": "오디오 설정", @@ -278,94 +192,67 @@ "HeaderAwardsAndReviews": "수상 및 리뷰", "HeaderBackdrops": "배경", "HeaderBecomeProjectSupporter": "Jellyfin 프리미어 얻기", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "책", "HeaderBranding": "브랜딩", "HeaderBrandingHelp": "사용자의 단체나 조직에 맞게 Jellyfin 모양새를 정의합니다.", "HeaderCameraUpload": "카메라 업로드", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", "HeaderCancelSyncJob": "동기화 취소", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "배역 및 제작진", "HeaderChangeFolderType": "콘텐트 종류 변경", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderChannelAccess": "채널 접속", "HeaderChannels": "채널", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "챕터", "HeaderCinemaMode": "시네마 모드", "HeaderClients": "클라이언트", - "HeaderCloudSync": "Cloud Sync", "HeaderCodecProfile": "코덱 프로파일", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "컬렉션", "HeaderColumns": "열", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", "HeaderConfirmDeletion": "삭제 확인", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "HeaderConfirmProfileDeletion": "프로파일 삭제 확인", "HeaderConfirmRecordingCancellation": "녹화 취소 확인", "HeaderConfirmRecordingDeletion": "녹화 삭제 확인", "HeaderConfirmRemoveUser": "사용자 삭제", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", "HeaderConfirmSeriesCancellation": "시리즈 취소 확인", "HeaderConfirmation": "확인", "HeaderConnectToServer": "서버 접속", "HeaderConnectionFailure": "연결 실패", "HeaderContainerProfile": "컨테이너 프로파일", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "계속 시청하기", "HeaderCreatePassword": "비밀번호 생성", "HeaderCredits": "크레디트", "HeaderCustomDlnaProfiles": "사용자 프로파일", "HeaderDashboardUserPassword": "사용자 비밀번호는 각 사용자의 개인 프로파일 설정에서 관리할 수 있습니다.", "HeaderDate": "날짜", - "HeaderDateIssued": "Date Issued", "HeaderDays": "일", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", "HeaderDeleteImage": "이미지 삭제", "HeaderDeleteItem": "항목 삭제", "HeaderDeleteProvider": "제공자 삭제", "HeaderDeleteTaskTrigger": "작업 트리거 삭제", - "HeaderDestination": "Destination", "HeaderDetails": "상세", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "개발자 정보", "HeaderDevice": "장치", "HeaderDeviceAccess": "장치 접속", "HeaderDevices": "장치", "HeaderDirectPlayProfile": "다이렉트 플레이 프로파일", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", "HeaderDisplaySettings": "화면 설정", "HeaderDownloadSubtitlesFor": "자막 다운로드:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "간편 PIN 코드", "HeaderEmbeddedImage": "내장 이미지", - "HeaderEpisodes": "Episodes", "HeaderError": "오류", "HeaderExport": "내보내기", "HeaderExternalPlayerPlayback": "외부 플레이어 재생", "HeaderExternalServices": "외부 서비스", "HeaderFavoriteAlbums": "즐겨찾는 앨범", - "HeaderFavoriteArtists": "Favorite Artists", "HeaderFavoriteEpisodes": "즐겨찾는 에피소드", "HeaderFavoriteGames": "즐겨찾는 게임", "HeaderFavoriteMovies": "즐겨찾는 영화", "HeaderFavoriteShows": "즐겨찾는 쇼", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "기능 접근", "HeaderFeatures": "특징들", "HeaderFetchImages": "이미지 가져오기:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "필터", - "HeaderForKids": "For Kids", "HeaderForgotKey": "키 분실", "HeaderForgotPassword": "비밀번호 분실", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "자주 재생", "HeaderGames": "게임", "HeaderGenres": "장르", @@ -373,39 +260,26 @@ "HeaderGuideProviders": "가이드 제공자", "HeaderHomePage": "홈 페이지", "HeaderHomeScreenSettings": "홈 화면 설정", - "HeaderHttpHeaders": "Http Headers", "HeaderIdentification": "식별", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", "HeaderImageBackdrop": "배경", "HeaderImageLogo": "로고", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "이미지 설정", "HeaderImages": "이미지", "HeaderInstall": "설치", "HeaderInstalledServices": "설치한 서비스", "HeaderInstantMix": "인스턴스 믹스", - "HeaderInvitationSent": "Invitation Sent", "HeaderInvitations": "초대", "HeaderInviteUser": "사용자 초대", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", "HeaderItems": "항목", "HeaderJellyfinAccountAdded": "Jellyfin 계정 추가됨", "HeaderJellyfinAccountRemoved": "Jellyfin 계정 제거됨", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "언어", "HeaderLatestAlbums": "최근 앨범", "HeaderLatestChannelItems": "최근 채널 항목", "HeaderLatestChannelMedia": "최근 채널 항목", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "최근 에피소드", - "HeaderLatestFromChannel": "Latest from {0}", "HeaderLatestItems": "최근 항목", "HeaderLatestMedia": "최근 미디어", - "HeaderLatestMovies": "Latest Movies", "HeaderLatestMusic": "최근 음악", "HeaderLatestRecordings": "최근 녹화", "HeaderLatestSongs": "최근 노래", @@ -419,7 +293,6 @@ "HeaderLinks": "링크", "HeaderLiveTV": "TV 방송", "HeaderLiveTv": "TV 방송", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "로그인 실패", "HeaderManagement": "관리", "HeaderMedia": "미디어", @@ -428,17 +301,14 @@ "HeaderMediaLocations": "미디어 위치", "HeaderMenu": "메뉴", "HeaderMissing": "누락", - "HeaderMoreLikeThis": "More Like This", "HeaderMovies": "영화", "HeaderMusicVideos": "뮤직 비디오", "HeaderMyMedia": "내 미디어", "HeaderMyViews": "내 보기", - "HeaderName": "Name", "HeaderNavigation": "탐색", "HeaderNetwork": "네트워크", "HeaderNewApiKey": "새 API 키", "HeaderNewApiKeyHelp": "Jellyfin 서버와의 통신을 위해 애플리케이션 권한을 부여합니다.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "새 서버", "HeaderNewUsers": "새 사용자", "HeaderNextUp": "다음으로", @@ -446,11 +316,8 @@ "HeaderNowPlaying": "지금 재생 중", "HeaderNumberOfPlayers": "플레이어", "HeaderOffline": "오프라인", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", "HeaderOptions": "옵션", "HeaderOtherDisplaySettings": "화면 설정", - "HeaderOtherItems": "Other Items", "HeaderOverview": "줄거리", "HeaderParentalRating": "Parental Rating", "HeaderParentalRatings": "자녀 보호 등급", @@ -459,7 +326,6 @@ "HeaderPaths": "경로", "HeaderPendingInstallations": "설치 보류", "HeaderPendingInvitations": "초대 보류", - "HeaderPeople": "People", "HeaderPersonInfo": "인물 정보", "HeaderPersonTypes": "인물 유형:", "HeaderPhotoInfo": "사진 정보", @@ -470,15 +336,12 @@ "HeaderPlaylists": "재생목록", "HeaderPleaseSignIn": "로그인 하세요", "HeaderPluginInstallation": "플러그인 설치", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", "HeaderProfile": "프로파일", "HeaderProfileInformation": "프로파일 정보", "HeaderProfileServerSettingsHelp": "이 값은 Jellyfin Server가 기기에 자신을 어떻게 표시 할지를 제어합니다.", "HeaderProgram": "프로그램", "HeaderRecentActivity": "최근 활동", "HeaderRecentlyPlayed": "최근 재생", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", "HeaderReleaseDate": "개봉일", "HeaderRemoteControl": "원격 제어", "HeaderRemoveMediaFolder": "미디어 폴더 제거", @@ -488,7 +351,6 @@ "HeaderResetTuner": "튜너 초기화", "HeaderResolution": "해상도", "HeaderResponseProfile": "프로파일 회신", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "다시 시작", "HeaderResult": "결과", "HeaderResume": "이어서 재생", @@ -499,15 +361,11 @@ "HeaderRuntime": "상영 시간", "HeaderScenes": "장면", "HeaderSchedule": "일정", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "찾기", "HeaderSeason": "시즌", "HeaderSeasonNumber": "시즌 번호", "HeaderSeasons": "시즌", "HeaderSelectAudio": "오디오 선택", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", "HeaderSelectDate": "날짜 선택", "HeaderSelectDevices": "장치 선택", "HeaderSelectExternalPlayer": "외부 플레이어 선택", @@ -522,7 +380,6 @@ "HeaderSelectSubtitles": "자막 선택", "HeaderSelectTranscodingPath": "트랜스코딩 임시 경로 선택", "HeaderSelectTranscodingPathHelp": "트랜스코딩 임시 파일에 사용할 경로를 탐색 또는 입력하세요. 쓰기 가능한 폴더여야 합니다.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "메시지 전송", "HeaderSeries": "Series:", "HeaderSeriesRecordings": "시리즈 녹화", @@ -533,9 +390,6 @@ "HeaderSetupTVGuide": "TV 가이드 설정", "HeaderShareMediaFolders": "미디어 폴더 공유", "HeaderShutdown": "종료", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "소스", "HeaderSpecialEpisodeInfo": "스페셜 에피소드 정보", "HeaderSpecialFeatures": "특수 기능", @@ -543,9 +397,7 @@ "HeaderSplitMedia": "미디어 분할", "HeaderStatus": "상태", "HeaderStudios": "스튜디오", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "자막 프로파일", - "HeaderSubtitleProfiles": "Subtitle Profiles", "HeaderSubtitleProfilesHelp": "자막 프로파일은 기기에서 지원하는 자막 형식을 설명한다.", "HeaderSubtitleSettings": "자막 설정", "HeaderSubtitles": "자막", @@ -553,7 +405,6 @@ "HeaderSync": "동기화", "HeaderSyncJobInfo": "동기화 작업", "HeaderSystemDlnaProfiles": "시스템 프로파일", - "HeaderTV": "TV", "HeaderTags": "태그", "HeaderTaskTriggers": "작업 트리거", "HeaderTermsOfService": "Jellyfin 서비스 약관", @@ -567,21 +418,9 @@ "HeaderTracks": "트랙", "HeaderTrailers": "예고편", "HeaderTranscodingProfile": "트랜스코딩 프로파일", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", "HeaderTunerDevices": "튜너 장치", - "HeaderTuners": "Tuners", "HeaderTvTuners": "튜너", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "텍스트 입력", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "새 이미지 업로드", "HeaderUser": "사용자", "HeaderUserPrimaryImage": "사용자 이미지", @@ -591,30 +430,20 @@ "HeaderVideos": "비디오", "HeaderViewOrder": "보기 순서", "HeaderViewStyles": "보기 스타일", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", "HeaderXmlDocumentAttribute": "XML 문서 속성", "HeaderXmlDocumentAttributes": "XML 문서 속성", "HeaderXmlSettings": "XML 설정", "HeaderYear": "Year:", "HeaderYears": "연도", "HeadersFolders": "폴더", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 비율을 추천합니다. JPG/PNG만 사용.", "ImportFavoriteChannelsHelp": "옵션을 켜면 즐겨찾기 표시한 채널만 불러옵니다.", "ImportMissingEpisodesHelp": "이 기능을 사용하면 누락 된 에피소드에 대한 정보가 Jellyfin 데이터베이스로 가져와 시즌 및 시리즈 내에서 표시됩니다. 이로 인해 상당히 긴 라이브러리 스캔이 발생할 수 있습니다.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", "LabelAbortedByServerShutdown": "(서버가 종료되어 취소됨)", "LabelAccessDay": "요일:", "LabelAccessEnd": "종료 시각:", "LabelAccessStart": "시작 시각:", "LabelAddConnectSupporterHelp": "목록에 없는 사용자를 추가하려면 사용자 프로파일 페이지에서 Jellyfin Connect에 먼저 연결하여야 합니다.", - "LabelAddedOnDate": "Added {0}", "LabelAirDate": "방송일:", "LabelAirDays": "방영일:", "LabelAirTime": "방영 시각:", @@ -630,52 +459,36 @@ "LabelAlbumArtists": "앨범 아티스트:", "LabelAll": "모두", "LabelAllLanguages": "모든 언어", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "서버가 자동으로 업데이트를 적용하도록 재시작 허용", "LabelAllowServerAutoRestartHelp": "서버는 활성화된 사용자가 없는 유휴 기간에만 다시 시작합니다.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "아무 때나", "LabelAppName": "앱 이름", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", "LabelArtist": "아티스트", "LabelArtists": "아티스트:", "LabelArtistsHelp": "분리 사용할 배수 :", "LabelAudioCodec": "오디오: {0}", "LabelAudioLanguagePreference": "오디오 언어 설정:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "사용 가능한 토큰:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", "LabelBitrateMbps": "비트레이트 (Mbps):", "LabelBlastMessageInterval": "활성 메세지 간격(초)", "LabelBlastMessageIntervalHelp": "서버 활성화 메세지 간의 지속 시간을 초 단위로 결정합니다.", - "LabelBlockContentWithTags": "Block items with tags:", "LabelCache": "캐시:", "LabelCachePath": "캐시 경로:", "LabelCachePathHelp": "이미지와 같은 서버 캐시 파일을 위한 사용자 위치를 지정합니다. 서버 기본값을 사용하려면 비워둡니다.", "LabelCameraUploadPath": "카메라 업로드 경로:", "LabelCameraUploadPathHelp": "맞춤 업로드 경로를 선택하십시오. 카메라 업로드 섹션에서 설정된 기본 설정보다 우선합니다. 공백으로두면 기본 폴더가 사용됩니다. 사용자 정의 경로를 사용하는 경우 라이브러리 설정 영역에 추가해야합니다.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "대역폭이 낮은 환경에서 품질을 제한하면 부드러운 스트리밍을 유지하는데 도움이 됩니다.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "LabelCollection": "컬렉션", "LabelCommunityRating": "커뮤니티 평점:", "LabelCompleted": "완료", "LabelComponentsUpdated": "다음 구성 요소가 설치 또는 업데이트 되었습니다:", "LabelConfigureSettings": "환경 설정", "LabelConnectGuestUserName": "Jellyfin 사용자 이름 및 이메일주소 :", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "콘텐츠 종류:", "LabelContentTypeValue": "콘텐트 종류: {0}", "LabelContext": "문맥 :", "LabelConversionCpuCoreLimit": "CPU 코어 제한:", "LabelConversionCpuCoreLimitHelp": "동기화 변환 중 사용할 CPU 코어 수를 제한합니다.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "국가:", "LabelCreateCameraUploadSubfolder": "각 장치별 하위 폴더 생성", "LabelCreateCameraUploadSubfolderHelp": "기기 페이지에서 해당 폴더를 클릭하여 특정 폴더에 할당할 수 있습니다.", @@ -686,7 +499,6 @@ "LabelCustomCss": "사용자 css:", "LabelCustomCssHelp": "사용자 css를 웹 인터페이스에 적용합니다.", "LabelCustomDeviceDisplayName": "표시 이름:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", "LabelCustomIntrosPath": "사용자 도입부 영상 경로:", "LabelCustomIntrosPathHelp": "비디오 파일이 있는 폴더. 예고편 다음에 비디오를 무작위 선택하여 재생합니다.", "LabelCustomizeOptionsPerMediaType": "미디어 종류 사용자 설정:", @@ -704,29 +516,19 @@ "LabelDeviceDescription": "장치 설명", "LabelDidlMode": "DIDL 모드 :", "LabelDisabled": "사용 안 함", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "각 시즌의 누락된 에피소드 표시", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "LabelDisplayName": "표시 이름:", - "LabelDisplayPluginsFor": "Show plugins for:", "LabelDisplaySpecialsWithinSeasons": "그들이 방송한 시즌내의 스페셜을 전시합니다.", "LabelDownMixAudioScale": "다운 믹싱할 때 오디오 증폭:", "LabelDownMixAudioScaleHelp": "다운 믹싱할 때 오디오를 증폭합니다. 원래 음량을 유지하려면 1로 설정하세요.", "LabelDownloadInternetMetadata": "인터넷에서 아트워크와 메타데이터 다운로드", "LabelDownloadInternetMetadataHelp": "Jellyfin 서버가 미디어 정보를 다운로드하여 풍부한 화면을 표시합니다.", "LabelDownloadLanguages": "다운로드 언어:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "간편 PIN 코드:", "LabelEmail": "이메일:", "LabelEmailAddress": "이메일 주소", "LabelEmbedAlbumArtDidl": "DIDL에 앨벌 아트 삽입", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "자동 포트 맵핑 사용", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", "LabelEnableCinemaMode": "시네마 모드 사용", "LabelEnableCinemaModeFor": "시네마 모드 사용:", "LabelEnableDebugLogging": "디버그 로깅 사용", @@ -739,47 +541,33 @@ "LabelEnableDlnaServer": "DLNA 서버 사용", "LabelEnableDlnaServerHelp": "여러분의 네트워크에 있는 UPnP 장치가 Jellyfin 콘텐츠를 탐색하고 재생할 수 있게 허용합니다.", "LabelEnableFullScreen": "전체 화면 모드 사용", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "스마트 자녀보호 기능 사용", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "실시간 모니터링 사용", "LabelEnableRealtimeMonitorHelp": "지원하는 파일 시스템에서 변경 사항이 즉시 실행됩니다.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", "LabelEnableThisTuner": "이 튜너 사용", "LabelEnableThisTunerHelp": "이 튜너에서 채널 가져오기를 방지하려면 체크를 해제하세요.", "LabelEnabled": "사용", "LabelEndDate": "종료일 :", "LabelEndingEpisodeNumber": "마지막 에피소드 번호:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEpisode": "에피소드", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "이벤트:", "LabelEveryXMinutes": "매일 :", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "외부 재생기:", "LabelExtractChaptersDuringLibraryScan": "라이브러리를 검색할 때 챕터 이미지 추출", "LabelExtractChaptersDuringLibraryScanHelp": "이 옵션을 켜면 라이브러리를 검색하여 비디오를 가져올 때 챕터 이미지를 추출합니다. 옵션을 끄면 예약 작업을 통해 정기적으로 라이브러리를 검색할 때 추출합니다.", "LabelFailed": "실패", "LabelFanartApiKey": "개인 API 키:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "끝내기", "LabelFolder": "폴더:", "LabelFolderType": "폴더 종류:", - "LabelForcedStream": "(Forced)", "LabelForgotPasswordUsernameHelp": "기억하고 있다면, 사용자명을 입력하세요.", "LabelFormat": "형식:", "LabelFree": "무료", "LabelFriendlyName": "별칭", "LabelFriendlyServerName": "알기쉬운 서버 이름:", "LabelFriendlyServerNameHelp": "이 이름은 서버를 구분하는데 사용합니다. 비워두면 컴퓨터 이름을 사용합니다.", - "LabelFromHelp": "Example: {0} (on the server)", "LabelGroupMoviesIntoCollections": "컬렉션으로 영화 묶기", "LabelGroupMoviesIntoCollectionsHelp": "영화 목록을 표시할 때 컬렉션에 포함된 영화가 한 개로 묶여진 항목으로 보여줍니다.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", "LabelHardwareAccelerationType": "하드웨어 가속:", "LabelHardwareAccelerationTypeHelp": "지원하는 시스템에서만 사용할 수 있습니다.", "LabelHttpsPort": "로컬 https 포트 번호:", @@ -798,63 +586,35 @@ "LabelInNetworkSignInWithEasyPasswordHelp": "당신의 홈 네트워크 내에서 emby앱에 로그하기 위해 쉬운 PIN코드를 사용할 수 있습니다. 귀하의 일반 비밀 번호는 집 밖에서만 필요합니다. PIN코드가 공백이면 홈 네트워크 내에 암호가 필요하지 않습니다.", "LabelIpAddressValue": "IP 주소: {0}", "LabelJpgPngOnly": "JPG/PNG 만", - "LabelKidsCategories": "Children's categories:", "LabelKodiMetadataDateFormat": "출시 날짜 형식:", "LabelKodiMetadataDateFormatHelp": "nfo 파일의 모든 날짜는 이 형식을 사용하여 읽고 씁니다.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", "LabelKodiMetadataSaveImagePaths": "nfo 파일에 이미지 경로 저장", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "언어:", "LabelLastResult": "마지막 결과:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "로컬 http 포트 번호:", "LabelLocalHttpServerPortNumberHelp": "Jellyfin http 서버의 TCP 포트 번호입니다.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "로그인 고지사항", "LabelLoginDisclaimerHelp": "로그인 페이지 하단에 고지사항이 표시됩니다.", "LabelLogs": "로그:", "LabelManufacturer": "제조사", "LabelManufacturerUrl": "제작자 URL", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "항목별 최대 배경 이미지 수:", "LabelMaxBitrate": "최대 비트레이트:", "LabelMaxBitrateHelp": "대역폭이 제한된 환경에서 최대 비트 전송률을 지정하거나 기기가 자체 제한을 걸어 둘 경우 최대 비트 전송률을 지정하십시오.", "LabelMaxParentalRating": "최대 허용 연령 제한 :", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMaxScreenshotsPerItem": "항목별 최대 스크린샷 수:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "스트리밍 시 최대 비트 전송률을 지정합니다.", "LabelMessageText": "메시지 텍스트:", "LabelMessageTitle": "메시지 제목:", "LabelMetadata": "메타데이터:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "메타데이터 다운로더:", "LabelMetadataDownloadersHelp": "선호하는 메타데이터 다운로더를 우선 순위에 따라 정렬합니다. 낮은 우선 순위의 다운로더는 누락된 정보를 가져오는 데만 사용합니다.", "LabelMetadataPath": "메타데이터 경로:", "LabelMetadataPathHelp": "다운로드한 아트워크와 메타데이터를 저장할 사용자 위치를 지정합니다.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", "LabelMetadataSavers": "메타데이터 서버", "LabelMetadataSaversHelp": "메타데이터를 저장할 형식을 선택합니다.", "LabelMethod": "방법:", "LabelMinBackdropDownloadWidth": "다운로드할 배경 이미지 최소 넓이:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMinScreenshotDownloadWidth": "다운로드할 스크린샷 최소 넓이:", "LabelMissing": "빠진", "LabelModelDescription": "모델 설명", @@ -863,9 +623,6 @@ "LabelModelUrl": "모델 URL", "LabelMonitorUsers": "다음의 활동 모니터링:", "LabelMovie": "영화", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "영화 녹화 경로 (옵션):", "LabelMusicStaticBitrate": "음악 동기화 비트레이트:", "LabelMusicStaticBitrateHelp": "음악을 동기화할 때 최대 비트 전송률 지정", @@ -878,7 +635,6 @@ "LabelNewPassword": "새 비밀번호:", "LabelNewPasswordConfirm": "새 비밀번호 확인:", "LabelNewUserNameHelp": "사용자명에 알파벳 (a-z), 숫자 (0-9), 대시 (-), 밑줄 (_), apostrophes ('), 마침표 (.) 를 사용할 수 있습니다.", - "LabelNewsCategories": "News categories:", "LabelNext": "다음", "LabelNoUnreadNotifications": "읽지 않은 알림이 없습니다.", "LabelNotificationEnabled": "이 알림 사용", @@ -888,10 +644,6 @@ "LabelNumberTrailerToPlay": "재생할 예고편 수:", "LabelOpenSubtitlesPassword": "Open Subtitles 비밀번호:", "LabelOpenSubtitlesUsername": "Open Subtitles 사용자명:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "비밀번호:", "LabelPasswordConfirm": "비밀번호 (확인):", "LabelPasswordRecoveryPinCode": "PIN 코드:", @@ -901,9 +653,6 @@ "LabelPlayMethodDirectPlay": "다이렉트 재생", "LabelPlayMethodDirectStream": "다이렉트 스트리밍", "LabelPlayMethodTranscoding": "트랜스코딩", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "선호하는 화면 언어:", "LabelPreferredDisplayLanguageHelp": "Jellyfin 번역은 진행중인 프로젝트입니다.", "LabelPrevious": "이전", @@ -916,7 +665,6 @@ "LabelProfileVideoCodecs": "비디오 코덱:", "LabelProtocol": "프로토콜:", "LabelProtocolInfo": "프로토콜 정보:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "공용 http 포트 번호 :", "LabelPublicHttpPortHelp": "로컬 http 포트에 매핑 되어야 하는 공용 포트 번호입니다.", "LabelPublicHttpsPort": "공용 https 포트 번호 :", @@ -926,22 +674,14 @@ "LabelRecordingPath": "기본 재코딩 위치 :", "LabelRecordingPathHelp": "녹화를 저장할 기본 위치를 지정합니다. 비어 있는 경우 서버의 프로그램 데이터 폴더가 사용됩니다.", "LabelReleaseDate": "개봉일:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "인터넷 스트리밍 비트레이트 제한 (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "결과 :", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "LabelRunningTimeValue": "상영 시간: {0}", "LabelRuntimeMinutes": "상영 시간 (분):", "LabelSaveLocalMetadata": "아트워크와 메타데이터를 미디어 폴더에 저장", "LabelSaveLocalMetadataHelp": "아트웍 및 메타 데이터를 미디어 폴더에 직접 저장하면 쉽게 편집 할 수 있는 장소에 보관됩니다.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "시즌 폴더 패턴:", - "LabelSeasonNumber": "Season number:", "LabelSeasonZeroFolderName": "시즌 0 폴더 이름:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "인터넷 예고편:", "LabelSelectUsers": "사용자 선택:", "LabelSelectVersionToInstall": "설치할 버전 선택:", @@ -952,23 +692,12 @@ "LabelServerHost": "호스트:", "LabelServerHostHelp": "192.168.1.100 또는 https://myserver.com", "LabelServerPort": "포트:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "오디오 트랙이 다운로드 언어와 일치하면 건너뛰기", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "건너뜀", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", "LabelSource": "소스:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", "LabelStartWhenPossible": "시작 가능할 때 :", "LabelStatus": "상태:", "LabelStopWhenPossible": "정지 가능할 때 :", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "자막 언어 설정:", "LabelSubtitlePlaybackMode": "자막 모드:", "LabelSupportedMediaTypes": "지원하는 미디어 종류:", @@ -976,7 +705,6 @@ "LabelSyncTempPath": "임시 파일 경로:", "LabelSyncTempPathHelp": "사용자 동기화 작업 폴더를 지정합니다. 동기화 과정에서 만들어진 변환된 미디어가 여기에 저장됩니다.", "LabelTag": "태그:", - "LabelTheme": "Theme:", "LabelTime": "시각:", "LabelTimeLimitHours": "시간 제한 (시간):", "LabelTranscodingAudioCodec": "오디오 코덱:", @@ -984,15 +712,10 @@ "LabelTranscodingTempPath": "임시 트랜스코딩 경로:", "LabelTranscodingTempPathHelp": "트랜스코더가 사용하는 작업 파일을 보관하는 폴더입니다. 사용자 경로를 지정하거나 서버의 데이터 폴더를 기본으로 사용하려면 비워둡니다.", "LabelTranscodingTemporaryFiles": "트랜스코딩 임시 파일:", - "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.", "LabelTranscodingVideoCodec": "비디오 코덱:", - "LabelTransferMethod": "Transfer method", "LabelTriggerType": "트리거 종류:", "LabelTunerIpAddress": "튜너 IP 주소", "LabelTunerType": "튜너 종류:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "텍스트", "LabelUnairedMissingEpisodesWithinSeasons": "각 시즌의 방송되지 않은 에피소드 표시", "LabelUnknownLanguage": "알 수 없는 언어", @@ -1000,51 +723,27 @@ "LabelUrl": "URL:", "LabelUseNotificationServices": "다음 장치 사용:", "LabelUser": "사용자:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "사용자 라이브러리:", "LabelUserLibraryHelp": "장치에 어떤 사용자 라이브러리를 보여줄 지 선택합니다. 기본 설정을 사용하려면 비워둡니다.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "사용자명:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", "LabelVersionInstalled": "{0} 설치됨", "LabelVersionNumber": "버전 {0}", "LabelVersionUpToDate": "최신 상태입니다!", "LabelVideoCodec": "비디오: {0}", "LabelVideoType": "비디오 종류:", "LabelView": "보기 :", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "이름:", "LabelYoureDone": "완료!", "LabelZipCode": "우편 번호:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "이 사용자와 공유할 폴더를 선택합니다. 관리자는 메타데이터 매니저를 사용하여 모든 폴더를 수정할 수 있습니다.", "LinkApi": "API", "LinkCommunity": "커뮤니티", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Jellyfin 프리미어 알아보기", "LiveTvUpdateAvailable": "(업데이트 사용 가능)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "더 높은 연령 등급의 콘텐츠가 이 사용자에게 표지 되지 않습니다.", - "MediaInfoAltitude": "Altitude", "MediaInfoAnamorphic": "아나몰픽", "MediaInfoAperture": "조리개", "MediaInfoAspectRatio": "화면비", - "MediaInfoBitDepth": "Bit depth", "MediaInfoBitrate": "비트레이트", "MediaInfoCameraMake": "카메라 제조사", "MediaInfoCameraModel": "카메라 모델", @@ -1055,34 +754,22 @@ "MediaInfoDefault": "기본", "MediaInfoExposureTime": "노출 시간", "MediaInfoExternal": "외부", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", "MediaInfoFormat": "형식", "MediaInfoFramerate": "프레임 레이트", "MediaInfoInterlaced": "인터레이스", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "언어", - "MediaInfoLatitude": "Latitude", "MediaInfoLayout": "레이아웃", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "경로", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "프로파일", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "해상도", "MediaInfoSampleRate": "샘플 레이트", "MediaInfoShutterSpeed": "셔터 속도", - "MediaInfoSize": "Size", "MediaInfoSoftware": "소프트웨어", "MediaInfoStreamTypeAudio": "오디오", "MediaInfoStreamTypeData": "날짜", "MediaInfoStreamTypeEmbeddedImage": "내장 이미지", "MediaInfoStreamTypeSubtitle": "자막", "MediaInfoStreamTypeVideo": "비디오", - "MediaInfoTimestamp": "Timestamp", "MessageAlreadyInstalled": "이 버전은 이미 설치되어 있습니다.", "MessageApplicationUpdated": "Jellyfin 서버 업데이트됨", "MessageAreYouSureYouWishToRemoveMediaFolder": "미디어 폴더를 제거하겠습니까?", @@ -1092,23 +779,15 @@ "MessageConfirmRemoveMediaLocation": "이 미디어 위치를 제거하겠습니까?", "MessageConfirmResetTuner": "이 튜너를 초기화하겠습니까? 동작 중인 플레이어 또는 녹화가 예고없이 중지될 수 있습니다.", "MessageConfirmRestart": "Jellyfin 서버를 다시 시작하겠습니까?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", "MessageConfirmShutdown": "Jellyfin 서버를 종료하겠습니까?", "MessageConfirmSplitMedia": "미디어 소스를 각각의 항목으로 분리하겠습니까?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "손님을 초대하려면 먼저 귀하의 Jellyfin 계정을 이 서버에 연결하여야 합니다.", "MessageContactAdminToResetPassword": "비밀번호를 초기화하려면 시스템 관리자에게 문의하세요.", - "MessageCreateAccountAt": "Create an account at {0}", "MessageDeleteTaskTrigger": "이 작업 트리거를 삭제하겠습니까?", "MessageDestinationTo": "이동 위치:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", "MessageEnablingOptionLongerScans": "이 옵션을 사용하면 라이브러리 스캔이 상당히 길어질 수 있습니다.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", "MessageErrorLoadingSupporterInfo": "Jellyfin 프리미어 정보를 가져오기에 오류가 발생하였습니다. 다시 시도해 주세요.", "MessageErrorPlayingVideo": "비디오 재생에 오류가 있습니다.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", "MessageFileNotFound": "파일을 찾을 수 없습니다.", "MessageFileReadError": "이 파일을 읽는 데 오류가 발생하였습니다.", "MessageFileWillBeDeleted": "다음 파일을 삭제합니다:", @@ -1118,23 +797,17 @@ "MessageForgotPasswordInNetworkRequired": "비밀번호 초기화를 진행하려면 귀하의 홈 네트워크에서 다시 시도하세요.", "MessageGamePluginRequired": "GameBrowser 플러그인 설치 필요", "MessageGuestSharingPermissionsHelp": "손님 계정의 초기 설정은 대부분의 기능을 사용할 수 없지만 필요한 경우 사용할 수 있게 켤 수 있습니다.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInvalidForgotPasswordPin": "올바르지 않거나 만료된 PIN 코드입니다. 다시 시도하세요.", "MessageInvalidUser": "올바르지 않은 사용자명 또는 비밀번호입니다. 다시 시도하세요.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "항목이 저장되었습니다.", "MessageItemsAdded": "항목 추가됨", "MessageJellyfinAccontRemoved": "이 사용자의 Jellyfin 계정이 제거되었습니다.", "MessageJellyfinAccountAdded": "이 사용자에게 Jellyfin 계정이 추가되었습니다.", "MessageLoggedOutParentalControl": "접근이 제한되었습니다. 다시 시도하세요.", "MessageNamedServerConfigurationUpdatedWithValue": "서버 환경 설정 {0} 섹션 업데이트 됨", - "MessageNoAvailablePlugins": "No available plugins.", "MessageNoCollectionsAvailable": "컬렉션을 사용하면 개인화된 영화, 시리즈, 앨범, 책, 게임 묶음을 사용할 수 있습니다. + 버튼을 클릭하여 컬렉션을 생성할 수 있습니다.", "MessageNoMovieSuggestionsAvailable": "현재 추천 영화를 사용할 수 없습니다. 영화 보기를 시작하고 평가를 하면 추천을 볼 수 있습니다.", "MessageNoPlaylistItemsAvailable": "이 재생목록은 비어 있습니다.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", "MessageNoPluginsInstalled": "설치된 플러그인이 없습니다.", "MessageNoServersAvailableToConnect": "연결할 수 있는 서버가 없습니다. 공유 서버에 초대를 받았다면 아래에서 승인을 확인하거나 이메일의 링크를 클릭하세요.", "MessageNoServicesInstalled": "현재 설치된 서비스가 없습니다.", @@ -1146,53 +819,22 @@ "MessagePleaseEnsureInternetMetadata": "인터넷 메타데이터 다운로드가 켜져 있는지 확인하세요.", "MessagePleaseRestart": "업데이트를 마치려면 다시 시작하세요.", "MessagePleaseRestartServerToFinishUpdating": "업데이트 적용을 마치려면 서버를 다시 시작하세요.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", "MessagePluginRequiresSubscription": "이 플러그인은 14일 무료 평가판을 사용한 후 Jellyfin Premiere 구독을 필요로 합니다.", "MessagePremiumPluginRequiresMembership": "이 플러그인은 14일 무료 평가판을 사용한 후 Jellyfin Premiere 구입을 위한 예약 필요로 합니다.", - "MessageReenableUser": "See below to reenable", "MessageServerConfigurationUpdated": "서버 환경 설정 업데이드됨", "MessageSettingsSaved": "설정이 저장되었습니다.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", "MessageTrialExpired": "이 기능의 시험 사용 기간이 만료되었습니다", "MessageTrialWillExpireIn": "이 기능의 시험 사용 기간이 {0} 일 안에 만료됩니다", "MessageTunerDeviceNotListed": "튜너 장치가 리스트에 없습니까? 더 많은 TV 방송 옵션을 위해 외부 서비스 제공자를 설치하세요.", "MessageUnableToConnectToServer": "선택한 서버에 연결할 수 없습니다. 서버가 실행 중인지 확인후 다시 시도하세요.", "MessageUnsetContentHelp": "콘텐트가 일반 폴더로 표시됩니다. 최상의 결과를 위해 메타데이터 관리자를 사용하여 하위 폴더의 콘텐트 종류를 설정하세요.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "몇 분 후에", "MinutesBefore": "몇 분 전에", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "나중에 대시보드에서 사용자를 더 추가할 수 있습니다.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "음소거", - "Never": "Never", "NewVersionOfSomethingAvailable": "{0} 의 새 버전을 사용할 수 있습니다!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "아무도 찾지 못했어요. 여러분의 쇼를 보기 시작하세요!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "설치한 플러그인이 없습니다.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "배우", "OptionActors": "배우", "OptionAdminUsers": "관리자", @@ -1208,14 +850,11 @@ "OptionAllowLinkSharingHelp": "미디어 정보가 들어 있는 웹 페이지만 공유됩니다. 미디어 파일은 공개적으로 공유되지 않습니다. 공유 시간은 제한 시간이며 {0}일 후에 만료됩니다.", "OptionAllowManageLiveTv": "TV 방송 녹화 관리 허용", "OptionAllowMediaPlayback": "미디어 재생 허용", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "가른 사용자 원격 제어 허용", "OptionAllowRemoteSharedDevices": "공유 기기 원격 제어 허용", "OptionAllowRemoteSharedDevicesHelp": "사용자가 제어를 시작할 때까지 DLNA기기가 공유된 것으로 간주됩니다.", "OptionAllowSyncContent": "동기화 허용", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "이 사용자에게 이 서버의 관리를 허용합니다", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", "OptionAllowVideoPlaybackTranscoding": "트랜스코딩이 필요한 비디오 재생 허용", "OptionAnyNumberOfPlayers": "언제나", "OptionArt": "아트", @@ -1223,13 +862,10 @@ "OptionAscending": "오름차순", "OptionAuto": "자동", "OptionAutomatic": "자동", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "배경", "OptionBackdropSlideshow": "배경 슬라이드 쇼", "OptionBackdrops": "배경", "OptionBanner": "배너", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "베타", "OptionBirthLocation": "출생지", "OptionBlockBooks": "책", @@ -1239,7 +875,6 @@ "OptionBlockLiveTvPrograms": "TV 방송 프로그램", "OptionBlockMovies": "영화", "OptionBlockMusic": "음악", - "OptionBlockOthers": "Others", "OptionBlockTrailers": "예고편", "OptionBlockTvShows": "TV 쇼", "OptionBluray": "블루레이", @@ -1252,10 +887,6 @@ "OptionComposer": "작곡가", "OptionComposers": "작곡가", "OptionContinuing": "계속하기", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Critic 평점", "OptionCustomUsers": "고객", "OptionDaily": "매일", @@ -1273,17 +904,12 @@ "OptionDisc": "디스크", "OptionDislikes": "싫어함", "OptionDisplayAdultContent": "성인 콘텐트 표시", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", "OptionDisplayFolderViewHelp": "사용하도록 설정된 경우 Jellyfin앱은 미디어 라이브러리 옆에 폴더 카테고리를 표시합니다. 이는 일반적인 폴더 보기를 원하는 경우에 유용합니다.", "OptionDownloadArtImage": "아트", "OptionDownloadBackImage": "배경", "OptionDownloadBannerImage": "배너", "OptionDownloadBoxImage": "박스", "OptionDownloadDiscImage": "디스크", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "로고", "OptionDownloadMenuImage": "메뉴", "OptionDownloadPrimaryImage": "기본적인", @@ -1294,27 +920,18 @@ "OptionEnableAccessToAllChannels": "모든 채널에 접속 허용", "OptionEnableAccessToAllLibraries": "모든 라이브러리에 접속 허용", "OptionEnableAutomaticServerUpdates": "서버 자동 업데이트 사용", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", "OptionEnableExternalVideoPlayers": "외부 비디오 플레이어 사용", - "OptionEnableForAllTuners": "Enable for all tuner devices", "OptionEnableFullSpeedConversion": "최대 변환 속도 사용", "OptionEnableFullSpeedConversionHelp": "기본값은 리소스 사용을 최소화하기 위하여 최저 속도로 동기화 변환을 수행합니다.", "OptionEnableFullscreen": "전체 화면 사용", "OptionEnableM2tsMode": "M2ts 모드 사용", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "OptionEnableTranscodingThrottle": "throttling 사용", "OptionEnableTranscodingThrottleHelp": "throttling 은 재생하는 동안 서버 CPU 사용률을 최소화하기 위하여 자동으로 트랜스코딩 속도를 조절합니다.", "OptionEnded": "종료됨", "OptionEpisodeSortName": "에피소드 정렬 제목", "OptionEpisodes": "에피소드", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionEveryday": "매일", "OptionExternallyDownloaded": "외부 다운로드", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "즐겨찾기", "OptionFolderSort": "폴더", "OptionFriday": "금요일", @@ -1331,15 +948,11 @@ "OptionHideUser": "로그인 화면에서 이 사용자 숨김", "OptionHideUserFromLoginHelp": "비공개 또는 숨김 관리자 계정에 유용합니다. 사용자는 수동으로 사용자명과 비밀번호를 입력하여 로그인 하여야 합니다.", "OptionHlsSegmentedSubtitles": "HLS 분활된 자막", - "OptionHomeVideos": "Home videos & photos", "OptionIcon": "아이콘", "OptionIgnoreTranscodeByteRangeRequests": "트랜스코드 바이트 범위 요청 무시", "OptionIgnoreTranscodeByteRangeRequestsHelp": "활성화된 경우 이러한 요청은 존중되지만 바이트 헤더 범위는 무시됩니다.", "OptionImages": "이미지", "OptionImdbRating": "IMDb 평점", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "키워드", "OptionLatestChannelMedia": "최근 채널 항목", @@ -1365,17 +978,13 @@ "OptionMusicAlbums": "음악 앨범", "OptionMusicArtists": "음악 아티스트", "OptionMusicVideos": "뮤직 비디오", - "OptionName": "Name", "OptionNameSort": "제목", "OptionNo": "아니오", "OptionNoTrailer": "예고편 없음", "OptionNone": "없음", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "애플리케이션 시작할 때", "OptionOnInterval": "기간", "OptionOtherApps": "다른 앱", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "기타 비디오", "OptionOthers": "기타", "OptionOverview": "줄거리", @@ -1399,26 +1008,18 @@ "OptionProfileVideo": "비디오", "OptionProfileVideoAudio": "비디오 오디오", "OptionProtocolHls": "http 생방송", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "항상 기록", "OptionRecordOnAllChannels": "모든 채널 녹화", "OptionRecordOnlyNewEpisodes": "새 에피소드만 녹화", "OptionRecordSeries": "시리즈 녹화", - "OptionRegex": "Regex", "OptionRelease": "공식 릴리즈", "OptionReleaseDate": "개봉일", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", "OptionResElement": "res 요소", "OptionResumable": "이어보기", - "OptionResumablemedia": "Resume", "OptionRuntime": "상영 시간", "OptionSaturday": "토요일", "OptionSaturdayShort": "토", "OptionSaveMetadataAsHidden": "메타데이터와 이미지를 숨김 파일로 저장", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "스크린샷", "OptionSeason0": "시즌 0", "OptionSeasons": "시즌", @@ -1427,7 +1028,6 @@ "OptionSortName": "정렬 제목", "OptionSpecialEpisode": "스페셜", "OptionStudios": "스튜디오", - "OptionSubstring": "Substring", "OptionSunday": "대기", "OptionSundayShort": "일", "OptionSyncLosslessAudioOriginal": "원본 품질의 무손실 오디오 동기화", @@ -1463,7 +1063,6 @@ "OptionWeekly": "주", "OptionWriters": "작가", "OptionYes": "예", - "OriginalAirDateValue": "Original air date: {0}", "Password": "비밀번호", "PasswordMatchError": "비밀번호와 비밀번호 확인이 일치하여야 합니다.", "PasswordResetComplete": "비밀번호가 초기화되었습니다.", @@ -1475,67 +1074,26 @@ "PinCodeResetComplete": "PIN 코드가 초기화되었습니다.", "PinCodeResetConfirmation": "PIN 코드를 초기화하겠습니까?", "PlayOnAnotherDevice": "다른 기기에서 재생", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} 설치됨", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} 설치 제거됨", "PluginUpdatedWithName": "{0} 업데이트됨", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", "ProviderValue": "제공자: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "{0} 을(를) 좋아하기 때문에", "RecommendationBecauseYouWatched": "{0} 을(를) 시청하였기 때문에", "RecommendationDirectedBy": "{0} 감독", "RecommendationStarring": "{0} 출연", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "PayPal로 등록하기", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "되감기", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", "SelectCameraUploadServers": "카메러 사진을 다음 서버에 업로드:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "설정", "SettingsSaved": "설정이 저장되었습니다.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", "Standard": "표준", "StatusRecording": "녹화", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "자막", - "Sync": "Sync", "SyncMedia": "미디어 동기화", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", "SystemDlnaProfilesHelp": "시스템 프로파일은 읽기 전용입니다. 시스템 프로파일로 변경하면 새 사용자 프로파일로 저장됩니다.", "TabAbout": "약", "TabAccess": "접속", - "TabActivity": "Activity", "TabAdvanced": "고급", "TabAlbumArtists": "앨범 아티스트", "TabAlbums": "앨범", @@ -1554,14 +1112,11 @@ "TabCollections": "컬렉션", "TabContainers": "컨테이너", "TabControls": "컨트롤", - "TabDLNA": "DLNA", "TabDashboard": "대시보드", "TabDevices": "기기", "TabDirectPlay": "다이렉트 재생", "TabDisplay": "화면", "TabEpisodes": "에피소드", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "즐겨찾기", "TabFilter": "필터", "TabFolders": "폴더", @@ -1590,8 +1145,6 @@ "TabMyPlugins": "내 플러그인", "TabNavigation": "탐색", "TabNetworks": "네트워크", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "알림", "TabNowPlaying": "지금 재생 중", "TabOther": "기타", @@ -1608,7 +1161,6 @@ "TabProfiles": "프로필", "TabRecordings": "녹화", "TabResponses": "회신", - "TabResumeSettings": "Resume Settings", "TabScenes": "장면", "TabScheduledTasks": "예약 작업", "TabSecurity": "보안", @@ -1624,21 +1176,16 @@ "TabSuggestions": "추천", "TabSync": "동기화", "TabSyncJobs": "작업 동기화", - "TabTV": "TV", "TabTrailers": "예고편", "TabTranscoding": "트랜스코딩", "TabUpcoming": "방송 예정", "TabUsers": "사용자", "TabView": "보기", "TellUsAboutYourself": "귀하에 대해 알려 주세요", - "TermsOfUse": "Terms of use", "TextConnectToServerManually": "수동으로 서버 접속", "TextEnjoyBonusFeatures": "보너스 기능을 즐기세요", - "Themes": "Themes", "ThisWizardWillGuideYou": "이 마법사는 설정 과정을 안내합니다. 시작하려면 선호하는 언어를 선택하세요.", "TitleDevices": "장치", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "TV 방송", "TitleNewUser": "새 사용자", "TitleNotifications": "알림", @@ -1652,31 +1199,24 @@ "TitleSupport": "지원", "TitleSync": "동기화", "TitleUsers": "사용자", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "{0} 을(를) 설치 제거하겠습니까?", "UninstallPluginHeader": "플러그인 설치 제거", "Unmute": "음소거취소", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin는 각 사용자별 화면 설정, 재생 상태, 자녀보호 사용을 지원하는 사용자 프로파일을 기본 지원합니다.", "Users": "사용자", "ValueAlbumCount": "{0} 앨범", "ValueArtist": "아티스트: {0}", "ValueArtists": "아티스트: {0}", - "ValueAsRole": "as {0}", "ValueAudioCodec": "오디오 코덱: {0}", - "ValueAwards": "Awards: {0}", "ValueCodec": "코덱: {0}", "ValueConditions": "조건: {0}", "ValueContainer": "컨테이너: {0}", "ValueDateCreated": "생성 날짜: {0}", "ValueDiscNumber": "디스크 {0}", "ValueEpisodeCount": "{0} 에피소드", - "ValueExample": "Example: {0}", "ValueGameCount": "{0} 게임", - "ValueGuestStar": "Guest star", "ValueItemCount": "{0} 항목", "ValueItemCountPlural": "{0} 항목", - "ValueLinks": "Links: {0}", "ValueMinutes": "{0} 분", "ValueMovieCount": "{0} 영화", "ValueMusicVideoCount": "{0} 뮤직 비디오", @@ -1688,13 +1228,9 @@ "ValueOneSeries": "1 시리즈", "ValueOneSong": "1 노래", "ValueOneTrailer": "1 예고편", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", "ValuePriceUSD": "가격: {0} (USD)", "ValueSeriesCount": "{0} 시리즈", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} 노래", - "ValueStatus": "Status: {0}", "ValueStudio": "스튜디오: {0}", "ValueStudios": "스튜디오: {0}", "ValueTimeLimitMultiHour": "시간 제한: {0} 시간", @@ -1702,7 +1238,6 @@ "ValueTrailerCount": "{0} 예고편", "ValueVideoCodec": "비디오 코덱: {0}", "VersionNumber": "버전 {0}", - "ViewPlaybackInfo": "View playback info", "ViewTypeFolders": "폴더", "ViewTypeGames": "게임", "ViewTypeLiveTvChannels": "채널", @@ -1714,15 +1249,6 @@ "ViewTypeMusicFavoriteSongs": "좋아하는 노래", "ViewTypeMusicFavorites": "즐겨찾기", "ViewTypeMusicSongs": "노래", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Jellyfin에 오신 것을 환영합니다!", - "Whitelist": "Whitelist", "WizardCompleted": "지금 필요한 것은 이것이 전부입니다. Jellyfin가 귀하의 미디어 라이브러리 정보를 모으기 시작했습니다. 우리의 다른 앱을 확인해 보세요. 서버 대시보드를 보려면 끝내기를 클릭하세요.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/lt-LT.json b/src/strings/lt-LT.json index 64fb043c8a..9256a10cd6 100644 --- a/src/strings/lt-LT.json +++ b/src/strings/lt-LT.json @@ -1,231 +1,65 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "Naršykite įskiepių katalogą ir įsidiekite papildomų pranešimų paslaugų.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", "ButtonAdd": "Pridėti", - "ButtonAddMediaLibrary": "Add Media Library", "ButtonAddScheduledTaskTrigger": "Pridėti jungiklį", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Pridėt vartotoją", "ButtonArrowDown": "Žemyn", "ButtonArrowLeft": "Kairėn", "ButtonArrowRight": "Dešinėn", "ButtonArrowUp": "Aukštyn", - "ButtonAudioTracks": "Audio Tracks", "ButtonBack": "Atgal", "ButtonCancel": "Atšaukti", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Konfigūruoti pin kodą", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Konvertuoti mediją", "ButtonCreate": "Sukurti", "ButtonDelete": "Ištrinti", "ButtonDeleteImage": "Trinti paveikslus", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "Redaguoti", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Išeiti", "ButtonFilter": "Filtras", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", "ButtonHelp": "Pagalba", - "ButtonHide": "Hide", "ButtonHome": "Namai", - "ButtonInfo": "Info", "ButtonInviteUser": "Kviesti vartotoją", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", "ButtonManualLogin": "Rankinis prisijungimas", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Naujas", - "ButtonNewServer": "New Server", "ButtonNext": "Kitas", - "ButtonNextPage": "Next Page", "ButtonNextTrack": "Kitas takelis", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "OK", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", "ButtonPause": "Pauzė", "ButtonPlay": "Leisti", "ButtonPlayTrailer": "Anonsas", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", "ButtonPrevious": "Ankstesnis", - "ButtonPreviousPage": "Previous Page", "ButtonPreviousTrack": "Ankstesnis takelis", "ButtonPrivacyPolicy": "Privatumo politika", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Greitos pradžios gidas", "ButtonRecord": "Įrašyti", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Atnaujinti", "ButtonRefreshGuideData": "Atnaujinti gido duomenis", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "Pašalinti", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Atstatyti slaptažodį", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Saugoti", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "Skenuoti biblioteką", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "Paieška", "ButtonSelect": "Rinktis", "ButtonSelectDirectory": "Rinktis direktoriją", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", "ButtonSettings": "Nustatymai", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", "ButtonSignIn": "Prisijungti", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Rūšiuoti", "ButtonSplitVersionsApart": "Išskirti versijas", - "ButtonStart": "Start", "ButtonStop": "Stabdyti", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Pateikti", "ButtonSubtitles": "Subtitrai", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "Siųsti", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", "CategoryApplication": "Programėlė", "CategoryPlugin": "Įskiepis", "CategorySync": "Sinchron.", "CategorySystem": "Sistema", "CategoryUser": "Vartotojas", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Pasirinkite kanalus, kuriuos norite dalintis su šiuo vartotoju. Administratoriai galės redaguoti visus kanalus per metaduomenų valdymą.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Sukurti kitą profilį naujam įrenginiui ar pakeisti sistemos profilį.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Tai taikoma tik įrenginiams, kurie gali būti identifikuojami, ir neuždraus prieigos per naršyklę. Vartotojo įrenginio prieigos filtravimas neleis jiems naudotis naujais įrenginiais kol jie nepatvirtinti čia.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", "ExtractChapterImagesHelp": "Skyrių paveikslų išskyrimas padės Jellyfin programėlėms rodyti vaizdingus scenų pasirinkimo meniu. Procesas gana lėtas, naudoja daug procesoriaus pajėgumų ir gigabaitus vietos. Jis vyksta atradus video, taip pat numatytas naktimis. Tvarkaraštį galima keisti numatytų užduočių skyriuje. Nerekomenduojama vykdyti šios užduoties pikinio vartojimo valandomis.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Knygos", "FolderTypeGames": "Žaidimai", "FolderTypeInherit": "Paveldėti", @@ -235,621 +69,147 @@ "FolderTypeMusicVideos": "Muzikos klipai", "FolderTypePhotos": "Nuotraukos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "Aktyvūs įrenginiai", "HeaderActiveRecordings": "Aktyvūs įrašai", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Pridėti jungiklį", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "Pridėti pavadinimus", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Pridėt vartotoją", "HeaderAdditionalParts": "Papildomos dalys", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", "HeaderAirDays": "Eterio dienos", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Visi įrašai", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Garsas", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Automatiniai atnaujinimai", "HeaderAvailableServices": "Galimos paslaugos", "HeaderAwardsAndReviews": "Apdovanojimai ir apžvalgos", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "Kūrėjai", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Kanalai", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", "HeaderClients": "Klientai", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Kolekcijos", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Žiūrėti toliau", "HeaderCreatePassword": "Sukurti slaptažodį", "HeaderCredits": "Titrai", "HeaderCustomDlnaProfiles": "Kiti profiliai", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Data", - "HeaderDateIssued": "Date Issued", "HeaderDays": "Dienos", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Tikslas", "HeaderDetails": "Daugiau info", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Įrenginio prieiga", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Lengvas Pin kodas", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Prieiga prie funkcijų", - "HeaderFeatures": "Features", "HeaderFetchImages": "Gauti nuotraukas:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtrai", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Dažnai leidžiama", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", "HeaderIdentificationCriteriaHelp": "Įveskite bent vieną identifikavimo kriterijų.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Vaizdų nustatymai", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Įdiegtos paslaugos", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Vėliausi albumai", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Vėliausios serijos", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", "HeaderLatestMedia": "Naujausia medija", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", "HeaderLatestRecordings": "Naujausi įrašai", "HeaderLatestSongs": "Vėliausios dainos", "HeaderLatestTrailers": "Vėliausi anonsai", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "Nuorodos", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Valdymas", - "HeaderMedia": "Media", "HeaderMediaFolders": "Medijos aplankai", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", "HeaderMoreLikeThis": "Daugiau panašių", - "HeaderMovies": "Movies", "HeaderMusicVideos": "Muzikiniai klipai", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", "HeaderName": "Vardas", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "Toliau eilėje", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Dabar rodoma", "HeaderNumberOfPlayers": "Žaidėjų", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Keliai", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Asmenų tipai:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Atkūrimo nustatymai", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "Prašau prisijungti", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Pageidaujama metaduomenų kalba", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", "HeaderProgram": "Programa", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Nesenai paleista", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Nuotolinis valdymas", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", "HeaderResult": "Rezultatas", "HeaderResume": "Tęsti", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", "HeaderRunningTasks": "Veikiančios užduotys", - "HeaderRuntime": "Runtime", "HeaderScenes": "Scenos", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", "HeaderServices": "Paslaugos", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "Tvarkyti medijos biblioteką", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "Šaltinis", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "Ypatingos serijos", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Būklė", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", "HeaderSupportTheTeam": "Paremkite Jellyfin Komandą", "HeaderSync": "SInchron.", "HeaderSyncJobInfo": "Sinchron. darbas", "HeaderSystemDlnaProfiles": "Sistemos profilis", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Užduočių trigeris", "HeaderTermsOfService": "Jellyfin Naudojimo sąlygos", "HeaderThemeSongs": "Teminės dainos", "HeaderThemeVideos": "Teminiai video", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Prašome įvesti savo lengvą pin kodą.", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", "HeaderTvTuners": "Tiuneriai", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Siųsti naują paveikslą", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Vartotojai", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Rekomenduojamas 1:1 santykis. Tik JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Pridedant vartotoją, kurio nėra, reikia pirma susieti jo paskyrą su Jellyfin Connect jo profilio puslapyje.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Leisti serveriui automatiškai persikrauti pritaikant atnaujinimus", "LabelAllowServerAutoRestartHelp": "Serveris persikraus tik nieko neveikimo metu, kai nebus aktyvus nei vienas vartotojas.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Atlikėjai:", "LabelArtistsHelp": "Atskirti kelis naudojant:", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Garso kalbos pageidavimas:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "Galimi tokenai:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Kelias į atmintinę:", "LabelCachePathHelp": "Nurodykite vietą serverio atmintinei failams, pvz. paveikslams. Palikite tuščią kad būtų naudojama įprasta vieta.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", "LabelCompleted": "Baigta", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Konfigūruoti nustatymus", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Turinio tipas:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Šalis:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Dabartinis slaptažodis", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "Kitoks CSS:", "LabelCustomCssHelp": "Pritaikykite tinklapio išvaizdai savo CSS.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "Keisti medijos tipui:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Diena:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Įrenginio aprašymas", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Rodyti sezonuose trūkstamas serijas", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Atsisiųsti iš interneto iliustracijas ir metaduomenis", "LabelDownloadInternetMetadataHelp": "Jellyfin Serveris gali atsisiųsti informaciją apie Jūsų mediją ir sukurti turiningus pristatymus.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Įjungti automatinį portų išdėstymą", "LabelEnableAutomaticPortMapHelp": "Pabandyti automatiškai susieti viešus portus su vietiniais portais per UPnP. Tai gali neveikti su kai kuriais maršrutizatoriais.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", "LabelEnableDlnaClientDiscoveryInterval": "Kliento atradimo intervalas (sekundės)", "LabelEnableDlnaClientDiscoveryIntervalHelp": "Nustato laiką sekundėmis, kas kiek laiko Jellyfin vykdys SSDP paieškas.", "LabelEnableDlnaDebugLogging": "Įjungti DLNA loginimą", "LabelEnableDlnaDebugLoggingHelp": "Tai sukurs didelius log failus ir turėtų būti naudojama tik problemų sprendimų metu.", "LabelEnableDlnaPlayTo": "Įjungti DLNA", "LabelEnableDlnaPlayToHelp": "Jellyfin gali nustatyti įrenginius Jūsų tinkle ir pasiūlyti nuotolinį jų valdymą.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "Įjungti stebėjimą realiu laiku", "LabelEnableRealtimeMonitorHelp": "Pokyčiai bus apdoroti iš karto (palaikomose failų sistemose).", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", "LabelEndingEpisodeNumber": "Paskutinės serijos numeris:", "LabelEndingEpisodeNumberHelp": "Reikalinga tik kelių serijų failams", - "LabelEpisode": "Episode", "LabelEpisodeNumber": "Serijos numeris:", "LabelEvent": "Įvykis:", "LabelEveryXMinutes": "Kas:", "LabelExternalDDNS": "Išorinis domenas:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "Nepavyko", "LabelFanartApiKey": "Asmeninis api raktas", "LabelFanartApiKeyHelp": "Fanų meno užklausos be asmeninio API rakto pateiks paveikslus, kurie buvo patvirtinti seniau nei prieš 7 dienas. Su asmeniniu API raktu šis laikas sumažėja iki 48 valandų, o jei esate fanų meno VIP narys, šis laikas dar sumažės iki maždaug 10 minučių.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Baigti", - "LabelFolder": "Folder:", "LabelFolderType": "Aplanko tipas:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", "LabelFriendlyName": "Draugiškas pavadinimas", "LabelFriendlyServerName": "Draugiškas serverio pavadinimas:", "LabelFriendlyServerNameHelp": "Šis pavadinimas bus naudojamas serverio identifikavimui. Palikus tuščią bus naudojamas kompiuterio pavadinimas.", - "LabelFromHelp": "Example: {0} (on the server)", "LabelGroupMoviesIntoCollections": "Grupuoti filmus į kolekcijas", "LabelGroupMoviesIntoCollectionsHelp": "Rodant filmų sąrašą filmai iš kolekcijos bus rodomi kaip vienas elementas.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHttpsPort": "Vietinis HTTPS porto numeris:", "LabelHttpsPortHelp": "TCP porto numeris, kurį turėtų naudoti Jellyfin HTTPS serveris.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Kalba:", "LabelLastResult": "Paskutinis rezultatas:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Vietinis HTTP porto numeris:", "LabelLocalHttpServerPortNumberHelp": "TCP porto numeris, kurį turėtų naudoti Jellyfin HTTP serveris.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", "LabelManufacturer": "Gamintojas", "LabelManufacturerUrl": "Gamintojo adresas", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Maksimalus fonų kiekis elementui:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Didžiausias leistinas tėvų reitingas:", "LabelMaxResumePercentage": "Didžiausias pratęsimo procentas:", "LabelMaxResumePercentageHelp": "Gailai laikomi peržiūrėti, jei sustabdoma vėliau šio laiko", "LabelMaxScreenshotsPerItem": "Maksimalus ekrano nuotraukų kiekis elementui:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Metaduomenų kelias:", "LabelMetadataPathHelp": "Nurodykite savo vietą atsisiųstiems paveikslams ir metaduomenims.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "Minimalus fono atsiuntimo plotis:", "LabelMinResumeDuration": "Mažiausia pratęsimo trukmė (sek.):", "LabelMinResumeDurationHelp": "Trumpesnių failų pratęsti nebus įmanoma", @@ -861,467 +221,115 @@ "LabelModelName": "Modelio pavadinimas", "LabelModelNumber": "Modelio numeris", "LabelModelUrl": "Modelio adresas", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Filmų įrašų vieta (nebūtina):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "Vardas:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Naujas slaptažodis:", "LabelNewPasswordConfirm": "Naujas slaptažodis (pakartokite):", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Kitas", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", "LabelNumberOfGuideDays": "Kiek dienų gido duomenų atsisiųsti:", "LabelNumberOfGuideDaysHelp": "Atsiuntus daugiau gido duomenų dienų bus galima toliau numatyti tvarkaraštį, tačiau tai užtruks ilgiau. Auto parinks dienų skaičių pagal kanalų kiekį.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Slaptažodis:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Pin kodas:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Pageidaujama rodymo kalba:", "LabelPreferredDisplayLanguageHelp": "Jellyfin vertimas yra besitęsiantis projektas.", "LabelPrevious": "Ankstesnis", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Atskirta kableliais. Palikus tuščią bus pritaikyta visiems kodekams.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Atskirta kableliais. Palikus tuščią bus pritaikyta visiems konteineriams.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Viešas HTTP porto numeris:", "LabelPublicHttpPortHelp": "Viešas porto numeris, kurį reiktų susieti su vietiniu HTTP portu.", "LabelPublicHttpsPort": "Viešas HTTPS porto numeris:", "LabelPublicHttpsPortHelp": "Viešas porto numeris, kurį reiktų susieti su vietiniu HTTPS portu.", - "LabelQuality": "Quality:", "LabelReadHowYouCanContribute": "Sužinokite, kaip galite prisidėti.", "LabelRecordingPath": "Įprasta įrašų vieta:", "LabelRecordingPathHelp": "Nurodykite įprastą vietą, kur saugoti įrašus. Palikus tuščia bus saugoma į serverio programos duomenų direktoriją.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Išsaugoti iliustracijas ir metaduomenis į medijos aplankus.", "LabelSaveLocalMetadataHelp": "Saugoti iliustracijas ir metaduomenis tiesiai į medijos aplankus, ir taip juos bus lengviau redaguoti.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "Sezono katalogo šablonas:", "LabelSeasonNumber": "Sezono numeris:", "LabelSeasonZeroFolderName": "Nulinio sezono katalogo pavadinimas:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Rinktis vartotojus:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", "LabelSerialNumber": "Serijinis numeris", "LabelSeries": "Laidos", "LabelSeriesRecordingPath": "Laidų įrašų vieta (nebūtina):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "Praleista", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Būklė:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Subtitrų kalbos pageidavimai:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Laikinų failų kelias:", "LabelSyncTempPathHelp": "Nurodykite sinchronizavimo darbinį aplanką. Jame bus laikoma konvertuojama medija, sukurta sinchronizavimo proceso metu.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Laikas:", "LabelTimeLimitHours": "Laiko limitas (val.):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Transkodavimo laikinas kelias:", "LabelTranscodingTempPathHelp": "Šiame aplanke bus darbiniai transkoderio failai. Nurodykite savo vietą, arba palikite tuščią, kad būtų naudojamas serverio duomenų aplankas.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "Perkėlimo metodas", "LabelTriggerType": "Jungiklio tipas:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Rodyti sezonuose dar netransliuotas serijas", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Naudoti šias paslaugas:", "LabelUser": "Vartotojas", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video tipas:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Jūsų vardas:", "LabelYoureDone": "Baigta!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Vėliausi {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Pasirinkite medijos aplankus, kuriuos norite dalintis su šiuo vartotoju. Administratoriai galės redaguoti visus aplankus per metaduomenų valdymą.", - "LinkApi": "Api", "LinkCommunity": "Bendruomenė", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Aukštesnio reitingo turinys bus slepiamas nuo šio vartotojo.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Nėra įdiegtų paslaugų.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Čia nieko nėra.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Patikrinkite, ar įjungtas metaduomenų siuntimas iš interneto.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Vėliau galėsite pridėti daugiau vartotojų Skydelyje.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nieko neradau. Pradėkite žiūrėti laidas!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Aktoriai", "OptionAdminUsers": "Administratoriai", "OptionAfterSystemEvent": "Po sisteminio įvykio", "OptionAlbum": "Albumas", "OptionAlbumArtist": "Albumo atlikėjas", - "OptionAll": "All", "OptionAllUsers": "Visi vartotojai", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "Leisti žiūrėti tiesioginę TV", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "Leisti dalintis socialinėse aplinkose", "OptionAllowLinkSharingHelp": "Dalinamasi tik tinklapiais su medijos informacija. Medijos failai niekada neviešinami. Pasidalinimai yra ribojami laike ir pasens po {0} dienų.", "OptionAllowManageLiveTv": "Leisti valdyti tiesioginės TV įrašymą", "OptionAllowMediaPlayback": "Leisti medijos atkūrimą", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Leisti nuotoliniu būdu kontroliuoti kitus vartotojus", "OptionAllowRemoteSharedDevices": "Leisti nuotoliniu būdu valdyti bendrus įrenginius", "OptionAllowRemoteSharedDevicesHelp": "Dlna įrenginiai yra laikomi bendrais kol vartotojas nepradeda jų kontroliuoti.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Leisti šiam vartotojui valdyti serverį", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Bet kiek", - "OptionArt": "Art", "OptionArtist": "Atlikėjas", "OptionAscending": "Didėjančia", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Fonas", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "Juosta", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Bendruomenės vertinimas", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "Tęsiamas", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Kritikų vertinimas", "OptionCustomUsers": "Kita", "OptionDaily": "Kasdienis", "OptionDateAdded": "Pridėjimo data", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Rodymo data", - "OptionDefaultSort": "Default", "OptionDescending": "Mažėjančia", "OptionDev": "Kūrėjai", - "OptionDirector": "Director", "OptionDirectors": "Režisieriai", "OptionDisableUser": "Išjungti šį vartotoją", "OptionDisableUserHelp": "Išjungus serveris neleis prisijungti šiam vartotojui. Esamas ryšys bus nutrauktas.", - "OptionDisc": "Disc", "OptionDislikes": "Nepatinka", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Menas", "OptionDownloadBackImage": "Nugarėlė", "OptionDownloadBannerImage": "Juosta", "OptionDownloadBoxImage": "Viršelis", "OptionDownloadDiscImage": "Diskas", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "Logotipas", "OptionDownloadMenuImage": "Meniu", "OptionDownloadPrimaryImage": "Pirminis", "OptionDownloadThumbImage": "Minipav.", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Leisti prieigą iš visų įrenginių", "OptionEnableAccessToAllChannels": "Leisti prieigą prie visų kanalų", "OptionEnableAccessToAllLibraries": "Leisti prieigą prie visų bibliotekos", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Pasibaigė", "OptionEpisodeSortName": "Serijos pavadinimas rūšiavimui", "OptionEpisodes": "Serijoms", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Mėgstami", "OptionFolderSort": "Aplankai", "OptionFriday": "Penktadienis", "OptionFridayShort": "Pen", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "Kviestinės žvaigždės", "OptionHasSpecialFeatures": "Ypatingos serijos", "OptionHasSubtitles": "Subtitrai", @@ -1330,258 +338,90 @@ "OptionHasTrailer": "Anonsas", "OptionHideUser": "Paslėpti šį vartotoją iš prisijungimo ekrano", "OptionHideUserFromLoginHelp": "Naudinga privačioms ar slaptoms administratorių paskyroms. Vartotojui reikės rankiniu būdu įvesti vartotoją vardą ir slaptažodį.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", "OptionIgnoreTranscodeByteRangeRequests": "Ignoruot transkodavimo baitų ruožo užklausas", "OptionIgnoreTranscodeByteRangeRequestsHelp": "Įjungus šios užklausos bus vykdomos išskyrus baitų ruožą.", - "OptionImages": "Images", "OptionImdbRating": "IMDb vertinimas", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", "OptionIsSD": "SH", "OptionIso": "ISO", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Patinka", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Trūkstamos serijos", "OptionMissingImdbId": "Trūksta IMDb ID", "OptionMissingOverview": "Trūksta apžvalgos", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "Trūksta Tmdb ID", "OptionMissingTvdbId": "Trūksta TheTVDB ID", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Pirmadienis", "OptionMondayShort": "Pir", "OptionMovies": "Filmams", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "Vardas", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Paleidus programą", "OptionOnInterval": "Pasikartojantis", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "Kitiems video", - "OptionOthers": "Others", - "OptionOverview": "Overview", "OptionParentalRating": "Tėvų reitingas", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Rodymų kiekis", "OptionPlayed": "Rodyta", "OptionPoster": "Plakatas", "OptionPosterCard": "Plakatas", "OptionPremiereDate": "Premjeros data", - "OptionPrimary": "Primary", "OptionPriority": "Prioritetas", - "OptionProducer": "Producer", "OptionProducers": "Prodiuseriai", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Įrašyti bet kada", "OptionRecordOnAllChannels": "Įrašyti visuose kanaluose", "OptionRecordOnlyNewEpisodes": "Įrašyti tik naujas serijas", "OptionRecordSeries": "Įrašyti laidą", - "OptionRegex": "Regex", "OptionRelease": "Oficialus išleidimas", "OptionReleaseDate": "Išleidimo data", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Pratęsiamas", - "OptionResumablemedia": "Resume", "OptionRuntime": "Trukmė", "OptionSaturday": "Šeštadienis", "OptionSaturdayShort": "Šeš", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "Ypatingos", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Sekmadienis", "OptionSundayShort": "Sek", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "Minipav.", "OptionThumbCard": "Minipav.", "OptionThursday": "Ketvirtadienis", "OptionThursdayShort": "Ket", "OptionTimeline": "Laiko juosta", "OptionTrackName": "Dainos pavadinimas", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Antradienis", "OptionTuesdayShort": "Ant", "OptionTvdbRating": "Tvdb vertinimas", "OptionUnairedEpisode": "Nerodytos serijos", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Nerodyta", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "Video kokybė", "OptionWakeFromSleep": "Žadinti iš miego", - "OptionWatched": "Watched", "OptionWednesday": "Trečiadienis", "OptionWednesdayShort": "Tre", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "Savaitinis", "OptionWriters": "Rašytojai", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registruotis su PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", "SynologyUpdateInstructions": "Įsijunkite į DSM ir eikite į Paketų centrą atnaujinimui.", "SystemDlnaProfilesHelp": "Sistemos profiliai yra tik skaitomi. Pakeitimai sistemos profiliui bus išsaugoti į naują kitą profilį.", "TabAbout": "Apie", "TabAccess": "Prieiga", - "TabActivity": "Activity", "TabAdvanced": "Sudėtingiau", "TabAlbumArtists": "Albumo atlikėjai", "TabAlbums": "Albumai", - "TabAppSettings": "App Settings", "TabArtists": "Atlikėjai", "TabBasic": "Paprasta", "TabBasics": "Pagrindai", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Katalogas", "TabChannels": "Kanalai", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Pavadinimai", "TabCollections": "Kolekcijos", - "TabContainers": "Containers", "TabControls": "Valdymas", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Serijos", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Mėgstamiausi", - "TabFilter": "Filter", "TabFolders": "Aplankai", "TabGames": "Žaidimai", "TabGeneral": "Bendra", "TabGenres": "Žanrai", "TabGuide": "Gidas", - "TabHelp": "Help", "TabHome": "Namai", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Paveikslas", "TabImages": "Paveikslai", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "Vėliausi", - "TabLibrary": "Library", "TabLibraryAccess": "Bibliotekos prieiga", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "Metaduomenys", "TabMovies": "Filmai", "TabMusic": "Muzika", @@ -1590,139 +430,37 @@ "TabMyPlugins": "Mano priedai", "TabNavigation": "Navigacija", "TabNetworks": "Tinklai", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Pranešimai", "TabNowPlaying": "Dabar rodoma", "TabOther": "Kita", "TabOthers": "Kita", - "TabParentalControl": "Parental Control", "TabPassword": "Slaptažodis", "TabPaths": "Keliai", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Grojaraštis", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profilis", "TabProfiles": "Profiliai", "TabRecordings": "Įrašai", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Saugumas", "TabSeries": "Laidos", "TabServer": "Serveris", - "TabServices": "Services", "TabSettings": "Nustatymai", "TabShows": "Laidos", "TabSongs": "Dainos", - "TabStreaming": "Streaming", "TabStudios": "Studijos", - "TabSubtitles": "Subtitles", "TabSuggestions": "Pasiūlymai", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Anonsai", "TabTranscoding": "Transkodavimas", "TabUpcoming": "Būsimi", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Papasakokite apie save", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Šis pagalbininkas padės jums paruošti Jellyfin. Pradžiai pasirinkite pageidaujamą kalbą.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "Tiesioginė TV", - "TitleNewUser": "New User", "TitleNotifications": "Pranešimai", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", "TitlePlugins": "Priedai", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "Numatytos užduotys", - "TitleServer": "Server", "TitleSignIn": "Prisijungti", "TitleSupport": "Parama", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin palaiko vartotojų profilius, leidžiančius kiekvienam nustatyti savo rodymo nustatymus, žiūrėjimo statistiką ir tėvišką kontrolę.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Versija {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Sveiki atvykę į Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Kol kas to užteks. Jellyfin pradėjo rinkti duomenis apie Jūsų medijos biblioteką. Peržiūrėkite programėles, o po to spauskite Baigti ir perkelsime jus į Serverio skydelį.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/ms.json b/src/strings/ms.json index 9f5f22a803..649a8421e2 100644 --- a/src/strings/ms.json +++ b/src/strings/ms.json @@ -1,1728 +1,15 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Tambah Pengguna", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Padam", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAddUser": "Add User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", - "LabelConfigureSettings": "Configure settings", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Habis", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Seterusnya", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Sebelumnya", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelYourFirstName": "Your first name:", "LabelYoureDone": "Kamu Selesai!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", - "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "Seting Disimpan", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", - "TellUsAboutYourself": "Tell us about yourself", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", - "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "Para Pengguna", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", - "WelcomeToProject": "Welcome to Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/nb.json b/src/strings/nb.json index 4fc4527ae1..ecca58640b 100644 --- a/src/strings/nb.json +++ b/src/strings/nb.json @@ -5,25 +5,17 @@ "AddUserByManually": "Legg til en lokal bruker ved å skrive inn brukerinformasjon manuelt.", "AdditionalNotificationServices": "Bla gjennom katalogen over programtillegg for å installere valgfrie varslingstjenester.", "Advanced": "Avansert", - "Alerts": "Alerts", "All": "Alle", "AllLibraries": "Alle biblioteker", - "AllowDeletionFromAll": "Allow media deletion from all libraries", "AllowHWTranscodingHelp": "Hvis aktivert, vil tuneren å omkode strømmer. Dette kan bidra til å redusere transkoding som kreves av Jellyfin Server.", "AllowMediaConversion": "Tillat konvertering av media", "AllowMediaConversionHelp": "Tillatt eller forby tilgang til å konvertere media", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "Tillat ekstern tilkobling til denne Jellyfin-serveren.", "AllowRemoteAccessHelp": "Hvis deaktivert, vil alle eksterne tilkoblinger bli blokkert.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Lyd", "BirthDateValue": "Født: {0}", "BirthPlaceValue": "Fødested: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", "BookLibraryHelp": "Lyd og Lydbøker er støttet", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Browse vår plugin-katalog for å se tilgjengelige plugins", "ButtonAccept": "Godta", "ButtonAdd": "Legg til", @@ -56,14 +48,11 @@ "ButtonEditImages": "Endre bilder", "ButtonEditOtherUserPreferences": "Endre denne brukeren sin profilbilde og personlige innstillinger.", "ButtonExit": "Avslutt", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Glemt passord", "ButtonFullscreen": "Fullskjerm", - "ButtonGuide": "Guide", "ButtonHelp": "Hjelp", "ButtonHide": "Skjul", "ButtonHome": "Hjem", - "ButtonInfo": "Info", "ButtonInviteUser": "Invitér Bruker", "ButtonLearnMore": "Lære mer", "ButtonLibraryAccess": "Bibliotektilgang", @@ -73,7 +62,6 @@ "ButtonMenu": "Meny", "ButtonMore": "Mer", "ButtonMoreInformation": "Mer Informasjon", - "ButtonMute": "Mute", "ButtonNetwork": "Nettverk", "ButtonNew": "Ny", "ButtonNewServer": "Ny server", @@ -83,13 +71,10 @@ "ButtonNo": "Nei", "ButtonNowPlaying": "Spilles Nå", "ButtonOff": "Av", - "ButtonOk": "Ok", "ButtonOpen": "Åpne", "ButtonOther": "Andre", "ButtonParentalControl": "Foreldrekontroll", - "ButtonPause": "Pause", "ButtonPlay": "Spill", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Spilleliste", "ButtonPreferences": "Innstillinger", "ButtonPrevious": "Forrige", @@ -115,8 +100,6 @@ "ButtonReset": "Resett", "ButtonResetEasyPassword": "Tilbakestill PIN-kode", "ButtonResetPassword": "Tilbakestill passord", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", "ButtonRestartNow": "Restart Nå", "ButtonResume": "Fortsette", "ButtonRevoke": "Tilbakekall", @@ -129,13 +112,10 @@ "ButtonSelectDirectory": "Velg Katalog", "ButtonSelectServer": "Velg server", "ButtonSelectView": "Velg vising", - "ButtonSend": "Send", "ButtonSendInvitation": "Send Invitasjon", - "ButtonServer": "Server", "ButtonServerDashboard": "Server dashboard", "ButtonSettings": "Innstillinger", "ButtonShare": "Del", - "ButtonShuffle": "Shuffle", "ButtonShutdown": "Slå Av", "ButtonSignIn": "Logg inn", "ButtonSignOut": "Logg ut", @@ -143,13 +123,10 @@ "ButtonSkip": "Hopp over", "ButtonSort": "Sorter", "ButtonSplitVersionsApart": "Splitt versjoner fra hverandre", - "ButtonStart": "Start", "ButtonStop": "Stopp", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Send", "ButtonSubtitles": "Undertekster", "ButtonSync": "Synk", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Avinstaller", "ButtonUnmute": "Lyd på", "ButtonUp": "Opp", @@ -161,21 +138,16 @@ "ButtonViewWebsite": "Vis nettsted", "ButtonWebsite": "Nettsted", "ButtonYes": "Ja", - "CancelSeries": "Cancel series", "CategoryApplication": "Applikasjon", "CategoryPlugin": "Programtillegg", "CategorySync": "Synk", - "CategorySystem": "System", "CategoryUser": "Bruker", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Velg kanaler som skal deler med denne brukeren. Administratorer har mulighet til å editere på alle kanaler som benytter metadata behandleren.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til å spille trailere og tilpassede introer før filmen begynner.", "CinemaModeConfigurationHelp2": "Jellyfin apps har een innstilling for å aktivere eller deaktivere kinomodus. TV-apper har aktivert kino-modus som standard.", "CoverArt": "Omslagsbilde", "CustomDlnaProfilesHelp": "Lag en tilpasset profil for å sette en ny enhet til å overstyre en system profil.", "DeathDateValue": "Døde: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Det skjedde en feil under behandling av forespørselen. Vennligst prøv igjen senere.", "DefaultMetadataLangaugeDescription": "Disse er standardverdiene dine, og kan tilpasses per biblioteksbasis.", "Delete": "Slett", @@ -188,20 +160,16 @@ "DetectingDevices": "Detekterer enheter", "DeviceAccessHelp": "Dette gjelder bare for enheter som som kan unikt identifiseres og vil ikke forindre tilgang fra nettleser. Filtrering av brukerens enhet vil forhindre dem fra å bruke nye enheter inntil de har blitt godkjent her.", "DeviceLastUsedByUserName": "Sist brukt av {0}", - "Disabled": "Disabled", "Downloading": "Laster ned", "Downloads": "Nedlastinger", "DrmChannelsNotImported": "Kanaler med DRM vill ikke bli importert.", "EasyPasswordHelp": "Din enkle pin kode er brukt for offline tilgang med støttete emby apps. Den kan også brukes til enkel nettverks pålogging.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Aktiver hardware enkoding", "EnablePhotos": "Aktiver bilder", "EnablePhotosHelp": "Bilder vil bli oppdaget og vises sammen med andre mediefiler .", "EnableStreamLooping": "Automatisk avspilling av live strømmer", "EnableStreamLoopingHelp": "Aktiver dette hvis live streams bare inneholder noen få sekunder med data og må kontinuerlig forespurt.", "EnterFFmpegLocation": "Tast inn FFmpeg sti", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "Denne Jellyfin brukeren er alt koblet til en eksisterende lokal bruker. Jellyfin konto kan bare være tilkoblet en lokal bruker omgangen.", "ErrorAddingListingsToSchedulesDirect": "Det oppstod en feil mens du legger din oppstilling til tidsplaner Direkte konto. Direkte tidsplaner kun tillatt et begrenset antall oppstillingkombinasjoner per brukerkonto. Du bør logge inn på nettstedet i planene Direct konto og noen samlinger av kontoen din for å slette før du fortsetter.", "ErrorAddingMediaPathToVirtualFolder": "Det oppstod en feil å legge mediebanen . Sørg for at banen er gyldig og Jellyfin Server prosessen har tilgang til stedet.", @@ -219,7 +187,6 @@ "ErrorValidatingSupporterInfo": "Det oppstod en feil under validering din Jellyfin Premiere informasjon. Vennligst prøv igjen senere.", "EveryNDays": "Hver {0} dag", "ExitFullscreen": "Avslutt fullskjerm", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", "FFmpegSavePathNotFound": "Vi kan dessverre ikke finne FFmpeg bruke banen du har angitt. FFprobe er også nødvendig og må ligge i samme mappe. Disse komponentene er vanligvis buntet sammen i samme nedlastning. Kontroller banen og prøv igjen.", "FastForward": "Framoverspoling", "FeatureRequiresJellyfinPremiere": "Denne funksjonen krever et aktivt Jellyfin Premiere abonnement.", @@ -236,15 +203,11 @@ "FolderTypePhotos": "Foto", "FolderTypeTvShows": "TV", "FolderTypeUnset": "Ikke bestemt (variert innhold)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Fullskjerm", - "General": "General", "GuestUserNotFound": "Brukernavn ikke funnet. Vennligst sjekk av brukernavn er korrekt og prøv igjen. Eller prøv med deres epost adresse.", - "GuideProviderLogin": "Login", "GuideProviderSelectListings": "Velg Oppføring", "H264CrfHelp": "Constant Rate Factor (CRF) er standard kvalitetsinnstilling for x264 encoder. Du kan stille inn verdier mellom 0 og 51, hvor lavere verdier vil resultere i bedre kvalitet (på bekostning av høyere filstørrelser). Sane verdier er mellom 18 og 28. Standard for x264 er 23, slik at du kan bruke dette som et utgangspunkt.", "H264EncodingPresetHelp": "Velg en raskere verdi å forbedre ytelsen, eller en lavere verdi for å forbedre kvaliteten.", - "HandledByProxy": "Handled by reverse proxy", "HardwareAccelerationWarning": "Aktivering av maskinvareakselerasjon kan føre til ustabilitet i enkelte miljøer. Sørg for at operativsystemet og skjermdriverne dine er fullt oppdatert. Hvis du har problemer med å spille videoer etter å ha aktivert dette, må du endre innstillingen tilbake til Auto.", "HeaderAccessSchedule": "Tilgang Planlegger", "HeaderAccessScheduleHelp": "Lag en tilgang tidsplan for å begrense tilgangen til visse tider.", @@ -259,7 +222,6 @@ "HeaderAddUpdateImage": "Legg Til/Oppdater Bilde", "HeaderAddUser": "Ny bruker", "HeaderAdditionalParts": "Tilleggsdeler", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avansert", "HeaderAirDays": "Vises dager", "HeaderAlbums": "Albumer", @@ -269,21 +231,17 @@ "HeaderApiKey": "API-nøkkel", "HeaderApiKeys": "Api Nøkkler", "HeaderApiKeysHelp": "Eksterne programmer er pålagt å ha en API-nøkkel for å kunne kommunisere med Jellyfin Server. Nøkkene er utstedt ved å logge på med en Jellyfin konto, eller ved å manuelt gi programmet en nøkkel.", - "HeaderApp": "App", "HeaderAudio": "Lyd", "HeaderAudioSettings": "Lyd inntilligner", "HeaderAudioTracks": "Lydspor", "HeaderAutomaticUpdates": "Automatiske oppdateringer", "HeaderAvailableServices": "Tilgjengelige tjenester", "HeaderAwardsAndReviews": "Priser og anmeldelser", - "HeaderBackdrops": "Backdrops", "HeaderBecomeProjectSupporter": "Skaff Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Bøker", "HeaderBranding": "Merking", "HeaderBrandingHelp": "Tilpass utseendet Jellyfin å passe din gruppe eller organisasjon sine behov.", "HeaderCameraUpload": "Kamera opplasting", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", "HeaderCancelSyncJob": "Avbryt synkronisering", "HeaderCastAndCrew": "Skuespillere & Crew", "HeaderCastCrew": "Mannskap", @@ -291,7 +249,6 @@ "HeaderChangeFolderTypeHelp": "For å endre type, må du fjerne og gjenoppbygge biblioteket med den nye typen.", "HeaderChannelAccess": "Kanal tilgang", "HeaderChannels": "Kanaler", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Kapitler", "HeaderCinemaMode": "Kino Modus", "HeaderClients": "Klienter", @@ -300,7 +257,6 @@ "HeaderCodecProfileHelp": "Kodek profiler indikerer på at begrensninger på en enhet når den spiller av spesifikk kodeker. Hvis en begrensning gjelder vil media bli transcodet, til og med hvis kodeken er konfigurert for direkte avspilling.", "HeaderCollections": "Samlinger", "HeaderColumns": "Kolonner", - "HeaderConfigureRemoteAccess": "Configure Remote Access", "HeaderConfirm": "Bekreft", "HeaderConfirmDeletion": "Bekreft Kansellering", "HeaderConfirmPluginInstallation": "Bekreft Installasjon av Plugin", @@ -317,7 +273,6 @@ "HeaderContainerProfileHelp": "Container profiler indikerer begrensningene i en enhet når du spiller bestemte formater. Hvis en begrensning gjelder da vil media bli transcodet, selv om formatet er konfigurert for direkte avspilling.", "HeaderContinueWatching": "Forsett å se på", "HeaderCreatePassword": "Lag nytt passord", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Tilpassede Profiler", "HeaderDashboardUserPassword": "Brukerpassord forvaltes innenfor hver brukers personlige profilinnstillingene.", "HeaderDate": "Dato", @@ -360,7 +315,6 @@ "HeaderFeatureAccess": "Funksjonstilgang", "HeaderFeatures": "Funksjoner", "HeaderFetchImages": "Hent Bilder:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtre", "HeaderForKids": "For barn", "HeaderForgotKey": "Glemt Nøkkel", @@ -377,10 +331,6 @@ "HeaderIdentification": "Identifisering", "HeaderIdentificationCriteriaHelp": "Skriv minst ett identifiserings kriterie", "HeaderIdentificationHeader": "Identifiseringsheader", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Bildeinnstillinger", "HeaderImages": "Bilder", "HeaderInstall": "Installer", @@ -394,8 +344,6 @@ "HeaderItems": "Elementer", "HeaderJellyfinAccountAdded": "Jellyfin konto lagt til", "HeaderJellyfinAccountRemoved": "Jellyfinkonto er fjernet", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Språk", "HeaderLatestAlbums": "Siste album", "HeaderLatestChannelItems": "Siste Kanal Elementer", @@ -417,12 +365,9 @@ "HeaderLibraryFolders": "Media Mapper", "HeaderLibrarySettings": "Bibliotek inntilligner", "HeaderLinks": "Lenker", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", "HeaderLiveTvTunerSetup": "Direkte tv tuner innstillinger", "HeaderLoginFailure": "Påloggingsfeil", "HeaderManagement": "Strying", - "HeaderMedia": "Media", "HeaderMediaFolders": "Mediemapper", "HeaderMediaInfo": "Media informasjon", "HeaderMediaLocations": "Media Steder", @@ -445,13 +390,11 @@ "HeaderNotifications": "Melding", "HeaderNowPlaying": "Spiller nå", "HeaderNumberOfPlayers": "Avspillere", - "HeaderOffline": "Offline", "HeaderOfflineSync": "Frakoblet synkronisering", "HeaderOnNow": " På Nå", "HeaderOptions": "Alternativer", "HeaderOtherDisplaySettings": "Visnings Innstillinger", "HeaderOtherItems": "Andre elementer", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", "HeaderParentalRatings": "Foreldresensur", "HeaderPassword": "Passord", @@ -460,7 +403,6 @@ "HeaderPendingInstallations": "Installeringer i kø", "HeaderPendingInvitations": "Ventende invitasjoner", "HeaderPeople": "Personer", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Persontyper:", "HeaderPhotoInfo": "Bildeinformasjon", "HeaderPinCodeReset": "Tilbakestill PIN-kode", @@ -474,7 +416,6 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Profil Informasjon", "HeaderProfileServerSettingsHelp": "Disse verdiene kontrollere hvordan Jellyfin Server vil presentere seg selv for enheten.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Siste Aktivitet", "HeaderRecentlyPlayed": "Nylig avspilt", "HeaderRecordingGroups": "Opptak Grupper", @@ -484,8 +425,6 @@ "HeaderRemoveMediaFolder": "Fjern Mediamappe", "HeaderRemoveMediaLocation": "Fjern Mediamappe", "HeaderRequireManualLogin": "Krev manuell brukernavn oppføring for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Oppløsning", "HeaderResponseProfile": "Responsprofil", "HeaderResponseProfileHelp": "Respons proiler tilbyr en måt å tilpasse informasjon som er sent til enheten når den spiller en viss type media.", @@ -499,7 +438,6 @@ "HeaderRuntime": "Spilletid", "HeaderScenes": "Scener", "HeaderSchedule": "Timeplan", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Søk", "HeaderSeason": "Sesong", "HeaderSeasonNumber": "Sesong nummer", @@ -539,11 +477,8 @@ "HeaderSource": "Kilde", "HeaderSpecialEpisodeInfo": "Spesial Episode info", "HeaderSpecialFeatures": "Spesielle Funksjoner", - "HeaderSpecials": "Specials", "HeaderSplitMedia": "Del Media Fra Hverandre", - "HeaderStatus": "Status", "HeaderStudios": "Studioer", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "Undertekst Profil", "HeaderSubtitleProfiles": "Undertekst Profiler", "HeaderSubtitleProfilesHelp": "Undertekst profiler beskriver undertekst formater som er suportert av enheten.", @@ -553,7 +488,6 @@ "HeaderSync": "Synk.", "HeaderSyncJobInfo": "Synk.jobb", "HeaderSystemDlnaProfiles": "Systemprofiler", - "HeaderTV": "TV", "HeaderTags": "Tagger", "HeaderTaskTriggers": "Oppgave Triggers", "HeaderTermsOfService": "Jellyfin vilkår for bruk.", @@ -571,8 +505,6 @@ "HeaderTunerDevices": "Tuner enheter", "HeaderTuners": "Tuner", "HeaderTvTuners": "Tunere", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Skriv Tekst", "HeaderUnaired": "Ikke sendt", "HeaderUnknownDate": "Ukjent dato", @@ -584,9 +516,7 @@ "HeaderUploadImage": "Last opp bilde", "HeaderUploadNewImage": "Last opp nytt bilde", "HeaderUser": "Bruker", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Brukere", - "HeaderVideo": "Video", "HeaderVideoTypes": "Videotyper", "HeaderVideos": "Filmer", "HeaderViewOrder": "Visnings rekkefølge", @@ -600,14 +530,11 @@ "HeadersFolders": "Mapper:", "HowToConnectFromJellyfinApps": "Hvordan koble fra Jellyfin apps", "HowWouldYouLikeToAddUser": "Hvordan vil du legge til en bruker?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 sideforhold anbefales. Kun JPG/PNG.", "ImportFavoriteChannelsHelp": "Hvis aktivert, blir kun kanaler som er mekret som favoritt på tuneren bli importert.", "ImportMissingEpisodesHelp": "Hvis aktivert, vil informasjon om manglende episoder importeres inn i databasen og Jellyfin vises i årstider og serier. Dette kan føre til betydelig lengre bibliotek skanninger.", "Invitations": "Invitasjoner", "InviteAnJellyfinConnectUser": "Legg til en bruker ved å sende en e-post invitasjon.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", "JellyfinIntroMessage": "Med Jellyfin kan du enkelt strømme filmer, musikk og bilder til smartelefon, tablet eller andre enheter fra din Jellyfin server.", "LabelAbortedByServerShutdown": "(Avbrutt av server shutdown)", "LabelAccessDay": "Ukedag:", @@ -619,13 +546,10 @@ "LabelAirDays": "Sendings dager:", "LabelAirTime": "Sendings tid:", "LabelAirTime:": "Sendings tid:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", "LabelAlbumArtMaxHeight": "Album art maks høyde:", "LabelAlbumArtMaxHeightHelp": "Maks oppløsning av album er eksonert via upnp:albumARtURI.", "LabelAlbumArtMaxWidth": "Album art mat bredde:", "LabelAlbumArtMaxWidthHelp": "Maks oppløsning av album art utnyttet via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", "LabelAlbumArtist": "Album Artist", "LabelAlbumArtists": "Album artister:", "LabelAll": "Alle", @@ -633,12 +557,9 @@ "LabelAllowHWTranscoding": "Tillat maskinvaretranskoding", "LabelAllowServerAutoRestart": "Tillat at serveren restartes automatisk for å gjennomføre oppdateringer", "LabelAllowServerAutoRestartHelp": "Serveren vil kun restartes i inaktive perioder, når ingen brukere er aktive.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Når som helst", "LabelAppName": "Applikasjonsnavn", "LabelAppNameExample": "Eksempel: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artister:", "LabelArtistsHelp": "Skill flere med semikolon ;", "LabelAudioCodec": "Lyd: {0}", @@ -647,15 +568,11 @@ "LabelAvailableTokens": "Tilgjengelige tokens:", "LabelBindToLocalNetworkAddress": "Bind til local nettverks adresse:", "LabelBindToLocalNetworkAddressHelp": "Valgfritt. Overstyre den lokale IP-adressen til å binde http server til. Hvis tomt, vil serveren binde seg til alle tilgjengelige adresser. Endre denne verdien krever omstart av Jellyfin Serveren.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "Intervall mellom keepalive meldinger (sekunder)", "LabelBlastMessageIntervalHelp": "Avgjør tiden i sekunder mellom server levende meldinger.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Buffer sti:", "LabelCachePathHelp": "Angi en egendefinert plassering for server cache-filer, for eksempel bilder. La stå tomt for å bruke serveren standard.", "LabelCameraUploadPath": "Sti til kameraopplasting:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Kansellert", "LabelCertificatePassword": "Sertifikat passord", "LabelCertificatePasswordHelp": "Hvis sertifikatet ditt krever et passord, vennligst skriv det inn her.", @@ -682,7 +599,6 @@ "LabelCurrentPassword": "Nåværende passord:", "LabelCurrentPath": "Nåværende sti:", "LabelCustomCertificatePath": "Tilpasset ssl-sertifikatbane:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "Tilpass CSS:", "LabelCustomCssHelp": "Bruk din egen CSS på web-grensesnittet.", "LabelCustomDeviceDisplayName": "Visningsnavn:", @@ -700,7 +616,6 @@ "LabelDefaultStream": "(Standard)", "LabelDefaultUser": "Standard bruker:", "LabelDefaultUserHelp": "Avgjør hvilket bruker bibliotek som skal bli vist på koblede enheter. Dette kan bli overskrevet for hver enhet som bruker profiler.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Enhet beskrivelse", "LabelDidlMode": "Didl modus:", "LabelDisabled": "Deaktivert", @@ -716,8 +631,6 @@ "LabelDownloadInternetMetadata": "Last ned cover og metadata fra internett", "LabelDownloadInternetMetadataHelp": "Jellyfin Server kan laste ned informasjon om mediene for å aktivere rike presentasjoner.", "LabelDownloadLanguages": "Last ned språk:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Enkel PIN-kode:", "LabelEmail": "Epost:", "LabelEmailAddress": "Epostadresse", @@ -739,7 +652,6 @@ "LabelEnableDlnaServer": "Slå på Dlna server", "LabelEnableDlnaServerHelp": "Lar UPnP-enheter på nettverket til å bla gjennom og spille Jellyfin innhold.", "LabelEnableFullScreen": "Aktiver fullskjermmodus", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", "LabelEnableIntroParentalControl": "Aktiver smart foreldre kontroll", "LabelEnableIntroParentalControlHelp": "Trailere vil bare bli valgt med en aldersgrense lik eller mindre enn innholdet blir sett på.", "LabelEnableRealtimeMonitor": "Aktiver sanntids monitorering", @@ -752,25 +664,21 @@ "LabelEndDate": "Slutt dato:", "LabelEndingEpisodeNumber": "Ending av episode nummer:", "LabelEndingEpisodeNumberHelp": "Kun nødvendig for multi-episode filer", - "LabelEpisode": "Episode", "LabelEpisodeNumber": "Episode nummer:", "LabelEvent": "Hendelse:", "LabelEveryXMinutes": "Hver", "LabelExternalDDNS": "Eksternt domene:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Eksterne avspillere:", "LabelExtractChaptersDuringLibraryScan": "Hent ut kapittel bilder under bibliotek skann", "LabelExtractChaptersDuringLibraryScanHelp": "Hvis aktivert, vil kapittel bilder bli hentet ut mens videoer importeres under bibliotek skanning.\nHvis deaktivert, vil de bli hentet ut under planlagte oppgaver for kapittel bilder, som medfører at vanlig bibliotek skanning blir fortere ferdig.", "LabelFailed": "Feilet", "LabelFanartApiKey": "Personlig API-nøkkel:", - "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.", "LabelFileOrUrl": "Fil eller URL:", "LabelFinish": "Ferdig", "LabelFolder": "Mappe:", "LabelFolderType": "Mappetype", "LabelForcedStream": "(Tvunget)", "LabelForgotPasswordUsernameHelp": "Skriv inn ditt brukernavn, hvis du husker det.", - "LabelFormat": "Format:", "LabelFree": "Gratis", "LabelFriendlyName": "Vennlig navn", "LabelFriendlyServerName": "Vennlig server navn:", @@ -807,15 +715,10 @@ "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverer sti erstatning av bilde stier ved hjelp av serverens sti erstatter innstillinger.", "LabelKodiMetadataSaveImagePaths": "Lagre bilde stier inne i nfo filer", "LabelKodiMetadataSaveImagePathsHelp": "Dette anbefales hvis du har bilde filnavn som ikke følger Kodi retningslinjer.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Språk:", "LabelLastResult": "Siste resultat:", "LabelLimit": "Grense:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", "LabelLineup": "Oppstilling", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Lokal HTTP port:", "LabelLocalHttpServerPortNumberHelp": "TCP-portnummeret som Jellyfin sin http server skal koble seg til.", "LabelLocalSyncStatusValue": "Status {0}", @@ -825,7 +728,6 @@ "LabelManufacturer": "Produsent", "LabelManufacturerUrl": "Produsent url", "LabelMarkAs": "Merk som:", - "LabelMatchType": "Match type:", "LabelMaxAudioFileBitrate": "Maks lydspor bitrate", "LabelMaxAudioFileBitrateHelp": "Lydfiler med høyere bitrate vil bli konvertert av Jellyfin Server. Velg en høyere verdi for bedre kvalitet, eller en lavere verdi for å bevare lokal lagringsplass.", "LabelMaxBackdropsPerItem": "Maks antall av backdrops for hvert element:", @@ -835,19 +737,15 @@ "LabelMaxResumePercentage": "Maksimum fortsettelsesprosent:", "LabelMaxResumePercentageHelp": "Titler blir antatt som fullstendig avspilt hvis de stopper etter denne tiden", "LabelMaxScreenshotsPerItem": "Maks antall av screenshots for hvert element:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Spesifiser en maks bitrate når streaming.", "LabelMessageText": "Meldingstekst:", "LabelMessageTitle": "Meldingstittel:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "Metadata nedlastere:", "LabelMetadataDownloadersHelp": "Aktiver og ranger din foretrukne kapittel nedlasting i følgende prioritet. Lavere prioritet nedlastinger vil kun bli brukt for å fylle inn manglende informasjon", "LabelMetadataPath": "Metadata sti:", "LabelMetadataPathHelp": "Spesifisere en tilpasset lokasjon for ned lastet grafikk og metadata.", "LabelMetadataReaders": "Metadata Behandler:", "LabelMetadataReadersHelp": "Ranger dine prefererte lokale metadata kilder i prioritert rekkefølge. Første fil funnet vil bli lest.", - "LabelMetadataSavers": "Metadata savers:", "LabelMetadataSaversHelp": "Velg filformatene dine metadata skal lagres til.", "LabelMethod": "Metode:", "LabelMinBackdropDownloadWidth": "Minimum backdrop nedlastings bredde:", @@ -860,7 +758,6 @@ "LabelModelDescription": "Model beskrivelse", "LabelModelName": "Modell navn", "LabelModelNumber": "Modell nummer", - "LabelModelUrl": "Model url", "LabelMonitorUsers": "Monitorer aktivitet fra:", "LabelMovie": "Film", "LabelMovieCategories": "Film kategorier:", @@ -873,7 +770,6 @@ "LabelMusicStreamingTranscodingBitrateHelp": "Spesifiser en maks bitrate for streaming musikk", "LabelMusicVideo": "Musikk Video", "LabelName": "Navn", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", "LabelNewName": "Nytt navn:", "LabelNewPassword": "Nytt passord:", "LabelNewPasswordConfirm": "Bekreft nytt passord:", @@ -900,7 +796,6 @@ "LabelPlayDefaultAudioTrack": "Spill av lydsporet uavhengig av språk", "LabelPlayMethodDirectPlay": "Direkte Avspilling", "LabelPlayMethodDirectStream": "Direkte Streaming", - "LabelPlayMethodTranscoding": "Transcoding", "LabelPostProcessor": "Etterbehandling applikasjon:", "LabelPostProcessorArguments": "Post-prosessering kommandolinjeargumenter:", "LabelPostProcessorArgumentsHelp": "Bruk {path} som banen til opptaksfilen.", @@ -926,9 +821,7 @@ "LabelRecordingPath": "Standard opptaks bane", "LabelRecordingPathHelp": "Angi en egendefinert sted å lagre opptakene. Dersom du lar den stå tom vil serveren sin data mappe bli brukt.", "LabelReleaseDate": "Utgivelsesdato:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "Internett strømnings bitrate begrensing (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "Rapport:", "LabelResumePoint": "Fortsettelsespunkt", "LabelRunningOnPort": "Kjører på http port {0}.", @@ -941,7 +834,6 @@ "LabelSeasonFolderPattern": "Sesong mappe mønster:", "LabelSeasonNumber": "Sesong nummer:", "LabelSeasonZeroFolderName": "Sesong null mappe navn:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Internett trailere:", "LabelSelectUsers": "Velg brukere:", "LabelSelectVersionToInstall": "Velg versjon for å installere:", @@ -951,8 +843,6 @@ "LabelSeriesRecordingPath": "Serieopptak sti (valgfritt):", "LabelServerHost": "Vert", "LabelServerHostHelp": "192.168.1.100 eller \"https://dinserver.no\"", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Hopp hvis standard lydsporet matcher nedlastingen språk", "LabelSkipIfAudioTrackPresentHelp": "Fjern merkingen for å sikre at alle videoene har undertekster, uavhengig av lydspråk.", "LabelSkipIfGraphicalSubsPresent": "Hopp om videoen allerede inneholder innebygde undertekster", @@ -961,13 +851,10 @@ "LabelSonyAggregationFlags": "Sony aggregerigns flagg", "LabelSonyAggregationFlagsHelp": "Bestemmer innholdet i aggregationFlags element i urn: skjemaer-sonycom: av navnerommet.", "LabelSource": "Kilde:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSportsCategories": "Sport kategorier:", "LabelStartWhenPossible": "Start når mulig:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Avslutt når mulig:", "LabelStopping": "Stoppe", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Eksempel: srt", "LabelSubtitleLanguagePreference": "Foretrukket undertekst:", "LabelSubtitlePlaybackMode": "Undertekst modus:", @@ -975,7 +862,6 @@ "LabelSyncPath": "Synkronisert innhold sti", "LabelSyncTempPath": "Midlertidig fil-sti:", "LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.", - "LabelTag": "Tag:", "LabelTheme": "Tema:", "LabelTime": "Tid:", "LabelTimeLimitHours": "Tidsbegrensning (timer):", @@ -988,11 +874,8 @@ "LabelTranscodingThreadCountHelp": "Velg maksimalt antall tråder som skal brukes når transkoding. Redusering av tråder vil senke CPU-bruk, men kan resultere i at Jellyfin ikke konvertere raskt nok for en jevn avspillingsopplevelse.", "LabelTranscodingVideoCodec": "Video kodek:", "LabelTransferMethod": "overføringsmetoder", - "LabelTriggerType": "Trigger Type:", "LabelTunerIpAddress": "Tuner IP-adresse:", "LabelTunerType": "Tuner type", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Tekst", "LabelUnairedMissingEpisodesWithinSeasons": "Vis episoder som ennå ikke har blitt sendt", "LabelUnknownLanguage": "Ukjent språk", @@ -1000,7 +883,6 @@ "LabelUrl": "Adresse:", "LabelUseNotificationServices": "Bruk følgende tjeneste:", "LabelUser": "Bruker:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Bruker bibliotek:", "LabelUserLibraryHelp": "Velg hvilket brukerbibliotek som skal vises til enheten. La det stå tomt for standard innstillinger.", "LabelUserRemoteClientBitrateLimitHelp": "Dette vil overstyre standardverdien for server avspillingsinnstillinger.", @@ -1011,12 +893,9 @@ "LabelVersionInstalled": "{0} installert.", "LabelVersionNumber": "Versjon {0}", "LabelVersionUpToDate": "Oppdatert!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video-type:", "LabelView": "Se:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Bestemmer innholdet i X_DLNACAP element i urn: skjemaer-DLNA-org: enhets 1-0 navnerom.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Bestemmer innholdet i X_DLNADOC element i urn: skjemaer-DLNA-org: enhets 1-0 navnerom.", "LabelYourFirstName": "Ditt fornavn:", "LabelYoureDone": "Ferdig!", @@ -1024,18 +903,13 @@ "LabelffmpegPath": "FFmpeg sti:", "LabelffmpegPathHelp": "Stien til ffmpeg program fil eller mappen som inneholder ffmpeg", "LabelffmpegVersion": "FFmpeg versjon:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Siste {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Velg media mappe som skal deles med denne brukren. Administrator vil ha mulighet for å endre alle mapper ved å bruke metadata behandler.", "LinkApi": "API", "LinkCommunity": "Samfunn", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Lær om Jellyfin Premiere", "LiveTvUpdateAvailable": "(Oppdatering tilgjengelig)", "LoginDisclaimer": "Jellyfin er utviklet for å hjelpe deg med å administrere ditt personlige mediebibliotek, slik som hjemmevideoer og bilder. Vennligst se våre brukervilkår. Bruken av enhver Jellyfin programvare aksepterer disse vilkårene.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "Behandle frakoblet nedlastinger", "MapChannels": "Kartlegge kanaler", "MarkFFmpegExec": "Hvis du kjører Linux eller OSX, må du finne ffmpeg og ffprobe filer og merke dem som kjørbar. Dette er nødvendig for å gi Jellyfin tillatelse til å utføre dem.", @@ -1045,12 +919,10 @@ "MediaInfoAperture": "Blenderåpning", "MediaInfoAspectRatio": "Sideforhold", "MediaInfoBitDepth": "Bitdybde", - "MediaInfoBitrate": "Bitrate", "MediaInfoCameraMake": "Kameramerke", "MediaInfoCameraModel": "Kameramodell", "MediaInfoChannels": "Kanaler", "MediaInfoCodec": "Kodek", - "MediaInfoCodecTag": "Codec tag", "MediaInfoContainer": "Kontainer", "MediaInfoDefault": "Standard", "MediaInfoExposureTime": "Eksponeringstid", @@ -1058,30 +930,24 @@ "MediaInfoFile": "Fil", "MediaInfoFocalLength": "Brennvidde", "MediaInfoForced": "Tvunget", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Bildefrekvens", "MediaInfoInterlaced": "Linjeflettet", "MediaInfoIsoSpeedRating": "ISO innstilling", "MediaInfoLanguage": "Språk", "MediaInfoLatitude": "Breddegrad", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Nivå", "MediaInfoLongitude": "Lengdegrad", "MediaInfoOrientation": "Orientering", "MediaInfoPath": "Sti", "MediaInfoPixelFormat": "Pikselformat", "MediaInfoProfile": "Profil", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Oppløsning", - "MediaInfoSampleRate": "Sample rate", "MediaInfoShutterSpeed": "Lukkerhastighet", "MediaInfoSize": "Størrelse", "MediaInfoSoftware": "Programvare", "MediaInfoStreamTypeAudio": "Lyd", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Innebygd bilde", "MediaInfoStreamTypeSubtitle": "Undertekst", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Tidstempel", "MessageAlreadyInstalled": "Denne versjonen er allerede installert.", "MessageApplicationUpdated": "Jellyfin server har blitt oppdatert", @@ -1095,7 +961,6 @@ "MessageConfirmRevokeApiKey": "Er du sikker på at du vil oppheve denne API nøkkelen? Applikasjonen tilkobling til serveren vil bli brått avsluttet.", "MessageConfirmShutdown": "Er du sikker på at du vil avslutte Jellyfin Server", "MessageConfirmSplitMedia": "Er du sikker at du vil splitte mediakilden i separerte elementer?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", "MessageConnectAccountRequiredToInviteGuest": "For å invitere gjester, må du først koble din Jellyfin bruker til denne serveren.", "MessageContactAdminToResetPassword": "Vennligst kontakte administrator for hjelp til å resette passordet ditt.", "MessageCreateAccountAt": "Opprett en konto på {0}", @@ -1164,7 +1029,6 @@ "MessageUnableToConnectToServer": "Vi kan ikke kontakte angitt server akkurat nå. Sjekk at den er startet og prøv igjen.", "MessageUnsetContentHelp": "Innhold vises som enkle mapper. For beste resultat, bruk metadata for å sette innholdstype for mapper.", "MessageYouHaveVersionInstalled": "Du har for øyeblikket versjon {0} installert", - "Metadata": "Metadata", "MetadataManager": "Metadata bearbeider", "MetadataSettingChangeHelp": "Endre metadatainnstillinger vil påvirke nytt innhold blir lagt fremover. For å oppdatere eksisterende innhold, åpner detalj skjermen og klikker på oppdateringsknappen, eller utføre masse oppdateres ved hjelp av metadata manager.", "MinutesAfter": "minutter etter", @@ -1176,29 +1040,19 @@ "MoreFromValue": "Mer informasjon fra {0}", "MoreUsersCanBeAddedLater": "Du kan legge til flere brukere senere via Dashbord", "MovieLibraryHelp": "Se Gjennom {0} Jellyfin-filmenavnføringsveiledningen {1}.", - "Mute": "Mute", "Never": "Aldri", "NewVersionOfSomethingAvailable": "En ny versjon av {0} er tilgjengelig!", "News": "Nyheter", "NextUp": "Neste", "NoNewDevicesFound": "Ingen nye enheter funnet. For å legge til en ny tuner, lukk denne dialogboksen og skriv inn enhetens informasjon manuelt.", "NoNextUpItemsMessage": "Ingen funnet. Begyn å se det du har", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Du har ingen programtillegg installert.", "NoResultsFound": "Ingen resulterer funnet.", - "Notifications": "Notifications", "NumLocationsValue": "{0} mapper", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Skuespiller", "OptionActors": "Skuespillere", "OptionAdminUsers": "Administratorer", "OptionAfterSystemEvent": "Etter systemhendelse", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", "OptionAll": "Alle", "OptionAllUsers": "Alle brukere:", "OptionAllowAudioPlaybackTranscoding": "Tillat lydavspilling som krever transkoding", @@ -1208,29 +1062,20 @@ "OptionAllowLinkSharingHelp": "Bare websider som inneholder medieinformasjon blir delt . Mediefiler blir aldri delt offentlig. Delt innhold er tidsbegrenset og utløper etter {0} dager.", "OptionAllowManageLiveTv": "Tillate administrasjon av Live TV", "OptionAllowMediaPlayback": "Tillate avspilling av media", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Tillat fjernstyring av andre brukere", "OptionAllowRemoteSharedDevices": "Tillate fjernstyring av delte enheter", "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktes som delte inntil en bruker begynner å styre dem.", "OptionAllowSyncContent": "Tillat synk", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "TIllatt denne brukeren å administrere serveren", "OptionAllowVideoPlaybackRemuxing": "Tillat film tilbakespilling som krever konvertering uten rekoding.", "OptionAllowVideoPlaybackTranscoding": "Tillat filmavspilling som krever transkoding", "OptionAnyNumberOfPlayers": "Noen", - "OptionArt": "Art", - "OptionArtist": "Artist", "OptionAscending": "Økende", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Fusjoner automatisk serier som er spredt ut over flere mapper", "OptionAutomaticallyGroupSeriesHelp": "Hvis aktivert, vil serien som er spredt over flere mapper innenfor dette biblioteket spør automatisk slått sammen til en enkelt serie.", "OptionBackdrop": "Bakgrunn", "OptionBackdropSlideshow": "Bakteppe lysbildefremviser", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Beste tilgjengelig", - "OptionBeta": "Beta", "OptionBirthLocation": "Fødested", "OptionBlockBooks": "Bøker", "OptionBlockChannelContent": "Innhold fra Internettkanal", @@ -1242,11 +1087,9 @@ "OptionBlockOthers": "Andre", "OptionBlockTrailers": "Trailere", "OptionBlockTvShows": "TV Serier", - "OptionBluray": "Bluray", "OptionBooks": "Bøker", "OptionBox": "Boks", "OptionBoxRear": "Boks bak", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Samlinger", "OptionCommunityRating": "Community Rangering", "OptionComposer": "Komponist", @@ -1255,7 +1098,6 @@ "OptionConvertRecordingPreserveAudio": "Bevare opprinnelige lyd ved konvertering av opptak (Når dette er mulig)", "OptionConvertRecordingPreserveAudioHelp": "Denne leverandøren gir bedre lyd, men kan kreve transcoding under avspilling på enkelte enheter.", "OptionConvertRecordingsToStreamingFormat": "Automatisk konvertere opptak til et streaming vennlig format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Kritikervurdering", "OptionCustomUsers": "Tilpasset", "OptionDaily": "Daglig", @@ -1265,7 +1107,6 @@ "OptionDatePlayed": "Dato spilt", "OptionDefaultSort": "Standard", "OptionDescending": "Synkende", - "OptionDev": "Dev", "OptionDirector": "Regissør", "OptionDirectors": "Regisør", "OptionDisableUser": "Deaktiver denne brukeren", @@ -1273,21 +1114,14 @@ "OptionDisc": "Disk", "OptionDislikes": "Misliker", "OptionDisplayAdultContent": "Vis Voksen materiale", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", "OptionDisplayFolderView": "Vis en mappe for å vise ren tekst mapper.", "OptionDisplayFolderViewHelp": "Hvis aktivert, vil Jellyfin app vise en Mapper kategorien sammen med mediebiblioteket . Dette er nyttig hvis du ønsker å ha vanlig mappevisninger.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Tilbake", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Boks", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Last ned bilder på forhånd", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Meny", "OptionDownloadPrimaryImage": "Primær", - "OptionDownloadThumbImage": "Thumb", "OptionDvd": "DVD", "OptionEmbedSubtitles": "Legge inn i kontainer", "OptionEnableAccessFromAllDevices": "Gi tilgang fra alle enheter", @@ -1327,19 +1161,15 @@ "OptionHasSubtitles": "Undertekster", "OptionHasThemeSong": "Temasang", "OptionHasThemeVideo": "Temavideo", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Skjul brukere fra logginn-skjermen", "OptionHideUserFromLoginHelp": "Praktisk for private eller skjulte administratorer. Brukeren vil måtte logge inn manuelt ved å skrive inn brukernavn og passord.", "OptionHlsSegmentedSubtitles": "HLS segmenterte undertekster", - "OptionHomeVideos": "Home videos & photos", "OptionIcon": "Ikon", "OptionIgnoreTranscodeByteRangeRequests": "Ignorer Transcode byte rekkevidde forespørsler", "OptionIgnoreTranscodeByteRangeRequestsHelp": "Hvis aktivert vil disse forespørslene bli honorert men ignorert i byte rekkevidde headeren.", "OptionImages": "Bilder", "OptionImdbRating": "IMDb Rangering", "OptionInProgress": "Igang", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Nøkkelord", "OptionLatestChannelMedia": "Siste kanal elementer", @@ -1349,7 +1179,6 @@ "OptionLikes": "Liker", "OptionList": "Liste", "OptionLocked": "Låst", - "OptionLogo": "Logo", "OptionMax": "Maks", "OptionMenu": "Meny", "OptionMissingEpisode": "Mangler Episoder", @@ -1396,22 +1225,17 @@ "OptionProducers": "Produsent", "OptionProfileAudio": "Lyd", "OptionProfilePhoto": "Bilde", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Video Lyd", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Ta opptak når som helst", "OptionRecordOnAllChannels": "Ta opptak på alle kanaler", "OptionRecordOnlyNewEpisodes": "Ta opptak kun av nye episoder", "OptionRecordSeries": "Ta opptak av Serier", - "OptionRegex": "Regex", "OptionRelease": "Offisiell utgivelse", "OptionReleaseDate": "Uttgitt dato", "OptionReportByteRangeSeekingWhenTranscoding": "Rapporter at serveren støtter byte søking når transcoding.", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Dette kreves for noen enheter som ikke tidssøker veldig godt.", "OptionRequirePerfectSubtitleMatch": "Kun last ned undertekster som er perfekt match for mine filer", "OptionRequirePerfectSubtitleMatchHelp": "Krevende en perfekt treff vil filtrere undertekster for å inkludere bare de som er testet og verifisert med din eksakte videofilen. Hvis du fjerner merkingen av dette, øker sannsynligheten for at tekstene lastes ned, men vil øke sjansene for feilaktig eller feil teksttekst.", - "OptionResElement": "res element", "OptionResumable": "Kan gjenopptas", "OptionResumablemedia": "Fortsette", "OptionRuntime": "Spilletid", @@ -1419,7 +1243,6 @@ "OptionSaturdayShort": "Lør", "OptionSaveMetadataAsHidden": "Lagre metadata og bilder som skjulte filer", "OptionSaveMetadataAsHiddenHelp": "Endring av denne vil gjelde for nye metadata lagret i tiden fremover. Eksisterende metadatafiler blir oppdatert neste gang de blir lagret av Jellyfin Server.", - "OptionScreenshot": "Screenshot", "OptionSeason0": "Sesong 0", "OptionSeasons": "Sesonger", "OptionSeries": "Serier", @@ -1433,7 +1256,6 @@ "OptionSyncLosslessAudioOriginal": "Synkroniser tapsfri lyd på original kvalitet", "OptionSyncOnlyOnWifi": "Synkronisering kun over WiFi", "OptionTags": "Tagger", - "OptionThumb": "Thumb", "OptionThumbCard": "Thumb-kort", "OptionThursday": "Torsdag", "OptionThursdayShort": "Tor", @@ -1470,7 +1292,6 @@ "PasswordResetConfirmation": "Er du sikker på at du vil tilbakestille passordet?", "PasswordResetHeader": "Tilbakestill passord", "PasswordSaved": "Passord lagret", - "PersonTypePerson": "Person", "PictureInPicture": "Bilde i bilde", "PinCodeResetComplete": "PIN-koden har blitt tilbakestilt", "PinCodeResetConfirmation": "Er du sikker på at du vil tilbakestille PIN-koden?", @@ -1480,12 +1301,10 @@ "PleaseUpdateManually": "Vennligst avslutt Jellyfin Server og installer den nyeste versjonen.", "PluginInstalledMessage": "Pluggen er installert. Jellyfin Server må startes på nytt for at endringer skal tre i kraft.", "PluginInstalledWithName": "{0} ble installert", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} ble avinstallert", "PluginUpdatedWithName": "{0} ble oppdatert", "PreferEmbeddedTitlesOverFileNames": "Foretrekker innebygde titler over filnavn", "PreferEmbeddedTitlesOverFileNamesHelp": "Dette bestemmer standard visningstittel når ingen metadata eller lokale metadata er tilgjengelige.", - "PreferredNotRequired": "Preferred, but not required", "Programs": "Programmer", "ProviderValue": "Tilbyder: {0}", "Rate": "Bedøm", @@ -1497,13 +1316,7 @@ "RegisterWithPayPal": "Registrer med PayPal", "ReleaseYearValue": "Utgivelse år: {0}", "RememberMe": "Husk meg", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Spoletilbake", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Skann biblioteket", "SelectCameraUploadServers": "Last opp kamerabilder til følgende servere:", "SendMessage": "Send melding", @@ -1514,21 +1327,13 @@ "SettingsSaved": "Innstillinger lagret", "SettingsWarning": "Endring av disse verdiene kan føre til ustabilitet eller tilkoblingsfeil. Hvis du opplever problemer, anbefaler vi endre dem tilbake til standard verdiene.", "SetupFFmpeg": "Oppsett av FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Vis avanserte innstillinger", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Sport", - "Standard": "Standard", "StatusRecording": "Opptak", "StatusRecordingProgram": "Opptak {0}", "StatusWatching": "Ser På", "StatusWatchingProgram": "Ser På {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Undertekster", - "Sync": "Sync", "SyncMedia": "Synkroniser media", "SyncToOtherDevices": "Synkronisere til andre enheter", "SynologyUpdateInstructions": "Vennligst logg inn på DSM og gå til pakke senter for oppdatering.", @@ -1542,9 +1347,7 @@ "TabAppSettings": "App-innstillinger", "TabArtists": "Artister", "TabBasic": "Enkel", - "TabBasics": "Basics", "TabCameraUpload": "Kameraopplasting", - "TabCast": "Cast", "TabCatalog": "Katalog", "TabChannels": "Kanaler", "TabChapters": "Kapitler", @@ -1554,7 +1357,6 @@ "TabCollections": "Samlinger", "TabContainers": "Kontainere", "TabControls": "Kontrollerer", - "TabDLNA": "DLNA", "TabDashboard": "Dashbord", "TabDevices": "Enheter", "TabDirectPlay": "Direkte Avspill", @@ -1563,26 +1365,21 @@ "TabExpert": "Ekspert", "TabExtras": "Ekstra", "TabFavorites": "Favoritter", - "TabFilter": "Filter", "TabFolders": "Mapper", "TabGames": "Spill", "TabGeneral": "Genrelt", "TabGenres": "Sjangre", - "TabGuide": "Guide", "TabHelp": "Hjelp", "TabHome": "Hjem", "TabHomeScreen": "Hjemskjerm", "TabHosting": "Hoster", "TabImage": "Bilde", "TabImages": "Bilder", - "TabInfo": "Info", "TabLanguages": "Språk", "TabLatest": "Siste", "TabLibrary": "Bibliotek", "TabLibraryAccess": "Bibliotektilgang", - "TabLiveTV": "Live TV", "TabLogs": "Logger", - "TabMetadata": "Metadata", "TabMovies": "Filmer", "TabMusic": "Musikk", "TabMusicVideos": "Musikk-videoer", @@ -1613,20 +1410,16 @@ "TabScheduledTasks": "Planlagte Oppgaver", "TabSecurity": "Sikkerhet", "TabSeries": "Serier", - "TabServer": "Server", "TabServices": "Tjenester", "TabSettings": "Innstillinger", "TabShows": "Show", "TabSongs": "Sanger", - "TabStreaming": "Streaming", "TabStudios": "Studio", "TabSubtitles": "Undertekster", "TabSuggestions": "Forslag", "TabSync": "Synk", "TabSyncJobs": "Synk-jobber", - "TabTV": "TV", "TabTrailers": "Trailere", - "TabTranscoding": "Transcoding", "TabUpcoming": "Kommer", "TabUsers": "Brukere", "TabView": "Se", @@ -1639,7 +1432,6 @@ "TitleDevices": "Enheter", "TitleHardwareAcceleration": "Maskinvareakselerasjon", "TitleHostingSettings": "Verts innstillinger.", - "TitleLiveTV": "Live TV", "TitleNewUser": "Ny bruker", "TitleNotifications": "Beskjeder", "TitlePasswordReset": "Resett passord", @@ -1647,20 +1439,15 @@ "TitlePlugins": "Programtillegg", "TitleRemoteControl": "Ekstern Kontroll", "TitleScheduledTasks": "Planlagt oppgaver", - "TitleServer": "Server", "TitleSignIn": "Logg inn", - "TitleSupport": "Support", "TitleSync": "Synk", "TitleUsers": "Brukere", "TvLibraryHelp": "Gå gjennom {0} Jellyfin-tv navn veiledningen {1}.", "UninstallPluginConfirmation": "Er du sikker på at du ønsker å avinstallere {0}?", "UninstallPluginHeader": "Avinstaller programtillegget", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin har innebygd støtte for brukerprofiler, slik at hver bruker har sine egne skjerminnstillinger, avspillingstatus og foreldrekontroll.", "Users": "Brukere", "ValueAlbumCount": "{0} album", - "ValueArtist": "Artist: {0}", "ValueArtists": "Artister: {0}", "ValueAsRole": "som {0}", "ValueAudioCodec": "Lyd Kodek: {0}", @@ -1680,22 +1467,16 @@ "ValueMinutes": "{0} minutter", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikkvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spill", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikkvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Premiere {0}", "ValuePremieres": "Premiere {0}", "ValuePriceUSD": "Pris: {0} (USD)", "ValueSeriesCount": "{0} serier", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} sanger", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studioer: {0}", "ValueTimeLimitMultiHour": "Tidsgrense: {0} time", "ValueTimeLimitSingleHour": "Tidsgrense: 1 time", @@ -1714,9 +1495,7 @@ "ViewTypeMusicFavoriteSongs": "Favorittsanger", "ViewTypeMusicFavorites": "Favoritter", "ViewTypeMusicSongs": "Sanger", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Velkommen til Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Det er alt vi trenger for nå. Jellyfin har begynt å samle informasjon om mediebiblioteket. Sjekk ut noen av våre apper, og klikk deretter Fullfør for å se Server Dashboard.", "XmlDocumentAttributeListHelp": "Disse attributtene påføres rot elementet for alle xml responser.", "XmlTvKidsCategoriesHelp": "Programmer med disse kategoriene vil bli vist som barne programmer. Atskilt flere med \"|\".", diff --git a/src/strings/nl.json b/src/strings/nl.json index 014daa5d83..8524048052 100644 --- a/src/strings/nl.json +++ b/src/strings/nl.json @@ -20,7 +20,6 @@ "Audio": "Geluid", "BirthDateValue": "Geboren: {0}", "BirthPlaceValue": "Geboorte plaats: {0})", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Bob and weave (hogere kwaliteit, maar langzamer)", "BookLibraryHelp": "Audio- en tekstboeken worden ondersteund. Bekijk de {0}Jellyfin Boeken naamgeving{1}.", "Browse": "Bladeren", @@ -56,21 +55,18 @@ "ButtonEditImages": "Bewerk afbeeldingen", "ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.", "ButtonExit": "Afsluiten", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Wachtwoord vergeten", "ButtonFullscreen": "Volledig scherm", "ButtonGuide": "Gids", "ButtonHelp": "Hulp", "ButtonHide": "Verbergen", "ButtonHome": "Start", - "ButtonInfo": "Info", "ButtonInviteUser": "Nodig gebruiker uit", "ButtonLearnMore": "Meer informatie", "ButtonLibraryAccess": "Bibliotheek toegang", "ButtonManageFolders": "Beheer mappen", "ButtonManageServer": "Beheer server", "ButtonManualLogin": "Handmatige Aanmelding", - "ButtonMenu": "Menu", "ButtonMore": "Meer", "ButtonMoreInformation": "Meer informatie", "ButtonMute": "Dempen", @@ -83,13 +79,11 @@ "ButtonNo": "Nee", "ButtonNowPlaying": "Wordt nu afgespeeld", "ButtonOff": "Uit", - "ButtonOk": "Ok", "ButtonOpen": "Openen", "ButtonOther": "Andere", "ButtonParentalControl": "Ouderlijk toezicht", "ButtonPause": "Pauze", "ButtonPlay": "Afspelen", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Afspeellijst", "ButtonPreferences": "Voorkeuren", "ButtonPrevious": "Vorige", @@ -115,7 +109,6 @@ "ButtonReset": "Rest", "ButtonResetEasyPassword": "Reset eenvoudige pincode", "ButtonResetPassword": "Wachtwoord resetten", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Herstart", "ButtonRestartNow": "Nu opnieuw opstarten", "ButtonResume": "Hervatten", @@ -131,8 +124,6 @@ "ButtonSelectView": "Selecteer weergave", "ButtonSend": "Stuur", "ButtonSendInvitation": "Stuur uitnodiging", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", "ButtonSettings": "Instellingen", "ButtonShare": "Delen", "ButtonShuffle": "Willekeurig", @@ -143,14 +134,10 @@ "ButtonSkip": "Overslaan", "ButtonSort": "Sorteren", "ButtonSplitVersionsApart": "Splits Versies Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", "ButtonStopRecording": "Stop Opname", "ButtonSubmit": "Uitvoeren", "ButtonSubtitles": "Ondertiteling", "ButtonSync": "Synchronisatie", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", "ButtonUnmute": "Dempen opheffen", "ButtonUp": "Omhoog", "ButtonUpdateNow": "Nu bijwerken", @@ -159,12 +146,10 @@ "ButtonViewAlbum": "Bekijk album", "ButtonViewArtist": "Bekijk artiest", "ButtonViewWebsite": "Bekijk website", - "ButtonWebsite": "Website", "ButtonYes": "Ja", "CancelSeries": "Annuleer series", "CategoryApplication": "Toepassing", "CategoryPlugin": "Plug-in", - "CategorySync": "Sync", "CategorySystem": "Systeem", "CategoryUser": "Gebruiker", "ChangingMetadataImageSettingsNewContent": "Aanpassingen aan de metadata en artwork download instellingen zullen alleen van toepassing zijn op nieuwe toegevoegde content. Om de aanpassingen toe te passen op bestaande content, moet de metadata ervan handmatig vernieuwd worden.", @@ -172,7 +157,6 @@ "Channels": "Kanalen", "CinemaModeConfigurationHelp": "Cinema mode brengt de theater ervaring naar uw woonkamer met de mogelijkheid om trailers en eigen intro's voor de film af te spelen.", "CinemaModeConfigurationHelp2": "Jellyfin apps hebben een instelling om de cinema mode in- of uit te schakelen. TV-apps schakelen cinema modus standaard in.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Maak een aangepast profiel om een ​​nieuw apparaat aan te maken of overschrijf een systeemprofiel.", "DeathDateValue": "Overleden: {0}", "DefaultCameraUploadPathHelp": "Selecteer een aangepast upload pad. Indien leeg gelaten, zal een standaardmap gebruikt worden. Indien u een aangepast pad gebruikt, zal deze ook moeten worden teogevoegd in de Jellyfin bibliotheek setup.", @@ -190,7 +174,6 @@ "DeviceLastUsedByUserName": "Het laatste gebruikt door {0}", "Disabled": "Uitgeschakeld", "Downloading": "Downloaden", - "Downloads": "Downloads", "DrmChannelsNotImported": "Kanalen met DRM worden niet geïmporteerd.", "EasyPasswordHelp": "Uw gemakkelijk pincode wordt gebruikt voor offline toegang met ondersteunde Jellyfin apps, en kan ook worden gebruikt voor eenvoudige in-netwerk aanmelden.", "EnableDebugLoggingHelp": "Debug logging mag alleen ingeschakeld worden voor het onderzoeken van problemen. De verhoogde belasting van het bestandssysteem kan voorkomen dat de server in slaapstand gaat in sommige omgevingen.", @@ -227,7 +210,6 @@ "FileReadCancelled": "Bestand lezen is geannuleerd.", "FileReadError": "Er is een fout opgetreden bij het lezen van het bestand.", "FolderTypeBooks": "Boeken", - "FolderTypeGames": "Games", "FolderTypeInherit": "overerven", "FolderTypeMixed": "Gemengde inhoud", "FolderTypeMovies": "Films", @@ -262,7 +244,6 @@ "HeaderAdmin": "Beheerder", "HeaderAdvanced": "Geavanceerd", "HeaderAirDays": "Uitzend Dagen", - "HeaderAlbums": "Albums", "HeaderAlert": "Waarschuwing", "HeaderAllRecordings": "Alle Opnames", "HeaderAllowMediaDeletionFrom": "Wissen van media toestaan van", @@ -282,19 +263,14 @@ "HeaderBooks": "Boeken", "HeaderBranding": "Huisstijl", "HeaderBrandingHelp": "Pas het uiterlijk van Jellyfin aan, aan de behoeften van uw groep of organisatie.", - "HeaderCameraUpload": "Camera Upload", "HeaderCameraUploadHelp": "Jellyfin apps kunnen automatisch foto's die genomen zijn met uw mobiele apparaten uploaden naar Jellyfin Server", "HeaderCancelSyncJob": "Annuleer synchronisatie", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", "HeaderChangeFolderType": "Verander Content Type", "HeaderChangeFolderTypeHelp": "Als u het type wilt wijzigen, verwijder het dan en maak dan een nieuwe bibliotheek met het nieuwe type.", "HeaderChannelAccess": "Kanaal toegang", "HeaderChannels": "Kanalen", "HeaderChapterImages": "Hoofdstukafbeeldingen", "HeaderChapters": "Hoofdstukken", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", "HeaderCloudSync": "Cloud Synchronisatie", "HeaderCodecProfile": "Codec Profiel", "HeaderCodecProfileHelp": "Codec profielen geven de beperkingen van een apparaat bij het afspelen van bepaalde codecs. Als een beperking geldt dan zal de media getranscodeerd worden, zelfs indien de codec is geconfigureerd voor direct afspelen.", @@ -317,7 +293,6 @@ "HeaderContainerProfileHelp": "Container profielen geven de beperkingen van een apparaat bij het afspelen van bepaalde formaten. Als een beperking geldt dan zal de media getranscodeerd worden, zelfs indien het formaat is geconfigureerd voor direct afspelen.", "HeaderContinueWatching": "Kijken hervatten", "HeaderCreatePassword": "Maak wachtwoord", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Aangepaste profielen", "HeaderDashboardUserPassword": "Wachtwoorden van gebruikers worden door de gebruiker in het gebruikersprofiel beheerd.", "HeaderDate": "Datum", @@ -330,7 +305,6 @@ "HeaderDeleteProvider": "Verwijder aanbieder", "HeaderDeleteTaskTrigger": "Verwijderen Taak Trigger", "HeaderDestination": "Doel", - "HeaderDetails": "Details", "HeaderDetectMyDevices": "Detecteer Mijn Apparaten", "HeaderDeveloperInfo": "Informatie ontwikkelaar", "HeaderDevice": "Apparaat", @@ -346,7 +320,6 @@ "HeaderEmbeddedImage": "Ingesloten afbeelding", "HeaderEpisodes": "Afleveringen", "HeaderError": "Fout", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Afspelen met externe speler", "HeaderExternalServices": "Externe diensten", "HeaderFavoriteAlbums": "Favoriete Albums", @@ -361,40 +334,32 @@ "HeaderFeatures": "Toevoegingen", "HeaderFetchImages": "Afbeeldingen ophalen:", "HeaderFetcherSettings": "Fetcher-instellingen", - "HeaderFilters": "Filters", "HeaderForKids": "Voor Kinderen", "HeaderForgotKey": "Sleutel vergeten", "HeaderForgotPassword": "Wachtwoord vergeten", "HeaderFreeApps": "Gratis Jellyfin Apps", "HeaderFrequentlyPlayed": "Vaak afgespeeld", - "HeaderGames": "Games", - "HeaderGenres": "Genres", "HeaderGuests": "Gasten", "HeaderGuideProviders": "TV Gids data aanbieders", "HeaderHomePage": "Startpagina", "HeaderHomeScreenSettings": "Begin scherm instellingen", - "HeaderHttpHeaders": "Http Headers", "HeaderIdentification": "Identificatie", "HeaderIdentificationCriteriaHelp": "Voer tenminste één identificatiecriterium in.", "HeaderIdentificationHeader": "Identificatie Header", "HeaderImageBackdrop": "Achtergrond", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Afbeeldingsopties", "HeaderImagePrimary": "Primair", "HeaderImageSettings": "Afbeeldingsinstellingen", "HeaderImages": "Afbeeldingen", "HeaderInstall": "Installeer", "HeaderInstalledServices": "Geïnstalleerde diensten", - "HeaderInstantMix": "Instant Mix", "HeaderInvitationSent": "Uitnodiging verzonden", "HeaderInvitations": "Uitnodigingen", "HeaderInviteUser": "Nodig gebruiker uit", "HeaderInviteUserHelp": "Delen van uw media met vrienden is eenvoudiger dan ooit met Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "Uitnodigen met Jellyfin Connect", - "HeaderItems": "Items", "HeaderJellyfinAccountAdded": "Jellyfin Account Toegevoegd", "HeaderJellyfinAccountRemoved": "Jellyfin Account Verwijderd", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "Om nfo-metadata in of uit te schakelen, gaat u naar de Jellyfin bibliotheekinstellingen en vervolgens naar de metadata-downloaders sectie.", "HeaderLanguage": "Taal", "HeaderLatestAlbums": "Nieuwste Albums", @@ -416,17 +381,12 @@ "HeaderLibraryAccess": "Bibliotheek toegang", "HeaderLibraryFolders": "Media Mappen", "HeaderLibrarySettings": "Bibliotheek Instellingen", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", "HeaderLiveTvTunerSetup": "Live TV Tuner Instellingen", "HeaderLoginFailure": "Aanmeld fout", "HeaderManagement": "Beheer", - "HeaderMedia": "Media", "HeaderMediaFolders": "Media Mappen", "HeaderMediaInfo": "Media informatie", "HeaderMediaLocations": "Media Locaties", - "HeaderMenu": "Menu", "HeaderMissing": "Ontbreekt", "HeaderMoreLikeThis": "Meer als dit", "HeaderMovies": "Films", @@ -445,8 +405,6 @@ "HeaderNotifications": "Meldingen", "HeaderNowPlaying": "Wordt nu afgespeeld", "HeaderNumberOfPlayers": "Afspelers", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", "HeaderOnNow": "Aan het spelen", "HeaderOptions": "Opties", "HeaderOtherDisplaySettings": "Beeld instellingen", @@ -485,7 +443,6 @@ "HeaderRemoveMediaLocation": "Verwijder media locatie", "HeaderRequireManualLogin": "Vereist handmatig aanmelden met gebruikersnaam voor:", "HeaderRequireManualLoginHelp": "Wanneer uitgeschakeld, kunnen Jellyfin apps een login-scherm presenteren met een visuele selectie van gebruikers.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Resolutie", "HeaderResponseProfile": "Antwoord Profiel", "HeaderResponseProfileHelp": "Responsprofielen bieden een manier om informatie, verzonden naar het apparaat bij het afspelen van bepaalde soorten media aan te passen.", @@ -493,7 +450,6 @@ "HeaderResult": "Resulteert in:", "HeaderResume": "Hervatten", "HeaderResumeSettings": "Instellingen voor Hervatten", - "HeaderReviews": "Reviews", "HeaderRevisionHistory": "Versie geschiedenis", "HeaderRunningTasks": "Actieve taken", "HeaderRuntime": "Speelduur", @@ -539,9 +495,7 @@ "HeaderSource": "Bron", "HeaderSpecialEpisodeInfo": "Speciale afleveringsinformatie", "HeaderSpecialFeatures": "Extra's", - "HeaderSpecials": "Specials", "HeaderSplitMedia": "Splits Media Apart", - "HeaderStatus": "Status", "HeaderStudios": "Studio's", "HeaderSubtitleDownloads": "Ondertitel downloads", "HeaderSubtitleProfile": "Ondertitelingsprofiel", @@ -550,10 +504,8 @@ "HeaderSubtitleSettings": "Ondertitel Instellingen", "HeaderSubtitles": "Ondertiteling", "HeaderSupportTheTeam": "Ondersteun het Jellyfin Team", - "HeaderSync": "Sync", "HeaderSyncJobInfo": "Sync Opdrachten", "HeaderSystemDlnaProfiles": "Systeem Profielen", - "HeaderTV": "TV", "HeaderTags": "Labels", "HeaderTaskTriggers": "Taak Triggers", "HeaderTermsOfService": "Jellyfin Gebruiksvoorwaarden", @@ -562,16 +514,9 @@ "HeaderThisUserIsCurrentlyDisabled": "Deze gebruiker is momenteel uitgesloten", "HeaderTime": "Tijd", "HeaderToAccessPleaseEnterEasyPinCode": "Voor toegang toets uw pincode", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Direct Afspelen Profiel", "HeaderTranscodingProfileHelp": "Transcoding profielen toevoegen om aan te geven welke indelingen moeten worden gebruikt wanneer transcoding vereist is.", "HeaderTunerDevices": "Tuner apparaten", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", "HeaderTypeImageFetchers": "{0} Afbeelding downloaders", "HeaderTypeText": "Voer tekst in", "HeaderUnaired": "Niet uitgezonden", @@ -586,7 +531,6 @@ "HeaderUser": "Gebruiker", "HeaderUserPrimaryImage": "Afbeelding gebruiker", "HeaderUsers": "Gebruikers", - "HeaderVideo": "Video", "HeaderVideoTypes": "Video types", "HeaderVideos": "Video's", "HeaderViewOrder": "Weergave volgorde", @@ -619,7 +563,6 @@ "LabelAirDays": "Uitzend dagen:", "LabelAirTime": "Uitzend tijd:", "LabelAirTime:": "Uitzend tijd:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN gebruikt voor album art, binnen het DLNA: profileID attribuut op UPnP: albumArtURI. Sommige apparaten vereisen een specifieke waarde, ongeacht de grootte van het beeld.", "LabelAlbumArtMaxHeight": "Albumhoes max. hoogte:", "LabelAlbumArtMaxHeightHelp": "Max. resolutie van albumhoezen weergegeven via upnp:albumArtURI.", @@ -647,11 +590,9 @@ "LabelAvailableTokens": "Beschikbaar tokens:", "LabelBindToLocalNetworkAddress": "Binden aan het lokale netwerk adres:", "LabelBindToLocalNetworkAddressHelp": "Optioneel. Overrule het lokale IP-adres om aan de http-server te binden. Indien leeg gelaten, zal de server binden aan alle beschikbare adressen. Het veranderen van deze waarde vereist herstarten van Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "Alive bericht interval (seconden)", "LabelBlastMessageIntervalHelp": "Bepaalt de duur in seconden tussen server Alive berichten.", "LabelBlockContentWithTags": "Blokkeer items met volgende tags:", - "LabelCache": "Cache:", "LabelCachePath": "Cache pad:", "LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.", "LabelCameraUploadPath": "Camera upload pad:", @@ -671,8 +612,6 @@ "LabelConnectGuestUserName": "Hun Jellyfin Connect e-mailadres of gebruikersnaam:", "LabelConnectGuestUserNameHelp": "Dit is de gebruikersnaam die uw vriend gebruikt om zich aan te melden bij de Jellyfin website, of hun e-mailadres.", "LabelContentType": "Inhoud type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", "LabelConversionCpuCoreLimit": "CPU core limiet:", "LabelConversionCpuCoreLimitHelp": "Limiteer het aantal CPU cores dat gebruikt mag worden bij een omzetting om te synchroniseren.", "LabelConvertRecordingsTo": "Converteer opnames naar:", @@ -702,7 +641,6 @@ "LabelDefaultUserHelp": "Bepaalt welke gebruikers bibliotheek op aangesloten apparaten moet worden weergegeven. Dit kan worden overschreven voor elk apparaat met behulp van profielen.", "LabelDeinterlacingMethod": "Deinterlacing methode:", "LabelDeviceDescription": "Apparaat omschrijving", - "LabelDidlMode": "Didl mode:", "LabelDisabled": "Uitgeschakeld", "LabelDisplayCollectionsView": "Toon collecties in mijn overzichten om film verzamelingen weer te geven", "LabelDisplayCollectionsViewHelp": "Hiermee wordt een aparte weergave gemaakt waarin collecties worden weergegeve. Klik rechts op een film of klik en houd vast en kies 'Toevoegen aan Collectie'. ", @@ -717,7 +655,6 @@ "LabelDownloadInternetMetadataHelp": "Jellyfin Server kan informatie downloaden van uw media om rijke presentaties mogelijk te maken.", "LabelDownloadLanguages": "Download talen:", "LabelDropImageHere": "Afbeelding hier neerzetten.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Eenvoudige pincode:", "LabelEmail": "Email adres:", "LabelEmailAddress": "E-mailadres", @@ -778,7 +715,6 @@ "LabelFromHelp": "Voorbeeld: {0} (op de server)", "LabelGroupMoviesIntoCollections": "Groepeer films in collecties", "LabelGroupMoviesIntoCollectionsHelp": "Bij de weergave van film lijsten, zullen films die tot een collectie behoren worden weergegeven als een gegroepeerd object.", - "LabelH264Crf": "H264 encoding CRF:", "LabelH264EncodingPreset": "H264 codering preset:", "LabelHardwareAccelerationType": "Hardware acceleratie:", "LabelHardwareAccelerationTypeHelp": "Alleen beschikbaar op ondersteunde systemen.", @@ -814,11 +750,9 @@ "LabelLastResult": "Laatste resultaat:", "LabelLimit": "Limiet:", "LabelLimitIntrosToUnwatchedContent": "Gebruik alleen trailers van films die nog niet bekeken zijn", - "LabelLineup": "Lineup:", "LabelLocalAccessUrl": "In-Home (LAN)-toegang: {0}", "LabelLocalHttpServerPortNumber": "Lokale http poort nummer:", "LabelLocalHttpServerPortNumberHelp": "Het tcp poort nummer waar Jellyfin's http server aan moet verbinden.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Aanmeld vrijwaring:", "LabelLoginDisclaimerHelp": "Dit wordt onderaan de login pagina weergegeven.", "LabelLogs": "Logboeken:", @@ -839,7 +773,6 @@ "LabelMaxStreamingBitrateHelp": "Geef een maximale bitrate voor streaming op.", "LabelMessageText": "Bericht tekst:", "LabelMessageTitle": "Titel van het bericht:", - "LabelMetadata": "Metadata:", "LabelMetadataDownloadLanguage": "Gewenste metadata taal:", "LabelMetadataDownloaders": "Metadata Downloaders:", "LabelMetadataDownloadersHelp": "Rangschik uw voorkeurs metadata downloader in volgorde van prioriteit. Lagere prioriteit downloaders zullen alleen worden gebruikt om de ontbrekende informatie in te vullen.", @@ -860,7 +793,6 @@ "LabelModelDescription": "Model omschrijving", "LabelModelName": "Modelnaam", "LabelModelNumber": "Modelnummer", - "LabelModelUrl": "Model url", "LabelMonitorUsers": "Monitor activiteit van:", "LabelMovie": "Film", "LabelMovieCategories": "Film categoriën:", @@ -909,13 +841,9 @@ "LabelPrevious": "Vorige", "LabelProfile": "profiel:", "LabelProfileAudioCodecs": "Geluidscodecs:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle codecs.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle containers.", - "LabelProfileVideoCodecs": "Video codecs:", "LabelProtocol": "Protokol:", - "LabelProtocolInfo": "Protocol info:", "LabelProtocolInfoHelp": "De waarde die wordt gebruikt bij het reageren op GetProtocolInfo verzoeken van het apparaat.", "LabelPublicHttpPort": "Publieke http poort nummer:", "LabelPublicHttpPortHelp": "Het publieke poortnummer dat moet worden toegewezen aan de lokale http poort.", @@ -942,12 +870,10 @@ "LabelSeasonNumber": "Seizoensnummer:", "LabelSeasonZeroFolderName": "Mapnaam voor Specials:", "LabelSecureConnectionsMode": "Beveiligde verbinding modus:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Selecteer gebruikers:", "LabelSelectVersionToInstall": "Selecteer de versie om te installeren:", "LabelSendNotificationToUsers": "Stuur de melding naar:", "LabelSerialNumber": "Serienummer", - "LabelSeries": "Series:", "LabelSeriesRecordingPath": "Serieopname pad (optioneel):", "LabelServerHost": "Server:", "LabelServerHostHelp": "192.168.1.100 of https://myserver.com", @@ -964,7 +890,6 @@ "LabelSpecialSeasonsDisplayName": "De weergavenaam van de speciale seizoen:", "LabelSportsCategories": "Sport categorieën:", "LabelStartWhenPossible": "Start zodra mogelijk:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop zodra mogelijk:", "LabelStopping": "Stoppen", "LabelSubtitleDownloaders": "Ondertiteldownloaders:", @@ -975,29 +900,22 @@ "LabelSyncPath": "Gesynchroniseerde inhoud pad:", "LabelSyncTempPath": "Pad voor tijdelijke bestanden:", "LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.", - "LabelTag": "Tag:", "LabelTheme": "Thema:", "LabelTime": "Tijd:", "LabelTimeLimitHours": "Tijdslimiet (uren):", "LabelTranscodingAudioCodec": "Geluidscodec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Tijdelijk transcodeer pad:", "LabelTranscodingTempPathHelp": "Deze map bevat werkbestanden die worden gebruikt door de transcoder. Geef een eigen locatie op of laat het leeg om de standaardlocatie te gebruiken.", "LabelTranscodingTemporaryFiles": "Tijdelijke transcodeer bestanden:", "LabelTranscodingThreadCount": "Aantal transcodeer threads:", "LabelTranscodingThreadCountHelp": "Selecteer het maximale aantal threads die gebruikt mogen worden om te transcoderen. Bij een lager aantal zal het CPU gebruik lager zijn, maar kan de afspeelkwaliteit minder zijn.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "Verplaats methode", - "LabelTriggerType": "Trigger Type:", "LabelTunerIpAddress": "Tuner IP adres:", "LabelTunerType": "Soort Tuner:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Tekst", "LabelUnairedMissingEpisodesWithinSeasons": "Toon komende afleveringen binnen een seizoen", "LabelUnknownLanguage": "Onbekende taal", "LabelUploadSpeedLimit": "Upload limiet (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Gebruik de volgende diensten:", "LabelUser": "Gebruiker:", "LabelUserAgent": "User-agent:", @@ -1010,13 +928,8 @@ "LabelValue": "Waarde:", "LabelVersionInstalled": "{0} geïnstalleerd", "LabelVersionNumber": "Versie {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", "LabelView": "Weergave:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Bepaalt de inhoud van het X_DLNACAP element in de urn: schemas-dlna-org:device-1-0 namespace. \n", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Bepaalt de inhoud van het X_DLNADOC element in de urn: schemas-dlna-org:device-1-0 namespace. ", "LabelYourFirstName": "Uw voornaam:", "LabelYoureDone": "Gereed!", @@ -1027,11 +940,8 @@ "LanNetworksHelp": "Komma-gescheiden lijst van IP-adressen of IP/netmask adressen voor netwerken die als lokaal gezien worden wanneer bandbreedtebeperkingen van toepassing zijn. Indien ingesteld, worden alle overige IP-adressen gezien als externe adressen en zullen worden onderworpen aan de bandbreedte-instellingen voor externe adressen. Indien blanco, zal alleen het subnet van de server als lokaal netwerk gezien worden.", "LatestFromLibrary": "Laatste {0}", "LearnHowToCreateSynologyShares": "Leren mappen te delen in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Selecteer de mediamappen om met deze gebruiker te delen. Beheerders kunnen alle mappen bewerken via de metadata manager.", - "LinkApi": "Api", "LinkCommunity": "Gemeenschap", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Meer informatie over Jellyfin Premiere", "LiveTvUpdateAvailable": "(Update beschikbaar)", "LoginDisclaimer": "Jellyfin is ontworpen om uw persoonlijke mediabibliotheek te helpen beheren, zoals home video's en foto's. Zie onze gebruiksvoorwaarden. Het gebruik van Jellyfin software betekent acceptatie van deze voorwaarden.", @@ -1045,13 +955,8 @@ "MediaInfoAperture": "Diafragma", "MediaInfoAspectRatio": "Beeld verhouding", "MediaInfoBitDepth": "Bitdiepte", - "MediaInfoBitrate": "Bitrate", "MediaInfoCameraMake": "Camera merk", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Kanalen", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", "MediaInfoDefault": "Standaard", "MediaInfoExposureTime": "Belichtingstijd", "MediaInfoExternal": "Extern", @@ -1059,8 +964,6 @@ "MediaInfoFocalLength": "Brandpuntsafstand", "MediaInfoForced": "Geforceerd", "MediaInfoFormat": "Formaat", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", "MediaInfoIsoSpeedRating": "ISO-waarde", "MediaInfoLanguage": "Taal", "MediaInfoLatitude": "Breedte graad", @@ -1071,17 +974,13 @@ "MediaInfoPath": "Pad", "MediaInfoPixelFormat": "Pixel formaat", "MediaInfoProfile": "Profiel", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Resolutie", "MediaInfoSampleRate": "Samplesnelheid", "MediaInfoShutterSpeed": "Sluitertijd", "MediaInfoSize": "Grootte", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Geluid", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Ingesloten afbeelding", "MediaInfoStreamTypeSubtitle": "Ondertiteling", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Tijdstempel", "MessageAlreadyInstalled": "Deze versie is al geïnstalleerd", "MessageApplicationUpdated": "Jellyfin Server is bijgewerkt", @@ -1164,8 +1063,6 @@ "MessageUnableToConnectToServer": "Het is momenteel niet mogelijk met de geselecteerde server te verbinden. Controleer dat deze draait en probeer het opnieuw.", "MessageUnsetContentHelp": "Inhoud zal als gewone folders worden getoond. Gebruik voor het beste resultaat de Metadata Manager om de inhoud types voor subfolders in te stellen.", "MessageYouHaveVersionInstalled": "Op dit moment is versie {0} geïnstalleerd.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", "MetadataSettingChangeHelp": "Veranderen van metadata instellingen zal nieuwe content die wordt toegevoegd beïnvloeden. Om de bestaande inhoud te vernieuwen, opent u het detail scherm en klik op de knop Vernieuwen, of doe een bulk vernieuwing met behulp van de metadata manager.", "MinutesAfter": "minuten na", "MinutesBefore": "minuten voor", @@ -1187,17 +1084,11 @@ "NoPluginsInstalledMessage": "U heeft geen Plugin geïnstalleerd", "NoResultsFound": "Geen resultaten gevonden.", "Notifications": "Notificaties", - "NumLocationsValue": "{0} folders", "OpenSubtitleInstructions": "Configureer de Open Subtitles accountinformatie in het desbetreffende configuratiescherm in het Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Acteur", "OptionActors": "Acteurs", "OptionAdminUsers": "Beheerders", "OptionAfterSystemEvent": "Na een systeem gebeurtenis", - "OptionAlbum": "Album", "OptionAlbumArtist": "Albumartiest", "OptionAll": "Alle", "OptionAllUsers": "Alle gebruikers", @@ -1218,35 +1109,28 @@ "OptionAllowVideoPlaybackRemuxing": "Sta afspelen toe van video die conversie vereist zonder re-encoding", "OptionAllowVideoPlaybackTranscoding": "Afspelen van video via transcoding toestaan", "OptionAnyNumberOfPlayers": "Elke", - "OptionArt": "Art", "OptionArtist": "Artiest", "OptionAscending": "Oplopend", - "OptionAuto": "Auto", "OptionAutomatic": "Automatisch", "OptionAutomaticallyGroupSeries": "Automatisch samenvoegen serie die zijn verspreid over meerdere mappen", "OptionAutomaticallyGroupSeriesHelp": "Indien ingeschakeld, zal serie die zijn verspreid over meerdere mappen binnen deze bibliotheek automatisch samengevoegd tot één serie.", "OptionBackdrop": "Achtergrond", "OptionBackdropSlideshow": "Achtergrondafbeelding voorstelling", "OptionBackdrops": "Achtergronden", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Best beschikbaar", - "OptionBeta": "Beta", "OptionBirthLocation": "Geboorte Locatie", "OptionBlockBooks": "Boeken", "OptionBlockChannelContent": "Internet kanaal Inhoud", - "OptionBlockGames": "Games", "OptionBlockLiveTvChannels": "Live TV Kanalen", "OptionBlockLiveTvPrograms": "Live TV Programma's", "OptionBlockMovies": "Films", "OptionBlockMusic": "Muziek", "OptionBlockOthers": "Overigen", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "TV Series", "OptionBluray": "Blu-ray", "OptionBooks": "Boeken", "OptionBox": "Hoes", "OptionBoxRear": "Achterkant hoes", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Collecties", "OptionCommunityRating": "Gemeenschaps Waardering", "OptionComposer": "Componist", @@ -1265,7 +1149,6 @@ "OptionDatePlayed": "Datum afgespeeld", "OptionDefaultSort": "Standaard", "OptionDescending": "Aflopend", - "OptionDev": "Dev", "OptionDirector": "Regiseur", "OptionDirectors": "Regiseurs", "OptionDisableUser": "Dit account uitschakelen", @@ -1277,18 +1160,12 @@ "OptionDisplayChannelsInlineHelp": "Indien ingeschakeld, zullen kanalen getoond worden direct naast de andere mediabibliotheken. Indien uitgeschakeld, zal zij worden weergegeven in een aparte map kanalen.", "OptionDisplayFolderView": "Toon een mappenweergave als u gewoon Mediamappen wilt weergeven", "OptionDisplayFolderViewHelp": "Indien ingeschakeld, zullen Jellyfin apps een Folders categorie naast uw mediabibliotheek weergeven. Dit is handig als u gewone mappenweergave wilt hebben.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Terug", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Schijf", "OptionDownloadImagesInAdvance": "Download afbeeldingen van tevoren", "OptionDownloadImagesInAdvanceHelp": "Standaard worden de meeste afbeeldingen gedownload wanneer ze opgevraagd worden door een Jellyfin app. Activeer deze optie om alle afbeeldingen op voorhand te downloaden bij het importeren van nieuwe media. Dit kan aanzienlijk langere bibliotheekscans veroorzaken.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Primair", "OptionDownloadThumbImage": "Miniatuur", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Insluiten in container", "OptionEnableAccessFromAllDevices": "Toegang vanaf alle apparaten toestaan", "OptionEnableAccessToAllChannels": "Toegang tot alle kanalen inschakelen", @@ -1320,14 +1197,11 @@ "OptionFriday": "Vrijdag", "OptionFridayShort": "Vr", "OptionGameSystems": "Spel Systemen", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "Gast Sterren", "OptionHasSpecialFeatures": "Extra's", "OptionHasSubtitles": "Ondertiteling", "OptionHasThemeSong": "Herkenningsmelodie", "OptionHasThemeVideo": "Thema Video", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Verberg deze gebruiker op de aanmeldschermen", "OptionHideUserFromLoginHelp": "Handig voor pivé of verborgen beheer accounts. De gebruiker zal handmatig m.b.v. gebruikersnaam en wachtwoord aan moeten melden.", "OptionHlsSegmentedSubtitles": "Hls gesegmenteerde ondertiteling", @@ -1338,9 +1212,6 @@ "OptionImages": "Afbeeldingen", "OptionImdbRating": "IMDb Waardering", "OptionInProgress": "In uitvoering", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Trefwoorden", "OptionLatestChannelMedia": "Nieuwste kanaal items", "OptionLatestMedia": "Nieuwste media", @@ -1349,9 +1220,6 @@ "OptionLikes": "Leuk", "OptionList": "Lijst", "OptionLocked": "Vergrendeld", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Ontbrekende Afleveringen", "OptionMissingImdbId": "IMDb Id ontbreekt", "OptionMissingOverview": "Overzicht ontbreekt", @@ -1364,7 +1232,6 @@ "OptionMovies": "Films", "OptionMusicAlbums": "Muziek albums", "OptionMusicArtists": "Muziek artiesten", - "OptionMusicVideos": "Music videos", "OptionName": "Naam", "OptionNameSort": "Naam", "OptionNo": "Nee", @@ -1387,7 +1254,6 @@ "OptionPlainVideoItemsHelp": "Indien ingeschakeld worden alle video's in DIDL weergegeven als 'object.item.videoItem' in plaats van een meer specifiek type, zoals 'object.item.videoItem.movie'.", "OptionPlayCount": "Afspeel telling", "OptionPlayed": "Afgespeeld", - "OptionPoster": "Poster", "OptionPosterCard": "Poster kaart", "OptionPremiereDate": "Première Datum", "OptionPrimary": "Primair", @@ -1396,22 +1262,17 @@ "OptionProducers": "Producenten", "OptionProfileAudio": "Geluid", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Video geluid", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Op elk tijdstip opnemen", "OptionRecordOnAllChannels": "Op alle kanalen opnemen", "OptionRecordOnlyNewEpisodes": "Alleen nieuwe afleveringen opnemen", "OptionRecordSeries": "Series Opnemen", - "OptionRegex": "Regex", "OptionRelease": "Officiële Release", "OptionReleaseDate": "Uitgave datum", "OptionReportByteRangeSeekingWhenTranscoding": "Rapporteer dat de server byte zoeken tijdens transcoderen ondersteunt", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Dit is vereist voor bepaalde apparaten die zo goed op tijd zoeken.", "OptionRequirePerfectSubtitleMatch": "Alleen ondertitels downloaden die een perfecte match geven voor mijn video bestanden", "OptionRequirePerfectSubtitleMatchHelp": "Een perfecte match vereisen zal de ondertitels filteren om alleen ondertitels te downloaden die getest en geverifieerd zijn met je exacte videobestand. Dit uitvinken zal de kans om ondertitels te vinden vergroten, maar ook de kans op een niet gesynchroniseerd of foute ondertitel vergroten.", - "OptionResElement": "res element", "OptionResumable": "Hervatbaar", "OptionResumablemedia": "Hervatten", "OptionRuntime": "Speelduur", @@ -1422,17 +1283,14 @@ "OptionScreenshot": "Schermafbeelding", "OptionSeason0": "Seizoen 0", "OptionSeasons": "Seizoenen", - "OptionSeries": "Series", "OptionSongs": "Titels", "OptionSortName": "Sorteerbaar", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Studio's", "OptionSubstring": "Subtekenreeks", "OptionSunday": "Zondag", "OptionSundayShort": "Zo", "OptionSyncLosslessAudioOriginal": "Synchroniseer lossless geluid in originele kwaliteit", "OptionSyncOnlyOnWifi": "Alleen via Wifi synchroniseren", - "OptionTags": "Tags", "OptionThumb": "Miniatuur", "OptionThumbCard": "Miniaturen kaart", "OptionThursday": "Donderdag", @@ -1451,7 +1309,6 @@ "OptionUpcomingDvdMovies": "Inclusief trailers van nieuwe en aankomende films op Dvd & Blu-ray", "OptionUpcomingMoviesInTheaters": "Voeg trailers van nieuwe en verwachtte films toe", "OptionUpcomingStreamingMovies": "Inclusief trailers van nieuwe en aankomende films op Netflix", - "OptionVideoBitrate": "Video Bitrate", "OptionWakeFromSleep": "Uit slaapstand halen", "OptionWatched": "Gezien", "OptionWednesday": "Woensdag", @@ -1507,7 +1364,6 @@ "ScanLibrary": "Scan bibliotheek", "SelectCameraUploadServers": "Upload camera foto's naar de volgende servers:", "SendMessage": "Bericht versturen", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "Jellyfin server zal heropgestart moeten worden na het installeren van een plugin.", "ServerUpdateNeeded": "Deze Jellyfin Server moet worden bijgewerkt. Om de laatste versie te downloaden, gaat u naar {0}", "Settings": "Instellingen", @@ -1528,7 +1384,6 @@ "SubtitleDownloadInstructions": "Om het downloaden van ondertitels te beheren, navigeer naar een bibliotheek in de \"Jellyfin bibliotheek instellingen\" en wijzig de instellingen.", "SubtitleDownloadersHelp": "Schakel de gewenste ondertiteldownloaders in en rangschik ze in volgorde van prioritieit.", "Subtitles": "Ondertiteling", - "Sync": "Sync", "SyncMedia": "Synchroniseer media", "SyncToOtherDevices": "Synchroniseer met andere apparaten", "SynologyUpdateInstructions": "Gelieve in te loggen op DSM en ga naar Pakket Center om bij te werken.", @@ -1538,49 +1393,36 @@ "TabActivity": "Activiteit", "TabAdvanced": "Geavanceerd", "TabAlbumArtists": "Albumartiesten", - "TabAlbums": "Albums", "TabAppSettings": "App Instellingen", "TabArtists": "Artiesten", "TabBasic": "Basis", "TabBasics": "Basis", "TabCameraUpload": "Camera upload", - "TabCast": "Cast", "TabCatalog": "Catalogus", "TabChannels": "Kanalen", "TabChapters": "Hoofdstukken", "TabCinemaMode": "Cinema mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titels", "TabCollections": "Collecties", - "TabContainers": "Containers", "TabControls": "Besturing", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", "TabDevices": "Apparaten", "TabDirectPlay": "Direct Afspelen", "TabDisplay": "Weergave", "TabEpisodes": "Afleveringen", - "TabExpert": "Expert", "TabExtras": "Extra's", "TabFavorites": "Favorieten", - "TabFilter": "Filter", "TabFolders": "Mappen", - "TabGames": "Games", "TabGeneral": "Algemeen", - "TabGenres": "Genres", "TabGuide": "Gids", "TabHelp": "Hulp", "TabHome": "Start", "TabHomeScreen": "Begin scherm", - "TabHosting": "Hosting", "TabImage": "Afbeelding", "TabImages": "Afbeeldingen", - "TabInfo": "Info", "TabLanguages": "Talen", "TabLatest": "Nieuw", "TabLibrary": "Bibliotheek", "TabLibraryAccess": "Bibliotheek toegang", - "TabLiveTV": "Live TV", "TabLogs": "Logboeken", "TabMetadata": "Metagegevens", "TabMovies": "Films", @@ -1603,7 +1445,6 @@ "TabPlayback": "Afspelen", "TabPlaylist": "Afspeellijst", "TabPlaylists": "Afspeellijst", - "TabPlugins": "Plugins", "TabProfile": "Profiel", "TabProfiles": "Profielen", "TabRecordings": "Opnamen", @@ -1613,19 +1454,15 @@ "TabScheduledTasks": "Geplande taken", "TabSecurity": "Beveiliging", "TabSeries": "Serie", - "TabServer": "Server", "TabServices": "Diensten", "TabSettings": "Instellingen", "TabShows": "Series", "TabSongs": "Titels", - "TabStreaming": "Streaming", "TabStudios": "Studio's", "TabSubtitles": "Ondertiteling", "TabSuggestions": "Suggesties", "TabSync": "Synchronisatie", "TabSyncJobs": "Sync Opdrachten", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Transcoderen", "TabUpcoming": "Binnenkort op TV", "TabUsers": "Gebruikers", @@ -1639,15 +1476,12 @@ "TitleDevices": "Apparaten", "TitleHardwareAcceleration": "Hardware versnelling", "TitleHostingSettings": "Hosting Instellingen", - "TitleLiveTV": "Live TV", "TitleNewUser": "Nieuwe gebruiker", "TitleNotifications": "Meldingen", "TitlePasswordReset": "Wachtwoord resetten", "TitlePlayback": "Afspelen", - "TitlePlugins": "Plugins", "TitleRemoteControl": "Beheer op afstand", "TitleScheduledTasks": "Geplande Taken", - "TitleServer": "Server", "TitleSignIn": "Aanmelden", "TitleSupport": "Ondersteuning", "TitleSync": "Synchroniseer", @@ -1659,52 +1493,33 @@ "UserAgentHelp": "Indien nodig een aangepaste user-agent HTTP-header opgeven", "UserProfilesIntro": "Jellyfin heeft ingebouwde ondersteuning voor gebruikersprofielen, die het mogelijk maakt om elke gebruiker eigen scherminstellingen, afspeelinstellingen en ouderlijk toezicht te geven.", "Users": "Gebruikers", - "ValueAlbumCount": "{0} albums", "ValueArtist": "Artiest: {0}", "ValueArtists": "Artiesten: {0}", "ValueAsRole": "als {0}", "ValueAudioCodec": "Geluidscodec: {0}", "ValueAwards": "Prijzen: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Voorwaarden: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Datum aangemaakt: {0}", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} afleveringen", "ValueExample": "Voorbeeld: {0}", - "ValueGameCount": "{0} games", "ValueGuestStar": "Gast ster", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} muziek video's", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 aflevering", - "ValueOneGame": "1 game", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 muziek video", "ValueOneSeries": "1 serie", "ValueOneSong": "1 titel", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Premiere {0}", - "ValuePremieres": "Premieres {0}", "ValuePriceUSD": "Prijs {0} (USD)", - "ValueSeriesCount": "{0} series", "ValueSeriesYearToPresent": "{0} - Heden", "ValueSongCount": "{0} titels", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studio's: {0}", "ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren", "ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Versie {0}", "ViewPlaybackInfo": "Bekijk afspelen info", "ViewTypeFolders": "Mappen", - "ViewTypeGames": "Games", "ViewTypeLiveTvChannels": "Kanalen", "ViewTypeLiveTvRecordingGroups": "Opnamen", "ViewTypeMovies": "Films", @@ -1714,9 +1529,7 @@ "ViewTypeMusicFavoriteSongs": "Favoriete titels", "ViewTypeMusicFavorites": "Favorieten", "ViewTypeMusicSongs": "Titels", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Welkom bij Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Dat is alles wat we nu nodig hebben. Jellyfin is begonnen met het verzamelen van informatie over uw media bibliotheek. Probeer sommige van onze apps en klik dan Finish om het Server Dashboard te bekijken.", "XmlDocumentAttributeListHelp": "Deze kenmerken worden toegepast op het hoofd-element van elk XML-antwoord.", "XmlTvKidsCategoriesHelp": "Programma's met deze categorieën wordt weergegeven als programma's voor kinderen. Scheid meerdere met '|'.", diff --git a/src/strings/no.json b/src/strings/no.json index 5b4d1c800e..0bda646fdf 100644 --- a/src/strings/no.json +++ b/src/strings/no.json @@ -1,1728 +1,40 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", "AddUserByManually": "Legg til lokal bruker ved å skrive inn opplysninger manuelt.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", "Alerts": "Varsler", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "Tillat tilkoblinger utenfra til denne Jellyfin Server.", "AllowRemoteAccessHelp": "Om du ikke krysser av, vil alle tilkoblinger utenfra blokkeres.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Avbryt", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Konverter media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "OK", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Personvern", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Hurtigstartsveiviser", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "Slett media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", - "FolderTypeTvShows": "TV Shows", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", "HeaderAddLocalUser": "Legg til lokal bruker", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Legg til bruker", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Bildeinnstillinger", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "Inviter med Jellyfin Connect .", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "Spill alle", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "Synk", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Jellyfin bruksbetingelser", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", "HeaderTypeImageFetchers": "{0} bildekilder", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "Kommende nyheter", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", "HowWouldYouLikeToAddUser": "Hvordan vil du legge til en bruker?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "Legg til en bruker ved å invitere via e-post.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "For å legge til en bruker som ikke er oppført, må du først koble brukerens konto til Jellyfin Connect fra deres brukerprofilside.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Endre innstillinger", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Slutt", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Neste", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "PIN-kode:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Forrige", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", "LabelTypeMetadataDownloaders": "{0} metadata-kilder:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Fornavn:", "LabelYoureDone": "Du er ferdig!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Flere brukere kan legges til senere fra Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", - "OptionFavorite": "Favorites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Vis avanserte innstillinger", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Fortell oss litt om deg selv", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Denne veiviseren hjelper deg gjennom installasjonsprosessen. Velg ønsket språk for å komme i gang.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin inneholder innebygd støtte for brukerprofiler, slik at hver bruker har egne skjerminnstillinger, avspillingsstatus og foreldrekontroll.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Velkommen til Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Det er alt vi trenger i denne omgang. Jellyfin har begynt å samle inn informasjon om mediebiblioteket ditt. Sjekk ut noen av våre apper, og klikk deretter Fullfør for å vise Server Dashboard .", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/pl.json b/src/strings/pl.json index 2d3720aa55..024ed10016 100644 --- a/src/strings/pl.json +++ b/src/strings/pl.json @@ -70,7 +70,6 @@ "ButtonManageFolders": "Zarządzaj biblioteką", "ButtonManageServer": "Zarządzanie serwerem", "ButtonManualLogin": "Logowanie manualne", - "ButtonMenu": "Menu", "ButtonMore": "Więcej", "ButtonMoreInformation": "Więcej Informacji", "ButtonMute": "Wycisz", @@ -83,7 +82,6 @@ "ButtonNo": "Nie", "ButtonNowPlaying": "Teraz odtwarzane", "ButtonOff": "Wyłącz", - "ButtonOk": "Ok", "ButtonOpen": "Otwórz", "ButtonOther": "Inne", "ButtonParentalControl": "Kontrola rodzicielska", @@ -143,7 +141,6 @@ "ButtonSkip": "Pomiń", "ButtonSort": "Sortuj", "ButtonSplitVersionsApart": "Rozdzielaj części", - "ButtonStart": "Start", "ButtonStop": "Zatrzymaj", "ButtonStopRecording": "Zatrzymaj nagrywanie", "ButtonSubmit": "Zatwierdź", @@ -165,7 +162,6 @@ "CategoryApplication": "Aplikacja", "CategoryPlugin": "Wtyczka", "CategorySync": "Synchronizacja", - "CategorySystem": "System", "CategoryUser": "Użytkownik", "ChangingMetadataImageSettingsNewContent": "Zmiany ustawień metadanych i pobierania grafik będą miały zastosowanie tylko dla nowo dodanej zawartości do biblioteki. W celu zastosowania zmian dla wcześniej dodanych pozycji, należy odświeżyć metadane manualnie.", "ChannelAccessHelp": "Wybierz kanały udostępniane temu użytkownikowi. Administratorzy będą mogli edytować wszystkie kanały używając menedżera metadanych.", @@ -378,7 +374,6 @@ "HeaderIdentificationCriteriaHelp": "Wprowadź przynajmniej jedno kryterium identyfikacji.", "HeaderIdentificationHeader": "Nagłówek identyfikacyjny", "HeaderImageBackdrop": "Fototapeta", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Opcje obrazu", "HeaderImagePrimary": "Podstawowy", "HeaderImageSettings": "Ustawienia obrazów", @@ -426,7 +421,6 @@ "HeaderMediaFolders": "Foldery mediów", "HeaderMediaInfo": "O mediach", "HeaderMediaLocations": "Lokalizacje mediów", - "HeaderMenu": "Menu", "HeaderMissing": "Brakujące", "HeaderMoreLikeThis": "Więcej podobnych", "HeaderMovies": "Filmy", @@ -474,7 +468,6 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Informacja o Profilu", "HeaderProfileServerSettingsHelp": "Te wartości kontrolują jak serwer Jellyfin będzie przedstawiany dla urządzeń.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Aktywności", "HeaderRecentlyPlayed": "Ostatnio odtwarzane", "HeaderRecordingGroups": "Grupy nagrań", @@ -553,7 +546,6 @@ "HeaderSync": "Synchronizacja", "HeaderSyncJobInfo": "Zadanie synchronizacji", "HeaderSystemDlnaProfiles": "Profile systemowe", - "HeaderTV": "TV", "HeaderTags": "Znaczniki", "HeaderTaskTriggers": "Wyzwalacze", "HeaderTermsOfService": "Warunki Usługi Jellyfin", @@ -717,7 +709,6 @@ "LabelDownloadInternetMetadataHelp": "Umożliwia pobieranie przez serwer Jellyfin informacji o mediach, dostarczając ich bogatą prezentację.", "LabelDownloadLanguages": "Języki pobierania:", "LabelDropImageHere": "Upuść obraz tutaj.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Kod PIN:", "LabelEmail": "Adres pocztowy:", "LabelEmailAddress": "Adres pocztowy", @@ -766,11 +757,9 @@ "LabelFanartApiKeyHelp": "Żądania fototapet, bez osobistego klucza API, zwrócą obrazy, które były zatwierdzone 7 dni temu. Z osobistym kluczem API wartość spada do 48 godzin, a jeżeli jesteś członkiem VIP fototapety wartość ta spadnie do około 10 minut.", "LabelFileOrUrl": "Plik, lub adres url:", "LabelFinish": "Zakończ", - "LabelFolder": "Folder:", "LabelFolderType": "Typ folderu:", "LabelForcedStream": "(Wymuszone)", "LabelForgotPasswordUsernameHelp": "Podaj nazwę użytkownika, jeśli pamiętasz.", - "LabelFormat": "Format:", "LabelFree": "Darmowe", "LabelFriendlyName": "Przyjazna nazwa:", "LabelFriendlyServerName": "Przyjazna nazwa serwera:", @@ -812,7 +801,6 @@ "LabelLanNetworks": "Sieci lokalne:", "LabelLanguage": "Język:", "LabelLastResult": "Ostatni wynik:", - "LabelLimit": "Limit:", "LabelLimitIntrosToUnwatchedContent": "Odtwarzaj zwiastuny tylko dla pozycji nieobejrzanych", "LabelLineup": "Kolejka:", "LabelLocalAccessUrl": "Dostęp lokalny (LAN): {0}", @@ -951,7 +939,6 @@ "LabelSeriesRecordingPath": "Folder nagrywania seriali (opcjonalne):", "LabelServerHost": "Serwer:", "LabelServerHostHelp": "192.168.1.100 or https://mojserwer.com", - "LabelServerPort": "Port:", "LabelSimultaneousConnectionLimit": "Limit jednoczesnych transmisji:", "LabelSkipIfAudioTrackPresent": "Pomijaj, jeżeli domyślna ścieżka dźwiękowa jest w języku pobierania", "LabelSkipIfAudioTrackPresentHelp": "Odznacz, aby upewnić się, że wszystkie wideo mają napisy, niezależnie od języka ścieżki dźwiękowej.", @@ -1014,9 +1001,7 @@ "LabelVideoCodec": "Wideo: {0}", "LabelVideoType": "Typy Wideo:", "LabelView": "Widok:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Określa zawartość elementu X_DLNACAP w przestrzeni nazw urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Określa zawartość elementu X_DLNADOC w przestrzeni nazw urn:schemas-dlna-org:device-1-0.", "LabelYourFirstName": "Twoje imię:", "LabelYoureDone": "Zakończono!", @@ -1027,11 +1012,9 @@ "LanNetworksHelp": "Lista adresów IP lub adresów IP z maską podsieci dla całych sieci, rozdzielana przecinkami, które będą traktowane jako sieć lokalna w trakcie egzekwowania ograniczeń przepustowości. Jeśli zostanie wypełniona, wszystkie pozostałe adresy będą traktowane jako sieć zewnętrzna i będą podlegać ograniczeniom przepustowości. Jeśli zostanie pusta, tylko podsieć, w której znajduje się serwer, będzie traktowana jako sieć lokalna.", "LatestFromLibrary": "Ostatnie {0}", "LearnHowToCreateSynologyShares": "Dowiedz się jak udostępniać foldery w Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Wybierz foldery mediów udostępniane temu użytkownikowi. Administratorzy będą mogli edytować wszystkie foldery używając menedżera metadanych.", "LinkApi": "API", "LinkCommunity": "Społeczność", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Dowiedz się więcej o Jellyfin Premium", "LiveTvUpdateAvailable": "(Dostępna aktualizacja)", "LoginDisclaimer": "Jellyfin zostało zaprojektowane tak, aby pomagać w zarządzaniu biblioteką domową - filmami, muzyką i fotografiami. Zapoznaj się z zasadami użytkowania. Używanie oprogramowania Jellyfin wymaga pełnego zaakceptowania zasad.", @@ -1058,7 +1041,6 @@ "MediaInfoFile": "Plik", "MediaInfoFocalLength": "Ogniskowa", "MediaInfoForced": "Wymuszone", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Klatkaż", "MediaInfoInterlaced": "Przeplot", "MediaInfoIsoSpeedRating": "Czułość ISO", @@ -1189,15 +1171,10 @@ "Notifications": "Powiadomienia", "NumLocationsValue": "{0} foldery", "OpenSubtitleInstructions": "Wymaga konfiguracji informacji o koncie Open Subtitles, na stronie konfiguracji Open Subtitles, w kokpicie serwera Jellyfin.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Aktor", "OptionActors": "Aktorzy", "OptionAdminUsers": "Administratorzy", "OptionAfterSystemEvent": "Po zdarzeniu systemowym", - "OptionAlbum": "Album", "OptionAlbumArtist": "Wykonawca albumu", "OptionAll": "Wszystko", "OptionAllUsers": "Wszyscy użytkownicy", @@ -1230,7 +1207,6 @@ "OptionBackdrops": "Fototapety", "OptionBanner": "Baner", "OptionBestAvailableStreamQuality": "Najlepsze możliwe", - "OptionBeta": "Beta", "OptionBirthLocation": "Miejsce urodzenia", "OptionBlockBooks": "Książki", "OptionBlockChannelContent": "Kanały internetowe", @@ -1246,7 +1222,6 @@ "OptionBooks": "Książki", "OptionBox": "Pudełko", "OptionBoxRear": "Tył pudełka", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Kolekcje", "OptionCommunityRating": "Ocena społeczności", "OptionComposer": "Kompozytor", @@ -1265,7 +1240,6 @@ "OptionDatePlayed": "Data odtwarzania", "OptionDefaultSort": "Domyślny", "OptionDescending": "Malejąco", - "OptionDev": "Dev", "OptionDirector": "Reżyser", "OptionDirectors": "Reżyserzy", "OptionDisableUser": "Deaktywuj tego użytkownika", @@ -1284,8 +1258,6 @@ "OptionDownloadDiscImage": "Dysk", "OptionDownloadImagesInAdvance": "Pobieraj obrazy z wyprzedzeniem", "OptionDownloadImagesInAdvanceHelp": "Domyślnie, większość obrazów jest pobierana tylko kiedy jest wymagana przez aplikacje Jellyfin. Aktywuj tą opcję, aby pobierać wszystkie obrazy z wyprzedzeniem, podczas importowania multimediów. Może powodować znacząco dłuższe skanowanie biblioteki.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Podstawowy", "OptionDownloadThumbImage": "Miniatura", "OptionDvd": "DVD", @@ -1338,9 +1310,6 @@ "OptionImages": "Obrazy", "OptionImdbRating": "Ocena IMDb", "OptionInProgress": "W trakcie", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Słowa kluczowe", "OptionLatestChannelMedia": "Ostatnie pozycje kanałów", "OptionLatestMedia": "Ostatnio dodane", @@ -1349,9 +1318,7 @@ "OptionLikes": "Lubie", "OptionList": "Lista", "OptionLocked": "Zablokowane", - "OptionLogo": "Logo", "OptionMax": "Maksymalny", - "OptionMenu": "Menu", "OptionMissingEpisode": "Brakujące Odcinki", "OptionMissingImdbId": "Brakuje identyfikatora IMDb", "OptionMissingOverview": "Brak opisu", @@ -1370,8 +1337,6 @@ "OptionNo": "Nie", "OptionNoTrailer": "Brak zwiastuna", "OptionNone": "Brak", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Podczas uruchomienia aplikacji", "OptionOnInterval": "Cyklicznie", "OptionOtherApps": "Inne aplikacje", @@ -1554,7 +1519,6 @@ "TabCollections": "Kolekcje", "TabContainers": "Kontenery", "TabControls": "Kotrolki", - "TabDLNA": "DLNA", "TabDashboard": "Kokpit", "TabDevices": "Urządzenia", "TabDirectPlay": "Odtwarzanie Bezposrednie", @@ -1677,10 +1641,8 @@ "ValueItemCount": "{0} pozycja", "ValueItemCountPlural": "{0} pozycji", "ValueLinks": "Łącza: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmy", "ValueMusicVideoCount": "{0} teledyski", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 odcinek", "ValueOneGame": "1 gra", "ValueOneMovie": "1 film", diff --git a/src/strings/pt-BR.json b/src/strings/pt-BR.json index 0603d74996..3715cb20c9 100644 --- a/src/strings/pt-BR.json +++ b/src/strings/pt-BR.json @@ -5,7 +5,6 @@ "AddUserByManually": "Adicionar um usuário local digitando manualmente as informações do usuário.", "AdditionalNotificationServices": "Explore o catálogo do plugin para instalar serviços adicionais de notificação.", "Advanced": "Avançado", - "Alerts": "Alerts", "All": "Tudo", "AllLibraries": "Todas as bibliotecas", "AllowDeletionFromAll": "Permitir a exclusão de mídia de todas as bibliotecas", @@ -20,7 +19,6 @@ "Audio": "Áudio", "BirthDateValue": "Nascimento: {0}", "BirthPlaceValue": "Local de nascimento: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Melhor qualidade, mas mais lento", "BookLibraryHelp": "Livros de áudio e texto são suportados. Revise o {0}Guia de Nomes de Livros do Jellyfin{1}.", "Browse": "Procurar", @@ -51,7 +49,6 @@ "ButtonDelete": "Excluir", "ButtonDeleteImage": "Excluir Imagem", "ButtonDown": "Descer", - "ButtonDownload": "Download", "ButtonEdit": "Editar", "ButtonEditImages": "Editar imagens", "ButtonEditOtherUserPreferences": "Editar este perfil de usuário, imagem e preferências pessoais.", @@ -63,14 +60,12 @@ "ButtonHelp": "Ajuda", "ButtonHide": "Ocultar", "ButtonHome": "Início", - "ButtonInfo": "Info", "ButtonInviteUser": "Convidar Usuário", "ButtonLearnMore": "Saiba mais", "ButtonLibraryAccess": "Acesso à biblioteca", "ButtonManageFolders": "Gerenciar pastas", "ButtonManageServer": "Gerenciar Servidor", "ButtonManualLogin": "Login Manual", - "ButtonMenu": "Menu", "ButtonMore": "Mais", "ButtonMoreInformation": "Mais informações", "ButtonMute": "Mudo", @@ -89,7 +84,6 @@ "ButtonParentalControl": "Controle etário", "ButtonPause": "Pausar", "ButtonPlay": "Reproduzir", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Lista de reprodução", "ButtonPreferences": "Preferências", "ButtonPrevious": "Anterior", @@ -149,7 +143,6 @@ "ButtonSubmit": "Enviar", "ButtonSubtitles": "Legendas", "ButtonSync": "Sincronizar", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Desinstalar", "ButtonUnmute": "Remover Mudo", "ButtonUp": "Subir", @@ -159,15 +152,12 @@ "ButtonViewAlbum": "Ver álbum", "ButtonViewArtist": "Ver artista", "ButtonViewWebsite": "Ver website", - "ButtonWebsite": "Website", "ButtonYes": "Sim", "CancelSeries": "Cancelar série", "CategoryApplication": "Aplicação", - "CategoryPlugin": "Plugin", "CategorySync": "Sincronização", "CategorySystem": "Sistema", "CategoryUser": "Usuário", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Selecione os canais a compartilhar com este usuário. Administradores poderão editar todos os canais usando o gerenciador de metadados.", "Channels": "Canais", "CinemaModeConfigurationHelp": "O modo cinema traz a experiência do cinema diretamente para a sua sala, possibilitando reproduzir trailers e introduções personalizadas antes do filme principal.", @@ -190,7 +180,6 @@ "DeviceLastUsedByUserName": "Utilizado por último por {0}", "Disabled": "Desativado", "Downloading": "Transferindo", - "Downloads": "Downloads", "DrmChannelsNotImported": "Canais com DRM não serão importados.", "EasyPasswordHelp": "Seu código pin fácil é usado para acesso off-line com apps suportados pelo Jellyfin e pode ser usado para acesso fácil dentro da rede.", "EnableDebugLoggingHelp": "O log de depuração só deveria estar ativo se necessário para propósitos de identificação de problemas. O aumento de acesso ao sistema de arquivos pode evitar que a máquina do servidor possa entrar em modo suspensão em alguns ambientes.", @@ -240,7 +229,6 @@ "Fullscreen": "Tela cheia", "General": "Geral", "GuestUserNotFound": "Usuário não encontrado. Por favor, certifique-se que o nome esteja correto e tente novamente ou tente digitar o endereço de e-mail.", - "GuideProviderLogin": "Login", "GuideProviderSelectListings": "Selecionar Listas", "H264CrfHelp": "O CRF (Constant Rate Factor) é o parâmetro padrão de qualidade para o codificador x264. Você pode definir valores entre 0 e 51, onde valores menores resultarão em melhor qualidade (ao custo de arquivos maiores). Valores sãos estão entre 18 e 28. O padrão para o x264 é 23, então você pode usar isso como um ponto de partida.", "H264EncodingPresetHelp": "Escolha um valor mais rápido para melhorar a performance, ou um valor mais lento para melhorar a qualidade.", @@ -259,7 +247,6 @@ "HeaderAddUpdateImage": "Adicionar/Atualizar Imagem", "HeaderAddUser": "Adicionar Usuário", "HeaderAdditionalParts": "Partes Adicionais", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avançado", "HeaderAirDays": "Dias da Exibição", "HeaderAlbums": "Álbuns", @@ -269,7 +256,6 @@ "HeaderApiKey": "Chave da Api", "HeaderApiKeys": "Chaves da Api", "HeaderApiKeysHelp": "As aplicações externas precisam ter um chave de Api para se comunicar com o Servidor Jellyfin. As chaves são emitidas ao entrar com uma conta Jellyfin ou concedendo manualmente a chave à aplicação.", - "HeaderApp": "App", "HeaderAudio": "Áudio", "HeaderAudioSettings": "Ajustes de Áudio", "HeaderAudioTracks": "Faixas de Audio", @@ -378,7 +364,6 @@ "HeaderIdentificationCriteriaHelp": "Digite, ao menos, um critério de identificação.", "HeaderIdentificationHeader": "Cabeçalho de Identificação", "HeaderImageBackdrop": "Imagem de Fundo", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "Opções de Imagem", "HeaderImagePrimary": "Principal", "HeaderImageSettings": "Ajustes da Imagem", @@ -416,7 +401,6 @@ "HeaderLibraryAccess": "Acesso à Biblioteca", "HeaderLibraryFolders": "Pastas de Mídias", "HeaderLibrarySettings": "Configurações da Biblioteca", - "HeaderLinks": "Links", "HeaderLiveTV": "TV ao Vivo", "HeaderLiveTv": "TV ao Vivo", "HeaderLiveTvTunerSetup": "Configuração do Sintonizador da TV ao Vivo", @@ -426,7 +410,6 @@ "HeaderMediaFolders": "Pastas de Mídia", "HeaderMediaInfo": "Informações da Mídia", "HeaderMediaLocations": "Localizações de Mídia", - "HeaderMenu": "Menu", "HeaderMissing": "Ausente", "HeaderMoreLikeThis": "Mais Disso", "HeaderMovies": "Filmes", @@ -541,7 +524,6 @@ "HeaderSpecialFeatures": "Recursos Especiais", "HeaderSpecials": "Especiais", "HeaderSplitMedia": "Separar Mídia", - "HeaderStatus": "Status", "HeaderStudios": "Estúdios", "HeaderSubtitleDownloads": "Downloads de Legendas", "HeaderSubtitleProfile": "Perfil da Legenda", @@ -553,8 +535,6 @@ "HeaderSync": "Sincronização", "HeaderSyncJobInfo": "Tarefa de Sincronização", "HeaderSystemDlnaProfiles": "Perfis do Sistema", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Disparadores de Tarefa", "HeaderTermsOfService": "Termos de Serviço do Jellyfin", "HeaderThemeSongs": "Músicas-Tema", @@ -565,7 +545,6 @@ "HeaderTopPlugins": "Plugins Mais Usados", "HeaderTrack": "Faixa", "HeaderTracks": "Faixas", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Perfil da Transcodificação", "HeaderTranscodingProfileHelp": "Adicionar perfis de transcodificação que indiquem que formatos deverão ser usados quando a transcodificação é necessária.", "HeaderTunerDevices": "Sintonizadores", @@ -651,7 +630,6 @@ "LabelBlastMessageInterval": "Intervalo das mensagens de exploração (segundos)", "LabelBlastMessageIntervalHelp": "Determina a duração em segundos entre as mensagens de exploração enviadas pelo servidor.", "LabelBlockContentWithTags": "Bloquear itens com tags:", - "LabelCache": "Cache:", "LabelCachePath": "Local do cache:", "LabelCachePathHelp": "Defina uma localização para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padrão do servidor.", "LabelCameraUploadPath": "Local para upload da câmera:", @@ -719,7 +697,6 @@ "LabelDropImageHere": "Soltar a imagem aqui.", "LabelDynamicExternalId": "Id de {0}:", "LabelEasyPinCode": "Código pin fácil:", - "LabelEmail": "Email:", "LabelEmailAddress": "Endereço de email", "LabelEmbedAlbumArtDidl": "Embutir a capa do álbum no Didl", "LabelEmbedAlbumArtDidlHelp": "Alguns dispositivos preferem este método para obter a capa do álbum. Outros podem falhar para reproduzir com esta opção ativada", @@ -818,10 +795,8 @@ "LabelLocalAccessUrl": "Acesso em Casa (LAN): {0}", "LabelLocalHttpServerPortNumber": "Número da porta local de http:", "LabelLocalHttpServerPortNumberHelp": "O número da porta tcp que o servidor http do Jellyfin deveria se conectar.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Aviso legal no login:", "LabelLoginDisclaimerHelp": "Este aviso será exibido na parte inferior da página de login.", - "LabelLogs": "Logs:", "LabelManufacturer": "Fabricante", "LabelManufacturerUrl": "Url do fabricante", "LabelMarkAs": "Marcar como:", @@ -909,9 +884,7 @@ "LabelPrevious": "Anterior", "LabelProfile": "Perfil:", "LabelProfileAudioCodecs": "Codecs de áudio:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Separados por vírgula. Pode ser deixado em branco para usar com todos os codecs.", - "LabelProfileContainer": "Container:", "LabelProfileContainersHelp": "Separados por vírgula. Pode ser deixado em branco para usar com todos os containers.", "LabelProfileVideoCodecs": "Codecs de vídeo:", "LabelProtocol": "Protocolo:", @@ -964,7 +937,6 @@ "LabelSpecialSeasonsDisplayName": "Nome de exibição da temporada especial:", "LabelSportsCategories": "Categorias de Esportes:", "LabelStartWhenPossible": "Iniciar quando possível:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Para quando possível:", "LabelStopping": "Parando", "LabelSubtitleDownloaders": "Downloaders de legendas:", @@ -975,12 +947,10 @@ "LabelSyncPath": "Local para conteúdo sincronizado:", "LabelSyncTempPath": "Local do arquivo temporário:", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincronização personalizada. Mídias convertidas criadas durante o processo de sincronização serão aqui armazenadas.", - "LabelTag": "Tag:", "LabelTheme": "Tema:", "LabelTime": "Hora:", "LabelTimeLimitHours": "Limite de tempo (horas):", "LabelTranscodingAudioCodec": "Codec do Áudio:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Local temporário para transcodificação:", "LabelTranscodingTempPathHelp": "Esta pasta contém arquivos ativos usados pelo transcodificador. Especifique um local personalizado ou deixe em branco para usar o padrão dentro da pasta de dados do servidor.", "LabelTranscodingTemporaryFiles": "Arquivos temporários da transcodificação:", @@ -997,7 +967,6 @@ "LabelUnairedMissingEpisodesWithinSeasons": "Exibir episódios por estrear dentro das temporadas", "LabelUnknownLanguage": "Idioma desconhecido", "LabelUploadSpeedLimit": "Limite de velocidade de upload (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Usar os seguintes serviços:", "LabelUser": "Usuário:", "LabelUserAgent": "Agente do usuário:", @@ -1014,9 +983,7 @@ "LabelVideoCodec": "Vídeo: {0}", "LabelVideoType": "Tipo de Vídeo:", "LabelView": "Visualizar:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Determina o conteúdo do elemento X_DLNACAP no namespace urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Determina o conteúdo do elemento X_DLNADOC no namespace urn:schemas-dlna-org:device-1-0", "LabelYourFirstName": "Seu primeiro nome:", "LabelYoureDone": "Pronto!", @@ -1027,11 +994,8 @@ "LanNetworksHelp": "Lista separada por vírgula de endereços IP ou entradas IP/máscara de rede para redes que serão consideradas como redes locais ao forçar restrições de banda. Se definida, todos os outros endereços IP serão considerados como estando em uma rede externa e estarão sujeitos a restrições de banda externa. Se deixada em branco, apenas a sub-rede do servidor é considerada como rede local.", "LatestFromLibrary": "Últimos {0}", "LearnHowToCreateSynologyShares": "Saiba como compartilhar pastas no Sinology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Selecione as pastas de mídia para compartilhar com este usuário. Administradores poderão editar todas as pastas usando o gerenciador de metadados.", - "LinkApi": "Api", "LinkCommunity": "Comunidade", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Saiba mais sobre o Jellyfin Premiere", "LiveTvUpdateAvailable": "(Atualização disponível)", "LoginDisclaimer": "Jellyfin está desenhado para ajudá-lo a gerenciar sua biblioteca de mídia pessoal, como vídeos caseiros ou fotos. Por favor, leia nossos termos de uso. O uso de qualquer software Jellyfin constitui a aceitação desses termos.", @@ -1040,7 +1004,6 @@ "MapChannels": "Mapear Canais", "MarkFFmpegExec": "Se estiver executando Linux ou OSX, você precisará localizar os arquivos de ffmpeg e ffprobe e marcá-los como executáveis. Isto é necessário para dar permissão ao Jellyfin para executá-los.", "MaxParentalRatingHelp": "Conteúdo com classificação maior será ocultado do usuário.", - "MediaInfoAltitude": "Altitude", "MediaInfoAnamorphic": "Anamórfico", "MediaInfoAperture": "Abertura", "MediaInfoAspectRatio": "Proporção da imagem", @@ -1049,7 +1012,6 @@ "MediaInfoCameraMake": "Fabricante da câmera", "MediaInfoCameraModel": "Modelo da câmera", "MediaInfoChannels": "Canais", - "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Tag do Codec", "MediaInfoContainer": "Recipiente", "MediaInfoDefault": "Padrão", @@ -1059,14 +1021,10 @@ "MediaInfoFocalLength": "Tamanho do foco", "MediaInfoForced": "Forçada", "MediaInfoFormat": "Formato", - "MediaInfoFramerate": "Framerate", "MediaInfoInterlaced": "Entrelaçado", "MediaInfoIsoSpeedRating": "Velocidade Iso", "MediaInfoLanguage": "Idioma", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Nível", - "MediaInfoLongitude": "Longitude", "MediaInfoOrientation": "Orientação", "MediaInfoPath": "Local", "MediaInfoPixelFormat": "Formato do pixel", @@ -1076,7 +1034,6 @@ "MediaInfoSampleRate": "Taxa da amostra", "MediaInfoShutterSpeed": "Velocidade do obturador", "MediaInfoSize": "Tamanho", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Áudio", "MediaInfoStreamTypeData": "Dados", "MediaInfoStreamTypeEmbeddedImage": "Imagem Incorporada", @@ -1189,10 +1146,6 @@ "Notifications": "Notificações", "NumLocationsValue": "{0} pastas", "OpenSubtitleInstructions": "Você terá que configurar as informações da conta do Open Subtitles na tela de configurações de Open Subtitles no painel de controle do Jellyfin Server.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Ator", "OptionActors": "Atores", "OptionAdminUsers": "Administradores", @@ -1221,16 +1174,12 @@ "OptionArt": "Arte", "OptionArtist": "Artista", "OptionAscending": "Crescente", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Reunir automaticamente séries que estejam espalhadas por múltiplas pastas", "OptionAutomaticallyGroupSeriesHelp": "Se ativado, séries que estiverem espalhadas por múltiplas pastas dentro desta biblioteca serão automaticamente reunidas em uma mesma série.", "OptionBackdrop": "Imagem de Fundo", "OptionBackdropSlideshow": "Apresentação de Imagens de Fundo", "OptionBackdrops": "Imagens de Fundo", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Melhor disponível", - "OptionBeta": "Beta", "OptionBirthLocation": "Local de Nascimento", "OptionBlockBooks": "Livros", "OptionBlockChannelContent": "Conteúdo do Canal de Internet", @@ -1240,13 +1189,10 @@ "OptionBlockMovies": "Filmes", "OptionBlockMusic": "Música", "OptionBlockOthers": "Outros", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "Séries de TV", - "OptionBluray": "Bluray", "OptionBooks": "Livros", "OptionBox": "Caixa", "OptionBoxRear": "Traseira da Caixa", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Coletâneas", "OptionCommunityRating": "Avaliação da Comunidade", "OptionComposer": "Compositor", @@ -1265,7 +1211,6 @@ "OptionDatePlayed": "Data da Reprodução", "OptionDefaultSort": "Padrão", "OptionDescending": "Decrescente", - "OptionDev": "Dev", "OptionDirector": "Diretor", "OptionDirectors": "Diretores", "OptionDisableUser": "Desativar este usuário", @@ -1279,13 +1224,10 @@ "OptionDisplayFolderViewHelp": "Se ativado, os apps Jellyfin exibirão uma categoria Pastas pela sua biblioteca de mídia. Isto é útil se quiser ter uma visualização por pasta.", "OptionDownloadArtImage": "Arte", "OptionDownloadBackImage": "Traseira", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Caixa", "OptionDownloadDiscImage": "Disco", "OptionDownloadImagesInAdvance": "Fazer download das imagens antecipadamente", "OptionDownloadImagesInAdvanceHelp": "Por padrão, a maioria das imagens são baixadas só quando um app Jellyfin solicita. Ativar esta opção fará download de todas as imagens atencipadamente, assim que novas mídias são importadas. Isto pode ocasionar um tempo maior para rastrear a biblioteca.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Capa", "OptionDownloadThumbImage": "Ícone", "OptionDvd": "DVD", @@ -1327,7 +1269,6 @@ "OptionHasSubtitles": "Legendas", "OptionHasThemeSong": "Música-Tema", "OptionHasThemeVideo": "Vídeo-Tema", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Ocultar este usuário das telas de login", "OptionHideUserFromLoginHelp": "Útil para contas de administrador privadas ou ocultas. O usuário necessitará entrar manualmente, digitando seu nome de usuário e senha.", "OptionHlsSegmentedSubtitles": "Legendas segmentadas hls", @@ -1338,8 +1279,6 @@ "OptionImages": "Imagens", "OptionImdbRating": "Avaliação IMDb", "OptionInProgress": "Em Reprodução", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Palavras-chave", "OptionLatestChannelMedia": "Itens recentes de canal", @@ -1349,9 +1288,7 @@ "OptionLikes": "Curtidas", "OptionList": "Lista", "OptionLocked": "Bloqueada", - "OptionLogo": "Logo", "OptionMax": "Máx", - "OptionMenu": "Menu", "OptionMissingEpisode": "Episódios Faltantes", "OptionMissingImdbId": "Faltando Id IMDb", "OptionMissingOverview": "Faltando Sinopse", @@ -1370,8 +1307,6 @@ "OptionNo": "Não", "OptionNoTrailer": "Nenhum Trailer", "OptionNone": "Nenhum", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Ao iniciar a aplicação", "OptionOnInterval": "Em um intervalo", "OptionOtherApps": "Outros apps", @@ -1398,13 +1333,10 @@ "OptionProfilePhoto": "Foto", "OptionProfileVideo": "Vídeo", "OptionProfileVideoAudio": "Áudio do Vídeo", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Gravar a qualquer hora", "OptionRecordOnAllChannels": "Gravar em todos os canais", "OptionRecordOnlyNewEpisodes": "Gravar apenas novos episódios", "OptionRecordSeries": "Gravar Séries", - "OptionRegex": "Regex", "OptionRelease": "Versão Oficial", "OptionReleaseDate": "Data de Lançamento", "OptionReportByteRangeSeekingWhenTranscoding": "Reportar que o servidor suporta busca de byte quando transcodificar", @@ -1427,12 +1359,10 @@ "OptionSortName": "Nome para ordenação", "OptionSpecialEpisode": "Especiais", "OptionStudios": "Estúdios", - "OptionSubstring": "Substring", "OptionSunday": "Domingo", "OptionSundayShort": "Dom", "OptionSyncLosslessAudioOriginal": "Sincronizar áudio lossless na qualidade original", "OptionSyncOnlyOnWifi": "Sincronizar apenas no Wifi", - "OptionTags": "Tags", "OptionThumb": "Ícone", "OptionThumbCard": "Cartão do ícone", "OptionThursday": "Quinta-feira", @@ -1471,7 +1401,6 @@ "PasswordResetHeader": "Redefinir Senha", "PasswordSaved": "Senha salva.", "PersonTypePerson": "Pessoa", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "O código pin foi redefinido.", "PinCodeResetConfirmation": "Deseja realmente redefinir o código pin?", "PlayOnAnotherDevice": "Reproduzir em outro dispositivo", @@ -1480,7 +1409,6 @@ "PleaseUpdateManually": "Por favor, desligue o Servidor Jellyfin e instale a última versão..", "PluginInstalledMessage": "O plugin foi instalado com sucesso. O Jellyfin Server precisa ser reiniciado para completar as alterações.", "PluginInstalledWithName": "{0} foi instalado", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} foi desinstalado", "PluginUpdatedWithName": "{0} foi atualizado", "PreferEmbeddedTitlesOverFileNames": "Preferir títulos embutidos ao invés de nomes de arquivos", @@ -1549,19 +1477,15 @@ "TabChannels": "Canais", "TabChapters": "Capítulos", "TabCinemaMode": "Modo Cinema", - "TabCodecs": "Codecs", "TabCollectionTitles": "Títulos", "TabCollections": "Coletâneas", - "TabContainers": "Containers", "TabControls": "Controles", - "TabDLNA": "DLNA", "TabDashboard": "Painel", "TabDevices": "Dispositivos", "TabDirectPlay": "Reprodução Direta", "TabDisplay": "Exibição", "TabEpisodes": "Episódios", "TabExpert": "Avançado", - "TabExtras": "Extras", "TabFavorites": "Favoritos", "TabFilter": "Filtro", "TabFolders": "Pastas", @@ -1575,13 +1499,11 @@ "TabHosting": "Hospedagem", "TabImage": "Imagem", "TabImages": "Imagens", - "TabInfo": "Info", "TabLanguages": "Idiomas", "TabLatest": "Recentes", "TabLibrary": "Biblioteca", "TabLibraryAccess": "Acesso à Biblioteca", "TabLiveTV": "TV ao Vivo", - "TabLogs": "Logs", "TabMetadata": "Metadados", "TabMovies": "Filmes", "TabMusic": "Música", @@ -1603,7 +1525,6 @@ "TabPlayback": "Reprodução", "TabPlaylist": "Lista de Reprodução", "TabPlaylists": "Listas de Reprodução", - "TabPlugins": "Plugins", "TabProfile": "Perfil", "TabProfiles": "Perfis", "TabRecordings": "Gravações", @@ -1618,14 +1539,11 @@ "TabSettings": "Ajustes", "TabShows": "Séries", "TabSongs": "Músicas", - "TabStreaming": "Streaming", "TabStudios": "Estúdios", "TabSubtitles": "Legendas", "TabSuggestions": "Sugestões", "TabSync": "Sincronização", "TabSyncJobs": "Tarefas de Sincronização", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Transcodificação", "TabUpcoming": "Estreando", "TabUsers": "Usuários", @@ -1644,7 +1562,6 @@ "TitleNotifications": "Notificações", "TitlePasswordReset": "Redefinição de Senha", "TitlePlayback": "Reprodução", - "TitlePlugins": "Plugins", "TitleRemoteControl": "Controle Remoto", "TitleScheduledTasks": "Tarefas Agendadas", "TitleServer": "Servidor", @@ -1665,19 +1582,14 @@ "ValueAsRole": "como {0}", "ValueAudioCodec": "Codec de Áudio: {0}", "ValueAwards": "Prêmios: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Condições: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Data da criação: {0}", "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episódios", "ValueExample": "Exemplo: {0}", "ValueGameCount": "{0} jogos", "ValueGuestStar": "Convidado Especial", - "ValueItemCount": "{0} item", "ValueItemCountPlural": "{0} itens", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmes", "ValueMusicVideoCount": "{0} vídeos musicais", "ValueOneAlbum": "1 álbum", @@ -1687,19 +1599,16 @@ "ValueOneMusicVideo": "1 vídeo musical", "ValueOneSeries": "1 série", "ValueOneSong": "1 música", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Estréia {0}", "ValuePremieres": "Estréia {0}", "ValuePriceUSD": "Preço: {0} (USD)", "ValueSeriesCount": "{0} séries", "ValueSeriesYearToPresent": "{0} - Presente", "ValueSongCount": "{0} músicas", - "ValueStatus": "Status: {0}", "ValueStudio": "Estúdio: {0}", "ValueStudios": "Estúdios: {0}", "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", - "ValueTrailerCount": "{0} trailers", "ValueVideoCodec": "Codec de Vídeo: {0}", "VersionNumber": "Versão {0}", "ViewPlaybackInfo": "Ver informação de reprodução", @@ -1714,9 +1623,7 @@ "ViewTypeMusicFavoriteSongs": "Músicas Favoritas", "ViewTypeMusicFavorites": "Favoritos", "ViewTypeMusicSongs": "Músicas", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bem vindo ao Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Isto é tudo que precisamos no momento. Jellyfin começou a coletar informações de sua biblioteca de mídia. Confira algumas de nossas apps e então cliqueTerminar para ver o Painel do Servidor.", "XmlDocumentAttributeListHelp": "Estes atributos são aplicados ao elemento principal de cada resposta xml.", "XmlTvKidsCategoriesHelp": "Programas com estas categorias serão exibidos como programas para crianças. Separados com '|'.", diff --git a/src/strings/pt-PT.json b/src/strings/pt-PT.json index cb22cef3b3..8515e2add6 100644 --- a/src/strings/pt-PT.json +++ b/src/strings/pt-PT.json @@ -1,31 +1,10 @@ { "AddGuideProviderHelp": "Adicionar uma fonte para a informação do Guia da TV", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Adicionar Utilizador", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "Explore o catálogo de extensões para instalar serviços adicionais de notificação.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Tudo", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Áudio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Navegue o nosso catálogo de extensões, para ver as extensões disponíveis.", - "ButtonAccept": "Accept", "ButtonAdd": "Adicionar", "ButtonAddMediaLibrary": "Adicionar Biblioteca de Multimédia", "ButtonAddScheduledTaskTrigger": "Adicionar Disparador", @@ -35,11 +14,9 @@ "ButtonArrowLeft": "Esquerda", "ButtonArrowRight": "Direita", "ButtonArrowUp": "Cima", - "ButtonAudioTracks": "Audio Tracks", "ButtonBack": "Voltar", "ButtonCancel": "Cancelar", "ButtonCancelSeries": "Cancelar Série", - "ButtonChangeContentType": "Change content type", "ButtonChangeServer": "Alterar Servidor", "ButtonClear": "Limpar", "ButtonClose": "Fechar", @@ -50,48 +27,30 @@ "ButtonCreate": "Criar", "ButtonDelete": "Remover", "ButtonDeleteImage": "Apagar imagem", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "Editar", - "ButtonEditImages": "Edit images", "ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e preferências pessoais.", "ButtonExit": "Sair", "ButtonFilter": "Filtro", "ButtonForgotPassword": "Esqueci a senha", "ButtonFullscreen": "Ecrã Inteiro", - "ButtonGuide": "Guide", "ButtonHelp": "Ajuda", - "ButtonHide": "Hide", "ButtonHome": "Início", "ButtonInfo": "Informação", "ButtonInviteUser": "Convidar Utilizador", "ButtonLearnMore": "Saiba mais", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", "ButtonManualLogin": "Início de Sessão Manual", - "ButtonMenu": "Menu", "ButtonMore": "Mais", "ButtonMoreInformation": "Mais informações", "ButtonMute": "Mudo", "ButtonNetwork": "Rede", "ButtonNew": "Novo", - "ButtonNewServer": "New Server", "ButtonNext": "Próxima", "ButtonNextPage": "Próxima Página", "ButtonNextTrack": "Faixa seguinte", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", "ButtonOpen": "Abrir", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", "ButtonPause": "Pausar", "ButtonPlay": "Reproduzir", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Lista de reprodução", - "ButtonPreferences": "Preferences", "ButtonPrevious": "Anterior", "ButtonPreviousPage": "Página Anterior", "ButtonPreviousTrack": "Faixa anterior", @@ -99,17 +58,13 @@ "ButtonProfile": "Perfil", "ButtonProfileHelp": "Definir sua imagem do perfil e senha.", "ButtonPurchase": "Comprar", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Guia rápido", "ButtonRecord": "Gravar", "ButtonReenable": "Reativar", "ButtonRefresh": "Atualizar", "ButtonRefreshGuideData": "Atualizar Dados do Guia", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", "ButtonRemoteControl": "Controle Remoto", "ButtonRemove": "Remover", - "ButtonRename": "Rename", "ButtonRepeat": "Repetir", "ButtonReports": "Relatórios", "ButtonReset": "Redefinir", @@ -127,14 +82,11 @@ "ButtonSearch": "Procurar", "ButtonSelect": "Selecionar", "ButtonSelectDirectory": "Selecione a diretoria", - "ButtonSelectServer": "Select Server", "ButtonSelectView": "Selecionar visualização", "ButtonSend": "Enviar", "ButtonSendInvitation": "Enviar convite", - "ButtonServer": "Server", "ButtonServerDashboard": "Painel do Servidor", "ButtonSettings": "Ajustes", - "ButtonShare": "Share", "ButtonShuffle": "Aleatório", "ButtonShutdown": "Encerrar", "ButtonSignIn": "Iniciar Sessão", @@ -145,39 +97,24 @@ "ButtonSplitVersionsApart": "Separar Versões", "ButtonStart": "Iniciar", "ButtonStop": "Parar", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "Enviar", "ButtonSubtitles": "Legendas", "ButtonSync": "Sincronizar", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Desinstalar", "ButtonUnmute": "Remover Mudo", - "ButtonUp": "Up", "ButtonUpdateNow": "Atualizar Agora", "ButtonUpload": "Carregar", "ButtonView": "Visualizar", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", "ButtonViewWebsite": "Ver website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplicação", "CategoryPlugin": "Extensão", "CategorySync": "Sincronização", "CategorySystem": "Sistema", "CategoryUser": "Utilizador", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Selecione os canais a compartilhar com este utilizador. Administradores poderão editar todos os canais usando o gestor de metadados.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "O modo cinema traz a experiência do cinema para a sua sala, possibilitando reproduzir trailers e introduções personalizadas antes da longa-metragem.", "CinemaModeConfigurationHelp2": "Apps do Jellyfin terão uma configuração para ativar ou desativar o cinema mode. Apps da TV ativam automaticamente o cinema mode.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Crie um perfil personalizado para um novo dispositivo ou para sobrepor um perfil de sistema.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Apagar", "DeleteDeviceConfirmation": "Deseja realmente excluir este dispositivo? Ele reaparecerá da próxima vez que um utilizador o utilize.", "DeleteImage": "Apagar Imagem", @@ -185,42 +122,13 @@ "DeleteMedia": "Remover multimédia", "DeleteUser": "Apagar Utilizador", "DeleteUserConfirmation": "Tem a certeza que deseja apagar este utilizador?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Isto apenas se aplica para dispositivos que podem ser identificados como únicos e não evitarão o acesso do navegador. Filtrar o acesso ao dispositivo do utilizador evita que sejam usados novos dispositivos até que sejam aprovados aqui.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", "EasyPasswordHelp": "Seu código pin fácil é usado para acesso off-line com apps suportados pelo Jellyfin e pode ser usado para acesso fácil dentro da rede.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o local dos seus ficheiros. Por favor, assegure-se que o local é valido e que o processo do Jellyfin Server tenha acesso a essa localização.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", "ErrorGettingTvLineups": "Ocorreu um erro ao fazer download da programação da tv. Por favor, certifique-se que a sua informação está correta e tente novamente.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", "ErrorMessageUsernameInUse": "O nome do utilizador já está em uso. Por favor, escolha um novo nome e tente novamente.", "ErrorPleaseSelectLineup": "Por favor selecione a programação e tente novamente. Se não houver programações disponíveis, verifique se o seu nome de utilizador, senha e código postal estão corretos.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", "ExitFullscreen": "Sair do ecrã inteiro", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "FastForward": "Avanço rápido", "FeatureRequiresJellyfinPremiere": "Este recurso requer uma subscrição ativa do Jellyfin Premiere", "FileNotFound": "Ficheiro não encontrado.", @@ -235,37 +143,24 @@ "FolderTypeMusicVideos": "Vídeos musicais", "FolderTypePhotos": "Fotos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Ecrã inteiro", - "General": "General", "GuestUserNotFound": "Utilizador não encontrado. Por favor, certifique-se que o nome está correto e tente novamente ou tente digitar o endereço de e-mail.", - "GuideProviderLogin": "Login", "GuideProviderSelectListings": "Selecionar Listas", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", "HeaderAccessSchedule": "Agendamento de Acesso", "HeaderAccessScheduleHelp": "Criar um agendamento de acesso para limitar o acesso a certas horas.", "HeaderActiveDevices": "Dispositivos Ativos", "HeaderActiveRecordings": "Gravações ativas", "HeaderActivity": "Atividade", "HeaderAddDevice": "Adicionar dispositivo", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Adicionar Disparador", "HeaderAddTag": "Adicionar Tag", "HeaderAddTitles": "Adicional Títulos", "HeaderAddUpdateImage": "Adicionar/Atualizar Imagem", "HeaderAddUser": "Adicionar Utilizador", "HeaderAdditionalParts": "Partes Adicionais", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avançado", "HeaderAirDays": "Dias de Exibição", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Todas as Gravações", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "Chave da Api", "HeaderApiKeys": "Chaves da Api", "HeaderApiKeysHelp": "As aplicações externas precisam ter uma chave da Api para se comunicarem com o Servidor Jellyfin. As chaves são emitidas ao entrar com uma conta Jellyfin ou concedendo manualmente a chave à aplicação.", @@ -279,31 +174,20 @@ "HeaderBackdrops": "Imagens de Fundo", "HeaderBecomeProjectSupporter": "Obter Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Bloquear conteúdo sem informação de classificação etária ou com informação desconhecida:", - "HeaderBooks": "Books", "HeaderBranding": "Marca", "HeaderBrandingHelp": "Personalize a aparência do Jellyfin para satisfazer as necessidades de seu grupo ou organização.", "HeaderCameraUpload": "Upload da Câmara", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "Elenco e Equipa", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderChannelAccess": "Acesso ao Canal", "HeaderChannels": "Canais", - "HeaderChapterImages": "Chapter Images", "HeaderChapters": "Capítulos", "HeaderCinemaMode": "Modo Cinema", "HeaderClients": "Clientes", - "HeaderCloudSync": "Cloud Sync", "HeaderCodecProfile": "Perfil do Codec", "HeaderCodecProfileHelp": "Perfis do Codec indicam as limitações de um dispositivo ao reproduzir codecs específicos. Se uma limitação ocorre, o ficheiro multimédia será transcodificado, mesmo se o codec estiver configurado para reprodução direta.", "HeaderCollections": "Coleções", "HeaderColumns": "Colunas", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", "HeaderConfirmDeletion": "Confirmar Exclusão", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "HeaderConfirmProfileDeletion": "Confirmar Remoção do Perfil", "HeaderConfirmRecordingCancellation": "Confirmar Cancelamento da Gravação", "HeaderConfirmRecordingDeletion": "Confirmar Exclusão da Gravação", @@ -312,7 +196,6 @@ "HeaderConfirmSeriesCancellation": "Confirmar Cancelamento da Série", "HeaderConfirmation": "Confirmação", "HeaderConnectToServer": "Conectar ao Servidor", - "HeaderConnectionFailure": "Connection Failure", "HeaderContainerProfile": "Perfil do Container", "HeaderContainerProfileHelp": "Perfis do Container indicam as limitações de um dispositivo ao reproduzir formatos específicos. Se uma limitação ocorre, o ficheiro multimédia será transcodificado, mesmo se o formato estiver configurado para reprodução direta.", "HeaderContinueWatching": "Continuar a ver", @@ -323,15 +206,11 @@ "HeaderDate": "Data", "HeaderDateIssued": "Data da Emissão", "HeaderDays": "Dias", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", "HeaderDeleteImage": "Remover Imagem", "HeaderDeleteItem": "Remover item", - "HeaderDeleteProvider": "Delete Provider", "HeaderDeleteTaskTrigger": "Excluir Disparador da Tarefa", "HeaderDestination": "Destino", "HeaderDetails": "Detalhes", - "HeaderDetectMyDevices": "Detect My Devices", "HeaderDeveloperInfo": "Informação do Programador", "HeaderDevice": "Dispositivo", "HeaderDeviceAccess": "Acesso ao Dispositivo", @@ -341,33 +220,22 @@ "HeaderDisplay": "Exibição", "HeaderDisplaySettings": "Apresentar Configurações", "HeaderDownloadSubtitlesFor": "Transferir legendas para:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Código de Pin fácil:", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", "HeaderError": "Erro", "HeaderExport": "Exportar", - "HeaderExternalPlayerPlayback": "External Player Playback", "HeaderExternalServices": "Serviços Externos", "HeaderFavoriteAlbums": "Álbuns Favoritos", - "HeaderFavoriteArtists": "Favorite Artists", "HeaderFavoriteEpisodes": "Episódios Favoritos", "HeaderFavoriteGames": "Jogos Favoritos", "HeaderFavoriteMovies": "Filmes Favoritos", "HeaderFavoriteShows": "Séries Favoritas", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Acesso a Características", "HeaderFeatures": "Recursos", "HeaderFetchImages": "Buscar Imagens:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtros", - "HeaderForKids": "For Kids", "HeaderForgotKey": "Esqueci a Chave", "HeaderForgotPassword": "Esqueci a Senha", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Reproduzido frequentemente", - "HeaderGames": "Games", "HeaderGenres": "Gêneros", "HeaderGuests": "Convidados", "HeaderGuideProviders": "Provedores de Guia", @@ -378,29 +246,19 @@ "HeaderIdentificationCriteriaHelp": "Digite, pelo menos, um critério de identificação.", "HeaderIdentificationHeader": "Cabeçalho de Identificação", "HeaderImageBackdrop": "Imagem de Fundo", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Principal", "HeaderImageSettings": "Opções da Imagem", "HeaderImages": "Imagens", "HeaderInstall": "Instalar", "HeaderInstalledServices": "Serviços Instalados", "HeaderInstantMix": "Mix instantâneo", - "HeaderInvitationSent": "Invitation Sent", "HeaderInvitations": "Convites", "HeaderInviteUser": "Convidar Utilizador", "HeaderInviteUserHelp": "Compartilhar os seus ficheiros multimédia com amigos nunca foi tão fácil com o Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Idioma", "HeaderLatestAlbums": "Últimos Álbuns", "HeaderLatestChannelItems": "Itens Recentes de Canal", "HeaderLatestChannelMedia": "Últimos Itens de Canais", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Últimos Episódios", "HeaderLatestFromChannel": "Mais recentes de {0}", "HeaderLatestItems": "Últimos Itens", @@ -412,45 +270,33 @@ "HeaderLatestTrailers": "Últimos Trailers", "HeaderLatestTvRecordings": "Últimas Gravações", "HeaderLibraries": "Bibliotecas", - "HeaderLibrary": "Library", "HeaderLibraryAccess": "Acesso à Biblioteca", "HeaderLibraryFolders": "Pastas multimédia", "HeaderLibrarySettings": "Definições da Biblioteca", "HeaderLinks": "Hiperligações", "HeaderLiveTV": "TV ao Vivo", "HeaderLiveTv": "TV ao Vivo", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "Falha no Login", "HeaderManagement": "Gestão", "HeaderMedia": "Multimédia", "HeaderMediaFolders": "Pastas Multimédia", "HeaderMediaInfo": "Informações Multimédia", "HeaderMediaLocations": "Localizações dos ficheiros multimédia", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", "HeaderMusicVideos": "Vídeos de Música", "HeaderMyMedia": "A Minha Multimédia", "HeaderMyViews": "Minhas Visualizações", "HeaderName": "Nome", "HeaderNavigation": "Navegação", - "HeaderNetwork": "Network", "HeaderNewApiKey": "Nova Chave da Api", "HeaderNewApiKeyHelp": "Conceda permissão à aplicação de se comunicar com o Servidor Jellyfin.", - "HeaderNewDevices": "New Devices", "HeaderNewServer": "Novo Servidor", "HeaderNewUsers": "Novos Utilizadores", "HeaderNextUp": "A Seguir", "HeaderNotifications": "Notificações", "HeaderNowPlaying": "A reproduzir", "HeaderNumberOfPlayers": "Reprodutores", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", "HeaderOptions": "Opções", "HeaderOtherDisplaySettings": "Ajustes de Exibição", - "HeaderOtherItems": "Other Items", "HeaderOverview": "Sinopse", "HeaderParentalRating": "Parental Rating", "HeaderParentalRatings": "Classificações Parentais", @@ -469,7 +315,6 @@ "HeaderPlaybackSettings": "Opções de Reprodução", "HeaderPlaylists": "Listas de reprodução", "HeaderPleaseSignIn": "Por favor inicie a sessão", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Idioma Preferencial dos Metadados", "HeaderProfile": "Perfil", "HeaderProfileInformation": "Informação do Perfil", @@ -477,16 +322,11 @@ "HeaderProgram": "Programa", "HeaderRecentActivity": "Atividade Recente", "HeaderRecentlyPlayed": "Reproduzido recentemente", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Controlo Remoto", "HeaderRemoveMediaFolder": "Excluir Pasta Multimédia", "HeaderRemoveMediaLocation": "Remover Localização dos ficheiros multimédia", "HeaderRequireManualLogin": "Necessita a inserção manual de um nome de utilizador para:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", "HeaderResetTuner": "Reiniciar Sintonizador", - "HeaderResolution": "Resolution", "HeaderResponseProfile": "Perfil de Resposta", "HeaderResponseProfileHelp": "Perfis de resposta oferecem uma forma de personalizar a informação enviada para o dispositivo ao executar certos ficheiros multimédia.", "HeaderRestart": "Reiniciar", @@ -496,33 +336,23 @@ "HeaderReviews": "Avaliações", "HeaderRevisionHistory": "Histórico de Versões", "HeaderRunningTasks": "Tarefas em Execução", - "HeaderRuntime": "Runtime", "HeaderScenes": "Cenas", "HeaderSchedule": "Agendamento", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Busca", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", "HeaderSelectAudio": "Selecione Áudio", "HeaderSelectCertificatePath": "Selecione o Local do Certificado", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", "HeaderSelectDate": "Selecionar Data", "HeaderSelectDevices": "Selecionar Dispositivos", - "HeaderSelectExternalPlayer": "Select External Player", "HeaderSelectMediaPath": "Selecionar o Local dos ficheiros Multimédia", "HeaderSelectMetadataPath": "Selecione o Local dos Metadados", "HeaderSelectMetadataPathHelp": "Localize ou digite o local que você gostaria de armazenar os metadados. A pasta deve ser gravável.", "HeaderSelectPath": "Selecione o Local", - "HeaderSelectPlayer": "Select Player", "HeaderSelectServer": "Selecionar Servidor", "HeaderSelectServerCachePath": "Selecione o Local do Cache do Servidor", "HeaderSelectServerCachePathHelp": "Localize ou digite o local para armazenar o cache do servidor. A pasta deve permitir gravação.", "HeaderSelectSubtitles": "Selecione Legendas", "HeaderSelectTranscodingPath": "Selecione o Local Temporário da Transcodificação", "HeaderSelectTranscodingPathHelp": "Localize ou insira o local para usar para os ficheiros temporários de transcodificação. A pasta deve permitir a escrita.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Enviar mensagem", "HeaderSeries": "Series:", "HeaderSeriesRecordings": "Gravações de Séries", @@ -534,16 +364,12 @@ "HeaderShareMediaFolders": "Compartilhar Pastas Multimédia", "HeaderShutdown": "Encerrar", "HeaderSignUp": "Registrar", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "Origem", "HeaderSpecialEpisodeInfo": "Informação do Episódio Especial", "HeaderSpecialFeatures": "Extras", - "HeaderSpecials": "Specials", "HeaderSplitMedia": "Separar ficheiros Multimédia", "HeaderStatus": "Estado", "HeaderStudios": "Estúdios", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "Perfil da Legenda", "HeaderSubtitleProfiles": "Perfis da Legenda", "HeaderSubtitleProfilesHelp": "Perfis da legenda descrevem os formatos da legenda suportados pelo dispositivo.", @@ -553,8 +379,6 @@ "HeaderSync": "Sincronização", "HeaderSyncJobInfo": "Tarefa de Sincronização", "HeaderSystemDlnaProfiles": "Perfis de Sistema", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Disparadores de Tarefa", "HeaderTermsOfService": "Termos de Serviço do Jellyfin", "HeaderThemeSongs": "Músicas Temáticas", @@ -562,26 +386,13 @@ "HeaderThisUserIsCurrentlyDisabled": "Este utilizador está desativado atualmente", "HeaderTime": "Tempo", "HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu código pin", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Perfil da Transcodificação", "HeaderTranscodingProfileHelp": "Adicionar perfis de transcodificação que indiquem que formatos deverão ser usados quando a transcodificação é necessária.", "HeaderTunerDevices": "Sintonizadores", - "HeaderTuners": "Tuners", "HeaderTvTuners": "Sintonizadores", "HeaderType": "Tipo", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Inserir texto", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "Próximas Notícias", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Carregar Nova Imagem", "HeaderUser": "Utilizador", "HeaderUserPrimaryImage": "Imagem do Utilizador", @@ -598,16 +409,10 @@ "HeaderYear": "Year:", "HeaderYears": "Anos", "HeadersFolders": "Pastas", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 Rácio de aspecto recomendado. JPG/ PNG apenas.", "ImportFavoriteChannelsHelp": "Se ativado, apenas canais que estão marcados como favoritos no sintonizador serão importados.", "ImportMissingEpisodesHelp": "Se ativo, a informação acerca dos episódios em falta, serão importados para a sua base de dados do Jellyfin e exibida dentro das temporadas e séries. Isto pode aumentar significativamente a duração da análise da biblioteca.", "Invitations": "Convites", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", "JellyfinIntroMessage": "Com o Jellyfin você pode facilmente fazer streaming de vídeos, músicas e fotos do Servidor Jellyfin para smartphones, tablets e outros dispositivos.", "LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)", "LabelAccessDay": "Dia da semana:", @@ -620,7 +425,6 @@ "LabelAirTime": "Horário:", "LabelAirTime:": "Horário:", "LabelAlbum": "Álbum:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", "LabelAlbumArtMaxHeight": "Altura máxima da capa do álbum:", "LabelAlbumArtMaxHeightHelp": "Resolução máxima da capa do álbum que é exposta via upnp:albumArtURI.", "LabelAlbumArtMaxWidth": "Largura máxima da capa do álbum:", @@ -630,11 +434,8 @@ "LabelAlbumArtists": "Artistas do Álbum:", "LabelAll": "Todos", "LabelAllLanguages": "Todos os idiomas", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualizações", "LabelAllowServerAutoRestartHelp": "O servidor irá reiniciar apenas durante períodos em que não esteja a ser usado, quando nenhum utilizador estiver ativo.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Qualquer hora", "LabelAppName": "Nome do app", "LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone", @@ -643,22 +444,14 @@ "LabelArtistsHelp": "Separa múltiplas com ;", "LabelAudioCodec": "Áudio: {0}", "LabelAudioLanguagePreference": "Preferências de Idioma de Audio:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", "LabelAvailableTokens": "Tokens disponíveis:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBlastMessageInterval": "Intervalo das mensagens de reconhecimento (segundos)", "LabelBlastMessageIntervalHelp": "Determina a duração em segundos entre as mensagens de exploração enviadas pelo servidor.", "LabelBlockContentWithTags": "Bloquear conteúdo com tags:", - "LabelCache": "Cache:", "LabelCachePath": "Localização da cache:", "LabelCachePathHelp": "Defina uma localização para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padrão do servidor.", "LabelCameraUploadPath": "Local para upload da câmera:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Cancelado", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", "LabelChannelStreamQuality": "Qualidade preferida do canal da internet:", "LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais fluído.", "LabelCodecIntrosPath": "Local dos codecs das introduções:", @@ -671,11 +464,9 @@ "LabelConnectGuestUserName": "Este é o seu nome de utilizador ou email da conta online do Jellyfin.", "LabelConnectGuestUserNameHelp": "Este é o nome de utilizador que seu amigo usa para entrar no website do Jellyfin, ou o seu endereço de email.", "LabelContentType": "Tipo de conteúdo:", - "LabelContentTypeValue": "Content type: {0}", "LabelContext": "Contexto:", "LabelConversionCpuCoreLimit": "Limite de núcleos da CPU:", "LabelConversionCpuCoreLimitHelp": "Limite o número de núcleos da CPU que serão usados durante a conversão na sincronização", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "País:", "LabelCreateCameraUploadSubfolder": "Criar uma subpasta para cada dispositivo", "LabelCreateCameraUploadSubfolderHelp": "Pastas específicas podem ser atribuídas a um dispositivo, clicando-as na página de Dispositivos.", @@ -693,21 +484,16 @@ "LabelDataProvider": "Provedor de dados:", "LabelDateAddedBehavior": "Data de adição de comportamento para o novo conteúdo:", "LabelDateAddedBehaviorHelp": "Se um valor de metadados estiver presente, ele sempre será utilizado antes destas opções.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Dia:", - "LabelDeathDate": "Death date:", "LabelDefaultForcedStream": "(Padrão/Forçada)", "LabelDefaultStream": "(Padrão)", "LabelDefaultUser": "Utilizador padrão:", "LabelDefaultUserHelp": "Determina qual utilizador será exibido nos dispositivos conectados. Isto pode ser ignorado para cada dispositivo usando perfis.", - "LabelDeinterlacingMethod": "Deinterlacing method:", "LabelDeviceDescription": "Descrição do dispositivo", "LabelDidlMode": "Modo Didl:", "LabelDisabled": "Desativada", "LabelDisplayCollectionsView": "Exibir uma visualização de coleções para mostrar coletâneas de filmes", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Mostrar episódios em falta dentro das temporadas", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "LabelDisplayName": "Nome para exibição:", "LabelDisplayPluginsFor": "Exibir extensões para:", "LabelDisplaySpecialsWithinSeasons": "Exibir especiais dentro das temporadas em que são exibidos", @@ -716,10 +502,7 @@ "LabelDownloadInternetMetadata": "Transferir imagens e metadados da Internet", "LabelDownloadInternetMetadataHelp": "O Servidor Jellyfin pode fazer download das informações multimédia para possibilitar belas apresentações.", "LabelDownloadLanguages": "Idiomas para download:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Código pin fácil:", - "LabelEmail": "Email:", "LabelEmailAddress": "Endereço de email", "LabelEmbedAlbumArtDidl": "Inserir a capa do álbum no Didl", "LabelEmbedAlbumArtDidlHelp": "Alguns dispositivos preferem este método para obter a capa do álbum. Outros podem falhar para reproduzir com esta opção ativada", @@ -763,8 +546,6 @@ "LabelExtractChaptersDuringLibraryScanHelp": "Se ativado, as imagens dos capítulos serão extraídas quando os vídeos forem importados durante a pesquisa na biblioteca. Se desativado, elas serão extraídas durante a tarefa agendada de imagens dos capítulos, permitindo que a pesquisa na biblioteca seja mais rápida.", "LabelFailed": "Falhou", "LabelFanartApiKey": "Chave da api pessoal:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Terminar", "LabelFolder": "Pasta:", "LabelFolderType": "Tipo de pasta", @@ -778,8 +559,6 @@ "LabelFromHelp": "Exemplo: {0} (no servidor)", "LabelGroupMoviesIntoCollections": "Agrupar filmes nas coleções", "LabelGroupMoviesIntoCollectionsHelp": "Ao exibir listas de filmes, filmes que pertençam a uma coleção serão exibidos como um único item agrupado.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", "LabelHardwareAccelerationType": "Aceleração de hardware:", "LabelHardwareAccelerationTypeHelp": "Disponível apenas em sistemas suportados.", "LabelHttpsPort": "Número da porta https local:", @@ -790,15 +569,12 @@ "LabelIconMaxWidthHelp": "Resolução máxima do ícone que é exposto via upnp:icon.", "LabelIdentificationFieldHelp": "Uma substring ou expressão regex que não diferencia maiúscula de minúsculas.", "LabelImage": "Imagem:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Tipo de imagem:", "LabelImportOnlyFavoriteChannels": "Restringir a canais marcados como favoritos", "LabelInNetworkSignInWithEasyPassword": "Ativar acesso dentro da rede com meu código pin fácil", "LabelInNetworkSignInWithEasyPasswordHelp": "Se ativado, você poderá usar um código pin fácil para entrar nos apps do Jellyfin dentro de sua rede. A sua senha normal só será necessária fora de sua casa. Se o código pin for deixado em branco, não será necessária uma senha dentro de sua rede doméstica.", "LabelIpAddressValue": "Endereço Ip: {0}", "LabelJpgPngOnly": "Apenas JPG/PNG", - "LabelKidsCategories": "Children's categories:", "LabelKodiMetadataDateFormat": "Formato da data de lançamento:", "LabelKodiMetadataDateFormatHelp": "Todas as datas dentro dos nfo's serão lidas e gravadas usando este formato.", "LabelKodiMetadataEnableExtraThumbs": "Copiar extrafanart para extrathumbs", @@ -807,27 +583,16 @@ "LabelKodiMetadataEnablePathSubstitutionHelp": "Ativa a substituição do local das imagens usando as opções de substituição de caminho no servidor.", "LabelKodiMetadataSaveImagePaths": "Salvar o local das imagens dentro dos arquivos nfo's", "LabelKodiMetadataSaveImagePathsHelp": "Esta opção é recomendada se você tiver nomes de arquivos de imagem que não estão de acordo às recomendações do Kodi.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Idioma:", "LabelLastResult": "Último resultado:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", "LabelLineup": "Programação:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Número da porta http local:", "LabelLocalHttpServerPortNumberHelp": "O número da porta tcp que o servidor http do Jellyfin deveria se conectar.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Aviso legal no login:", "LabelLoginDisclaimerHelp": "Este aviso será exibido na parte inferior da página de login.", - "LabelLogs": "Logs:", "LabelManufacturer": "Fabricante", "LabelManufacturerUrl": "URL do fabricante", - "LabelMarkAs": "Mark as:", "LabelMatchType": "Tipo de correspondência", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Número máximo de imagens de fundo por item:", "LabelMaxBitrate": "Taxa de bits máxima:", "LabelMaxBitrateHelp": "Especifique uma taxa de bits máxima para ambientes com restrição de tamanho de banda, ou se o dispositivo impõe esse limite.", @@ -835,20 +600,12 @@ "LabelMaxResumePercentage": "Percentagem máxima para retomar:", "LabelMaxResumePercentageHelp": "Os títulos são considerados totalmente assistidos se parados depois deste tempo", "LabelMaxScreenshotsPerItem": "Número máximo de imagens de ecrã por item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Defina uma taxa máxima para fazer streaming.", "LabelMessageText": "Texto da mensagem:", "LabelMessageTitle": "Titulo da mensagem:", "LabelMetadata": "Metadados:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Localização dos metadados:", "LabelMetadataPathHelp": "Define um local para artwork e metadados baixados da internet.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", "LabelMethod": "Método:", "LabelMinBackdropDownloadWidth": "Transferir Imagens de fundo com o tamanho mínimo:", "LabelMinResumeDuration": "Duração mínima da retoma (segundos):", @@ -863,22 +620,15 @@ "LabelModelUrl": "URL do modelo", "LabelMonitorUsers": "Monitorizar atividade de:", "LabelMovie": "Filme", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", "LabelMusicStaticBitrate": "Taxa de sincronização das músicas:", "LabelMusicStaticBitrateHelp": "Defina a taxa máxima ao sincronizar músicas", "LabelMusicStreamingTranscodingBitrate": "Taxa de transcodificação das músicas:", "LabelMusicStreamingTranscodingBitrateHelp": "Defina a taxa máxima ao fazer streaming das músicas", "LabelMusicVideo": "Vídeo Musical", "LabelName": "Nome:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Nova senha:", "LabelNewPasswordConfirm": "Confirmar nova senha:", "LabelNewUserNameHelp": "Nomes de utilizadores podem conter letras (a-z), números (0-9), traços (-), sublinhados (_), apóstrofes (') e pontos (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Seguinte", "LabelNoUnreadNotifications": "Nenhuma notificação por ler.", "LabelNotificationEnabled": "Ativar esta notificação", @@ -888,10 +638,6 @@ "LabelNumberTrailerToPlay": "Número de trailers para reproduzir:", "LabelOpenSubtitlesPassword": "Senha do Open Subtitles:", "LabelOpenSubtitlesUsername": "Nome de utilizador do Open Subtitles:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Senha:", "LabelPasswordConfirm": "Senha (confirmar):", "LabelPasswordRecoveryPinCode": "Código pin:", @@ -901,15 +647,10 @@ "LabelPlayMethodDirectPlay": "Reprodução Direta", "LabelPlayMethodDirectStream": "Streaming Direto", "LabelPlayMethodTranscoding": "Transcodificação", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Idioma de visualização preferencial:", "LabelPreferredDisplayLanguageHelp": "A tradução do Jellyfin é um projeto contínuo.", "LabelPrevious": "Anterior", - "LabelProfile": "Profile:", "LabelProfileAudioCodecs": "Codecs do áudio:", - "LabelProfileCodecs": "Codecs:", "LabelProfileCodecsHelp": "Separados por vírgula. Pode ser deixado em branco para usar com todos os codecs.", "LabelProfileContainer": "Contentor:", "LabelProfileContainersHelp": "Separados por vírgula. Pode ser deixado em branco para usar com todos os containers.", @@ -921,16 +662,11 @@ "LabelPublicHttpPortHelp": "O número da porta pública que deverá ser mapeada para a porta local de http.", "LabelPublicHttpsPort": "Número da porta pública de https:", "LabelPublicHttpsPortHelp": "O número da porta pública que deverá ser mapeada para a porta local de https.", - "LabelQuality": "Quality:", "LabelReadHowYouCanContribute": "Aprenda como pode contribuir.", "LabelRecordingPath": "Localização predefinida das gravações:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", "LabelReleaseDate": "Data do lançamento:", - "LabelRemoteAccessUrl": "WAN address: {0}", "LabelRemoteClientBitrateLimit": "Limite de taxa de bits para streaming da Internet (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", "LabelReport": "Relatório:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "A executar na porta http {0}.", "LabelRunningOnPorts": "A executar na porta http {0} e na porta https {1}.", "LabelRunningTimeValue": "Duração: {0}", @@ -941,18 +677,15 @@ "LabelSeasonFolderPattern": "Padrão da pasta da temporada:", "LabelSeasonNumber": "Número da temporada:", "LabelSeasonZeroFolderName": "Nome da pasta da temporada zero:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Trailers da Internet:", "LabelSelectUsers": "Selecionar utilizadores:", "LabelSelectVersionToInstall": "Selecione a versão para instalar:", "LabelSendNotificationToUsers": "Enviar notificação para:", "LabelSerialNumber": "Número de série", "LabelSeries": "Série:", - "LabelSeriesRecordingPath": "Series recording path (optional):", "LabelServerHost": "Servidor:", "LabelServerHostHelp": "192.168.1.100 ou https://meuservidor.com", "LabelServerPort": "Porta:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", "LabelSkipIfAudioTrackPresent": "Ignorar se a faixa de áudio padrão coincidir com o idioma de download", "LabelSkipIfAudioTrackPresentHelp": "Desmarque esta opção para garantir que todos os vídeos têm legendas, independentemente do idioma do áudio.", "LabelSkipIfGraphicalSubsPresent": "Ignorar se o vídeo já possuir legendas embutidas", @@ -961,13 +694,10 @@ "LabelSonyAggregationFlags": "Flags de agregação da Sony:", "LabelSonyAggregationFlagsHelp": "Determina o conteúdo do elemento aggregationFlags no namespace urn:schemas-sonycom:av.", "LabelSource": "Fonte:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", "LabelStartWhenPossible": "Começar quando possível:", "LabelStatus": "Estado:", "LabelStopWhenPossible": "Parar quando possível:", "LabelStopping": "Parando", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Exemplo: srt", "LabelSubtitleLanguagePreference": "Preferência de Idioma de Legenda:", "LabelSubtitlePlaybackMode": "Modo da Legenda:", @@ -975,8 +705,6 @@ "LabelSyncPath": "Local para conteúdo sincronizado:", "LabelSyncTempPath": "Caminho do ficheiro temporário:", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincronização personalizada. Multimédia convertida, criada durante o processo de sincronização, será aqui armazenada.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Tempo:", "LabelTimeLimitHours": "Limite de tempo (horas):", "LabelTranscodingAudioCodec": "Codec do Áudio:", @@ -992,7 +720,6 @@ "LabelTunerIpAddress": "Endereço IP do Sintonizador:", "LabelTunerType": "Tipo do sintonizador:", "LabelType": "Tipo:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", "LabelTypeText": "Texto", "LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episódios por estrear dentro das temporadas", "LabelUnknownLanguage": "Idioma desconhecido", @@ -1000,13 +727,9 @@ "LabelUrl": "URL:", "LabelUseNotificationServices": "Usar os seguintes serviços:", "LabelUser": "Utilizador:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Biblioteca do utilizador:", "LabelUserLibraryHelp": "Selecione qual é a biblioteca de utilizador a mostrar no dispositivo. Deixe em branco para herdar a definição padrão.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Nome de Utilizador:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", "LabelValue": "Valor:", "LabelVersionInstalled": "{0} instalado", "LabelVersionNumber": "Versão {0}", @@ -1014,91 +737,25 @@ "LabelVideoCodec": "Vídeo: {0}", "LabelVideoType": "Tipo de Vídeo:", "LabelView": "Visualizar:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Determina o conteúdo do elemento X_DLNACAP no namespace urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Determina o conteúdo do elemento X_DLNADOC no namespace urn:schemas-dlna-org:device-1-0", "LabelYourFirstName": "O seu primeiro nome:", "LabelYoureDone": "Concluiu!", "LabelZipCode": "CEP:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Escolha as pastas multimédia a partilhar com este utilizador. Os Administradores poderão editar todas as pastas, usando o Gestor de Metadados.", - "LinkApi": "Api", "LinkCommunity": "Comunidade", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Saiba mais sobre o Jellyfin Premiere", "LiveTvUpdateAvailable": "(Atualização disponível)", "LoginDisclaimer": "Jellyfin está desenhado para ajudá-lo a gerenciar sua biblioteca de multimédia pessoal, como vídeos caseiros ou fotos. Por favor, leia nossos termos de uso. O uso de qualquer software Jellyfin constitui a aceitação desses termos.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Conteúdo com classificação mais elevada será escondida deste utilizador.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", "MessageApplicationUpdated": "O Servidor Jellyfin foi atualizado", "MessageAreYouSureYouWishToRemoveMediaFolder": "Deseja realmente excluir esta pasta multimédia?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", "MessageConfirmProfileDeletion": "Deseja realmente remover este perfil?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "MessageConfirmResetTuner": "Deseja realmente reiniciar este sintonizador? Qualquer reprodutor ativo será abruptamente parado.", "MessageConfirmRestart": "Deseja realmente reiniciar o Servidor Jellyfin?", "MessageConfirmRevokeApiKey": "Deseja realmente revogar esta chave de api? A conexão da aplicação com o Servidor Jellyfin será abruptamente encerrada.", "MessageConfirmShutdown": "Deseja realmente desligar o Servidor Jellyfin?", "MessageConfirmSplitMedia": "Deseja realmente dividir as fontes de multimédia em itens separados?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", "MessageDeleteTaskTrigger": "Deseja realmente excluir este disparador de tarefa?", "MessageDestinationTo": "para:", "MessageDirectoryPickerBSDInstruction": "Para BSD, você precisará configurar o disco dentro de seu Jail do FreeNAS para permitir que o Jellyfin tenha acesso a ele.", @@ -1108,26 +765,16 @@ "MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.", "MessageErrorLoadingSupporterInfo": "Ocorreu um erro ao carregar a informação do Jellyfin Premiere. Por favor, tente novamente mais tarde.", "MessageErrorPlayingVideo": "Houve um erro na reprodução do vídeo.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", "MessageFileNotFound": "Arquivo não encontrado.", "MessageFileReadError": "Ocorreu um erro ao ler este arquivo.", "MessageFileWillBeDeleted": "O Arquivo Seguinte será removido:", "MessageFollowingFileWillBeMovedFrom": "Os seguintes arquivos serão movidos de:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageGuestSharingPermissionsHelp": "A maioria dos recursos estão inicialmente indisponíveis para convidados, mas podem ser ativados conforme necessário.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", "MessageInvalidUser": "Nome de utilizador ou senha inválidos. Por favor, tente novamente.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Item salvo.", "MessageItemsAdded": "Itens adicionados", "MessageJellyfinAccontRemoved": "A conta Jellyfin foi removida para este utilizador.", "MessageJellyfinAccountAdded": "A conta Jellyfin foi adicionada para este utilizador.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", "MessageNamedServerConfigurationUpdatedWithValue": "A seção {0} da configuração do servidor foi atualizada", "MessageNoAvailablePlugins": "Sem extensões disponíveis.", "MessageNoCollectionsAvailable": "Coleções permitem que você aproveite grupos personalizados de Filmes, Séries, Álbuns, Livros e Jogos. Clique no botão + para começar a criar Coleções.", @@ -1141,58 +788,27 @@ "MessageNoTrailersFound": "Nenhum trailer encontrado. Instale o canal Trailer para melhorar sua experiência com filmes, adicionando uma biblioteca de trailers da internet.", "MessageNothingHere": "Nada aqui.", "MessagePasswordResetForUsers": "As senhas foram removidas dos seguintes utilizadores. Para entrar, acesse com uma senha em branco", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePendingJellyfinAccountAdded": "A conta Jellyfin foi adicionada para este utilizador. Um email será enviado para o dono da conta. O convite precisará ser confirmado clicando no link dentro do email.", "MessagePleaseEnsureInternetMetadata": "Certifique-se que a transferência de metadados da internet está activa.", - "MessagePleaseRestart": "Please restart to finish updating.", "MessagePleaseRestartServerToFinishUpdating": "Por favor reinicie o servidor para terminar a aplicação das atualizações.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", "MessagePluginRequiresSubscription": "Este plugin requer uma subscrição ativa do Jellyfin Premiere após os 14 dias de teste grátis.", "MessagePremiumPluginRequiresMembership": "Este plugin requer uma subscrição ativa do Jellyfin Premiere para comprar após os 14 dias de teste grátis.", "MessageReenableUser": "Veja abaixo para reativar", "MessageServerConfigurationUpdated": "A configuração do servidor foi atualizada", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", "MessageThankYouForSupporting": "Obrigado por suportar o Jellyfin.", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "As localizações dos ficheiros multimédia abaixo serão excluídas de sua biblioteca Jellyfin:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTunerDeviceNotListed": "O seu sintonizador não está listado? Tente instalar um provedor de serviço externo para mais opções de TV ao Vivo.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "minutos depois", "MinutesBefore": "minutos antes", "MissingBackdropImage": "Imagem de fundo em falta.", "MissingEpisode": "Episódio em falta.", "MissingLogoImage": "Imagem do logo em falta.", "MissingPrimaryImage": "Imagem da capa em falta.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "É possível adicionar utilizadores mais tarde no Painel Principal", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Desativar Som", - "Never": "Never", "NewVersionOfSomethingAvailable": "Está disponível uma nova versão de {0}!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nenhum encontrado. Comece a ver os seus programas!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Não tem extensões instaladas.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Ator", "OptionActors": "Actores", "OptionAdminUsers": "Administradores", @@ -1205,7 +821,6 @@ "OptionAllowBrowsingLiveTv": "Permitir acesso a TV ao Vivo", "OptionAllowContentDownloading": "Permitir download dos ficheiros multimédia", "OptionAllowLinkSharing": "Permitir partilha nas redes sociais", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", "OptionAllowManageLiveTv": "Permitir gerir gravações de TV ao Vivo", "OptionAllowMediaPlayback": "Permitir reprodução de média", "OptionAllowMediaPlaybackTranscodingHelp": "Restringir o acesso à transcodificação pode causar falhas de reprodução nas aplicações do Jellyfin devido a formatos multimédia não suportados.", @@ -1213,25 +828,16 @@ "OptionAllowRemoteSharedDevices": "Permitir controlo remoto de dispositivos compartilhados", "OptionAllowRemoteSharedDevicesHelp": "Dispositivos DLNA são considerados compartilhados até que um utilizador comece a controlá-lo.", "OptionAllowSyncContent": "Permitir Sincronização", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Permitir a este utilizador gerir o servidor", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", "OptionAllowVideoPlaybackTranscoding": "Permitir reprodução de vídeo que necessite de transcodificação", "OptionAnyNumberOfPlayers": "Qualquer", "OptionArt": "Arte", "OptionArtist": "Artista", "OptionAscending": "Ascendente", - "OptionAuto": "Auto", "OptionAutomatic": "Automático", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Imagem de fundo", - "OptionBackdropSlideshow": "Backdrop slideshow", "OptionBackdrops": "Imagens de Fundo", - "OptionBanner": "Banner", "OptionBestAvailableStreamQuality": "Melhor disponível", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", "OptionBlockBooks": "Livros", "OptionBlockChannelContent": "Conteúdo do Canal de Internet", "OptionBlockGames": "Jogos", @@ -1240,22 +846,14 @@ "OptionBlockMovies": "Filmes", "OptionBlockMusic": "Música", "OptionBlockOthers": "Outros", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "Séries de TV", - "OptionBluray": "Bluray", - "OptionBooks": "Books", "OptionBox": "Caixa", "OptionBoxRear": "Traseira da Caixa", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Classificação da Comunidade", "OptionComposer": "Compositor", "OptionComposers": "Compositores", "OptionContinuing": "A Continuar", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", "OptionConvertRecordingsToStreamingFormat": "Converter automaticamente gravações para um formato amigável a streaming", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Classificação dos críticos", "OptionCustomUsers": "Personalizado", "OptionDaily": "Diariamente", @@ -1265,7 +863,6 @@ "OptionDatePlayed": "Data de reprodução", "OptionDefaultSort": "Padrão", "OptionDescending": "Descendente", - "OptionDev": "Dev", "OptionDirector": "Diretor", "OptionDirectors": "Realizadores", "OptionDisableUser": "Desativar este utilizador", @@ -1273,19 +870,11 @@ "OptionDisc": "Disco", "OptionDislikes": "Não gostos", "OptionDisplayAdultContent": "Exibir conteúdo adulto", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Arte", "OptionDownloadBackImage": "Traseira", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Caixa", "OptionDownloadDiscImage": "Disco", - "OptionDownloadImagesInAdvance": "Download images in advance", "OptionDownloadImagesInAdvanceHelp": "Por padrão, a maioria das imagens são descarregadas só quando uma aplicação do Jellyfin solicita. Ativar esta opção para descarregar todas as imagens antencipadamente, assim que os novos ficheiros multimédia são importados. Isto pode aumentar significativamente a duração da análise da biblioteca.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", "OptionDownloadPrimaryImage": "Principal", "OptionDownloadThumbImage": "Miniatura", "OptionDvd": "DVD", @@ -1294,17 +883,12 @@ "OptionEnableAccessToAllChannels": "Permitir acesso a todos os canais", "OptionEnableAccessToAllLibraries": "Permitir acesso a todas as bibliotecas", "OptionEnableAutomaticServerUpdates": "Ativar as atualizações automáticas do servidor", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", "OptionEnableExternalVideoPlayers": "Ativar reprodutores de vídeo externos", - "OptionEnableForAllTuners": "Enable for all tuner devices", "OptionEnableFullSpeedConversion": "Ativar conversão de alta velocidade", "OptionEnableFullSpeedConversionHelp": "Por padrão, a conversão na sincronização é executada em uma velocidade baixa para minimizar o consumo de recursos.", "OptionEnableFullscreen": "Ativar Ecrã Inteiro", "OptionEnableM2tsMode": "Ativar modo M2ts", "OptionEnableM2tsModeHelp": "Ative o modo m2ts quando codificar para mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "OptionEnableTranscodingThrottle": "Ativar controlador de fluxo", "OptionEnableTranscodingThrottleHelp": "O controlador de fluxo ajustará automaticamente a velocidade de transcodificação para minimizar o uso da cpu no servidor durante a reprodução.", "OptionEnded": "Terminado", @@ -1314,33 +898,23 @@ "OptionEstimateContentLength": "Estimar o tamanho do conteúdo ao transcodificar", "OptionEveryday": "Todos os dias", "OptionExternallyDownloaded": "Download Externo", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Favoritos", "OptionFolderSort": "Pastas", "OptionFriday": "Sexta", "OptionFridayShort": "Sex", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "Actores convidados", "OptionHasSpecialFeatures": "Extras", "OptionHasSubtitles": "Legendas", "OptionHasThemeSong": "Música de Tema", "OptionHasThemeVideo": "Vídeo de Tema", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Ocultar este utilizador dos formulários de início de sessão", "OptionHideUserFromLoginHelp": "Útil para contas de administrador privadas ou ocultas. O utilizador necessita de entrar manualmente, introduzindo o seu nome de utilizador e senha.", "OptionHlsSegmentedSubtitles": "Legendas segmentadas hls", - "OptionHomeVideos": "Home videos & photos", "OptionIcon": "Ícone", "OptionIgnoreTranscodeByteRangeRequests": "Ignorar requisições de extensão do byte de transcodificação", "OptionIgnoreTranscodeByteRangeRequestsHelp": "Se ativadas, estas requisições serão honradas mas irão ignorar o cabeçalho da extensão do byte.", "OptionImages": "Imagens", "OptionImdbRating": "Classificação no IMDb", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Palavras-chave", "OptionLatestChannelMedia": "Itens recentes de canal", "OptionLatestMedia": "Multimédia recente", @@ -1349,9 +923,7 @@ "OptionLikes": "Gostos", "OptionList": "Lista", "OptionLocked": "Bloqueada", - "OptionLogo": "Logo", "OptionMax": "Máx", - "OptionMenu": "Menu", "OptionMissingEpisode": "Episódios em Falta", "OptionMissingImdbId": "Id do IMDb em falta", "OptionMissingOverview": "Descrição em falta", @@ -1362,10 +934,6 @@ "OptionMonday": "Segunda", "OptionMondayShort": "Seg", "OptionMovies": "Filmes", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "Nome", "OptionNo": "Não", "OptionNoTrailer": "Nenhum Trailer", @@ -1378,16 +946,13 @@ "OptionOtherTrailers": "Incluir trailers de filmes antigos", "OptionOtherVideos": "Outros Vídeos", "OptionOthers": "Outros", - "OptionOverview": "Overview", "OptionParentalRating": "Classificação Parental", - "OptionPeople": "People", "OptionPlainStorageFolders": "Mostrar todas as pasta como pastas de armazenamento simples.", "OptionPlainStorageFoldersHelp": "Se ativado, todas as pastas são representadas no DIDL como \"object.container.storageFolder\" ao invés de um tipo mais específico como, por exemplo, \"object.container.person.musicArtist\".", "OptionPlainVideoItems": "Exibir todos os vídeos como itens de vídeo simples", "OptionPlainVideoItemsHelp": "Se ativado, todos os vídeos são representados no DIDL como \"object.item.videoItem\" ao invés de um tipo mais específico como, por exemplo, \"object.item.videoItem.movie\".", "OptionPlayCount": "N.º Visualizações", "OptionPlayed": "Reproduzido", - "OptionPoster": "Poster", "OptionPosterCard": "Cartão da capa", "OptionPremiereDate": "Data de Estreia", "OptionPrimary": "Capa", @@ -1398,19 +963,14 @@ "OptionProfilePhoto": "Fotografia", "OptionProfileVideo": "Vídeo", "OptionProfileVideoAudio": "Áudio do Vídeo", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Gravar a qualquer hora", "OptionRecordOnAllChannels": "Gravar em todos os canais", "OptionRecordOnlyNewEpisodes": "Gravar apenas novos episódios", "OptionRecordSeries": "Gravar Série", - "OptionRegex": "Regex", "OptionRelease": "Lançamento Oficial", "OptionReleaseDate": "Data de Lançamento:", "OptionReportByteRangeSeekingWhenTranscoding": "Reportar que o servidor suporta busca de byte quando transcodificar", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Isto é necessário para alguns dispositivos que não procuram o tempo muito bem.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", "OptionResElement": "elemento res", "OptionResumable": "Retomável", "OptionResumablemedia": "Retomar", @@ -1418,21 +978,14 @@ "OptionSaturday": "Sábado", "OptionSaturdayShort": "Sáb", "OptionSaveMetadataAsHidden": "Salvar metadados e imagens como arquivos ocultos", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Imagem da tela", "OptionSeason0": "Temporada 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "Especiais", "OptionStudios": "Estúdios", - "OptionSubstring": "Substring", "OptionSunday": "Domingo", "OptionSundayShort": "Dom", "OptionSyncLosslessAudioOriginal": "Sincronizar áudio lossless na qualidade original", "OptionSyncOnlyOnWifi": "Sincronizar apenas no Wifi", - "OptionTags": "Tags", "OptionThumb": "Miniatura", "OptionThumbCard": "Cartão do ícone", "OptionThursday": "Quinta", @@ -1447,13 +1000,11 @@ "OptionUnairedEpisode": "Episódios por Estrear", "OptionUnidentified": "Não identificada", "OptionUnplayed": "Por reproduzir", - "OptionUnwatched": "Unwatched", "OptionUpcomingDvdMovies": "Incluir trailers de filmes novos e por estrear em Dvd & Blu-ray", "OptionUpcomingMoviesInTheaters": "Incluir trailers dos filmes novos e por estrear", "OptionUpcomingStreamingMovies": "Incluir trailers de filmes novos e por estrear no Netflix", "OptionVideoBitrate": "Qualidade do vídeo", "OptionWakeFromSleep": "Retomar da suspensão", - "OptionWatched": "Watched", "OptionWednesday": "Quarta", "OptionWednesdayShort": "Qua", "OptionWeekday": "Dias da semana", @@ -1463,75 +1014,39 @@ "OptionWeekly": "Semanalmente", "OptionWriters": "Argumentistas", "OptionYes": "Sim", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Senha", "PasswordMatchError": "A senha e a confirmação da senha devem coincidir.", "PasswordResetComplete": "A senha foi redefinida.", "PasswordResetConfirmation": "Tem a certeza que deseja redefinir a senha?", "PasswordResetHeader": "Redefinir Senha", "PasswordSaved": "Senha guardada.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "O código pin foi redefinido.", "PinCodeResetConfirmation": "Deseja realmente redefinir o código pin?", "PlayOnAnotherDevice": "Reproduzir noutro dispositivo", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", "PluginInstalledWithName": "{0} foi instalado", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", "PluginUninstalledWithName": "{0} foi desinstalado", "PluginUpdatedWithName": "{0} foi atualizado", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", "ProviderValue": "Provedor: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Porque gosta de {0}", "RecommendationBecauseYouWatched": "Porque viu {0}", "RecommendationDirectedBy": "Realizado por {0}", "RecommendationStarring": "{0} como protagonista", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registar com PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", "Rewind": "Retroceder", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Analisar biblioteca", "SelectCameraUploadServers": "Fazer upload das fotos da câmara para os seguintes servidores:", "SendMessage": "Enviar mensagem", "Series": "Séries", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", "ServerUpdateNeeded": "Este Servidor Jellyfin precisa ser atualizado. Para fazer download da versão mais recente, por favor visite {0}", "Settings": "Definições", "SettingsSaved": "Configurações guardadas.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", "Standard": "Padrão", "StatusRecording": "A gravar", "StatusRecordingProgram": "A Gravar {0}", "StatusWatching": "A ver", "StatusWatchingProgram": "A ver {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Legendas", - "Sync": "Sync", "SyncMedia": "Sincronizar ficheiros multimédia", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", "SystemDlnaProfilesHelp": "Perfis de sistema são apenas de leitura. Mudanças a um perfil de sistema serão guardadas num novo perfil personalizado.", "TabAbout": "Acerca", "TabAccess": "Acesso", @@ -1544,24 +1059,19 @@ "TabBasic": "Básico", "TabBasics": "Básico", "TabCameraUpload": "Upload da Câmera", - "TabCast": "Cast", "TabCatalog": "Catálogo", "TabChannels": "Canais", "TabChapters": "Capítulos", "TabCinemaMode": "Modo Cinema", - "TabCodecs": "Codecs", "TabCollectionTitles": "Títulos", "TabCollections": "Coleções", "TabContainers": "Contentores", "TabControls": "Controlos", - "TabDLNA": "DLNA", "TabDashboard": "Painel Principal", "TabDevices": "Dispositivos", "TabDirectPlay": "Reprodução Direta", "TabDisplay": "Exibição", "TabEpisodes": "Episódios", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Favoritos", "TabFilter": "Filtro", "TabFolders": "Pastas", @@ -1575,13 +1085,11 @@ "TabHosting": "Hospedagem", "TabImage": "Imagem", "TabImages": "Imagens", - "TabInfo": "Info", "TabLanguages": "Idiomas", "TabLatest": "Mais recente", "TabLibrary": "Biblioteca", "TabLibraryAccess": "Aceder à Biblioteca", "TabLiveTV": "TV ao Vivo", - "TabLogs": "Logs", "TabMetadata": "Metadados", "TabMovies": "Filmes", "TabMusic": "Música", @@ -1608,8 +1116,6 @@ "TabProfiles": "Perfis", "TabRecordings": "Gravações", "TabResponses": "Respostas", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", "TabScheduledTasks": "Tarefas Agendadas", "TabSecurity": "Segurança", "TabSeries": "Séries", @@ -1618,27 +1124,20 @@ "TabSettings": "Configurações", "TabShows": "Séries", "TabSongs": "Músicas", - "TabStreaming": "Streaming", "TabStudios": "Estúdios", "TabSubtitles": "Legendas", "TabSuggestions": "Sugestões", "TabSync": "Sincronização", "TabSyncJobs": "Tarefas de Sincronização", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Transcodificação", "TabUpcoming": "Próximos", "TabUsers": "Utilizadores", "TabView": "Visualizar", "TellUsAboutYourself": "Fale-nos sobre si", - "TermsOfUse": "Terms of use", "TextConnectToServerManually": "Conectar ao servidor manualmente", "TextEnjoyBonusFeatures": "Aproveite os Extras", - "Themes": "Themes", "ThisWizardWillGuideYou": "Este assistente irá ajudá-lo durante o processo de configuração. Para começar, selecione o idioma.", "TitleDevices": "Dispositivos", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "TV ao Vivo", "TitleNewUser": "Novo Utilizador", "TitleNotifications": "Notificações", @@ -1652,57 +1151,19 @@ "TitleSupport": "Suporte", "TitleSync": "Sincronizar", "TitleUsers": "Utilizadores", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Tem a certeza que deseja desinstalar {0}?", "UninstallPluginHeader": "Desinstalar extensão", "Unmute": "Ativar Som", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "O Jellyfin inclui suporte nativo de perfis de utilizadores, permitindo que cada utilizador tenha as suas configurações de visualização, estado da reprodução e controlos parentais.", "Users": "Utilizadores", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", "ValueAudioCodec": "Codec de Áudio: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", "ValueConditions": "Condições: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Data da criação: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", "ValueItemCountPlural": "{0} itens", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", - "ValueTrailerCount": "{0} trailers", "ValueVideoCodec": "Codec de Vídeo: {0}", "VersionNumber": "Versão {0}", - "ViewPlaybackInfo": "View playback info", "ViewTypeFolders": "Pastas", "ViewTypeGames": "Jogos", "ViewTypeLiveTvChannels": "Canais", @@ -1714,15 +1175,7 @@ "ViewTypeMusicFavoriteSongs": "Músicas Favoritas", "ViewTypeMusicFavorites": "Favoritos", "ViewTypeMusicSongs": "Músicas", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bem-vindo ao Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "É tudo, de momento. O Jellyfin começou a recolher informações da sua biblioteca multimédia. Confira algumas das nossas apps e de seguida clique Terminar para ver o Painel Principal do Servidor", "XmlDocumentAttributeListHelp": "Estes atributos são aplicados ao elemento principal de cada resposta xml.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/ro.json b/src/strings/ro.json index 08c8d856d0..520db7dede 100644 --- a/src/strings/ro.json +++ b/src/strings/ro.json @@ -1,231 +1,43 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Toate", - "AllLibraries": "All libraries", "AllowDeletionFromAll": "Permite ștergerea de fișiere media din toate bibliotecile", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Calitate ridicată, însă mai lent", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", "ButtonAdd": "Adaugă", - "ButtonAddMediaLibrary": "Add Media Library", "ButtonAddScheduledTaskTrigger": "Adaugă declanșator", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Adaugă Utilizator", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Anulează", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Configurează codul pin", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Convertește media", - "ButtonCreate": "Create", "ButtonDelete": "Șterge", "ButtonDeleteImage": "Șterge Imaginea", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "Modifică", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Ieșire", "ButtonFilter": "Filtru", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", "ButtonHelp": "Ajutor", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "Invită Utilizator", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", "ButtonManualLogin": "Conectare manuală", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Nou", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", "ButtonPlay": "Redă", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Politică de confidențialitate", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Ghid rapid de Start", "ButtonRecord": "Înregistrează", - "ButtonReenable": "Re-enable", "ButtonRefresh": "Reîmprospătează", "ButtonRefreshGuideData": "Reîmprospătează Ghidul", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "Elimină", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Resetează parola", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Salvează", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", "ButtonSelect": "Selectează", "ButtonSelectDirectory": "Selectați Director", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", "ButtonSignIn": "Autentificare", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Sortează", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "Încarcă", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "Sincronizează", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Selectează canalele pe care vrei să le partajezi cu acest utilizator. Administratorii vor avea posibilitatea sa editeze canalele folosind managerul de metadate.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", "DefaultMetadataLangaugeDescription": "Acestea sunt setările implicite și pot fi personalizate pentru fiecare bibliotecă în parte.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteMedia": "Ștergere fișiere media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "Aceasta se aplică numai pentru dispozitive care pot fi identificate în mod unic și nu va împiedica accesul din navigatorul de internet. Filtrând accesul dispozitivelor utilizatorului va împiedica utilizarea noilor dispozitive până când acestea nu vor fi aprobate aici.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", "ExtractChapterImagesHelp": "Extragerea de imagini de capitol va permite aplicațiilor Jellyfin sa afișeze grafic un meniu de selecție a scenelor. Procesul poate fi lent, intensiv pentru procesor și poate necesita câțiva gigaocteți de spațiu de stocare. Acesta rulează atunci când fișierele media sunt detectate ca noi, și de asemenea ca o sarcină programată de noapte. Programare este configurabilă în zona de administrare a sarcinilor programate. Nu este recomandat ca această sarcină să ruleze în timpul perioadelor de utilizare intensă de către utilizatori.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Cărți", "FolderTypeGames": "Jocuri", "FolderTypeInherit": "Moștenește", @@ -235,1494 +47,283 @@ "FolderTypeMusicVideos": "Videoclipuri muzicale", "FolderTypePhotos": "Fotografii", "FolderTypeTvShows": "Seriale TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", "HeaderActiveRecordings": "Înregistrări active", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "Adaugă declanșator", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Adaugă Utilizator", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", "HeaderAirDays": "Zile difuzare", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Muzică", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Actualizare Automată", "HeaderAvailableServices": "Servicii Disponibile", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Canale", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Continuare Vizionare", "HeaderCreatePassword": "Creează parolă", "HeaderCredits": "Autori", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", "HeaderDays": "Zile", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", "HeaderDetails": "Detalii", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Accesul Dispozitivelor", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Cod Pin Ușor", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Acces Facilități", - "HeaderFeatures": "Features", "HeaderFetchImages": "Preia imagini:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtre", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Rulate Frecvent", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Setari Imagini", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Servicii Instalate", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Cele Mai Recente Albume", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Cele Mai Noi Episoade", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "Cele mai noi Filme", - "HeaderLatestMusic": "Latest Music", "HeaderLatestRecordings": "Cele mai recente înregistrări", "HeaderLatestSongs": "Cele Mai Recente Cântece", "HeaderLatestTrailers": "Cele Mai Recente Trailere", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "Urmează", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Rulează Acum", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Căi", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Tipuri Persoane:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Setări Redare", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "Vă rugăm, autentificați-vă", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Limba preferata pentru metadata", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Rulate Recent", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Control la distanță", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", "HeaderResume": "Reluare", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", "HeaderServices": "Servicii", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "Setați-vă biblitecile media", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "Sincronizează", "HeaderSyncJobInfo": "Sarcină de sincronizare", - "HeaderSystemDlnaProfiles": "System Profiles", "HeaderTV": "Seriale TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Declanșatori Sarcini", "HeaderTermsOfService": "Termeni de Utilizare Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Pentru a accesa, introduceți vă rog codul pin usor", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "Știri viitoare", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Încarcă o imagine nouă", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Utilizatori", "HeaderVideo": "Filme", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Rație de Aspect Recomandată 1:1. Doar fișiere JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ImportMissingEpisodesHelp": "Dacă este activată, informația despre episoadele lipsă va fi importată in baza de date Jellyfin și va fi afișată în cadrul serialelor. Aceasta poate cauza un timp semnificativ mai îndelungat la scanarea bibliotecilor.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Pentru a adăuga un utilizator care nu este listat, va trebui să legați mai întâi contul lor la Jellyfin Connect de la pagina lor de profil de utilizator.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Permite serverului să se repornească automat pentru a aplica actualizările", "LabelAllowServerAutoRestartHelp": "Serverul se va reporni doar în timp ce nu are nici o sarcină, când nu este nici un utilizator conectat.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artiști:", "LabelArtistsHelp": "Separă mai multe folosind ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Preferințe de limbă pentru audio:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Cale pentru cache:", "LabelCachePathHelp": "Specificați o locație specială pentru fișierele de cache, precum imagini etc. Lasați gol pentru a folosi setarea implicită.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Configurează setările", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tip conținut:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Țara:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Parola curentă:", - "LabelCurrentPath": "Current path:", "LabelCustomCertificatePath": "Calea către certificatul personalizat:", "LabelCustomCertificatePathHelp": "Furnizați propriul fișier care conține un certificat SSL in format .pfx.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "Personalizați pentru tipul de media:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", "LabelDeinterlacingMethod": "Metodă de interpolare:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Afișeaza episoadele lipsă din seriale", "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Aceasta trebuie sa fie de asemenea activată pentru bibliotecile de seriale în setările serverului Jellyfin.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Descarcă postere si metadata via Internet", "LabelDownloadInternetMetadataHelp": "Serverul Jellyfin poate descarca informații despre conținutul dvs. media pentru a putea prezenta bibliotecile dvs. într-un mod îmbunătățit.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", "LabelFanartApiKey": "Cheie API pesonală:", "LabelFanartApiKeyHelp": "Cererile către Fanart fără o cheie API personală returnează imagini care au fost aprobate acum mai bine de 7 zile. Cu o cheie API personală perioada scade la 48 de ore și dacă sunteți membru VIP Fanart intervalul va fi redus la 10 minute.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Termină", - "LabelFolder": "Folder:", "LabelFolderType": "Tip dosar:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Limba:", "LabelLastResult": "Ultimul rezultat:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Numărul maxim de fundaluri pentru fiecare element:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Limită de vârstă maxim permisă:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMaxScreenshotsPerItem": "Numărul maxim de capturi pentru fiecare element:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", "LabelMetadataDownloadLanguage": "Limba preferată pentru metadata:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Cale pentru metadata:", "LabelMetadataPathHelp": "Specificați o locație specială pentru a descărca postere și metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "Lățimea maximă pentru fundalurile descărcate:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Calea pentru înregistrări filme (opțional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "Nume:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Parola nouă:", "LabelNewPasswordConfirm": "Confirmă parola nouă:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Următorul", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", "LabelNumberOfGuideDays": "Numărul de zile de ghid de descărcat", "LabelNumberOfGuideDaysHelp": "Descărcând mai multe zile de ghid va permite să programați mai în avans și să vizualizați listările mai în viitor, dar descărcarea va dura mai mult. \"Automat\" va alege în funcție de numărul de canale.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Parolă:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Codul Pin:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Anteriorul", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", "LabelRecordingPath": "Calea implicită pentru înregistrări:", "LabelRecordingPathHelp": "Specificați locația implicită pentru a salva înregistrările. Dacă lasați necompletat, va fi utilizat directorul curent în care ruleză programul serverului.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Salvează posterele si metadata în dosarele ce conțin fișierele media", "LabelSaveLocalMetadataHelp": "Salvând posterele și metadata direct in dosarele media, acestea vor fi mai accesibile pentru a fi modificate.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Selectare utilizatori:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", "LabelSeriesRecordingPath": "Calea pentru înregistrări seriale (opțional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Oprește când este posibil:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Preferințe de limbă pentru subtitrare:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Cale fișier temporară", "LabelSyncTempPathHelp": "Specificați un dosar de lucru special pentru sincronizare. Fișierele media convertite, create în timpul procesului de sincronizare, vor fi stocate aici.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "Limită de timp(ore):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "Cale temporară pentru conversie:", "LabelTranscodingTempPathHelp": "Acest director conține fișierele de lucru folosite de convertor. Specificați o cale specială sau lasați gol pentru a folosi pe cea implicită în directorul de lucru al serverului.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", "LabelTriggerType": "Tip Declanșator", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Afișează episoadele nedifuzate din seriale", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", "LabelUrl": "Adresă web:", - "LabelUseNotificationServices": "Use the following services:", "LabelUser": "Utilizator:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tip Video:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Numele tău:", "LabelYoureDone": "Ești Gata!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Selectează dosarele media partajate cu acest utilizator. Administratorii vor avea posibilitatea sa modifice toate dosarele utilizând managerul de metadata.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Conținutul cu un o limită de vârstă mai mare va fi ascuns pentru acest utilizator.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", "MessageEnablingOptionLongerScans": "Activând această opțiune poate rezulta în scanări ale bilbiotecilor semnificativ mai îndelungate.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Niciun Serviciu nu este instalat", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Nimic aici.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Vă rugăm să vă asigurați că descarcarea de metadata din internet este activată.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "minute după", "MinutesBefore": "minute înainte", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Mai mulți utilizatori pot fi adăugați mai târziu în Tabloul de Bord.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Nu s-a gasit nimic. Începe să vizionezi seriale!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Actori", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "Permite accessul la Live TV", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "Permite partajarea pe rețelele de socializare", "OptionAllowLinkSharingHelp": "Doar paginile wev ce contin informații despre conținutul media va fi partajat. Fișierele media nu vor fi partajate niciodată pentru public. Partajările sunt limitate ca timp și vor expira după {0} zile.", "OptionAllowManageLiveTv": "Permite administrarea înregistrarilor pentru Live TV ", "OptionAllowMediaPlayback": "Permite redarea media", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Permite controlul la distanță a celorlalți utilizatori", "OptionAllowRemoteSharedDevices": "Permite controlul la distanță a dispozitivelor partajate", "OptionAllowRemoteSharedDevicesHelp": "Dispozitivele DLNA sunt considerate partajate până ce un utilizator începe să le controleze.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Permite acestui utilizator să administreze serverul", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", "OptionAscending": "Crescător", - "OptionAuto": "Auto", "OptionAutomatic": "Automat", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Fundal", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "Baner", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "Testare", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Rating Comunitate", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "Continuă", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Rating Critic", - "OptionCustomUsers": "Custom", "OptionDaily": "Zilnic", "OptionDateAdded": "Dată Adăugare", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Dată Rulare", - "OptionDefaultSort": "Default", "OptionDescending": "Descrescător", "OptionDev": "Dezvoltare", - "OptionDirector": "Director", "OptionDirectors": "Regizori", "OptionDisableUser": "Dezactivați acest utilizator", "OptionDisableUserHelp": "Dacă este dezactivat, serverul nu va permite nicio conexiune de la acest utilizator. Conexiunile existente vor fi terminate brusc.", - "OptionDisc": "Disc", "OptionDislikes": "Dislike-uri", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Fundal", "OptionDownloadBackImage": "Înapoi", "OptionDownloadBannerImage": "Baner", "OptionDownloadBoxImage": "Casetă", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Meniu", "OptionDownloadPrimaryImage": "Primar", "OptionDownloadThumbImage": "Miniatură", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Activează accesul de la toate dispozitivele", "OptionEnableAccessToAllChannels": "Activează accesul la toate canalele", "OptionEnableAccessToAllLibraries": "Activează accesul la toate bibliotecile", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Anulat", - "OptionEpisodeSortName": "Episode Sort Name", "OptionEpisodes": "Episoade", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Favorite", "OptionFolderSort": "Dosare", "OptionFriday": "Vineri", "OptionFridayShort": "Vi", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", "OptionHasSpecialFeatures": "Caracteristici Speciale", "OptionHasSubtitles": "Subtitrări", "OptionHasThemeSong": "Audio de Fundal", "OptionHasThemeVideo": "Video de Fundal", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Ascunde acest utilizator din pagina de autentificare", "OptionHideUserFromLoginHelp": "Folositor pentru conturi private sau de administrator ascunse. Utilizatorul va trebui să se conecteze manual prin introducerea numelui de utilizator și a parolei.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "Rating IMDb", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Like-uri", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", "OptionMissingImdbId": "Id-ul IMDb lipsește", "OptionMissingOverview": "Rezumatul Lipsește", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "Id-ul Tmdb lipsește", "OptionMissingTvdbId": "Id-ul TheTVDB lipsește", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Luni", "OptionMondayShort": "Lu", "OptionMovies": "Filme", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "Nume", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "Alte Clipuri Video", - "OptionOthers": "Others", - "OptionOverview": "Overview", "OptionParentalRating": "Limită de vârstă", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Contorizare rulări", "OptionPlayed": "Rulat", - "OptionPoster": "Poster", "OptionPosterCard": "Card poster", "OptionPremiereDate": "Data Premierei", - "OptionPrimary": "Primary", "OptionPriority": "Prioritate", - "OptionProducer": "Producer", "OptionProducers": "Producători", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Înregistreaza la oricând", "OptionRecordOnAllChannels": "Înregistrează pe toate canalele", "OptionRecordOnlyNewEpisodes": "Înregistrează doar episoadele noi", "OptionRecordSeries": "Înregistrează seriale", - "OptionRegex": "Regex", "OptionRelease": "Lansare Oficială", "OptionReleaseDate": "Dată Lansare", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Poate fi continuat", - "OptionResumablemedia": "Resume", "OptionRuntime": "Timp Rulare", "OptionSaturday": "Sâmbătă", "OptionSaturdayShort": "Sa", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Duminică", "OptionSundayShort": "Du", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "Miniatură", "OptionThumbCard": "Card miniatură", "OptionThursday": "Joi", "OptionThursdayShort": "Jo", "OptionTimeline": "Cronologie", "OptionTrackName": "Nume melodie", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Marți", "OptionTuesdayShort": "Ma", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Nerulat", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "Bitrate Video", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", "OptionWednesday": "Miercuri", "OptionWednesdayShort": "Mi", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", "OptionWriters": "Scriitori", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Înregistrează-te cu PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "Despre", "TabAccess": "Acces", - "TabActivity": "Activity", "TabAdvanced": "Avansat", "TabAlbumArtists": "Albume Artiști", "TabAlbums": "Albume", - "TabAppSettings": "App Settings", "TabArtists": "Artiști", "TabBasic": "De bază", "TabBasics": "De bază", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", "TabChannels": "Canale", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Titluri", "TabCollections": "Colecții", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Episoade", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Favorite", - "TabFilter": "Filter", - "TabFolders": "Folders", "TabGames": "Jocuri", - "TabGeneral": "General", "TabGenres": "Genuri", "TabGuide": "Ghid", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Imagine", "TabImages": "Imagini", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "Cele mai recente", - "TabLibrary": "Library", "TabLibraryAccess": "Acces la Biblioteci", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", "TabMovies": "Filme", "TabMusic": "Muzică", "TabMusicVideos": "Videoclipuri muzicale", "TabMyLibrary": "Biblioteca mea", "TabMyPlugins": "Plugin-urile mele", - "TabNavigation": "Navigation", "TabNetworks": "Rețele TV", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Notificări", - "TabNowPlaying": "Now Playing", "TabOther": "Altele", "TabOthers": "Altele", - "TabParentalControl": "Parental Control", "TabPassword": "Parolă", "TabPaths": "Căi", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Listă de redare", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profile", "TabRecordings": "Înregistrări", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Securitate", "TabSeries": "Seriale", - "TabServer": "Server", - "TabServices": "Services", "TabSettings": "Setări", "TabShows": "Seriale", "TabSongs": "Melodii", - "TabStreaming": "Streaming", "TabStudios": "Studiouri", - "TabSubtitles": "Subtitles", "TabSuggestions": "Recomandări", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Trailere", "TabTranscoding": "Conversie", "TabUpcoming": "Urmează să apară", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Spune-ne despre tine", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "Bucurați-vă de caracteristicile Bonus", - "Themes": "Themes", "ThisWizardWillGuideYou": "Acest asistent vă va ghida prin procesul de configurare. Pentru a începe, vă rugăm să selectați limba preferată.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", "TitleNotifications": "Notificări", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", "TitlePlugins": "Plugin-uri", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "Sarcini Programate", - "TitleServer": "Server", "TitleSignIn": "Autentificare", "TitleSupport": "Suport", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin include sprijin pentru profile de utilizator, permițând fiecărui utilizator să își facă propriile setări de afișare, playstate și control parental.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Versine {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Bine ați venit la Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Asta e tot ce avem nevoie pentru moment. Jellyfin a început colectarea de informații despre biblioteca media. Verifică unele din aplicațiile noastre, și apoi faceți clic pe Finalizare pentru a vizualiza Tabloul de bord al Serverului .", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/ru.json b/src/strings/ru.json index 8aa218978b..f01522b3ad 100644 --- a/src/strings/ru.json +++ b/src/strings/ru.json @@ -167,12 +167,10 @@ "CategorySync": "Синхр.", "CategorySystem": "Система", "CategoryUser": "Пользователь", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Выделите каналы, чтобы дать доступ этому пользователю. Администраторы могут изменять все каналы с помощью «Диспетчера метаданных».", "Channels": "Каналы", "CinemaModeConfigurationHelp": "Режим кинозала доставляет впечатление зрительного зала прямиком в вашу гостиную, вместе со способностью воспроизводить трейлеры и произвольные заставки перед основным фильмом.", "CinemaModeConfigurationHelp2": "Jellyfin-приложения будут иметь параметр для включения или отключения режима кинозала. В приложениях для телевизоров режим кинозала включается по умолчанию.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Создайте настраиваемый профиль, назначаемый для нового устройства или переопределите системный профиль.", "DeathDateValue": "Кончина: {0}", "DefaultCameraUploadPathHelp": "Выберите произвольный путь выкладки. Если не заполнять, то будет использована стандартная папка. Если используется произвольный путь, то его также требуется добавить как медиатеку в области установки и настройки медиатек Jellyfin.", @@ -394,7 +392,6 @@ "HeaderItems": "Элементы", "HeaderJellyfinAccountAdded": "Учётная запись Jellyfin добавлена", "HeaderJellyfinAccountRemoved": "Учётная запись Jellyfin изъята", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "Для включения или отключения NFO-метаданных, начните править медиатеку в области настройки медиатек и найдите раздел хранителей метаданных.", "HeaderLanguage": "Язык", "HeaderLatestAlbums": "Последние альбомы", @@ -717,7 +714,6 @@ "LabelDownloadInternetMetadataHelp": "В Jellyfin Server возможно загрузить информацию о своих медиаданных, чтобы включить насыщенные представления.", "LabelDownloadLanguages": "Загружаемые языки:", "LabelDropImageHere": "Перетащите рисунок сюда", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Простой PIN-код:", "LabelEmail": "Э-почта:", "LabelEmailAddress": "Адрес Э-почты", @@ -1189,10 +1185,6 @@ "Notifications": "Уведомления", "NumLocationsValue": "{0} пап(ки/ок)", "OpenSubtitleInstructions": "Вам нужно будет конфигурировать учётную запись Open Subtitles на экране конфигурации Open Subtitles в панели Jellyfin Server.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Актёр", "OptionActors": "Актёры", "OptionAdminUsers": "Администраторы", @@ -1246,7 +1238,6 @@ "OptionBooks": "Книги", "OptionBox": "Коробка", "OptionBoxRear": "Спинка коробки", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Коллекции", "OptionCommunityRating": "Пользовательский рейтинг", "OptionComposer": "Композитор", @@ -1338,8 +1329,6 @@ "OptionImages": "Рисунки", "OptionImdbRating": "Оценка IMDb", "OptionInProgress": "Выполняется", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Ключевые слова", "OptionLatestChannelMedia": "Новейшее из каналов", @@ -1411,7 +1400,6 @@ "OptionReportByteRangeSeekingWhenTranscodingHelp": "Это требуется для некоторых устройств, которые делают повремённую перемотку недостаточно удовлетворительно.", "OptionRequirePerfectSubtitleMatch": "Загружать только субтитры, которые наиболее соответствуют моим видеофайлам", "OptionRequirePerfectSubtitleMatchHelp": "Требование полного соответствия, при котором будут отфильтровываться только те субтитры, которые были проверены и подтверждены на соответствие с вашим видеофайлом. Если снять данный флажок, повысится вероятность загрузки субтитров, но увеличатся шансы несовпадения по времени или неверного текста субтитров.", - "OptionResElement": "res element", "OptionResumable": "Возможно возобновление", "OptionResumablemedia": "Возобновимое", "OptionRuntime": "Длительность", @@ -1554,7 +1542,6 @@ "TabCollections": "Коллекции", "TabContainers": "Контейнеры", "TabControls": "Управление", - "TabDLNA": "DLNA", "TabDashboard": "Панель", "TabDevices": "Устройства", "TabDirectPlay": "Прямое воспр.", diff --git a/src/strings/sk.json b/src/strings/sk.json index a387d839d4..1f56b061b7 100644 --- a/src/strings/sk.json +++ b/src/strings/sk.json @@ -1,30 +1,18 @@ { "AddGuideProviderHelp": "Pridať zdroj televízneho programu", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Pridať užívateľa", "AddUserByManually": "Pridať lokálneho používateľa ručným zadaním informácií.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "Advanced": "Pokročilé", - "Alerts": "Alerts", "All": "Všetky", "AllLibraries": "Všetky knižnice", "AllowDeletionFromAll": "Povoliť odstránenie médií zo všetkých knižníc", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", "AllowMediaConversion": "Povoliť konverziu médií", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "Povoliť vzdialené pripojenia k tomuto Jellyfin serveru.", "AllowRemoteAccessHelp": "Nezaškrtnuté znamená, že všetky vzdialené pripojenia budú blokované.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", "BirthDateValue": "Narodil sa: {0}", "BirthPlaceValue": "Miesto narodenia: {0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Bob and weave (vyššia kvalita, no pomalšia)", "BookLibraryHelp": "Audioknihy a učebnice sú podporované", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", "ButtonAccept": "Prijať", "ButtonAdd": "Pridať", "ButtonAddMediaLibrary": "Pridať knižnicu médií", @@ -38,10 +26,8 @@ "ButtonAudioTracks": "Audio stopy", "ButtonBack": "Späť", "ButtonCancel": "Zrušiť", - "ButtonCancelSeries": "Cancel Series", "ButtonChangeContentType": "Zmeniť typ obsahu", "ButtonChangeServer": "Zmeniť server", - "ButtonClear": "Clear", "ButtonClose": "Zatvoriť", "ButtonConfigurePassword": "Nastaviť heslo", "ButtonConfigurePinCode": "Konfigurovať pin kód", @@ -56,21 +42,16 @@ "ButtonEditImages": "Upraviť obrázky", "ButtonEditOtherUserPreferences": "Upraviť používateľský profil, obrázok a osobné preferencie.", "ButtonExit": "Ukončiť", - "ButtonFilter": "Filter", "ButtonForgotPassword": "Zabudnuté heslo", "ButtonFullscreen": "Celá obrazovka", - "ButtonGuide": "Guide", "ButtonHelp": "Pomoc", "ButtonHide": "Skryť", "ButtonHome": "Domov", - "ButtonInfo": "Info", "ButtonInviteUser": "Pozvať užívateľa", "ButtonLearnMore": "Zistiť viac", - "ButtonLibraryAccess": "Library access", "ButtonManageFolders": "Spravovať priečinky", "ButtonManageServer": "Spravovať server", "ButtonManualLogin": "Manuálne prihlásenie", - "ButtonMenu": "Menu", "ButtonMore": "Viac", "ButtonMoreInformation": "Viac informácií", "ButtonMute": "Stíšiť", @@ -82,22 +63,18 @@ "ButtonNextTrack": "Nasledujúca stopa", "ButtonNo": "Nie", "ButtonNowPlaying": "Teraz prehrávané", - "ButtonOff": "Off", - "ButtonOk": "Ok", "ButtonOpen": "Otvoriť", "ButtonOther": "Iné", "ButtonParentalControl": "Rodičovská kontrola", "ButtonPause": "Pauza", "ButtonPlay": "Prehrať", "ButtonPlayTrailer": "Ukážka", - "ButtonPlaylist": "Playlist", "ButtonPreferences": "Nastavenia", "ButtonPrevious": "Predchádzajúce", "ButtonPreviousPage": "Predchádzajúca strana", "ButtonPreviousTrack": "Predchádzajúca stopa", "ButtonPrivacyPolicy": "Ochrana súkromia", "ButtonProfile": "Profil", - "ButtonProfileHelp": "Set your profile image and password.", "ButtonPurchase": "Zakúpiť", "ButtonQuality": "Kvalita", "ButtonQuickStartGuide": "Príručka rýchleho štartu", @@ -111,15 +88,11 @@ "ButtonRemove": "Odstrániť", "ButtonRename": "Premenovať", "ButtonRepeat": "Opakovať", - "ButtonReports": "Reports", - "ButtonReset": "Reset", "ButtonResetEasyPassword": "Obnoviť jednoduchý PIN kód", "ButtonResetPassword": "Obnoviť heslo", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "Reštartovať", "ButtonRestartNow": "Reštartovať teraz", "ButtonResume": "Pokračovať", - "ButtonRevoke": "Revoke", "ButtonSave": "Uložiť", "ButtonScanAllLibraries": "Prehľadať všetky knižnice", "ButtonScanLibrary": "Skenovať knižnicu", @@ -128,10 +101,8 @@ "ButtonSelect": "Vybrať", "ButtonSelectDirectory": "Vybrať priečinok", "ButtonSelectServer": "Vybrať server", - "ButtonSelectView": "Select view", "ButtonSend": "Odoslať", "ButtonSendInvitation": "Poslať pozvánku", - "ButtonServer": "Server", "ButtonServerDashboard": "Prístrojová doska servera", "ButtonSettings": "Nastavenia", "ButtonShare": "Zdieľať", @@ -142,42 +113,28 @@ "ButtonSignUp": "Prihlásiť sa", "ButtonSkip": "Preskočiť", "ButtonSort": "Zoradiť", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", "ButtonStopRecording": "Zastaviť nahrávanie", "ButtonSubmit": "Potvrdiť", "ButtonSubtitles": "Titulky", - "ButtonSync": "Sync", "ButtonTrailer": "Ukážka", "ButtonUninstall": "Odinštalovať.", "ButtonUnmute": "Zapnúť zvuk", "ButtonUp": "Hore", "ButtonUpdateNow": "Aktualizovať teraz", "ButtonUpload": "Nahrať", - "ButtonView": "View", "ButtonViewAlbum": "Zobraziť album", "ButtonViewArtist": "Zobraziť umelca", "ButtonViewWebsite": "Zobraziť web stránku", "ButtonWebsite": "Webové stránky", "ButtonYes": "Áno", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplikácia", "CategoryPlugin": "Rozšírenie", - "CategorySync": "Sync", "CategorySystem": "Systém", "CategoryUser": "Používateľ", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Zvoľte kanály zdieľané s týmto užívateľom. Administrátori budú schopní upraviť všetky kanály použitím správcu metadát.", "Channels": "Kanály", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "DeathDateValue": "Zomrel: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Pri spracúvaní požiadavky došlo k chybe. Skúste prosím neskôr znova.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Zmazať", "DeleteDeviceConfirmation": "Ste si istý, že chcete odstrániť toto zariadenie? Objaví sa znovu, keď sa ním používateľ nabudúce prihlási.", "DeleteImage": "Zmazať obrázok", @@ -188,43 +145,19 @@ "DetectingDevices": "Detegujem zariadenia", "DeviceAccessHelp": "Táto možnosť sa vzťahuje iba na zariadenia, ktoré môžu byť jedinečne identifikované a nezabráni prístup cez prehliadač. Filtrovaním prístupu užívateľských zariadení zabraňuje užívateľom použiť nové zariadenie, pokiaľ neboli tu schválené.", "DeviceLastUsedByUserName": "Naposledy použil(a) {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", "DrmChannelsNotImported": "Kanály s DRM nebudú importované.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Povoliť hardvérové kódovanie", "EnablePhotos": "Povoliť fotky", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", "EnterFFmpegLocation": "Zadajte cestu k FFmpeg", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", "ErrorMessageEmailInUse": "Emailová adresa sa už používa. Zadajte prosím novú emailovú adresu a skúste znova alebo použite funkciu zabudnuté heslo.", "ErrorMessagePasswordNotMatchConfirm": "Heslo a potvrdenie hesla musia súhlasiť.", "ErrorMessageStartHourGreaterThanEnd": "Čas ukončenia musí byť väčší ako čas štartu.", "ErrorMessageUsernameInUse": "Toto používateľské meno sa už používa. Zvoľte si nové a skúste znova prosím.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", "EveryNDays": "Každých {0} dní", "ExitFullscreen": "Opustiť celú obrazovku", "ExtractChapterImagesHelp": "Extrahovanie obrázkov kapitol umožní aplikáciám Jellyfin zobrazenie grafickej ponuky výberu scény. Proces môže byť pomalý, intenzívny na výkon procesora a môže vyžadovať niekoľko gigabajtov priestoru. Beží po objavení nových videí a taktiež ako nočná naplánovaná úloha. Plánovanie je konfigurovateľné v sekcii plánovaných úloh. Neodporúča sa spúšťanie tejto úlohy počas špičkového obdobia.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", "FeatureRequiresJellyfinPremiere": "Táto funkcia vyžaduje aktívne predplatné Jellyfin Premiere.", "FileNotFound": "Súbor nenájdený.", - "FileReadCancelled": "The file read has been canceled.", "FileReadError": "Pri čítaní súboru nastala chyba.", "FolderTypeBooks": "Knihy", "FolderTypeGames": "Hry", @@ -236,16 +169,9 @@ "FolderTypePhotos": "Fotky", "FolderTypeTvShows": "TV", "FolderTypeUnset": "Nenastavené (zmiešaný obsah)", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Na celú obrazovku", "General": "Všeobecné", "GuestUserNotFound": "Používateľ nenájdený. Uistite sa prosím, že meno je správne a skúste znova, alebo skúste zadať jeho/jej emailovú adresu.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", "HeaderAccessSchedule": "Rozvrh prístupu", "HeaderAccessScheduleHelp": "Vytvoriť rozvrh prístupu a obmedziť tak prístup na určité hodiny.", "HeaderActiveDevices": "Aktívne zariadenia", @@ -253,51 +179,30 @@ "HeaderActivity": "Aktivita", "HeaderAddDevice": "Pridať zariadenie", "HeaderAddLocalUser": "Pridať lokálneho používateľa", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", "HeaderAddUpdateImage": "Pridať/Aktualizovať obrázok", "HeaderAddUser": "Pridať užívateľa", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Pokročilé", "HeaderAirDays": "Dni vysielania", "HeaderAlbums": "Albumy", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Všetky nahrávky", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "Kľúč API", "HeaderApiKeys": "Kľúče API", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", "HeaderAudioSettings": "Nastavenia zvuku", "HeaderAudioTracks": "Audio stopy", "HeaderAutomaticUpdates": "Automatické aktualizácie", "HeaderAvailableServices": "Dostupné služby", "HeaderAwardsAndReviews": "Ocenenia a hodnotenia", - "HeaderBackdrops": "Backdrops", "HeaderBecomeProjectSupporter": "Získať Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Knihy", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Prispôsobiť vzhľad Jellyfin tak, aby zodpovedal potrebám vašej skupiny alebo organizácie.", - "HeaderCameraUpload": "Camera Upload", "HeaderCameraUploadHelp": "Jellyfin apka dokáže automaticky nahrávať fotky z vášho mobilného zariadenia na Jellyfin server.", - "HeaderCancelSyncJob": "Cancel Sync", "HeaderCastAndCrew": "Obsadenie", - "HeaderCastCrew": "Cast & Crew", "HeaderChangeFolderType": "Zmeniť typ obsahu", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Kanály", "HeaderChapterImages": "Obrázky kapitol", "HeaderChapters": "Kapitoly", "HeaderCinemaMode": "Kino mód", "HeaderClients": "Klienti", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Zbierky", "HeaderColumns": "Stĺpce", "HeaderConfigureRemoteAccess": "Nastaviť vzdialený prístup", @@ -305,48 +210,31 @@ "HeaderConfirmDeletion": "Potvrdiť zmazanie", "HeaderConfirmPluginInstallation": "Potvrdiť inštaláciu rozšírenia", "HeaderConfirmProfileDeletion": "Potvrdiť zmazanie profilu", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "HeaderConfirmRemoveUser": "Odobrať používateľa", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", "HeaderConfirmation": "Potvrdenie", "HeaderConnectToServer": "Propojiť sa k serveru", "HeaderConnectionFailure": "Chyba pripojenia", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Pokračovať v pozeraní", "HeaderCreatePassword": "Vytvoriť heslo", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Vlastné profily", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Dátum", "HeaderDateIssued": "Dátum vydania", "HeaderDays": "Dni", - "HeaderDefaultRecordingSettings": "Default Recording Settings", "HeaderDeleteDevice": "Zmazať zariadenie", "HeaderDeleteImage": "Zmazať obrázok", "HeaderDeleteItem": "Zmazať položku", "HeaderDeleteProvider": "Zmazať poskytovateľa", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Cieľ", "HeaderDetails": "Detaily", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", "HeaderDevice": "Zariadenie", "HeaderDeviceAccess": "Prístup k zariadeniu", "HeaderDevices": "Zariadenia", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", "HeaderDisplaySettings": "Nastavenia zobrazenia", "HeaderDownloadSubtitlesFor": "Stiahnuť titulky pre:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Jednoduchý pin kód", "HeaderEmbeddedImage": "Vložený obrázok", "HeaderEpisodes": "Epizódy", "HeaderError": "Chyba", - "HeaderExport": "Export", "HeaderExternalPlayerPlayback": "Prehrať v externom prehrávači", "HeaderExternalServices": "Externé služby", "HeaderFavoriteAlbums": "Obľúbené albumy", @@ -357,30 +245,20 @@ "HeaderFavoriteShows": "Obľúbené seriály", "HeaderFavoriteSongs": "Obľúbené pesničky", "HeaderFavoriteVideos": "Obľúbené videá", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", "HeaderFetchImages": "Načítať obrázky:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtre", "HeaderForKids": "Pre deti", "HeaderForgotKey": "Zabudol som kľúč", "HeaderForgotPassword": "Zabudnuté heslo", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Často hrané", "HeaderGames": "Hry", "HeaderGenres": "Žánre", "HeaderGuests": "Hostia", - "HeaderGuideProviders": "TV Guide Data Providers", "HeaderHomePage": "Domovská stránka", "HeaderHomeScreenSettings": "Nastavenia domácej obrazovky", "HeaderHttpHeaders": "HTTP hlavičky", "HeaderIdentification": "Identifikácia", "HeaderIdentificationCriteriaHelp": "Zadajte aspoň jedno identifikačné kritérium.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Nastavenia obrázkov", "HeaderImages": "Obrázky", "HeaderInstall": "Inštalovať", @@ -389,17 +267,12 @@ "HeaderInvitationSent": "Pozvánka odoslaná", "HeaderInvitations": "Pozvánky", "HeaderInviteUser": "Pozvať používateľa", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", "HeaderInviteWithJellyfinConnect": "Pozvať pomocou Jellyfin Connect", "HeaderItems": "Položky", "HeaderJellyfinAccountAdded": "Jellyfin účet pridaný", "HeaderJellyfinAccountRemoved": "Jellyfin účet odobraný", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", "HeaderLanguage": "Jazyk", "HeaderLatestAlbums": "Najnovšie albumy", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestDownloadedVideos": "Naposledy prebrané videá", "HeaderLatestEpisodes": "Najnovšie epizódy", "HeaderLatestFromChannel": "Najnovšie od {0}", @@ -410,34 +283,26 @@ "HeaderLatestRecordings": "Najnovšie nahrávky", "HeaderLatestSongs": "Posledné skladby", "HeaderLatestTrailers": "Najnovšie ukážky", - "HeaderLatestTvRecordings": "Latest Recordings", "HeaderLibraries": "Knižnice", "HeaderLibrary": "Knižnica", "HeaderLibraryAccess": "Prístup ku knižnici", - "HeaderLibraryFolders": "Media Folders", "HeaderLibrarySettings": "Nastavenia knižnice", "HeaderLinks": "Odkazy", "HeaderLiveTV": "Živá TV", "HeaderLiveTv": "Živá TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Manažment", "HeaderMedia": "Médiá", - "HeaderMediaFolders": "Media Folders", "HeaderMediaInfo": "Informácie o médiu", "HeaderMediaLocations": "Umiestnenia médií", - "HeaderMenu": "Menu", "HeaderMissing": "Chýbajúce", "HeaderMoreLikeThis": "Podobné", "HeaderMovies": "Filmy", "HeaderMusicVideos": "Hudobné videá", "HeaderMyMedia": "Moje Média", - "HeaderMyViews": "My Views", "HeaderName": "Meno", "HeaderNavigation": "Navigácia", "HeaderNetwork": "Sieť", "HeaderNewApiKey": "Nový kľúč API", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", "HeaderNewDevices": "Nové zariadenia", "HeaderNewServer": "Nový server", "HeaderNewUsers": "Noví používatelia", @@ -445,55 +310,36 @@ "HeaderNotifications": "Hlásenia", "HeaderNowPlaying": "Teraz prehrávané", "HeaderNumberOfPlayers": "Prehrávače", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", "HeaderOptions": "Možnosti", "HeaderOtherDisplaySettings": "Nastavenia zobrazenia", "HeaderOtherItems": "Iné položky", "HeaderOverview": "Prehľad", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", "HeaderPassword": "Heslo", "HeaderPasswordReset": "Obnoviť heslo", "HeaderPaths": "Cesty", "HeaderPendingInstallations": "Čakajúce inštalácie", "HeaderPendingInvitations": "Čakajúce pozvánky", "HeaderPeople": "Ľudia", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", "HeaderPhotoInfo": "Informácie o fotke", "HeaderPinCodeReset": "Obnoviť PIN kód", "HeaderPlayAll": "Prehrať všetko", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Nastavenia prehrávania", "HeaderPlaylists": "Zoznamy skladieb", "HeaderPleaseSignIn": "Prosím prihláste sa", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Uprednostňovaný jazyk metadát", "HeaderProfile": "Profil", "HeaderProfileInformation": "Informácie o profile", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Posledná aktivita", "HeaderRecentlyPlayed": "Nedávno prehrávané", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", "HeaderReleaseDate": "Dátum vydania", "HeaderRemoteControl": "Diaľkové ovládanie", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", "HeaderRequireManualLogin": "Vyžadovať ručné zadanie používateľského mena pre:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", "HeaderResolution": "Rozlíšenie", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "Reštartovať", "HeaderResult": "Výsledok", "HeaderResume": "Pokračovať", "HeaderResumeSettings": "Nastavenia pokračovania", - "HeaderReviews": "Reviews", "HeaderRevisionHistory": "História revízií", "HeaderRunningTasks": "Bežiace úlohy", "HeaderRuntime": "Dĺžka", @@ -501,253 +347,138 @@ "HeaderSchedule": "Rozvrh", "HeaderScreenSavers": "Šetriče obrazovky", "HeaderSearch": "Hľadať", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", "HeaderSeasons": "Sezóny", "HeaderSelectAudio": "Vyberte audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", "HeaderSelectDate": "Vybrať dátum", "HeaderSelectDevices": "Vyberte zariadenia", "HeaderSelectExternalPlayer": "Vybrať externý prehrávač", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", "HeaderSelectPath": "Vybrať priečinok", "HeaderSelectPlayer": "Výber prehrávača", "HeaderSelectServer": "Vybrať server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectSubtitles": "Vybrať titulky", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Poslať správu", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", "HeaderServerSettings": "Nastavenia servera", "HeaderServices": "Služby", "HeaderSettings": "Nastavenia", "HeaderSetupLibrary": "Nastavte Vaše knižnice médií", "HeaderSetupTVGuide": "Nastavenia TV sprievodcu", - "HeaderShareMediaFolders": "Share Media Folders", "HeaderShutdown": "Vypnúť", "HeaderSignUp": "Prihlásiť sa", "HeaderSortBy": "Zoradiť podľa", - "HeaderSortOrder": "Sort Order", "HeaderSource": "Zdroj", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", "HeaderSubtitleProfile": "Profil titulkov", "HeaderSubtitleProfiles": "Profily titulkov", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", "HeaderSubtitleSettings": "Nastavenia titulkov", "HeaderSubtitles": "Titulky", "HeaderSupportTheTeam": "Podporte Jellyfin tím", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", "HeaderSystemDlnaProfiles": "Systémové profily", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Spúšťače úloh", "HeaderTermsOfService": "Podmienky použitia služby Jellyfin", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", "HeaderThisUserIsCurrentlyDisabled": "Tento používateľ je momentálne deaktivovaný", "HeaderTime": "Čas", "HeaderToAccessPleaseEnterEasyPinCode": "Pre prístup, prosím, vložte Váš jednoduchý pin kód", "HeaderTopPlugins": "Najlepšie rozšírenia", "HeaderTrack": "Stopa", "HeaderTracks": "Stopy", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", "HeaderTuners": "Tunery", "HeaderTvTuners": "Tunery", "HeaderType": "Typ", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Vložte text", "HeaderUnaired": "Nevysielané", "HeaderUnknownDate": "Neznámy dátum", "HeaderUnknownYear": "Neznámy rok", "HeaderUnrated": "Nehodnotené", - "HeaderUpcomingEpisodes": "Upcoming Episodes", "HeaderUpcomingNews": "Nadchádzajúce správy", - "HeaderUpcomingOnTV": "Upcoming On TV", "HeaderUploadImage": "Nahrať obrázok", "HeaderUploadNewImage": "Nahrať nový obrázok", "HeaderUser": "Používateľ", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Užívatelia", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", "HeaderVideos": "Videá", "HeaderViewOrder": "Poradie zobrazenia", "HeaderViewStyles": "Štýly zobrazenia", "HeaderWelcomeToJellyfin": "Vitajte v Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", "HeaderXmlSettings": "Nastavenia XML", "HeaderYear": "Year:", "HeaderYears": "Roky", "HeadersFolders": "Priečinky", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", "HowWouldYouLikeToAddUser": "Ako by ste chceli pridať používateľa?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Odporúčaný pomer strán je 1:1. Iba JPG/PNG.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ImportMissingEpisodesHelp": "Ak je možnosť povolená, informácie o chýbajúcich epizódach budú importované do Vašej Jellyfin databázy a budú zobrazené v sériách a seriáloch. Toto môže spôsobiť podstatne dlhšie skenovania knižníc.", "Invitations": "Pozvánky", "InviteAnJellyfinConnectUser": "Pridať používateľa zaslaním pozvánky emailom.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", "LabelAccessDay": "Deň v týždni:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "Pre pridanie užívateľa, ktorý ešte nie je uvedený, musíte najprv pripojiť jeho účet na Jellyfin Connect z ich stránky profilu užívateľa.", - "LabelAddedOnDate": "Added {0}", "LabelAirDate": "Dni vysielania", - "LabelAirDays": "Air days:", "LabelAirTime": "Čas vysielania:", "LabelAirTime:": "Čas vysielania:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", "LabelAll": "Všetky", "LabelAllLanguages": "Všetky jazyky", "LabelAllowHWTranscoding": "Povoliť hardvérové transkódovanie", "LabelAllowServerAutoRestart": "Povoliť automatický reštart servera pre aplikovanie aktualizácií", "LabelAllowServerAutoRestartHelp": "Server sa reštartuje iba počas období neaktivity, keď nie je žiadny užívateľ aktívny.", "LabelAllowedRemoteAddresses": "Filter vzdialených IP adries:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "Kedykoľvek", "LabelAppName": "Názov apky", "LabelAppNameExample": "Príklad: Sickbeard, NzbDrone", "LabelArtist": "Umelec", "LabelArtists": "Umelci:", "LabelArtistsHelp": "Oddeľte pomocou ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Preferovaný jazyk zvukovej stopy:", "LabelAutomaticallyRefreshInternetMetadataEvery": "Automaticky obnoviť metadáta z internetu:", "LabelAvailableTokens": "Dostupné tokeny:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Cesta k medzipamäti:", "LabelCachePathHelp": "Uveďte vlastné umiestnenie súborov medzipamäte servera, ako napríklad obrázky. Ponechajte prázdne pre použitie predvoleného umiestnenia servera.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "LabelCancelled": "Zrušené", "LabelCertificatePassword": "Heslo certifikátu:", "LabelCertificatePasswordHelp": "Ak váš certifikát vyžaduje heslo, zadajte ho tu prosím.", "LabelChannelStreamQuality": "Preferovaná kvalita internetového kanála:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "LabelCollection": "Zbierka", "LabelCommunityRating": "Hodnotenie komunity:", "LabelCompleted": "Dokončené", "LabelComponentsUpdated": "Nasledovné komponenty boli nainštalované alebo aktualizované:", "LabelConfigureSettings": "Konfigurácia nastavení", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Druh obsahu:", "LabelContentTypeValue": "Typ obsahu: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", "LabelConvertRecordingsTo": "Konvertovať nahrávky do:", "LabelCountry": "Krajina:", "LabelCreateCameraUploadSubfolder": "Vytvoriť podpriečinok pre každé zariadenie", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Aktuálne heslo:", "LabelCurrentPath": "Aktuálna cesta:", "LabelCustomCertificatePath": "Vlastná cesta k ssl certifikátu:", "LabelCustomCertificatePathHelp": "Uveďte Váš vlastný .pfx súbor ssl certifikátu.", "LabelCustomCss": "Vlastné CSS:", "LabelCustomCssHelp": "Aplikujte svoje vlastné CSS na web rozhranie.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", "LabelDataProvider": "Poskytovateľ dát:", "LabelDateAddedBehavior": "Nový obsah zoraďovať podľa dátumu:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelDateOfBirth": "Dátum narodenia:", "LabelDay": "Deň:", "LabelDeathDate": "Dátum úmrtia:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", "LabelDefaultUser": "Predvolený používateľ", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", "LabelDeinterlacingMethod": "Metóda deinterlácie:", "LabelDeviceDescription": "Popis zariadenia", - "LabelDidlMode": "Didl mode:", "LabelDisabled": "Zakázané", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Zobraziť chýbajúce epizódy v sériách", "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Toto musí byť tiež povolené pre TV knižnice v nastavení Jellyfin servera.", - "LabelDisplayName": "Display name:", "LabelDisplayPluginsFor": "Zobraziť rozšírenia pre:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Stiahnuť obal a metadáta z Internetu", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", "LabelDownloadLanguages": "Prebrať jazyky:", "LabelDropImageHere": "Presuňte obrázok sem.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Jednoduchý PIN kód:", - "LabelEmail": "Email:", "LabelEmailAddress": "Emailová adresa", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Povoliť automatické mapovanie portov", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", "LabelEnableCinemaMode": "Povoliť kino mód", "LabelEnableCinemaModeFor": "Povoliť kino mód pre:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Jellyfin dokáže objaviť zariadenia vo vašej sieti a poskytnúť možnosť ich diaľkového ovládania.", "LabelEnableDlnaServer": "Povoliť DLNA server", "LabelEnableDlnaServerHelp": "Povolí UPnP zariadeniam vo vašej sieti prechádzať a prehrávať obsah Jellyfin.", "LabelEnableFullScreen": "Povoliť režim celej obrazovky", "LabelEnableHardwareDecodingFor": "Povoliť hardvérové dekódovanie pre:", "LabelEnableIntroParentalControl": "Povoliť inteligentnú rodičovskú kontrolu", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "Povoliť sledovanie v reálnom čase", "LabelEnableRealtimeMonitorHelp": "Zmeny budú na podporovaných súborových systémoch spracované okamžite.", "LabelEnableSingleImageInDidlLimit": "Obmedziť na jeden vložený obrázok", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", "LabelEnableThisTuner": "Povoliť tento tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", "LabelEnabled": "Povolené", "LabelEndDate": "Dátum ukončenia:", "LabelEndingEpisodeNumber": "Číslo poslednej epizódy:", @@ -755,122 +486,70 @@ "LabelEpisode": "Epizóda", "LabelEpisodeNumber": "Číslo epizódy:", "LabelEvent": "Udalosť:", - "LabelEveryXMinutes": "Every:", "LabelExternalDDNS": "Externá doména:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", "LabelExternalPlayers": "Externé prehrávače:", "LabelExtractChaptersDuringLibraryScan": "Extrahovať obrázky kapitol počas prehľadávania knižnice", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "Zlyhalo", "LabelFanartApiKey": "Osobný api kľúč:", - "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.", "LabelFileOrUrl": "Súbor alebo URL:", "LabelFinish": "Ukončiť", "LabelFolder": "Priečinok:", "LabelFolderType": "Druh priečinka:", - "LabelForcedStream": "(Forced)", "LabelForgotPasswordUsernameHelp": "Zadajte svoje používateľské meno, ak si ho pamätáte.", "LabelFormat": "Formát:", "LabelFree": "Zadarmo", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "Názov servera:", "LabelFriendlyServerNameHelp": "Toto meno bude použité na identifikáciu servera. Ak ostane prázdne, bude použitý názov počítača.", "LabelFromHelp": "Príklad: {0} (na serveri)", "LabelGroupMoviesIntoCollections": "Zoskupiť filmy do kolekcií.", "LabelGroupMoviesIntoCollectionsHelp": "Pri zobrazení zoznamu filmov budú filmy patriace do kolekcie zobrazené ako jedna zoskupená položka.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", "LabelHardwareAccelerationType": "Hardvérová akcelerácia:", "LabelHardwareAccelerationTypeHelp": "Dostupné iba na podporovaných systémoch.", "LabelHttpsPort": "Lokálny HTTPS port:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", "LabelIconMaxHeight": "Maximálna výška ikony:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", "LabelIconMaxWidth": "Maximálna šírka ikony:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", "LabelImage": "Obrázok:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", "LabelImageType": "Typ obrázku:", "LabelImportOnlyFavoriteChannels": "Obmedziť na kanály označené ako obľúbené", "LabelInNetworkSignInWithEasyPassword": "Povoliť prihlásenie jednoduchým PIN kódom vnútri lokálnej siete", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelIpAddressValue": "IP adresa: {0}", "LabelJpgPngOnly": "Iba JPG/PNG", "LabelKidsCategories": "Detské kategórie", "LabelKodiMetadataDateFormat": "Formát dátumu vydania:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", "LabelKodiMetadataSaveImagePaths": "Uložiť cesty k obrázkom do NFO súborov", "LabelKodiMetadataSaveImagePathsHelp": "Je to odporúčané ak máte obrázky s názvami, ktoré sa neriadia pravidlami Kodi.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", "LabelLanNetworks": "LAN siete:", "LabelLanguage": "Jazyk:", "LabelLastResult": "Posledný výsledok:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", "LabelLocalAccessUrl": "Domáci (LAN) prístup: {0}", "LabelLocalHttpServerPortNumber": "Lokálny HTTP port:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimerHelp": "Toto bude zobrazené na spodku prihlasovacej stránky.", - "LabelLogs": "Logs:", "LabelManufacturer": "Výrobca", "LabelManufacturerUrl": "Web výrobcu", "LabelMarkAs": "Označiť ako:", - "LabelMatchType": "Match type:", "LabelMaxAudioFileBitrate": "Maximálny audio dátový tok:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "Maximálny počet obrázkov pre pozadie na položku:", "LabelMaxBitrate": "Maximálny dátový tok:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Maximálne povolené rodičovské hodnotenie:", - "LabelMaxResumePercentage": "Max resume percentage:", "LabelMaxResumePercentageHelp": "Tituly budú považované za dopozerané ak budú zastavené po tomto čase", "LabelMaxScreenshotsPerItem": "Maximálny počet snímkov obrazovky na položku:", - "LabelMaxStreamingBitrate": "Max streaming quality:", "LabelMaxStreamingBitrateHelp": "Zadajte maximálny dátový tok pre stream.", "LabelMessageText": "Text správy:", "LabelMessageTitle": "Titulok správy:", "LabelMetadata": "Metadáta:", "LabelMetadataDownloadLanguage": "Uprednostňovaný jazyk metadát:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "Umiestnenie metadát:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", "LabelMetadataSaversHelp": "Vyberte formát súboru, do ktorého chcete ukladať vaše metadáta.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", "LabelMinResumeDurationHelp": "Tituly kratšie ako tento čas nebudú pozastaviteľné.", - "LabelMinResumePercentage": "Min resume percentage:", "LabelMinResumePercentageHelp": "Tituly budú považované za neprehrané ak budú zastavené pred týmto časom", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", "LabelMissing": "Chýbajúce", "LabelModelDescription": "Popis modelu", "LabelModelName": "Názov modelu", "LabelModelNumber": "Číslo modelu", "LabelModelUrl": "URL modelu", - "LabelMonitorUsers": "Monitor activity from:", "LabelMovie": "Film", "LabelMovieCategories": "Kategórie filmov:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", "LabelMovieRecordingPath": "Umiestnenie filmových nahrávok (voliteľné):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", "LabelMusicVideo": "Hudobné video", "LabelName": "Meno:", "LabelNativeExternalPlayersHelp": "Prehrať videá pomocou externých prehrávačov.", @@ -882,186 +561,111 @@ "LabelNext": "Ďalej", "LabelNoUnreadNotifications": "Žiadne neprečítané hlásenia.", "LabelNotificationEnabled": "Povoliť toto hlásenie", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", "LabelNumberReviews": "{0} recenzií", - "LabelNumberTrailerToPlay": "Number of trailers to play:", "LabelOpenSubtitlesPassword": "Heslo Open Subtitles:", "LabelOpenSubtitlesUsername": "Používateľské meno Open Subtitles:", "LabelOptionalM3uUrl": "M3U URL (voliteľné):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "LabelOptionalNetworkPath": "(Voliteľné) Zdieľaný sieťový priečinok:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Heslo:", "LabelPasswordConfirm": "Heslo (potvrdenie):", "LabelPasswordRecoveryPinCode": "PIN kód:", "LabelPath": "Cesta:", "LabelPinCode": "Pin kód:", "LabelPlayDefaultAudioTrack": "Prehrať predvolenú zvukovú stopu bez ohľadu na jazyk", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", "LabelPlayMethodTranscoding": "Transkódovanie", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Preferovaný jazyk:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Predchádzajúce", "LabelProfile": "Profil:", "LabelProfileAudioCodecs": "Audio kodeky:", "LabelProfileCodecs": "Kodeky:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainer": "Obal", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileVideoCodecs": "Video kodeky:", "LabelProtocol": "Protokol:", "LabelProtocolInfo": "Info o protokole:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Verejný HTTP port:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", "LabelPublicHttpsPort": "Verejný HTTPS port:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", "LabelQuality": "Kvalita:", "LabelReadHowYouCanContribute": "Zistite ako môžete prispieť.", "LabelRecordingPath": "Predvolené umiestnenie nahrávok:", "LabelRecordingPathHelp": "Uveďte predvolené umiestnenie pre ukladanie nahrávok. Ak je ponechané prázdne, použije sa priečinok s programovými dátami servera.", "LabelReleaseDate": "Dátum vydania:", "LabelRemoteAccessUrl": "Vzdialený (WAN) prístup: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "Beží na HTTP porte {0}.", "LabelRunningOnPorts": "Beží na HTTP porte {0} a na HTTPS porte {1}.", "LabelRunningTimeValue": "Dĺžka: {0}", "LabelRuntimeMinutes": "Dĺžka (minúty):", "LabelSaveLocalMetadata": "Uložiť obaly a metadáta do priečinka s médiami", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", "LabelSeasonNumber": "Číslo sezóny:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Internetové ukážky:", "LabelSelectUsers": "Zvoľte užívateľov:", "LabelSelectVersionToInstall": "Vyberte verziu, ktorú chcete nainštalovať:", - "LabelSendNotificationToUsers": "Send the notification to:", "LabelSerialNumber": "Sériové číslo", "LabelSeries": "Seriály", "LabelSeriesRecordingPath": "Umiestnenie seriálových nahrávok (voliteľné):", - "LabelServerHost": "Host:", "LabelServerHostHelp": "192.168.1.100 alebo https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", "LabelSkipIfGraphicalSubsPresent": "Preskočiť ak video obsahuje vložené titulky", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "Preskočené", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", "LabelSource": "Zdroj:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", "LabelSportsCategories": "Športové kategórie", "LabelStartWhenPossible": "Spustiť akonáhle je možné:", "LabelStatus": "Stav:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", "LabelSubtitleFormatHelp": "Príklad: srt", "LabelSubtitleLanguagePreference": "Preferovaný jazyk titulkov:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", "LabelSupportedMediaTypes": "Podporované typy médií:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Dočasná cesta k súboru:", "LabelSyncTempPathHelp": "Zadajte vlastný synchronizačný pracovný priečinok. Skonvertované médiá vytvorené počas procesu synchronizácie budú uložené sem.", - "LabelTag": "Tag:", "LabelTheme": "Téma:", "LabelTime": "Čas:", "LabelTimeLimitHours": "Časový limit (v hodinách):", "LabelTranscodingAudioCodec": "Audio kodek:", "LabelTranscodingContainer": "Obal:", "LabelTranscodingTempPath": "Dočasné umiestnenie transkódovania:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", "LabelTranscodingVideoCodec": "Video kodek:", "LabelTransferMethod": "Spôsob prenosu", - "LabelTriggerType": "Trigger Type:", "LabelTunerIpAddress": "IP adresa tunera:", "LabelTunerType": "Typ tunera:", "LabelType": "Typ:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Zobraziť nevysielané epizódy v sériách", "LabelUnknownLanguage": "Neznámy jazyk", "LabelUploadSpeedLimit": "Limit rýchlosti nahrávania (Mbps):", "LabelUrl": "URL:", "LabelUseNotificationServices": "Použiť nasledovné služby:", "LabelUser": "Užívateľ:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", "LabelUsername": "Používateľské meno:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", "LabelValue": "Hodnota:", "LabelVersionInstalled": "{0} nainštalovaný", "LabelVersionNumber": "Verzia {0}", "LabelVersionUpToDate": "Aktuálne!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Druh videa:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Meno:", "LabelYoureDone": "Hotovo!", "LabelZipCode": "PSČ", "LabelffmpegPath": "Cesta k FFmpeg:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", "LabelffmpegVersion": "Verzia FFmpeg:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Najnovšie {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Zvoľte priečinky médií zdieľané s týmto užívateľom. Administrátori budú schopní upraviť všetky priečinky použitím správcu metadát.", "LinkApi": "API", "LinkCommunity": "Komunita", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Zistite viac o Jellyfin Premiere", "LiveTvUpdateAvailable": "(Dostupná aktualizácia)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", "ManageLibrary": "Spravovať knižnicu", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Obsah s vyšším rodičovským hodnotením bude skrytý pre tohto užívateľa.", "MediaInfoAltitude": "Výška", - "MediaInfoAnamorphic": "Anamorphic", "MediaInfoAperture": "Clona", "MediaInfoAspectRatio": "Pomer strán", "MediaInfoBitDepth": "Bitová hĺbka", - "MediaInfoBitrate": "Bitrate", "MediaInfoCameraMake": "Značka fotoaparátu", "MediaInfoCameraModel": "Model fotoaparátu", "MediaInfoChannels": "Kanály", "MediaInfoCodec": "Kodek", - "MediaInfoCodecTag": "Codec tag", "MediaInfoContainer": "Kontajner", - "MediaInfoDefault": "Default", "MediaInfoExposureTime": "Čas expozície", "MediaInfoExternal": "Externé", "MediaInfoFile": "Súbor", "MediaInfoFocalLength": "Ohnisková vzdialenosť", "MediaInfoForced": "Vynútené", "MediaInfoFormat": "Formát", - "MediaInfoFramerate": "Framerate", "MediaInfoInterlaced": "Prekladané", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Jazyk", "MediaInfoLatitude": "Zemepisná šírka", "MediaInfoLayout": "Rozloženie", @@ -1069,19 +673,13 @@ "MediaInfoLongitude": "Zemepisná dĺžka", "MediaInfoOrientation": "Orientácia", "MediaInfoPath": "Cesta", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "Profil", - "MediaInfoRefFrames": "Ref frames", "MediaInfoResolution": "Rozlíšenie", - "MediaInfoSampleRate": "Sample rate", "MediaInfoShutterSpeed": "Rýchlosť uzávierky", "MediaInfoSize": "Veľkosť", "MediaInfoSoftware": "Softvér", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Vložený obrázok", "MediaInfoStreamTypeSubtitle": "Titulky", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Časová značka", "MessageAlreadyInstalled": "Táto verzia už je nainštalovaná.", "MessageApplicationUpdated": "Jellyfin Server bol aktualizovaný", @@ -1090,39 +688,19 @@ "MessageConfirmDeleteTunerDevice": "Ste si istý, že chcete zmazať toto zariadenie?", "MessageConfirmProfileDeletion": "Ste si istý, že chcete zmazať tento profil?", "MessageConfirmRemoveMediaLocation": "Ste si istý, že chcete odobrať toto umiestnenie?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmRestart": "Ste si istý, že chcete reštartovať Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", "MessageConfirmShutdown": "Ste si istý, že chcete vypnúť Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", "MessageDestinationTo": "do:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", "MessageEnablingOptionLongerScans": "Povolenie tejto možnosti môže mať za následok podstatne dlhšie skenovania knižníc.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", "MessageErrorPlayingVideo": "Nastala chyba pri prehrávaní videa.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", "MessageFileNotFound": "Súbor nenájdený.", "MessageFileReadError": "Pri čítaní súboru nastala chyba.", "MessageFileWillBeDeleted": "Nasledovný súbor bude odstránený:", "MessageFollowingFileWillBeMovedFrom": "Nasledujúci súbor bude presunutý z:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", "MessageGamePluginRequired": "Požaduje inštaláciu rozšírenia GameBrowser", "MessageGuestSharingPermissionsHelp": "Väčšina funkcií je hosťom spočiatku nedostupná, ale môžete ich povoliť ak treba.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInvalidForgotPasswordPin": "Bol zadaný neplatný alebo expirovaný PIN. Skúste znova prosím.", "MessageInvalidUser": "Nesprávne meno alebo heslo. Skúste prosím znovu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Položka uložená.", "MessageItemsAdded": "Položky pridané", "MessageJellyfinAccontRemoved": "Tomuto používateľovi bol odobraný Jellyfin účet.", @@ -1130,43 +708,25 @@ "MessageLoggedOutParentalControl": "Prístup je momentálne obmedzený. Skúste prosím neskôr znova.", "MessageNamedServerConfigurationUpdatedWithValue": "Sekcia {0} konfigurácie servera bola aktualizovaná", "MessageNoAvailablePlugins": "Žiadne dostupné rozšírenia.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoPlaylistItemsAvailable": "Tento zoznam skladieb je práve teraz prázdny.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPluginsDueToAppStore": "Na správu rozšírení použite Jellyfin web aplikáciu prosím.", "MessageNoPluginsInstalled": "Nemáte nainštalované žiadne rozšírenia.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Momentálne nie sú nainštalované žiadne služby.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Nič tu nie je.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", "MessagePaymentServicesUnavailable": "Platobné služby sú momentálne nedostupné. Skúste to prosím neskôr.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Prosím, uistite sa, že sťahovanie internetových metadát je povolené.", - "MessagePleaseRestart": "Please restart to finish updating.", "MessagePleaseRestartServerToFinishUpdating": "Prosím reštartujte server, aby sa mohla dokončiť aplikácia aktualizácií.", "MessagePleaseWait": "Prosím počkajte. Toto môže chvíľu trvať.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", "MessagePluginRequiresSubscription": "Toto rozšírenie bude po 14 dňovej skúšobnej lehote vyžadovať aktívne predplatné Jellyfin Premiere.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", "MessageServerConfigurationUpdated": "Konfigurácia servera aktualizovaná", "MessageSettingsSaved": "Nastavenia uložené.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", "MessageThankYouForSupporting": "Ďakujeme, že podporujete Jellyfin.", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Nasledujúce umiestnenia médií budú odobraté z vašej Jellyfin knižnice:", "MessageTrialExpired": "Skúšobná doba pre túto funkciu vypršala", "MessageTrialWillExpireIn": "Skúšobná doba pre túto funkciu vyprší o {0} dni", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "MessageYouHaveVersionInstalled": "Teraz máte nainštalovanú verziu {0}.", "Metadata": "Metadáta", "MetadataManager": "Správca metadát", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "minút po", "MinutesBefore": "minút pred", "MissingBackdropImage": "Nedostupný obrázok pozadia.", @@ -1175,30 +735,20 @@ "MissingPrimaryImage": "Chýba primárny obrázok.", "MoreFromValue": "Viac od {0}", "MoreUsersCanBeAddedLater": "Ďalší užívatelia môžu byť pridaný neskôr cez Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", "Mute": "Stíšiť", "Never": "Nikdy", "NewVersionOfSomethingAvailable": "Nová verzia {0} je dostupná!", "News": "Správy", "NextUp": "Nasleduje", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "Neboli žiadne nájdené. Začnite pozerať Vaše seriály!", "NoPluginConfigurationMessage": "Toto rozšírenie nemá žiadne nastavenia.", "NoPluginsInstalledMessage": "Nemáte nainštalované žiadne rozšírenie.", "NoResultsFound": "Žiadne výsledky.", - "Notifications": "Notifications", "NumLocationsValue": "{0} priečinkov", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Herec", "OptionActors": "Herci", "OptionAdminUsers": "Administrátori", "OptionAfterSystemEvent": "Po systémovej udalosti", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", "OptionAll": "Všetky", "OptionAllUsers": "Všetci používatelia", "OptionAllowAudioPlaybackTranscoding": "Povoliť prehrávanie audia, ktoré vyžaduje prekódovanie", @@ -1208,54 +758,31 @@ "OptionAllowLinkSharingHelp": "Zdieľané sú iba webové stránky obsahujúce informácie o médiách. Súbory médií nie sú nikdy verejne zdieľané. Zdieľania sú časovo obmedzené a ich platnosť vyprší o {0} dní.", "OptionAllowManageLiveTv": "Povoliť spravovanie nahrávok živého TV prenosu", "OptionAllowMediaPlayback": "Povoliť prehrávanie médií", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "Povoliť vzdialené ovládanie ostatných užívateľov", "OptionAllowRemoteSharedDevices": "Povoliť vzdialené ovládanie zdieľaných zariadení", "OptionAllowRemoteSharedDevicesHelp": "Dlna zariadenia sa považujú za zdieľané, kým ich nejaký užívateľ nezačne ovládať.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Povoliť tomuto používateľovi spravovať server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", "OptionAllowVideoPlaybackTranscoding": "Povoliť prehrávanie videa, ktoré vyžaduje prekódovanie", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", "OptionArtist": "Umelec", "OptionAscending": "Vzostupne", "OptionAuto": "Automaticky", "OptionAutomatic": "Automaticky", "OptionAutomaticallyGroupSeries": "Automaticky zlúčiť série, ktoré sú uložené v rôznych priečinkoch", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "Pozadie", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", "OptionBirthLocation": "Miesto narodenia", "OptionBlockBooks": "Knihy", - "OptionBlockChannelContent": "Internet Channel Content", "OptionBlockGames": "Hry", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", "OptionBlockMovies": "Filmy", "OptionBlockMusic": "Hudba", "OptionBlockOthers": "Iné", "OptionBlockTrailers": "Ukážky", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", "OptionBooks": "Knihy", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Zbierky", "OptionCommunityRating": "Hodnotenie komunity", "OptionComposer": "Skladateľ", "OptionComposers": "Skladatelia", "OptionContinuing": "Pokračuje", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", "OptionConvertRecordingsToStreamingFormat": "Automaticky konvertovať nahrávky do formátu vhodného na stream", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Hodnotenie kritikov", "OptionCustomUsers": "Vlastné", "OptionDaily": "Denne", @@ -1263,9 +790,7 @@ "OptionDateAddedFileTime": "Použiť dátum vytvorenia súboru", "OptionDateAddedImportTime": "Podľa dátumu pridania do knižnice", "OptionDatePlayed": "Dátum prehrania", - "OptionDefaultSort": "Default", "OptionDescending": "Zostupne", - "OptionDev": "Dev", "OptionDirector": "Režisér", "OptionDirectors": "Režiséri", "OptionDisableUser": "Zakázať tohto užívateľa", @@ -1274,47 +799,26 @@ "OptionDislikes": "Nepáči sa", "OptionDisplayAdultContent": "Zobraziť obsah pre dospelých", "OptionDisplayChannelsInline": "Zobraziť kanály ako priečinky médií", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Obal", "OptionDownloadBackImage": "Späť", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Disk", "OptionDownloadImagesInAdvance": "Sťahovať obrázky dopredu", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", "OptionDownloadThumbImage": "Miniatúra", - "OptionDvd": "Dvd", "OptionEmbedSubtitles": "Vložené v kontajneri", "OptionEnableAccessFromAllDevices": "Povoliť prístup zo všetkých zariadení", "OptionEnableAccessToAllChannels": "Povoliť prístup ku všetkým kanálom", "OptionEnableAccessToAllLibraries": "Povoliť prístup ku všetkým knižniciam", "OptionEnableAutomaticServerUpdates": "Povoliť automatické aktualizácie servera", "OptionEnableDisplayMirroring": "Povoliť zrkadlenie obrazovky", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", "OptionEnableExternalVideoPlayers": "Povoliť externé video prehrávače", - "OptionEnableForAllTuners": "Enable for all tuner devices", "OptionEnableFullSpeedConversion": "Povoliť konverziu plnou rýchlosťou", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", "OptionEnableFullscreen": "Povoliť zobrazenie na celú obrazovku", "OptionEnableM2tsMode": "Povoliť M2ts mód", "OptionEnableM2tsModeHelp": "Povoliť režim M2TS pri kódovaní do MPEGTS.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Ukončené", - "OptionEpisodeSortName": "Episode Sort Name", "OptionEpisodes": "Epizódy", "OptionEquals": "Sa rovná", - "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionEveryday": "Každý deň", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Obľúbené", "OptionFolderSort": "Priečinky", "OptionFriday": "Piatok", @@ -1323,35 +827,21 @@ "OptionGames": "Hry", "OptionGenres": "Žánre", "OptionGuestStars": "Hosťujúce hviezdy", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "Titulky", "OptionHasThemeSong": "Tématická hudba", "OptionHasThemeVideo": "Tématické video", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Nezobrazovať tohto používateľa v prihlasovacích obrazovkách", "OptionHideUserFromLoginHelp": "Užitočné pre súkromné alebo ukryté administrátorské účty. Používateľ sa bude musieť prihlásiť manuálne zadaním mena a hesla.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "OptionHomeVideos": "Domáce videá a fotky", "OptionIcon": "Ikona", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", "OptionImages": "Obrázky", "OptionImdbRating": "Hodnotenie IMDb", "OptionInProgress": "Prebieha", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", "OptionKeywords": "Kľúčové slová", - "OptionLatestChannelMedia": "Latest channel items", "OptionLatestMedia": "Najnovšie médiá", "OptionLatestTvRecordings": "Najnovšie nahrávky", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Páči sa", - "OptionList": "List", "OptionLocked": "Zamknuté", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "Chýbajúce epizódy", "OptionMissingImdbId": "Chýbajúce IMDb ID", "OptionMissingOverview": "Chýbajúci prehľad", @@ -1370,10 +860,7 @@ "OptionNo": "Nie", "OptionNoTrailer": "Žiadna ukážka", "OptionNone": "Žiadne", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "Pri spustení aplikácie", - "OptionOnInterval": "On an interval", "OptionOtherApps": "Iné aplikácie", "OptionOtherTrailers": "Zahrnúť ukážky zo starších filmov", "OptionOtherVideos": "Iné videá", @@ -1381,58 +868,38 @@ "OptionOverview": "Prehľad", "OptionParentalRating": "Rodičovské hodnotenie", "OptionPeople": "Ľudia", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", "OptionPlainVideoItems": "Zobraziť všetky videá ako obyčajné video položky", - "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\".", "OptionPlayCount": "Počet prehraní", "OptionPlayed": "Prehrané", "OptionPoster": "Plagát:", "OptionPosterCard": "Plagát", "OptionPremiereDate": "Dátum premiéry", - "OptionPrimary": "Primary", "OptionPriority": "Priorita", "OptionProducer": "Producent", "OptionProducers": "Producenti", - "OptionProfileAudio": "Audio", "OptionProfilePhoto": "Fotografie", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", "OptionProtocolHttp": "HTTP", "OptionRecordAnytime": "Nahrávať v akýkoľvek čas", "OptionRecordOnAllChannels": "Nahrávať na všetkých kanáloch", "OptionRecordOnlyNewEpisodes": "Nahrať iba nové epizódy", "OptionRecordSeries": "Nahrať seriály", - "OptionRegex": "Regex", "OptionRelease": "Oficiálne vydanie", "OptionReleaseDate": "Dátum vydania", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Pozastaviteľný", "OptionResumablemedia": "Pokračovať", "OptionRuntime": "Dĺžka", "OptionSaturday": "Sobota", "OptionSaturdayShort": "Sob", "OptionSaveMetadataAsHidden": "Uložiť metadáta a obrázky ako skryté súbory", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Snímka obrazovky", "OptionSeason0": "Sezóna 0", "OptionSeasons": "Sezóny", - "OptionSeries": "Series", "OptionSongs": "Skladby", "OptionSortName": "Zoradiť podľa názvu", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Štúdiá", - "OptionSubstring": "Substring", "OptionSunday": "Nedeľa", "OptionSundayShort": "Ned", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", "OptionSyncOnlyOnWifi": "Synchronizovať iba cez WiFi", - "OptionTags": "Tags", "OptionThumb": "Miniatúra", "OptionThumbCard": "Náhľad", "OptionThursday": "Štvrtok", @@ -1451,7 +918,6 @@ "OptionUpcomingDvdMovies": "Zahrnúť ukážky z nových a pripravovaných filmov na DVD & Blu-ray", "OptionUpcomingMoviesInTheaters": "Zahrnúť ukážky z nových a pripravovaných filmov", "OptionUpcomingStreamingMovies": "Zahrnúť ukážky z nových a pripravovaných filmov na Netflixe", - "OptionVideoBitrate": "Video Bitrate", "OptionWakeFromSleep": "Zobudiť zo spánku", "OptionWatched": "Pozreté", "OptionWednesday": "Streda", @@ -1461,7 +927,6 @@ "OptionWeekend": "Víkendy", "OptionWeekends": "Víkendy", "OptionWeekly": "Týždenne", - "OptionWriters": "Writers", "OptionYes": "Áno", "OriginalAirDateValue": "Pôvodný dátum vysielania: {0}", "Password": "Heslo", @@ -1476,32 +941,22 @@ "PinCodeResetConfirmation": "Ste si istý, že chcete obnoviť PIN kód?", "PlayOnAnotherDevice": "Prehrať na inom zariadení", "PleaseAddAtLeastOneFolder": "Pridajte prosím aspoň jeden priečinok do tejto knižnice kliknutím na tlačidlo Pridať.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "PleaseUpdateManually": "Vypnite prosím Jellyfin server a nainštalujte najnovšiu verziu.", "PluginInstalledMessage": "Rozšírenie bolo úspešne nainštalované. Je potrebný reštart Jellyfin Server aby sa prejavili zmeny.", "PluginInstalledWithName": "{0} bol nainštalovaný", "PluginTabAppClassic": "Jellyfin pre Windows Media Center", "PluginUninstalledWithName": "{0} odinštalované", "PluginUpdatedWithName": "{0} aktualizované", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", "ProviderValue": "Poskytovateľ: {0}", - "Rate": "Rate", "RecommendationBecauseYouLike": "Pretože sa vám páči {0}", "RecommendationBecauseYouWatched": "Pretože ste sledovali {0}", "RecommendationDirectedBy": "Režíroval {0}", "RecommendationStarring": "V hlavnej úlohe {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registrovať pomocou PayPal", "ReleaseYearValue": "Rok vydania: {0}", "RememberMe": "Zapamätať si ma", - "Reporting": "Reporting", "RequireHttps": "Požadovať HTTPS pre externé pripojenia", "RequireHttpsHelp": "Ak je povolené, spojenia cez HTTP budú presmerované na HTTPS.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", "SaveSubtitlesIntoMediaFolders": "Ukladať titulky do priečinkov s médiami", "SaveSubtitlesIntoMediaFoldersHelp": "Uloženie titulkov k video súborom uľahčí ich spravovanie.", "ScanLibrary": "Skenovať knižnicu", @@ -1512,38 +967,22 @@ "ServerUpdateNeeded": "Tento Jellyfin Server treba aktualizovať. Ak chcete stiahnuť najnovšiu verziu, navštívte prosím {0}", "Settings": "Nastavenia", "SettingsSaved": "Nastavenia uložené.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", "SetupFFmpeg": "Nastaviť FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", "ShowAdvancedSettings": "Zobraziť pokročilé nastavenia", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", "Sports": "Športy", "Standard": "Štandardná", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", "StopRecording": "Zastaviť nahrávanie", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", "Subtitles": "Titulky", - "Sync": "Sync", - "SyncMedia": "Sync Media", "SyncToOtherDevices": "Synchronizovať na ostatné zariadenia", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "O", "TabAccess": "Prístup", "TabActivity": "Aktivita", "TabAdvanced": "Pokročilé", - "TabAlbumArtists": "Album Artists", "TabAlbums": "Albumy", "TabAppSettings": "Nastavenia aplikácie", "TabArtists": "Umelci", "TabBasic": "Základné", "TabBasics": "Základy", - "TabCameraUpload": "Camera Upload", "TabCast": "Obsadenie", "TabCatalog": "Katalóg", "TabChannels": "Kanály", @@ -1553,17 +992,10 @@ "TabCollectionTitles": "Názvy", "TabCollections": "Zbierky", "TabContainers": "Kontajnery", - "TabControls": "Controls", - "TabDLNA": "DLNA", "TabDashboard": "Prístrojová doska", "TabDevices": "Zariadenia", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Epizódy", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Obľúbené", - "TabFilter": "Filter", "TabFolders": "Priečinky", "TabGames": "Hry", "TabGeneral": "Všeobecné", @@ -1572,16 +1004,13 @@ "TabHelp": "Pomoc", "TabHome": "Domov", "TabHomeScreen": "Domovská obrazovka", - "TabHosting": "Hosting", "TabImage": "Obrázok", "TabImages": "Obrázky", - "TabInfo": "Info", "TabLanguages": "Jazyky", "TabLatest": "Najnovšie", "TabLibrary": "Knižnica", "TabLibraryAccess": "Prístup ku knižnici", "TabLiveTV": "Živá TV", - "TabLogs": "Logs", "TabMetadata": "Metadáta", "TabMovies": "Filmy", "TabMusic": "Hudba", @@ -1600,9 +1029,6 @@ "TabPassword": "Heslo", "TabPaths": "Cesty", "TabPhotos": "Fotky", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", "TabPlugins": "Rozšírenia", "TabProfile": "Profil", "TabProfiles": "Profily", @@ -1613,23 +1039,17 @@ "TabScheduledTasks": "Naplánované úlohy", "TabSecurity": "Zabezpečenie", "TabSeries": "Seriály", - "TabServer": "Server", "TabServices": "Služby", "TabSettings": "Nastavenia", "TabShows": "Seriály", "TabSongs": "Skladby", - "TabStreaming": "Streaming", "TabStudios": "Štúdiá", "TabSubtitles": "Titulky", "TabSuggestions": "Návrhy", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Ukážky", "TabTranscoding": "Transkódovanie", "TabUpcoming": "Nadchádzajúce", "TabUsers": "Užívatelia", - "TabView": "View", "TellUsAboutYourself": "Povedzte nám niečo o sebe", "TermsOfUse": "Podmienky použitia", "TextConnectToServerManually": "Pripojiť k serveru manuálne", @@ -1638,25 +1058,19 @@ "ThisWizardWillGuideYou": "Tento sprievodca Vám pomôže prejsť inštalačným procesom. Pre začatie zvoľte preferovaný jazyk.", "TitleDevices": "Zariadenia", "TitleHardwareAcceleration": "Hardvérová akcelerácia", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "Živý TV prenos", "TitleNewUser": "Nový užívateľ", "TitleNotifications": "Upozornenia", "TitlePasswordReset": "Obnovenie hesla", - "TitlePlayback": "Playback", "TitlePlugins": "Rozšírenia", "TitleRemoteControl": "Ďiaľkové ovládanie", "TitleScheduledTasks": "Naplánované úlohy", - "TitleServer": "Server", "TitleSignIn": "Prihlásiť sa", "TitleSupport": "Podpora", - "TitleSync": "Sync", "TitleUsers": "Užívatelia", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Ste si istý, že chcete odinštalovať {0}?", "UninstallPluginHeader": "Odinštalovať rozšírenie", "Unmute": "Zapnúť zvuk", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin zahŕňa vstavanú podporu pre profily užívateľov, čo umožňuje každému užívateľovi mať ich vlastné nastavenia zobrazenia, stavy prehrávania a rodičovskú kontrolu.", "Users": "Užívatelia", "ValueAlbumCount": "{0} albumov", @@ -1677,10 +1091,8 @@ "ValueItemCount": "{0} položka", "ValueItemCountPlural": "{0} položiek", "ValueLinks": "Odkazy: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmov", "ValueMusicVideoCount": "{0} hudobných videí", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizóda", "ValueOneGame": "1 hra", "ValueOneMovie": "1 film", @@ -1688,11 +1100,8 @@ "ValueOneSeries": "1 seriál", "ValueOneSong": "1 skladba", "ValueOneTrailer": "1 ukážka", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", "ValuePriceUSD": "Cena: {0} (USD)", "ValueSeriesCount": "{0} seriálov", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} skladieb", "ValueStatus": "Stav: {0}", "ValueStudio": "Štúdio: {0}", @@ -1702,7 +1111,6 @@ "ValueTrailerCount": "{0} ukážok", "ValueVideoCodec": "Video kodeky: {0}", "VersionNumber": "Verzia {0}", - "ViewPlaybackInfo": "View playback info", "ViewTypeFolders": "Priečinky", "ViewTypeGames": "Hry", "ViewTypeLiveTvChannels": "Kanály", @@ -1714,15 +1122,7 @@ "ViewTypeMusicFavoriteSongs": "Obľúbené pesničky", "ViewTypeMusicFavorites": "Obľúbené", "ViewTypeMusicSongs": "Skladby", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Vitajte v Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "To je zatiaľ všetko, čo potrebujeme. Jellyfin začal zhromažďovať údaje o vašej multimediálnej knižnici. Pozrite si niektoré z našich aplikácií a potom kliknite na Ukončiť pre zobrazenie Dashboardu serveru", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", "Yesterday": "Včera" } diff --git a/src/strings/sl-SI.json b/src/strings/sl-SI.json index de6114e85d..b77c05789b 100644 --- a/src/strings/sl-SI.json +++ b/src/strings/sl-SI.json @@ -1,1728 +1,117 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Dodaj Uporabnika", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Nastavi pin kodo", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Konverzija vsebin", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", "ButtonDeleteImage": "Izbrisi sliko", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Izhod", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "Povabi Uporabnika", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Vodnik za hiter zacetek", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Ponastavitev Gesla", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "Nalozi", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", "CategoryApplication": "Aplikacija", "CategoryPlugin": "Vticnik", - "CategorySync": "Sync", "CategorySystem": "Sistem", "CategoryUser": "Uporabnik", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", "FeatureRequiresJellyfinPremiere": "Uporaba te funkcionalnosti zahteva aktivno Jellyfin Premiere narocnino.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", "FolderTypeMixed": "Mesane vsebine", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Dodaj Uporabnika", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Samodejne Posodobitve", "HeaderAvailableServices": "Razpolozljive Storitve", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Ustvari geslo", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Datum", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Enostavna Pin Koda", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Pogosto Predvajano", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Namescene Storitve", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Zadnji Albumi", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLatestSongs": "Zadnje Skladbe", "HeaderLatestTrailers": "Zadnji Trailerji", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Trenutno se Predvaja", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "Poti", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "Tipi Oseb:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Nastavitve Predvajanja", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Nazadnje Predvajano", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", "HeaderSettings": "Nastavitve", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Za dostop, vnesite vaso enostavno pin kodo", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Nalozi Novo Sliko", "HeaderUser": "Uporabnik", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Izvajalci:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Spreminjanje nastavitev", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "Tip vsebine:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Drzava:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Trenutno geslo", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Konec", - "LabelFolder": "Folder:", "LabelFolderType": "Tip Mape", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Jezik:", "LabelLastResult": "Zadnji rezultat:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Novo geslo", "LabelNewPasswordConfirm": "Potrditev novega gesla", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Naprej", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "Pin koda", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Nazaj", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", "LabelQuality": "Kvaliteta:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Izberi uporabnike", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Zacasna pot do datoteke:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", "LabelTimeLimitHours": "Casovna omejitev (ure):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Tip Videa:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Ime:", "LabelYoureDone": "Koncano!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Trenutno ni namescenih storitev", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "Uporabnike lahko dodate tudi kasneje preko Nadzorne plosce.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Igralci", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", "OptionAllowMediaPlayback": "Dovoli predvajanje vsebin", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", "OptionDisableUser": "Onemogoci tega uporabnika", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Omogoci dostop iz vseh naprav", "OptionEnableAccessToAllChannels": "Omogoci dostop do vseh kanalov", "OptionEnableAccessToAllLibraries": "Omogoci dostop do vseh knjiznic", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Priljubljene", "OptionFolderSort": "Mape", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "Podnapisi", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Vsecki", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", "OptionPlayed": "Predvajano", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", "OptionProducers": "Producenti", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", "OptionReleaseDate": "Datum Izdaje", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Nepredvajano", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", "OptionWriters": "Pisci", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registriraj se z PayPal-om", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", "TabAccess": "Dostop", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", "TabAlbumArtists": "Izvajalci Albumov", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", "TabArtists": "Izvajalci", "TabBasic": "Osnovno", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Katalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Naslovi", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", "TabGeneral": "Splosno", "TabGenres": "Zvrsti", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Slika", "TabImages": "Slike", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "Zadnje", - "TabLibrary": "Library", "TabLibraryAccess": "Dostop do knjiznice", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", "TabMusic": "Glasba", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", "TabMyPlugins": "Moji Vticniki", - "TabNavigation": "Navigation", "TabNetworks": "Omrezja", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", "TabOthers": "Ostali", - "TabParentalControl": "Parental Control", "TabPassword": "Geslo", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Playlista", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profili", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Varnost", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", "TabShows": "Oddaje", - "TabSongs": "Songs", - "TabStreaming": "Streaming", "TabStudios": "Studiji", - "TabSubtitles": "Subtitles", "TabSuggestions": "Priporocila", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", "TabUpcoming": "V prihodu", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Povej nam nekaj o sebi", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Carovnik vas bo vodil skozi postopek namestitve. Za zacetek, izberite jezik.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", "TitleSupport": "Podpora", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Verzija {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", "ViewTypeGames": "Igre", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", "ViewTypeMovies": "Filmi", "ViewTypeMusic": "Glasba", "ViewTypeMusicFavoriteAlbums": "Priljubljeni Albumi", "ViewTypeMusicFavoriteArtists": "Priljubljeni Izvajalci", "ViewTypeMusicFavoriteSongs": "Priljubljene skladbe", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Dobrodosli v Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/sv.json b/src/strings/sv.json index dedc704e81..f1a09e7849 100644 --- a/src/strings/sv.json +++ b/src/strings/sv.json @@ -5,22 +5,17 @@ "AddUserByManually": "Lägg till en lokal användare och ange användarinformation manuellt.", "AdditionalNotificationServices": "Sök efter fler meddelandetillägg i tilläggskatalogen.", "Advanced": "Avancerat", - "Alerts": "Alerts", "All": "Alla", "AllLibraries": "Alla bibliotek", "AllowDeletionFromAll": "Tillåt mediaborttagning i alla bibliotek", "AllowHWTranscodingHelp": "Aktivera för att låta TV-mottagaren omkoda strömmar. Det kan minska behovet av omkodning på Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", "AllowOnTheFlySubtitleExtraction": "Tillåt undertextsextrahering under uppspelning", "AllowOnTheFlySubtitleExtractionHelp": "Inbäddade undertexter kan extraheras ur videor och skickas till Jellyfin-appar i textformat för att förhindra omkodning. I vissa system kan detta ta en lång tid och stoppa videouppspelningen under extraheringsprocessen. Avaktivera detta för att bränna in inbäddade undertexter genom omkodning när de inte stöds av klienten.", "AllowRemoteAccess": "Tillåt fjärranslutningar till denna Jellyfin-server.", "AllowRemoteAccessHelp": "Om avaktiverat så blockeras alla fjärranslutningar.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", "Audio": "Ljud", "BirthDateValue": "Född: {0}", "BirthPlaceValue": "Födelseort:{0}", - "Blacklist": "Blacklist", "BobAndWeaveWithHelp": "Linjedubbling och flätning (bättre kvalitet, men långsammare)", "BookLibraryHelp": "Ljud- och textböcker stöds. Läs {0}Jellyfins boknamngivningsguide{1}.", "Browse": "Bläddra", @@ -59,11 +54,9 @@ "ButtonFilter": "Filtrera", "ButtonForgotPassword": "Glömt lösenord", "ButtonFullscreen": "Fullskärm", - "ButtonGuide": "Guide", "ButtonHelp": "Hjälp", "ButtonHide": "Dölj", "ButtonHome": "Hem", - "ButtonInfo": "Info", "ButtonInviteUser": "Bjud in användare", "ButtonLearnMore": "Läs mer", "ButtonLibraryAccess": "Biblioteksåtkomst", @@ -89,7 +82,6 @@ "ButtonParentalControl": "Föräldralås", "ButtonPause": "Paus", "ButtonPlay": "Spela upp", - "ButtonPlayTrailer": "Trailer", "ButtonPlaylist": "Spellista", "ButtonPreferences": "Inställningar", "ButtonPrevious": "Föregående", @@ -131,7 +123,6 @@ "ButtonSelectView": "Välj vy", "ButtonSend": "Skicka", "ButtonSendInvitation": "Skicka inbjudan", - "ButtonServer": "Server", "ButtonServerDashboard": "Server kontrollpanel", "ButtonSettings": "Inställningar", "ButtonShare": "Dela", @@ -143,13 +134,11 @@ "ButtonSkip": "Hoppa över", "ButtonSort": "Sortera", "ButtonSplitVersionsApart": "Hantera olika versioner separat", - "ButtonStart": "Start", "ButtonStop": "Stopp", "ButtonStopRecording": "Avbryt inspelning", "ButtonSubmit": "Bekräfta", "ButtonSubtitles": "Undertexter", "ButtonSync": "Synk", - "ButtonTrailer": "Trailer", "ButtonUninstall": "Avinstallera", "ButtonUnmute": "Muting av", "ButtonUp": "Upp", @@ -165,19 +154,13 @@ "CategoryApplication": "App", "CategoryPlugin": "Tillägg", "CategorySync": "Synkronisera", - "CategorySystem": "System", "CategoryUser": "Användare", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Välj kanaler att dela med denna användare. Administratörer kan redigera alla kanaler med hjälp av metadatahanteraren.", - "Channels": "Channels", "CinemaModeConfigurationHelp": "Bioläget gör ditt vardagsrum till en biograf genom möjligheten att visa trailers och egna vinjetter innan filmen börjar.", "CinemaModeConfigurationHelp2": "Jellyfinappar har en inställning för att aktivera eller avaktivera bioläge. TV-appar aktiverar bioläge som standard.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "Skapa en anpassad profil för ny enhet eller för att överlappa en systemprofil.", "DeathDateValue": "Död: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", "DefaultErrorMessage": "Ett fel uppstd vid begäran. Försök igen senare.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Ta bort", "DeleteDeviceConfirmation": "Är du säker på att du vill ta bort den här enheten? Den kommer att dyka upp igen nästa gång en användare kopplar upp sig med den.", "DeleteImage": "Ta bort bild", @@ -193,20 +176,14 @@ "Downloads": "Hämtningar", "DrmChannelsNotImported": "Kanaler med DRM kommer inte att importeras", "EasyPasswordHelp": "Din enkla pin-kod används för att logga in offline på Jellyfin-appar som stödjer det, och kan också användas för enkel inloggning från ditt nätverk.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", "EnableHardwareEncoding": "Aktivera hårdvaruomkodning", "EnablePhotos": "Aktivera foton", "EnablePhotosHelp": "Foton kommer upptäckas och visas tillsammans med andra mediefiler.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", "EnterFFmpegLocation": "Ange sökvägen för FFmpeg", "ErrorAddingJellyfinConnectAccount1": "Det gick inte att lägga till ditt Jellyfin Connect-konto. Har du ett Jellyfin Connect-konto? Du kan skapa ett på {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", "ErrorAddingJellyfinConnectAccount3": "Jellyfin-kontot är redan kopplat till en existerande lokal användare. Ett emby-konto kan endast kopplas till en lokal användare åt gången.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "ErrorAddingMediaPathToVirtualFolder": "Det gick inte att lägga till sökvägen. Kontrollera att sökvägen är korrekt och att Jellyfin Server har rättigheter till sökvägen.", "ErrorAddingTunerDevice": "Det gick inte att lågga till den här TV-mottagaren. Säkerställ att den går att nå och försök igen.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", "ErrorGettingTvLineups": "Ett fel uppstod vid nedladdningen utav tv-sortimentet. Se till så att uppgifterna stämmer och försök igen.", "ErrorMessageEmailInUse": "Emailadressen används redan. Välj en ny emailadress och försök igen, eller klicka på återställ lösenord.", "ErrorMessagePasswordNotMatchConfirm": "Lösenordet och bekräftelsen måste överensstämma.", @@ -221,7 +198,6 @@ "ExitFullscreen": "Avsluta fullskärm", "ExtractChapterImagesHelp": "Att extrahera kapitelrutor möjliggör för vissa klienter att visa grafiska menyer för kapitelval. Aktiviteten kan vara långsam, cpu-intensiv och kan kräva flera gigabyte hårddiskutrymme på din Jellyfin Server. Aktiviteten körs när nya videofiler upptäcks och är även schemalagd under nattetid, men det går att ändra under schemalagda aktiviteter. Det är inte rekommenderat att köra den här aktiviteten vid tider med hög belastning.", "FFmpegSavePathNotFound": "Det gick inte att hitta FFmpeg med den angivna sökvägen. FFprobe måste även finnas i samma mapp. Dessa komponenter inkluderas normalt i samma nedladdning. Var god undersök sökvägen och försök igen.", - "FastForward": "Fast-forward", "FeatureRequiresJellyfinPremiere": "Den här funktionen kräver en aktiv Jellyfin Premium prenumeration.", "FileNotFound": "Kan inte hitta filen.", "FileReadCancelled": "Inläsningen av filen har avbrutits.", @@ -236,9 +212,7 @@ "FolderTypePhotos": "Foton", "FolderTypeTvShows": "TV-serier", "FolderTypeUnset": "Blandat innehåll", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", "Fullscreen": "Fullskärm", - "General": "General", "GuestUserNotFound": "Användaren kunde inte hittas. Se till så att namnet är korrekt och försök igen, eller pröva att ange emailadressen istället.", "GuideProviderLogin": "Logga in", "GuideProviderSelectListings": "Välj listor", @@ -259,7 +233,6 @@ "HeaderAddUpdateImage": "Lägg till/uppdatera bild", "HeaderAddUser": "Lägg till användare", "HeaderAdditionalParts": "Ytterligare delar", - "HeaderAdmin": "Admin", "HeaderAdvanced": "Avancerat", "HeaderAirDays": "Sändningsdagar", "HeaderAlbums": "Album", @@ -269,7 +242,6 @@ "HeaderApiKey": "API-nyckel", "HeaderApiKeys": "API-nycklar", "HeaderApiKeysHelp": "Externa applikationer behöver en api-nyckel för att kommunicera med Jellyfin Server. Nycklar skapas genom att logga in med ett Jellyfin-konto eller genom att manuellt skapa en nyckel till applikationen.", - "HeaderApp": "App", "HeaderAudio": "Ljud", "HeaderAudioSettings": "Ljudinställningar", "HeaderAudioTracks": "Ljudspår", @@ -280,7 +252,6 @@ "HeaderBecomeProjectSupporter": "Skaffa Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Blockera innehåll med ingen eller okänd åldersgräns:", "HeaderBooks": "Böcker", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Ändra utseendet på Jellyfin för att matcha din grupp eller organisation.", "HeaderCameraUpload": "Kamerauppladdning", "HeaderCameraUploadHelp": "Jellyfin-appar kan automatiskt ladda upp foton tagna med dina mobila enheter till Jellyfin-servern.", @@ -360,7 +331,6 @@ "HeaderFeatureAccess": "Tillgång till funktioner", "HeaderFeatures": "Extramaterial", "HeaderFetchImages": "Hämta bilder:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filter", "HeaderForKids": "För barn", "HeaderForgotKey": "Glömt koden", @@ -379,7 +349,6 @@ "HeaderIdentificationHeader": "ID-rubrik", "HeaderImageBackdrop": "Bakgrundsbild", "HeaderImageLogo": "Logotyp", - "HeaderImageOptions": "Image Options", "HeaderImagePrimary": "Huvudbild", "HeaderImageSettings": "Bildinställningar", "HeaderImages": "Bilder", @@ -394,7 +363,6 @@ "HeaderItems": "Objekt", "HeaderJellyfinAccountAdded": "Jellyfinkonto har lagts till", "HeaderJellyfinAccountRemoved": "Jellyfinkontot har tagits bort", - "HeaderJellyfinServer": "Jellyfin Server", "HeaderKodiMetadataHelp": "Jellyfin har stöd för Nfo-metadatafiler. För att aktivera eller inaktivera Nfo-metadata, använd Metadata-fliken för att konfigurera Nfo-stöd för dina mediatyper.", "HeaderLanguage": "Språk", "HeaderLatestAlbums": "Nytillkomna album", @@ -419,10 +387,8 @@ "HeaderLinks": "Länkar", "HeaderLiveTV": "Live-TV", "HeaderLiveTv": "Live-TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", "HeaderLoginFailure": "Misslyckad inloggning", "HeaderManagement": "Administration", - "HeaderMedia": "Media", "HeaderMediaFolders": "Mediamappar", "HeaderMediaInfo": "Mediainformation", "HeaderMediaLocations": "Lagringsplatser för media", @@ -445,7 +411,6 @@ "HeaderNotifications": "Meddelanden", "HeaderNowPlaying": "Nu spelas", "HeaderNumberOfPlayers": "Spelare", - "HeaderOffline": "Offline", "HeaderOfflineSync": "Offline synk", "HeaderOnNow": "På nu", "HeaderOptions": "Alternativ", @@ -453,7 +418,6 @@ "HeaderOtherItems": "Övriga objekt", "HeaderOverview": "Översikt", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", "HeaderPassword": "Lösenord", "HeaderPasswordReset": "Återställning av lösenordet", "HeaderPaths": "Sökvägar", @@ -474,7 +438,6 @@ "HeaderProfile": "Profil", "HeaderProfileInformation": "Profilinformation", "HeaderProfileServerSettingsHelp": "Dessa inställningar kontrollerar hur Jellyfin Server presenterar sig för enheten.", - "HeaderProgram": "Program", "HeaderRecentActivity": "Senaste aktivitet", "HeaderRecentlyPlayed": "Nyligen spelade", "HeaderRecordingGroups": "Inspelningsgrupper", @@ -499,7 +462,6 @@ "HeaderRuntime": "Speltid", "HeaderScenes": "Kapitel", "HeaderSchedule": "Schema", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "Sök", "HeaderSeason": "Säsong", "HeaderSeasonNumber": "Säsongsnummer:", @@ -541,7 +503,6 @@ "HeaderSpecialFeatures": "Extramaterial", "HeaderSpecials": "Specialavsnitt", "HeaderSplitMedia": "Dela upp media", - "HeaderStatus": "Status", "HeaderStudios": "Studior", "HeaderSubtitleDownloads": "Undertextshämtningar", "HeaderSubtitleProfile": "Undertextprofil", @@ -553,7 +514,6 @@ "HeaderSync": "Synkronisera", "HeaderSyncJobInfo": "Synkroniseringsjobb", "HeaderSystemDlnaProfiles": "Systemprofiler", - "HeaderTV": "TV", "HeaderTags": "Etiketter", "HeaderTaskTriggers": "Aktivitetsutlösare", "HeaderTermsOfService": "Jellyfin användarvillkor", @@ -565,14 +525,12 @@ "HeaderTopPlugins": "Tilläggstoppen", "HeaderTrack": "Spår", "HeaderTracks": "Spår", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Profil för omkodning", "HeaderTranscodingProfileHelp": "Ange omkodningsprofiler för att indikera vilka format som ska användas då omkodning krävs.", "HeaderTunerDevices": "TV-mottagare", "HeaderTuners": "TV-mottagare", "HeaderTvTuners": "TV-mottagare", "HeaderType": "Typ", - "HeaderTypeImageFetchers": "{0} Image Fetchers", "HeaderTypeText": "Ange text", "HeaderUnaired": "Ej sänt", "HeaderUnknownDate": "Okänt datum", @@ -586,9 +544,7 @@ "HeaderUser": "Användare", "HeaderUserPrimaryImage": "Användarbild", "HeaderUsers": "Användare", - "HeaderVideo": "Video", "HeaderVideoTypes": "Videotyper", - "HeaderVideos": "Videos", "HeaderViewOrder": "Visningsordning", "HeaderViewStyles": "Utökade vyer", "HeaderWelcomeToJellyfin": "Välkommen till Jellyfin", @@ -600,7 +556,6 @@ "HeadersFolders": "Mappar", "HowToConnectFromJellyfinApps": "Hur man ansluter från Jellyfin-appar", "HowWouldYouLikeToAddUser": "Hur vill du lägga till en användare?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "Bildförhållande 1:1 rekommenderas. Endast JPG/PNG.", "ImportFavoriteChannelsHelp": "Aktivera för att endast importera kanaler som är märkta som favoriter på den här TV-mottagaren.", "ImportMissingEpisodesHelp": "Om aktiverat importeras information om saknade episoder till din Jellyfin-databas och visas i seriesäsongerna. Detta kan innebära längre tidsåtgång för biblioteksskanningar.", @@ -619,7 +574,6 @@ "LabelAirDays": "Sändningsdagar:", "LabelAirTime": "Sändningstid:", "LabelAirTime:": "Sändningstid:", - "LabelAlbum": "Album:", "LabelAlbumArtHelp": "PN som används för omslagsbilder, inom attributet dlna:profileID hos upnp:albumArtURI. Vissa enheter kräver ett specifikt värde, oavsett bildens storlek.", "LabelAlbumArtMaxHeight": "Skivomslagens maxhöjd:", "LabelAlbumArtMaxHeightHelp": "Högsta upplösning hos omslagsbilder presenterade via upnp:albumArtURI.", @@ -633,12 +587,9 @@ "LabelAllowHWTranscoding": "Tillåt hårdvaruomkodning", "LabelAllowServerAutoRestart": "Tillåt att servern startas om automatiskt efter uppdateringar", "LabelAllowServerAutoRestartHelp": "Servern startas om endast då inga användare är inloggade.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", "LabelAnytime": "När som helst", "LabelAppName": "Appens namn", "LabelAppNameExample": "Exempel: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Artister:", "LabelArtistsHelp": "Separera med ; vid flera", "LabelAudioCodec": "Ljud: {0}", @@ -651,7 +602,6 @@ "LabelBlastMessageInterval": "Sändningsintervall i sekunder för \"jag lever\"-meddelanden", "LabelBlastMessageIntervalHelp": "Anger tid i sekunder mellan varje \"jag lever\"-meddelande.", "LabelBlockContentWithTags": "Blockera innehåll med etiketterna:", - "LabelCache": "Cache:", "LabelCachePath": "Plats för cache:", "LabelCachePathHelp": "Ange en sökväg för cachefiler som till exempel bilder. Lämna tomt för att använda serverns standardvärde.", "LabelCameraUploadPath": "Välj sökväg för kamerauppladdning:", @@ -719,7 +669,6 @@ "LabelDropImageHere": "Släpp en bild här.", "LabelDynamicExternalId": "{0} ID:", "LabelEasyPinCode": "Enkel pin-kod:", - "LabelEmail": "Email:", "LabelEmailAddress": "E-postadress", "LabelEmbedAlbumArtDidl": "Bädda in omslagsbilder i Didl", "LabelEmbedAlbumArtDidlHelp": "Vissa enheter föredrar den här metoden att ta fram omslagsbilder. Andra kanske avbryter avspelningen om detta val är aktiverat.", @@ -770,7 +719,6 @@ "LabelFolderType": "Typ av mapp:", "LabelForcedStream": "(tvingade)", "LabelForgotPasswordUsernameHelp": "Skriv ditt användarnamn, om du kommer ihåg det.", - "LabelFormat": "Format:", "LabelFree": "Gratis", "LabelFriendlyName": "Visningsnamn", "LabelFriendlyServerName": "Ditt önskade servernamn:", @@ -818,7 +766,6 @@ "LabelLocalAccessUrl": "Hem-åtkomst(LAN): {0}", "LabelLocalHttpServerPortNumber": "Lokalt portnummer för http:", "LabelLocalHttpServerPortNumberHelp": "Den lokala tcp-port som Jellyfin Server ska lyssna på http.", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "Ansvarsbegränsning vid inloggning:", "LabelLoginDisclaimerHelp": "Detta visas längst ned på inloggningssidan.", "LabelLogs": "Loggfiler:", @@ -839,7 +786,6 @@ "LabelMaxStreamingBitrateHelp": "Ange högsta bithastighet för strömning.", "LabelMessageText": "Meddelandetext", "LabelMessageTitle": "Meddelandetitel", - "LabelMetadata": "Metadata:", "LabelMetadataDownloadLanguage": "Önskat språk för metadata:", "LabelMetadataDownloaders": "Hämtare av metadata:", "LabelMetadataDownloadersHelp": "Aktivera och rangordna dina hämtare baserat på prioritet. Lägre prioriterade hämtare används endast för att fylla i saknad information.", @@ -901,9 +847,6 @@ "LabelPlayMethodDirectPlay": "Direktuppspelning", "LabelPlayMethodDirectStream": "Direkt strömning", "LabelPlayMethodTranscoding": "Omkodning", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "Föredraget visningsspråk:", "LabelPreferredDisplayLanguageHelp": "Att översätta Jellyfin är ett pågående projekt.", "LabelPrevious": "Föregående", @@ -941,7 +884,6 @@ "LabelSeasonFolderPattern": "Namnmönster för säsongmappar:", "LabelSeasonNumber": "Säsongsnummer:", "LabelSeasonZeroFolderName": "Namn på mapp för säsong 0", - "LabelSecureConnectionsMode": "Secure connection mode:", "LabelSelectInternetTrailersForCinemaMode": "Trailers från Internet", "LabelSelectUsers": "Välj användare:", "LabelSelectVersionToInstall": "Välj version att installera:", @@ -951,7 +893,6 @@ "LabelSeriesRecordingPath": "Inspelningssökväg för TV-serier (valfri):", "LabelServerHost": "Värd:", "LabelServerHostHelp": "192.168.1.100 eller https://min.server.com", - "LabelServerPort": "Port:", "LabelSimultaneousConnectionLimit": "Begränsning för samtidiga strömmar", "LabelSkipIfAudioTrackPresent": "Hoppa över om det förvalda ljudspårets språk är samma som det hämtade.", "LabelSkipIfAudioTrackPresentHelp": "Bocka ur denna för att ge undertexter åt alla videor oavsett ljudspårets språk.", @@ -964,7 +905,6 @@ "LabelSpecialSeasonsDisplayName": "Visningsnamn för specialsäsong:", "LabelSportsCategories": "Sportkategorier:", "LabelStartWhenPossible": "Starta när det är möjligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stoppa när det är möjligt:", "LabelStopping": "Avbryter", "LabelSubtitleDownloaders": "Undertextskällor:", @@ -992,15 +932,11 @@ "LabelTunerIpAddress": "IP-adress till TV-mottagare:", "LabelTunerType": "Typ av TV-mottagare:", "LabelType": "Typ:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Visa ännu ej sända avsnitt i säsonger", "LabelUnknownLanguage": "Okänt språk", "LabelUploadSpeedLimit": "Bandbreddsbegränsning vid synkronisering (Mbps):", - "LabelUrl": "Url:", "LabelUseNotificationServices": "Använd följande tjänster:", "LabelUser": "Användare:", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Användarbibliotek:", "LabelUserLibraryHelp": "Välj vilken användares bibliotek som skall visas på enheten. Lämna detta tomt för att använda standardbiblioteket.", "LabelUserRemoteClientBitrateLimitHelp": "Kommer att skriva över det globala standard-värdet satt under serverns uppspelningsinställningar.", @@ -1009,33 +945,22 @@ "LabelVaapiDeviceHelp": "Detta är renderingsnoden som används för hårdvaruacceleration.", "LabelValue": "Värde:", "LabelVersionInstalled": "{0} installerade", - "LabelVersionNumber": "Version {0}", "LabelVersionUpToDate": "Uppdaterad!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Videoformat:", "LabelView": "Vy:", - "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Anger innehållet i elementet X_DLNACAP i namnutrymmet urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "X-Dlna doc:", "LabelXDlnaDocHelp": "Anger innehållet i elementet X_DLNADOC i namnutrymmet urn:schemas-dlna-org:device-1-0.", "LabelYourFirstName": "Ditt förnamn:", "LabelYoureDone": "Klart!", "LabelZipCode": "Postnummer:", "LabelffmpegPath": "FFmpeg sökväg:", "LabelffmpegPathHelp": "Sökvägen till ffmpeg applikationen, eller mappen som innehåller ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", "LatestFromLibrary": "Senaste {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Ange vilka mediamappar den här användaren ska ha tillgång till. Administratörer har rättighet att redigera alla mappar i metadatahanteraren.", - "LinkApi": "Api", "LinkCommunity": "Användargrupper", - "LinkGithub": "Github", "LinkLearnMoreAboutSubscription": "Läs mer om Jellyfin Premiere", "LiveTvUpdateAvailable": "(Uppdatering tillgänglig)", "LoginDisclaimer": "Jellyfin är designat för att hjälpa dig hantera ditt personliga mediabibliotek, såsom filmer och bilder. Läs igenom våra användarvillkor. Använding av Jellyfin-mjukvara innebär ett accepterande av dessa användarvillkor.", - "ManageLibrary": "Manage library", "ManageOfflineDownloads": "Hantera offline-hämtningar", "MapChannels": "Mappa kanaler", "MarkFFmpegExec": "Om du kör Linux eller OSX måste du hitta ffmpeg och ffprobe filerna samt markera dem som exekverbara. Detta krävs för att ge åtkomst till Jellyfin att exekvera dem.", @@ -1051,20 +976,17 @@ "MediaInfoChannels": "Kanaler", "MediaInfoCodec": "Kodningsformat", "MediaInfoCodecTag": "Kodningsetikett", - "MediaInfoContainer": "Container", "MediaInfoDefault": "Förval", "MediaInfoExposureTime": "Exponeringstid", "MediaInfoExternal": "Externa", "MediaInfoFile": "Fil", "MediaInfoFocalLength": "Brännvidd", "MediaInfoForced": "Tvingade", - "MediaInfoFormat": "Format", "MediaInfoFramerate": "Bildfrekvens", "MediaInfoInterlaced": "Sammanflätad", "MediaInfoIsoSpeedRating": "ISO-inställning", "MediaInfoLanguage": "Språk", "MediaInfoLatitude": "Latitud", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Nivå", "MediaInfoLongitude": "Longitud", "MediaInfoOrientation": "Orientering", @@ -1078,10 +1000,8 @@ "MediaInfoSize": "Storlek", "MediaInfoSoftware": "Programvara", "MediaInfoStreamTypeAudio": "Ljud", - "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeEmbeddedImage": "Infogad bild", "MediaInfoStreamTypeSubtitle": "Undertext", - "MediaInfoStreamTypeVideo": "Video", "MediaInfoTimestamp": "Tidsstämpel", "MessageAlreadyInstalled": "Den här versionen är redan installerad.", "MessageApplicationUpdated": "Jellyfin Server har uppdaterats", @@ -1164,9 +1084,7 @@ "MessageUnableToConnectToServer": "Vi kunde inte upprätta anslutning till vald server just nu. Försäkra dig om att den är påslagen och försök igen.", "MessageUnsetContentHelp": "Innehåll kommer visas som enkla mappar. För bästa resultat, använd en metadata-hanterare för att ställa in typ av innehåll för undermapparna.", "MessageYouHaveVersionInstalled": "Version {0} är installerad.", - "Metadata": "Metadata", "MetadataManager": "Metadata-hanteraren", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MinutesAfter": "minuter efter", "MinutesBefore": "minuter före", "MissingBackdropImage": "Fondbild saknas.", @@ -1180,24 +1098,16 @@ "Never": "Aldrig", "NewVersionOfSomethingAvailable": "En ny version av {0} finns tillgänglig!", "News": "Nyheter", - "NextUp": "Next Up", "NoNewDevicesFound": "Inga nya enheter hittades. För att lägga tilll en ny tuner, stäng denna rutan och mata in enhetsinformation manuellt.", "NoNextUpItemsMessage": "Hittade inget. Sätt igång och titta!", "NoPluginConfigurationMessage": "Detta tillägg har inga inställningar att konfigurera.", "NoPluginsInstalledMessage": "Du har inte installerat några tillägg.", "NoResultsFound": "Inga resultat hittades.", - "Notifications": "Notifications", "NumLocationsValue": "{0} mappar", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "Skådespelare", "OptionActors": "Skådespelare", "OptionAdminUsers": "Administratörer", "OptionAfterSystemEvent": "Efter en systemhändelse", - "OptionAlbum": "Album", "OptionAlbumArtist": "Albumartist", "OptionAll": "Alla", "OptionAllUsers": "Alla användare", @@ -1219,10 +1129,7 @@ "OptionAllowVideoPlaybackTranscoding": "Tillåt videouppspelning som kräver omkodning", "OptionAnyNumberOfPlayers": "Vilken som helst", "OptionArt": "Grafik", - "OptionArtist": "Artist", "OptionAscending": "Stigande", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", "OptionAutomaticallyGroupSeries": "Slå ihop serier automatiskt som ligger utspritt under flera kataloger", "OptionAutomaticallyGroupSeriesHelp": "Serier som är spridda över flera mappar i det här biblioteket kommer automatiskt att slås ihop till en enda serie.", "OptionBackdrop": "Fondbild", @@ -1240,13 +1147,10 @@ "OptionBlockMovies": "Filmer", "OptionBlockMusic": "Musik", "OptionBlockOthers": "Övrigt", - "OptionBlockTrailers": "Trailers", "OptionBlockTvShows": "TV-serier", "OptionBluray": "Blu-ray", "OptionBooks": "Böcker", - "OptionBox": "Box", "OptionBoxRear": "Box bakre", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Samlingar", "OptionCommunityRating": "Allmänhetens betyg", "OptionComposer": "Kompositör", @@ -1327,7 +1231,6 @@ "OptionHasSubtitles": "Undertexter", "OptionHasThemeSong": "Ledmotiv", "OptionHasThemeVideo": "Temavideo", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Visa inte den här användaren på inloggningssidorna", "OptionHideUserFromLoginHelp": "Användbart för privata konton eller gömda administratörskonton. Användaren beöver logga in manuellt genom att skriva sitt användarnamn och lösenord.", "OptionHlsSegmentedSubtitles": "HLS-segmenterade undertexter", @@ -1338,8 +1241,6 @@ "OptionImages": "Bilder", "OptionImdbRating": "Betyg på IMDB", "OptionInProgress": "Pågår", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "ISO", "OptionKeywords": "Nyckelord", "OptionLatestChannelMedia": "Senaste objekten i Kanaler", @@ -1350,7 +1251,6 @@ "OptionList": "Lista", "OptionLocked": "Låst", "OptionLogo": "Logotyp", - "OptionMax": "Max", "OptionMenu": "Meny", "OptionMissingEpisode": "Saknade avsnitt", "OptionMissingImdbId": "IMDB-ID saknas", @@ -1396,29 +1296,24 @@ "OptionProducers": "Producenter", "OptionProfileAudio": "Ljud", "OptionProfilePhoto": "Foto", - "OptionProfileVideo": "Video", "OptionProfileVideoAudio": "Videoljudspår", "OptionProtocolHls": "Live-strömning via Http", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "Spela in när som helst", "OptionRecordOnAllChannels": "Spela in på alla kanaler", "OptionRecordOnlyNewEpisodes": "Spela bara in nya avsnitt", "OptionRecordSeries": "Spela in serie", - "OptionRegex": "Regex", "OptionRelease": "Officiell version", "OptionReleaseDate": "Premiärdatum", "OptionReportByteRangeSeekingWhenTranscoding": "Meddela att servern stödjer bytebaserad sökning vid omkodning", "OptionReportByteRangeSeekingWhenTranscodingHelp": "Detta krävs för vissa enheter som inte kan utföra tidssökning på ett tillfredsställande sätt.", "OptionRequirePerfectSubtitleMatch": "Ladda endast ner undertexter som matchar mina videofiler exakt", "OptionRequirePerfectSubtitleMatchHelp": "Att kräva en perfekt matchning filtrerar undertexter till att bara inkludera de som testats och verifierats med din exakta videofil. Stänger du av detta ökas chansen att undertexter laddas ned, men ökar chanserna att de är osynkade eller felaktiga.", - "OptionResElement": "res element", "OptionResumable": "Kan återupptas", "OptionResumablemedia": "Återuppta", "OptionRuntime": "Speltid", "OptionSaturday": "Lördag", "OptionSaturdayShort": "Lör", "OptionSaveMetadataAsHidden": "Spara metadata och bilder som dolda filer", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", "OptionScreenshot": "Skärmdump", "OptionSeason0": "Säsong 0", "OptionSeasons": "Säsonger", @@ -1470,7 +1365,6 @@ "PasswordResetConfirmation": "Är du säker på att du vill återställa lösenordet?", "PasswordResetHeader": "Återställ lösenord", "PasswordSaved": "Lösenordet har sparats.", - "PersonTypePerson": "Person", "PictureInPicture": "Bild i bild", "PinCodeResetComplete": "Pinkoden har återställts.", "PinCodeResetConfirmation": "Är du säker på att du vill återställa pinkoden?", @@ -1485,7 +1379,6 @@ "PluginUpdatedWithName": "{0} uppdaterades", "PreferEmbeddedTitlesOverFileNames": "Föredra inbäddade titlar över filnamnen", "PreferEmbeddedTitlesOverFileNamesHelp": "Det här bestämmer visningstiteln när ingen internet metadata eller lokal metadata finns att tillgå.", - "PreferredNotRequired": "Preferred, but not required", "Programs": "Program", "ProviderValue": "Källa: {0}", "Rate": "Betygsätt", @@ -1493,17 +1386,12 @@ "RecommendationBecauseYouWatched": "Eftersom du tittade på {0}", "RecommendationDirectedBy": "Regi: {0}", "RecommendationStarring": "I rollerna: {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Registrera med PayPal", "ReleaseYearValue": "Utgivningsår: {0}", "RememberMe": "Kom ihåg mig", - "Reporting": "Reporting", "RequireHttps": "Kräv https för externa anslutningar", "RequireHttpsHelp": "Om aktiverat kommer http-anslutningar att omdirigeras till https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", "SaveSubtitlesIntoMediaFolders": "Spara undertexter till mediamappar", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", "ScanLibrary": "Scanna bibliotek", "SelectCameraUploadServers": "Ladda upp kamerabilder till följande servrar:", "SendMessage": "Skicka meddelande", @@ -1515,26 +1403,21 @@ "SettingsWarning": "Ändring av dessa alternativ kan innebära instabilitet eller anslutningsproblem. Återställ dessa till standardvärdena om du upplever några problem.", "SetupFFmpeg": "Sätt upp FFmpeg", "SetupFFmpegHelp": "Jellyfin kan kräva ett bibliotek eller applikaton för att kunna konverta till vissa mediatyper. Det finns flera olika applikationer tillgängliga, men Jellyfin fungerar bäst med ffmpeg. Jellyfin är inte affilierat med ffmpeg på något sätt.", - "ShowAdvancedSettings": "Show advanced settings", "SimultaneousConnectionLimitHelp": "Maximalt antal tillåtna simultanströmmar. Välj 0 för att inte begränsa.", "Sports": "Sport", - "Standard": "Standard", "StatusRecording": "Inspelning pågår", "StatusRecordingProgram": "Spelar in {0}", "StatusWatching": "Visning pågår", "StatusWatchingProgram": "Spelar upp {0}", "StopRecording": "Avbryt inspelning", "Subscriptions": "Prenumerationer", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", "SubtitleDownloadersHelp": "Aktivera och rangordna dina källor baserat på prioritet.", "Subtitles": "Undertexter", - "Sync": "Sync", "SyncMedia": "Synkronisera Media", "SyncToOtherDevices": "Synka till andra enheter", "SynologyUpdateInstructions": "Logga in på DSM och gå till Paketcenter för att uppdatera.", "SystemDlnaProfilesHelp": "Systemprofiler är skrivskyddade. Ändringar av en systemprofil resulterar att en ny anpassad profil skapas.", "TabAbout": "Om", - "TabAccess": "Access", "TabActivity": "Aktivitet", "TabAdvanced": "Avancerat", "TabAlbumArtists": "Albumartister", @@ -1554,13 +1437,11 @@ "TabCollections": "Samlingar", "TabContainers": "Behållare", "TabControls": "Kontroller", - "TabDLNA": "DLNA", "TabDashboard": "Kontrollpanel", "TabDevices": "Enheter", "TabDirectPlay": "Direktuppspelning", "TabDisplay": "Visning", "TabEpisodes": "Avsnitt", - "TabExpert": "Expert", "TabExtras": "Extra", "TabFavorites": "Favoriter", "TabFilter": "Filtrera", @@ -1575,14 +1456,12 @@ "TabHosting": "Värd", "TabImage": "Bild", "TabImages": "Bilder", - "TabInfo": "Info", "TabLanguages": "Språk", "TabLatest": "Nytillkommet", "TabLibrary": "Bibliotek", "TabLibraryAccess": "Åtkomst till biblioteket", "TabLiveTV": "Live-TV", "TabLogs": "Loggfiler", - "TabMetadata": "Metadata", "TabMovies": "Filmer", "TabMusic": "Musik", "TabMusicVideos": "Musikvideor", @@ -1613,7 +1492,6 @@ "TabScheduledTasks": "Schemalagda aktiviteter", "TabSecurity": "Säkerhet", "TabSeries": "Serie", - "TabServer": "Server", "TabServices": "Tjänster", "TabSettings": "Inställningar", "TabShows": "Serier", @@ -1624,8 +1502,6 @@ "TabSuggestions": "Förslag", "TabSync": "Synkronisering", "TabSyncJobs": "Synkroniseringsjobb", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Omkodning", "TabUpcoming": "Kommande", "TabUsers": "Användare", @@ -1647,27 +1523,22 @@ "TitlePlugins": "Tillägg", "TitleRemoteControl": "Fjärrkontroll", "TitleScheduledTasks": "Schemalagda aktiviteter", - "TitleServer": "Server", "TitleSignIn": "Logga in", - "TitleSupport": "Support", "TitleSync": "Synk", "TitleUsers": "Användare", "TvLibraryHelp": "Läs om {0}Jellyfins namngivningsguide för TV-serier{1}.", "UninstallPluginConfirmation": "Är du säker på att du vill avinstallera {0}?", "UninstallPluginHeader": "Avinstallera tillägg", "Unmute": "Muting av", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin har inbyggt stöd för användarprofiler som tillåter att varje användare har sina egna inställningar för visning, spelartillstånd och föräldralås.", "Users": "Användare", "ValueAlbumCount": "{0} album", - "ValueArtist": "Artist: {0}", "ValueArtists": "Artister: {0}", "ValueAsRole": "som {0}", "ValueAudioCodec": "Audiokodning: {0}", "ValueAwards": "Utmärkelser: {0}", "ValueCodec": "Kodning: {0}", "ValueConditions": "Villkor: {0}", - "ValueContainer": "Container: {0}", "ValueDateCreated": "Datum skapad: {0}", "ValueDiscNumber": "Skiva {0}", "ValueEpisodeCount": "{0} avsnitt", @@ -1677,31 +1548,24 @@ "ValueItemCount": "{0} objekt", "ValueItemCountPlural": "{0} objekt", "ValueLinks": "Länkar: {0}", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikvideor", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 avsnitt", "ValueOneGame": "1 spel", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 låt", - "ValueOneTrailer": "1 trailer", "ValuePremiered": "Premiärdatum {0}", "ValuePremieres": "Premiärdatum {0}", "ValuePriceUSD": "Pris: {0} (USD)", "ValueSeriesCount": "{0} serier", "ValueSeriesYearToPresent": "{0} - Finns", "ValueSongCount": "{0} låtar", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", "ValueStudios": "Studior: {0}", "ValueTimeLimitMultiHour": "Tidsbegränsning: {0} timmar", "ValueTimeLimitSingleHour": "Tidsbegränsning: 1 timme", - "ValueTrailerCount": "{0} trailers", "ValueVideoCodec": "Videokodning: {0}", - "VersionNumber": "Version {0}", "ViewPlaybackInfo": "Visa uppspelningsinfo", "ViewTypeFolders": "Mappar", "ViewTypeGames": "Spel", @@ -1714,9 +1578,7 @@ "ViewTypeMusicFavoriteSongs": "Favoritlåtar", "ViewTypeMusicFavorites": "Favoriter", "ViewTypeMusicSongs": "Låtar", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Välkommen till Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "Det är allt vi behöver veta just nu. Jellyfin Server har börjat samla information om ditt mediabibliotek. Kolla in några av våra appar och klicka sedan på Avsluta för att se kontrollpanelen.", "XmlDocumentAttributeListHelp": "Dessa attribut tillämpas på rotelementet i alla xml-svar.", "XmlTvKidsCategoriesHelp": "Program med dessa kategorier kommer visas som program för barn. Separerade med '|'.", diff --git a/src/strings/tr.json b/src/strings/tr.json index 916c12e231..fb69bd306c 100644 --- a/src/strings/tr.json +++ b/src/strings/tr.json @@ -1,1728 +1,352 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Kullanıcı Ekle", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Hepsi", "AllLibraries": "Bütün kütüphaneler", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", "AllowRemoteAccess": "Bu emby sunucusuna uzaktan bağlanmaya izin ver", "AllowRemoteAccessHelp": "Eğer işaretlenmemişse, bütün uzak bağlantılar bloke edilicek", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Mevcut Eklentileri Görebilmek İçin Eklenti Katologuna Göz Atın.", - "ButtonAccept": "Accept", "ButtonAdd": "Ekle", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Kullanıcı Ekle", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", "ButtonArrowRight": "Sağ", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", "ButtonBack": "Geri", "ButtonCancel": "İptal", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "Medyayı dönüştür", - "ButtonCreate": "Create", "ButtonDelete": "Sil", "ButtonDeleteImage": "Resmi Sil", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "Düzenle", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "Çık", "ButtonFilter": "Filtre", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", "ButtonHelp": "Yardım", - "ButtonHide": "Hide", "ButtonHome": "Anasayfa", "ButtonInfo": "Bilgi", "ButtonInviteUser": "Kullanıcı Davet Et", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", "ButtonManualLogin": "Manuel Giriş", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", "ButtonMute": "Sessiz", - "ButtonNetwork": "Network", "ButtonNew": "Yeni", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "Tamam", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", "ButtonPause": "Duraklat", "ButtonPlay": "Çal", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "Gizlilik politikası", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "Hızlı başlangıç rehberi", "ButtonRecord": "Kayıt", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", "ButtonRefreshGuideData": "Kılavuzu Yinele", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "Sil", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Şifre Sıfırla", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Kayıt", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "Kütüphaneyi Tara", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "Arama", "ButtonSelect": "Seçim", "ButtonSelectDirectory": "Dosyayı Seç", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", "ButtonSend": "Gönder", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", "ButtonSettings": "Ayarlar", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", "ButtonSignIn": "Giriş Yapın", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Sırala", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", "ButtonStop": "Durdur", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", "ButtonSubtitles": "Altyazılar", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "Yükle", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", "CategoryApplication": "Uygulamalar", "CategoryPlugin": "Eklenti", "CategorySync": "Eşle", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "Bu kullanıcıyla paylaşmak üzere kanalları seç. Yöneticiler bütün kanalları metada yöneticisi ile düzenleyebilcekler.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Sil", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "Resmi Sil", "DeleteImageConfirmation": "Bu Görüntüyü Silmek İstediğinizden Eminmisiniz?", "DeleteMedia": "Medyayı sil", "DeleteUser": "Kullanıcı Sil", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "Dosya Bulunamadı", "FileReadCancelled": "Dosya Okuma İptal Edildi", "FileReadError": "Dosya Okunurken Bir Hata Oluştu", "FolderTypeBooks": "Kitaplar", "FolderTypeGames": "Oyunlar", - "FolderTypeInherit": "Inherit", "FolderTypeMixed": "Karışık içerik", "FolderTypeMovies": "Filmler", "FolderTypeMusic": "Müzik", "FolderTypeMusicVideos": "Müzik videoları", "FolderTypePhotos": "Resimler", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", "HeaderActiveRecordings": "Aktif Kayıtlar", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Kullanıcı Ekle", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", "HeaderAirDays": "Yayınlanma Tarihleri", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "Tüm Kayıtlar", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Ses", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Otomatik Güncelleme", "HeaderAvailableServices": "Kullanılabilir Servisler", "HeaderAwardsAndReviews": "Ödüller ve ilk bakış", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "Kanallar", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", "HeaderCodecProfile": "Codec Profili", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Koleksiyon", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", "HeaderContinueWatching": "Yarıda Kalanlar", "HeaderCreatePassword": "Şifre Oluştur", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Özel Profiller", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", "HeaderDays": "Günler", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", "HeaderDetails": "Detaylar", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "Cihaz Erişimi", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Kolay Pin Kodu", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", "HeaderFavoriteAlbums": "Favori Albumler", - "HeaderFavoriteArtists": "Favorite Artists", "HeaderFavoriteEpisodes": "Favori Bölümler", "HeaderFavoriteGames": "Favori Oyunlar", "HeaderFavoriteMovies": "Favori Filmler", "HeaderFavoriteShows": "Favori Showlar", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "Filtreler", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Sıkça Oynatılan", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", "HeaderHomePage": "Anasayfa", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "Resim Ayarları", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "Yüklü Servisler", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Son Albümler", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "En yeni bölümler", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", "HeaderLatestMedia": "En Son Görüntülemeler", "HeaderLatestMovies": "Son filmler", - "HeaderLatestMusic": "Latest Music", "HeaderLatestRecordings": "Geçmiş Kayıtlar", "HeaderLatestSongs": "Son Parçalar", "HeaderLatestTrailers": "Son fragmanlar", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", "HeaderLibraryFolders": "Media Klasörleri", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "Yönetim", - "HeaderMedia": "Media", "HeaderMediaFolders": "Media Klasörleri", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", "HeaderMusicVideos": "Müzik vidyoları", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", "HeaderNextUp": "Sonraki hafta", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Şimdi Çalınıyor", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "Hepsini oynat", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "Oynatma Ayarları", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "Lütfen Giriş Yapın", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "Tercih Edilen Meta Dili", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Son oynatılan", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "Uzaktan Kontrol", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", "HeaderResponseProfile": "Profil Görüntüleme", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", "HeaderResume": "Devam", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", "HeaderScenes": "Diziler", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", "HeaderSendMessage": "Mesaj Gönder", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", "HeaderServerSettings": "Sunucu ayarları", - "HeaderServices": "Services", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "Medya kütüphanelerini kur", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Durum", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "Eşle", "HeaderSyncJobInfo": "İşleri Eşle", "HeaderSystemDlnaProfiles": "Sistem Profilleri", - "HeaderTV": "TV", - "HeaderTags": "Tags", "HeaderTaskTriggers": "Görev tetikleyicileri", - "HeaderTermsOfService": "Jellyfin Terms of Service", "HeaderThemeSongs": "Tema Şarkılar", "HeaderThemeVideos": "Video Temaları", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "Ulaşabilmek için lütfen Kolay Pin Kod'unuzu girin", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", "HeaderTranscodingProfile": "Kodlama Profili", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Yeni Resim Yükle", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Kullanıcılar", "HeaderVideo": "Görüntü", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "1:1 Görüntü Oranı Önerilir. Sadece JPG/PNG için.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Bu sunucuya güncellemeleri uygulamak için yeniden başlama izni ver", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "Sanatçılar:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Ses Dili Tercihi:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "Önbellek Yolu", "LabelCachePathHelp": "Sunucunun resim vb. önbellek dosyalarını tutması için bir yer belirt. Öntanımlı yeri kullanmak için boş bırak.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Ayarları değiştir", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "İçerik türü:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Ülke", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Kullanımdaki şifre:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Gün:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Sezondaki kayıp bölümleri göster", "LabelDisplayMissingEpisodesWithinSeasonsHelp": "TV kütüphaneleri için Jellyfin Sunucusu kurulumunda bunun aktif edilmiş olması gerekir.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "İnternetten İçerik Yükleyin", "LabelDownloadInternetMetadataHelp": "Jellyfin sunucusu medya ile ilgili zengin sunumlar için internetten bilgi indirebilir.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", "LabelEnableDlnaServer": "DLNA Sunucusu etkin", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Bitir", - "LabelFolder": "Folder:", "LabelFolderType": "Klasör Türü:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", "LabelIconMaxHeight": "İkon Max Genişlik:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", "LabelIconMaxWidth": "ikon Max Yükseklik:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Dil:", "LabelLastResult": "Son sonuçlar:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", "LabelManufacturer": "Üretici", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "Maksimum izin verilen ebeveyn değerlendirmesi:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", "LabelMessageText": "Mesaj Metni:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", "LabelMissing": "Kayıp", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "İsim", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Yeni şifre:", "LabelNewPasswordConfirm": "Yeni şifreyi onayla:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Sonraki", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "Şifre", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Önceki", - "LabelProfile": "Profile:", "LabelProfileAudioCodecs": "Ses Codec", "LabelProfileCodecs": "Codecler", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "LabelProfileVideoCodecs": "Video Codec", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Medya meta dosyalarını aynı klasörlere işle", "LabelSaveLocalMetadataHelp": "Daha kolay düzenlemek için artwork'ü ve metada'yı media dosyası ile aynı yere kaydet.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "Kullanıcıları seç:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", "LabelSerialNumber": "Seri Numarası", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Durum:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Altyazı Dili Tercihi:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "Geçici dosya yolu:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Zaman:", "LabelTimeLimitHours": "Zaman limiti (saat):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", "LabelType": "Tür", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Yayınlanmamış sezon bölümlerini göster", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", "LabelUser": "Kullanıcı", - "LabelUserAgent": "User agent:", "LabelUserLibrary": "Kullanıcı Kütüphanesi:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Video Tipi", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "İlk Ad", "LabelYoureDone": "Bitti!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "Bu kullanıcı ile paylaşmak için medya klasörleri seçin. Yöneticiler meta yöneticisini kullanarak tüm klasörleri düzenlemesi mümkün olacaktır.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Daha yüksek bir derece ile İçerik Bu kullanıcıdan gizli olacak.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "Herhangi bir servis yüklü değil", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Burda birşey yok", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "Lütfen internetten metadata indirmenin aktif olduğundan emin olun.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", - "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Eklentiler Yüklü Değil", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Aktörler", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", "OptionAlbum": "Albüm", "OptionAlbumArtist": "Albüm Sanatçısı", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Bu kullanıcıya sunucuyu yönetme izni ver", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Hepsi", - "OptionArt": "Art", "OptionArtist": "Sanatçı", "OptionAscending": "Yükselen", - "OptionAuto": "Auto", "OptionAutomatic": "Otomatik", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "Deneme", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "Topluluk", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "Yorumcu Puanı", - "OptionCustomUsers": "Custom", "OptionDaily": "Günlük", "OptionDateAdded": "Eklenme Tarihi", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Oynatma Tarihi", - "OptionDefaultSort": "Default", "OptionDescending": "Düşen", "OptionDev": "Geliştirici", - "OptionDirector": "Director", "OptionDirectors": "Yönetmenler", "OptionDisableUser": "Kullanıcı Devre Dışı Bırak", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", "OptionDislikes": "Beğenilmeyenler", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "Galeri", "OptionDownloadBackImage": "Geri", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "Kutu", "OptionDownloadDiscImage": "Disk", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "Menü", "OptionDownloadPrimaryImage": "Birincil", "OptionDownloadThumbImage": "Küçük Resim", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", "OptionEnableAccessFromAllDevices": "Bütün cihazlardan erişime izin ver", "OptionEnableAccessToAllChannels": "Bütün kanallara erişim izni ver", "OptionEnableAccessToAllLibraries": "Bütün kütüphanelere erişim izni ver", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "Bitmiş", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Favoriler", "OptionFolderSort": "Klasörler", "OptionFriday": "Cuma", "OptionFridayShort": "Cuma", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "Konuk Oyuncular", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "Altyazı", "OptionHasThemeSong": "Tema Şarkısı", "OptionHasThemeVideo": "Tema Videosu", "OptionHasTrailer": "Tanıtım Video", "OptionHideUser": "Bu kullanıcıyı giriş ekranında gösterme", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "İMDb Reyting", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", "OptionIso": "İso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", "OptionLatestMedia": "En Son Görüntülemeler", - "OptionLatestTvRecordings": "Latest recordings", "OptionLibraryFolders": "Media Klasörleri", "OptionLikes": "Beğenilenler", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", "OptionMissingImdbId": "Eksik IMDB Id'si", "OptionMissingOverview": "Eksik tanıtım", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", "OptionMissingTvdbId": "Eksik TheTVDB Id'si", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Pazartesi", "OptionMondayShort": "Pzrts", "OptionMovies": "Filmler", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "İsim", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "Diğer Videolar", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Oynatma sayacı", "OptionPlayed": "Çalındı", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", "OptionPriority": "Öncelik", - "OptionProducer": "Producer", "OptionProducers": "Prodüktörler", "OptionProfileAudio": "Ses", "OptionProfilePhoto": "Fotoğraf", "OptionProfileVideo": "Vidyo", "OptionProfileVideoAudio": "Video Sesi", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordOnlyNewEpisodes": "Sadece yeni bölümleri kaydet", "OptionRecordSeries": "Kayıt Serisi", - "OptionRegex": "Regex", "OptionRelease": "Resmi Yayın", "OptionReleaseDate": "Yayınlanma Tarihi", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "Başlatılabilir", - "OptionResumablemedia": "Resume", "OptionRuntime": "Süresi", "OptionSaturday": "Cumartesi", "OptionSaturdayShort": "Cmrts", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "Özel", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Pazar", "OptionSundayShort": "Pzr", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", "OptionTags": "Etiketler", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", "OptionThursday": "Perşembe", "OptionThursdayShort": "Prş", - "OptionTimeline": "Timeline", "OptionTrackName": "Parça İsmi", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "Salı", "OptionTuesdayShort": "Salı", "OptionTvdbRating": "Tvdb Reyting", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "Çalınmayan", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "Video Kalitesi", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", "OptionWednesday": "Çarşamba", "OptionWednesdayShort": "Çrşm", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "Haftalık", "OptionWriters": "Yazarlar", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Sifre", "PasswordMatchError": "Parola ve Sifre Eslesmelidir.", "PasswordResetComplete": "Parolanız Sıfırlanmıstır.", "PasswordResetConfirmation": "Sifrenizi Sıfırlamak İstediginizden Eminmisiniz?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "Sifre Kaydedildi", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "Paypal ile kayıt ol", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "Ayarlar Kaydedildi", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", "Standard": "Standart", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "Hakkında", "TabAccess": "Erişim", - "TabActivity": "Activity", "TabAdvanced": "Gelişmiş", "TabAlbumArtists": "Albüm Sanatçıları", "TabAlbums": "Albümler", - "TabAppSettings": "App Settings", "TabArtists": "Sanatçılar", "TabBasic": "Basit", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Katalog", "TabChannels": "Kanallar", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", "TabCodecs": "Codecler", "TabCollectionTitles": "Başlıklar", - "TabCollections": "Collections", - "TabContainers": "Containers", "TabControls": "Kontrol", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Bölümler", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Favoriler", - "TabFilter": "Filter", "TabFolders": "Klasörler", "TabGames": "Oyunlar", "TabGeneral": "Genel", "TabGenres": "Türler", "TabGuide": "Kılavuz", - "TabHelp": "Help", "TabHome": "Anasayfa", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Resim", "TabImages": "Resimler", "TabInfo": "Bilgi", - "TabLanguages": "Languages", "TabLatest": "En yeni", - "TabLibrary": "Library", "TabLibraryAccess": "Kütüphane Erişim", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", "TabMovies": "Filmler", "TabMusic": "Muzik", "TabMusicVideos": "Klipler", - "TabMyLibrary": "My Library", "TabMyPlugins": "Eklentilerim", "TabNavigation": "Navigasyon", "TabNetworks": "Ağlar", "TabNextUp": "Sonraki hafta", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Bildirimler", "TabNowPlaying": "Şimdi Çalınıyor", - "TabOther": "Other", "TabOthers": "Diğerleri", - "TabParentalControl": "Parental Control", "TabPassword": "Şifre", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "Oynatma listesi", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Profil", "TabProfiles": "Profiller", "TabRecordings": "Kayıtlar", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Güvenlik", "TabSeries": "Seriler", "TabServer": "Sunucu", - "TabServices": "Services", "TabSettings": "Ayarlar", "TabShows": "Diziler", "TabSongs": "Şarkılar", - "TabStreaming": "Streaming", "TabStudios": "Stüdyo", "TabSubtitles": "Altyazılar", "TabSuggestions": "Önerilenler", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Fragmanlar", "TabTranscoding": "Kodlayıcı", "TabUpcoming": "Gelecek", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Kendinizden bahsedin", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Bu sihirbaz kurulum işlemi boyunca size yardımcı olacaktır. Başlamak için, tercih ettiğiniz dili seçiniz.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "Canlı TV", - "TitleNewUser": "New User", "TitleNotifications": "Bildirimler", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", "TitlePlugins": "Eklentiler", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "Planlanmış görevler:", "TitleServer": "Sunucu", "TitleSignIn": "Giriş Yapın", "TitleSupport": "Destek", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Kaldırmak İstediginizden Eminmisiniz {0} ?", "UninstallPluginHeader": "Eklenti Kaldır", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "Kullanıcılar", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "Versiyon {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "Jellyfin'ye Hoş Geldiniz!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/uk.json b/src/strings/uk.json index c8326a90c9..6953b58127 100644 --- a/src/strings/uk.json +++ b/src/strings/uk.json @@ -1,1681 +1,142 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", "BirthDateValue": "Народився: {0}", "BirthPlaceValue": "Місце народження: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", "ButtonAccept": "Дозволено", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Додати користувача", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Скасувати", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", "ButtonFilter": "Фільтр", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Новий", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", "ButtonQuality": "Якість", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonReject": "Відхилено", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", "ButtonRename": "Перейменувати", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Скинути пароль", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Зберігти", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "DeathDateValue": "Помер: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "Книги", "FolderTypeGames": "Ігри", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Фільми", "FolderTypeMusic": "Музика", - "FolderTypeMusicVideos": "Music videos", "FolderTypePhotos": "Світлини", "FolderTypeTvShows": "ТБ", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAddUser": "Add User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", "HeaderAlbums": "Альбоми", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "Аудіо", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Автоматичне оновлення", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "Книги", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "Колекції", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Створити пароль", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", "HeaderDeleteDevice": "Видалить пристрій", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", "HeaderFavoriteMovies": "Улюблені фільми", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", "HeaderGames": "Ігри", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", "HeaderInvitationSent": "Запрошення надіслано", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Останні альбоми", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Останні епізоди", - "HeaderLatestFromChannel": "Latest from {0}", "HeaderLatestItems": "Останні", "HeaderLatestMedia": "Останні медіа", "HeaderLatestMovies": "Останні фільми", "HeaderLatestMusic": "Остання музика", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLatestSongs": "Останні пісні", "HeaderLatestTrailers": "Останні трейлери", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", "HeaderMovies": "Фільми", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", "HeaderNotifications": "Повідомлення", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", "HeaderOffline": "Поза мережею", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", "HeaderSeason": "Сезон", - "HeaderSeasonNumber": "Season number", "HeaderSeasons": "Сезони", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", "HeaderSelectExternalPlayer": "Оберіть зовнішній програвач", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", "HeaderSettings": "Налаштування", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", "HeaderStudios": "Студії", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", "HeaderTV": "ТБ", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", "HeaderTrack": "Доріжка", "HeaderTracks": "Доріжки", "HeaderTrailers": "Трейлери", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", "HeaderUnknownDate": "Невідома дата", "HeaderUnknownYear": "Невідомий рік", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "Користувачі", "HeaderVideo": "Відео", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", - "LabelConfigureSettings": "Configure settings", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Країна:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Поточний пароль:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelDateOfBirth": "Дата народження:", - "LabelDay": "Day:", "LabelDeathDate": "Дата смерті:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", - "LabelFinish": "Finish", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Мова:", - "LabelLastResult": "Last result:", "LabelLimit": "Обмеження:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", "LabelMarkAs": "Позначити як:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Новий пароль:", - "LabelNewPasswordConfirm": "New password confirm:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Вперед", "LabelNoUnreadNotifications": "Немає непрочитаних повідомлень.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", "LabelPath": "Шлях:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Назад", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Тип відео:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Ім’я", - "LabelYoureDone": "You're Done!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", "MediaInfoAltitude": "Висота", - "MediaInfoAnamorphic": "Anamorphic", "MediaInfoAperture": "Апертура", "MediaInfoAspectRatio": "Співвідношення сторін", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", "MediaInfoChannels": "Канали", "MediaInfoCodec": "Кодек", - "MediaInfoCodecTag": "Codec tag", "MediaInfoContainer": "Контейнер", "MediaInfoDefault": "Типово", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", "MediaInfoFormat": "Формат", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLanguage": "Мова", "MediaInfoLatitude": "Широта", - "MediaInfoLayout": "Layout", "MediaInfoLevel": "Рівень", "MediaInfoLongitude": "Довгота", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "Шлях", - "MediaInfoPixelFormat": "Pixel format", "MediaInfoProfile": "Профіль", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", "MediaInfoSize": "Розмір", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "Аудіо", "MediaInfoStreamTypeData": "Дата", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", "MediaInfoStreamTypeSubtitle": "Субтитри", "MediaInfoStreamTypeVideo": "Відео", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", "MessageContactAdminToResetPassword": "Будь ласка, зверніться до адміністратора для скидання вашого паролю.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", - "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Актори", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", "OptionAlbum": "Альбом", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", "OptionArtist": "Актор", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", "OptionBlockMovies": "Фільми", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", "OptionBlockTrailers": "Трейлери", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", "OptionBooks": "Книги", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "Колекції", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", "OptionDislikes": "Не подобається", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Улюблене", "OptionFolderSort": "Теки", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", "OptionGames": "Ігри", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "Субтитри", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", "OptionLatestMedia": "Останні медіа", "OptionLatestTvRecordings": "Останні записи", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Подобається", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", "OptionMovies": "Фільми", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "Ім’я", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", "OptionSeasons": "Сезони", "OptionSeries": "Серія", "OptionSongs": "Пісні", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", "OptionStudios": "Студії", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", - "TabCatalog": "Catalog", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", "TabCollections": "Колекції", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Епізоди", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", "TabGenres": "Жанри", - "TabGuide": "Guide", "TabHelp": "Довідка", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", "TabImages": "Зображення", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", "TabLibrary": "Бібліотека", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "Метадані", "TabMovies": "Фільми", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", "TabNetworks": "Мережі", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "Повідомлення", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "Пароль", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", "TabPlugins": "Додатки", "TabProfile": "Профіль", "TabProfiles": "Профілі", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Безпека", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", "TabStudios": "Студії", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", "TabTrailers": "Трейлери", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", "TabUsers": "Користувачі", - "TabView": "View", - "TellUsAboutYourself": "Tell us about yourself", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", - "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", "TitleNotifications": "Повідомлення", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "Users": "Users", "ValueAlbumCount": "{0} альбомів", "ValueArtist": "Актор: {0}", "ValueArtists": "Актори: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", "ValueAwards": "Нагороди: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", "ValueDiscNumber": "Диск {0}", "ValueEpisodeCount": "{0} епізодів", - "ValueExample": "Example: {0}", "ValueGameCount": "{0} ігр", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", "ValueLinks": "Посилання: {0}", "ValueMinutes": "{0} хвилин", "ValueMovieCount": "{0} фільмів", @@ -1688,41 +149,11 @@ "ValueOneSeries": "1 серія", "ValueOneSong": "1 пісня", "ValueOneTrailer": "1 трейлер", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", "ValuePriceUSD": "Ціна: {0} (USD)", "ValueSeriesCount": "{0} серій", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} пісень", - "ValueStatus": "Status: {0}", "ValueStudio": "Студія: {0}", "ValueStudios": "Студії: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTrailerCount": "{0} трейлерів", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", "ViewTypeMovies": "Фільми", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", - "WelcomeToProject": "Welcome to Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/vi.json b/src/strings/vi.json index 3adb753a7d..a5395f0d01 100644 --- a/src/strings/vi.json +++ b/src/strings/vi.json @@ -1,1728 +1,164 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "Thêm người dùng", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", "All": "Tất cả", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Duyệt qua các danh mục plugin của chúng tôi để xem các plugin có sẵn.", - "ButtonAccept": "Accept", "ButtonAdd": "Thêm", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", "ButtonAddUser": "Thêm người dùng", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "Thoát", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", "ButtonDeleteImage": "Xóa hình ảnh", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "Mới", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "Gỡ bỏ", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "Reset mật khẩu", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "Lưu", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "Tìm kiếm", "ButtonSelect": "Lựa chọn", "ButtonSelectDirectory": "Lựa chọn trực tiếp", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "Phân loại", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "Tải lên", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "Xóa", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "Xóa hình ảnh", "DeleteImageConfirmation": "Bạn có chắc muốn xóa hình ảnh này?", - "DeleteMedia": "Delete media", "DeleteUser": "Xóa người dùng", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "Không tìm thấy tệp tin.", "FileReadCancelled": "Tệp tin đọc đã bị hủy.", "FileReadError": "Có một lỗi xảy ra khi đọc tệp tin này.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "Thêm các tiêu đề", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "Thêm người dùng", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "Tự động cập nhật", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", "HeaderClients": "Các máy khách", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "Tạo mật khẩu", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "Hồ sơ khách hàng", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "Ngày", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "Đích", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "Truy cập tính năng", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "Phát thường xuyên", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "Các Album mới nhất", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "Các tập phim mới nhất", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "Phim mới nhất", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLatestSongs": "Các bài hát mới nhất", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "Các liên kết", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", "HeaderName": "Tên", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "Phát ngay bây giờ", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", "HeaderProgram": "Chương trình", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "Phát gần đây", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", "HeaderResume": "Sơ yếu lý lịch", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "Nguồn", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "Trạng thái", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", "HeaderSystemDlnaProfiles": "Hồ sơ hệ thống", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "Tải lên một ảnh mới", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "dùng", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "Cho phép máy chủ tự động khởi động lại để áp dụng các bản cập nhật", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "Ngôn ngữ thoại ưa thích:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", "LabelCompleted": "Hoàn thành", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "Cài đặt cấu hình", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "Quốc gia:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "Mật khẩu hiện tại:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "Ngày:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "Tải ảnh nghệ thuật và metadata từ internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", "LabelEnableDlnaPlayTo": "Cho phép DLNA chạy để", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "Sự kiện:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "Kết thúc", - "LabelFolder": "Folder:", "LabelFolderType": "Loại thư mục", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "Ngôn ngữ", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "Tên:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "Mật khẩu mới:", "LabelNewPasswordConfirm": "Xác nhận mật khẩu mới:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "Tiếp theo", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", - "LabelPinCode": "Pin code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "Trước", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "Lưu các ảnh nghệ thuật và metadata vào trong các thư mục media", "LabelSaveLocalMetadataHelp": "Lưu các ảnh nghệ thuật và metadata vào trong các thư mục media, sẽ đưa chúng vào một nơi bạn có thể chỉnh sửa dễ dàng hơn.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "Bỏ qua", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "Ngôn ngữ phụ đề ưa thích:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "Thời gian:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "Loại Video:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "Tên của Bạn", "LabelYoureDone": "Bạn đã hoàn thành!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "LinkApi": "Api", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "Nội dung với đánh giá cao hơn sẽ được ẩn đi từ người dùng này.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "Không có gì ở đây.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", - "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "Bạn đã chưa cài đặt các plugin.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "Diễn viên", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", "OptionAlbumArtist": "Album nghệ sỹ", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "Cho phép người dùng này quản lý máy chủ", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "Bất kỳ", - "OptionArt": "Art", "OptionArtist": "Nghệ sỹ", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", "OptionAutomatic": "Tự động", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "Biển quảng cáo", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "Đánh giá của cộng đồng", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", "OptionDateAdded": "Ngày thêm", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "Ngày phát", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", "OptionDirectors": "Đạo diễn", "OptionDisableUser": "Vô hiệu hóa người dùng này", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", "OptionDislikes": "Không thích", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", "OptionDownloadBackImage": "Trở lại", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", "OptionDownloadDiscImage": "Đĩa", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Yêu thích", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", "OptionHasSpecialFeatures": "Tính năng đặc biệt", "OptionHasSubtitles": "Phụ đề", "OptionHasThemeSong": "Hình nền bài hát", "OptionHasThemeVideo": "Hình nền Video", - "OptionHasTrailer": "Trailer", "OptionHideUser": "Ẩn người dùng này từ màn hình đăng nhập", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "Đánh giá IMDb", - "OptionInProgress": "In-Progress", "OptionIsHD": "Độ nét cao", "OptionIsSD": "Độ nét tiêu chuẩn", "OptionIso": "Chuẩn quốc tế", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "Thích", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", "OptionMissingImdbId": "Thiếu IMDb ID", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "Thiếu Tmdb ID", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMobileApps": "Mobile apps", "OptionMonday": "Thứ Hai", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "Tên", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "Số lần phát", - "OptionPlayed": "Played", "OptionPoster": "Áp phích", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", "OptionProducers": "Nhà sản xuất", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", "OptionRelease": "Phát hành chính thức", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", "OptionRuntime": "Thời gian phát", "OptionSaturday": "Thứ Bảy", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "Chủ Nhật", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", "OptionTimeline": "Dòng thời gian", "OptionTrackName": "Tên bài", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "Tốc độ Bit của Video", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", "OptionWriters": "Kịch bản", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", "Password": "Mật khẩu", "PasswordMatchError": "Mật khẩu và mật khẩu xác nhận cần phải khớp nhau .", "PasswordResetComplete": "Mật khẩu đã được reset", "PasswordResetConfirmation": "Bạn có chắc muốn reset mật khẩu?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "Mật khẩu đã được lưu.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "Lưu các cài đặt.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", "TabAlbumArtists": "Các Album nghệ sỹ", "TabAlbums": "Các Album", - "TabAppSettings": "App Settings", "TabArtists": "Các nghệ sỹ", "TabBasic": "Cơ bản", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Danh mục", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "Tiêu đề", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "Các tập phim", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", "TabGenres": "Các thể loại", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "Hình ảnh", "TabImages": "Hình ảnh", - "TabInfo": "Info", - "TabLanguages": "Languages", "TabLatest": "Mới nhất", - "TabLibrary": "Library", "TabLibraryAccess": "Truy cập thư viện", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", "TabMovies": "Các phim", - "TabMusic": "Music", "TabMusicVideos": "Các video âm nhạc", - "TabMyLibrary": "My Library", "TabMyPlugins": "Các plugin của tôi", - "TabNavigation": "Navigation", "TabNetworks": "Các mạng", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", "TabPassword": "Mật khẩu", "TabPaths": "Các đường dẫn", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "Hồ sơ", "TabProfiles": "Hồ sơ", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "Bảo mật", - "TabSeries": "Series", "TabServer": "Máy chủ", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", "TabSongs": "Các ca khúc", - "TabStreaming": "Streaming", "TabStudios": "Hãng phim", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", "TabTranscoding": "Mã hóa", "TabUpcoming": "Sắp diễn ra", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "Nói cho chúng tôi biết đôi điều về Bạn", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "Thủ thuật này sẽ hướng dẫn quá trình cài đặt cho bạn. Để bắt đầu, vui lòng lựa chọn ngôn ngữ bạn ưa thích.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", "TitleSupport": "Hỗ trợ", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "Bạn có chắc muốn gỡ bỏ{0}?", "UninstallPluginHeader": "Gỡ bỏ Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", "Users": "Người dùng", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", - "WelcomeToProject": "Welcome to Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/zh-CN.json b/src/strings/zh-CN.json index 4176dfad97..341da34655 100644 --- a/src/strings/zh-CN.json +++ b/src/strings/zh-CN.json @@ -269,7 +269,6 @@ "HeaderApiKey": "API 密钥", "HeaderApiKeys": "API 密钥", "HeaderApiKeysHelp": "外部应用程序需要有一个 API 密钥以用于和 Jellyfin 服务器进行通信。密钥将在通过 Jellyfin 账户进行登录时自动发行,或者你可以手动为应用程序生成一个密钥。", - "HeaderApp": "App", "HeaderAudio": "音频", "HeaderAudioSettings": "声音设置", "HeaderAudioTracks": "音轨", @@ -378,7 +377,6 @@ "HeaderIdentificationCriteriaHelp": "至少输入一个识别标准。", "HeaderIdentificationHeader": "身份认证标头", "HeaderImageBackdrop": "背景图", - "HeaderImageLogo": "Logo", "HeaderImageOptions": "图片选项", "HeaderImagePrimary": "封面图", "HeaderImageSettings": "图片设置", @@ -1189,10 +1187,6 @@ "Notifications": "通知", "NumLocationsValue": "{0} 个文件夹", "OpenSubtitleInstructions": "您需要在Jellyfin Server仪表板的Open Subtitles配置屏幕上配置Open Subtitles帐户信息。", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", "OptionActor": "演员", "OptionActors": "演员", "OptionAdminUsers": "管理员", @@ -1284,7 +1278,6 @@ "OptionDownloadDiscImage": "光盘", "OptionDownloadImagesInAdvance": "提前下载图片", "OptionDownloadImagesInAdvanceHelp": "默认下,大部分图片只有在 Jellyfin 应用程序请求时下载。开启此选项将随着媒体导入时下载所有图片。这可能需要更久媒体库扫描时间。", - "OptionDownloadLogoImage": "Logo", "OptionDownloadMenuImage": "菜单", "OptionDownloadPrimaryImage": "封面图", "OptionDownloadThumbImage": "缩略图", @@ -1349,7 +1342,6 @@ "OptionLikes": "喜欢", "OptionList": "列表", "OptionLocked": "锁定", - "OptionLogo": "Logo", "OptionMax": "最大", "OptionMenu": "菜单", "OptionMissingEpisode": "缺少的剧集", @@ -1370,8 +1362,6 @@ "OptionNo": "不", "OptionNoTrailer": "无预告片", "OptionNone": "没有", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "在程序启动时", "OptionOnInterval": "在一个期间", "OptionOtherApps": "其他应用程序", @@ -1554,7 +1544,6 @@ "TabCollections": "收藏", "TabContainers": "媒体载体", "TabControls": "控制", - "TabDLNA": "DLNA", "TabDashboard": "控制台", "TabDevices": "设备", "TabDirectPlay": "直接播放", diff --git a/src/strings/zh-HK.json b/src/strings/zh-HK.json index ed2fe56235..06e7be6237 100644 --- a/src/strings/zh-HK.json +++ b/src/strings/zh-HK.json @@ -1,231 +1,52 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", - "AllowRemoteAccessHelp": "If unchecked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "ButtonAccept": "Accept", "ButtonAdd": "新增", - "ButtonAddMediaLibrary": "Add Media Library", "ButtonAddScheduledTaskTrigger": "新增觸發", - "ButtonAddServer": "Add Server", "ButtonAddUser": "添加用戶", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "取消", "ButtonCancelSeries": "已取消電視劇", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "設置 PIN 碼", - "ButtonConnect": "Connect", "ButtonConvertMedia": "媒體轉換", "ButtonCreate": "建立", "ButtonDelete": "删除", "ButtonDeleteImage": "刪除圖像", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "編輯", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "離開", "ButtonFilter": "過濾", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", "ButtonHelp": "幫助", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", "ButtonInviteUser": "邀請用戶", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", "ButtonManualLogin": "手動登入", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "最新", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", "ButtonNo": "否", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "確定", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", "ButtonPlay": "播放", "ButtonPlayTrailer": "預告片", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "隱私政策", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "快速入門指南", "ButtonRecord": "錄影", - "ButtonReenable": "Re-enable", "ButtonRefresh": "重新整理", "ButtonRefreshGuideData": "重新整理電視指南資料", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "清除", "ButtonRename": "重新命名", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "重設密碼", - "ButtonResetTuner": "Reset tuner", "ButtonRestart": "重新啟動", "ButtonRestartNow": "立刻重新啟動", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "儲存", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "掃描媒體庫", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", "ButtonSelect": "選擇", "ButtonSelectDirectory": "選擇目錄", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", "ButtonServerDashboard": "伺服器狀態", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", "ButtonSignIn": "登入", "ButtonSignOut": "登出", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", "ButtonSort": "排序", "ButtonSplitVersionsApart": "除了分拆版本", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", "ButtonSubmit": "提交", "ButtonSubtitles": "字幕", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "上傳", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", "ButtonYes": "是", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "同步", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", "ChannelAccessHelp": "選擇此用戶共享頻道。管理員將能夠使用資料管理器而編輯所有文件夾。", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "為新的設備建立自定配置或覆蓋原有系統配置。", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", "DeviceAccessHelp": "只適用於唯一辨識方法的裝置,並不會阻止瀏覽器訪問。已過濾的用戶設備會被阻止訪問,直到他們使用已批准裝置。", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", - "FileReadCancelled": "The file read has been canceled.", - "FileReadError": "An error occurred while reading the file.", "FolderTypeBooks": "書藉", "FolderTypeGames": "遊戲", "FolderTypeInherit": "繼承", @@ -235,500 +56,142 @@ "FolderTypeMusicVideos": "MV", "FolderTypePhotos": "相片", "FolderTypeTvShows": "電視節目", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", "HeaderActiveDevices": "生效裝置", "HeaderActiveRecordings": "正在錄影的節目", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", "HeaderAddScheduledTaskTrigger": "新增觸發", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "新增標題", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "添加用戶", "HeaderAdditionalParts": "附加部份", - "HeaderAdmin": "Admin", "HeaderAdvanced": "進階", "HeaderAirDays": "播放日子", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "所有錄影", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", "HeaderAudio": "音訊", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "自動更新", "HeaderAvailableServices": "可提供的服務", "HeaderAwardsAndReviews": "獎項與評論", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", "HeaderBooks": "書籍", "HeaderBranding": "界面", "HeaderBrandingHelp": "選擇外觀,滿足您和團體的要求。", "HeaderCameraUpload": "相片上載", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "演員陣容", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "頻道", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", "HeaderClients": "客戶端", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderCollections": "藏品", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "建立密碼", "HeaderCredits": "積分", "HeaderCustomDlnaProfiles": "自定配置", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", "HeaderDate": "日期", - "HeaderDateIssued": "Date Issued", "HeaderDays": "錄影日", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", "HeaderDestination": "目的地", "HeaderDetails": "詳情", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", "HeaderDeviceAccess": "允許裝置通行", "HeaderDevices": "裝置", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", "HeaderDownloadSubtitlesFor": "下載字幕:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "簡易 Pin 碼", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", "HeaderFavoriteEpisodes": "我的最愛劇集", "HeaderFavoriteGames": "我的最愛遊戲", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "可以使用的功能", - "HeaderFeatures": "Features", "HeaderFetchImages": "獲取圖像:", - "HeaderFetcherSettings": "Fetcher Settings", "HeaderFilters": "篩選條件", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "經常播放", "HeaderGames": "遊戲", - "HeaderGenres": "Genres", "HeaderGuests": "賓客", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "圖像設置", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "已安裝的服務", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "最新專輯", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "最新劇集", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "最新電影", - "HeaderLatestMusic": "Latest Music", "HeaderLatestRecordings": "最近錄影的節目", "HeaderLatestSongs": "最新歌曲", "HeaderLatestTrailers": "最新預告", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", "HeaderLibrary": "媒體庫", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "鏈結", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", "HeaderManagement": "管理", - "HeaderMedia": "Media", "HeaderMediaFolders": "媒體文件夾", - "HeaderMediaInfo": "Media Info", "HeaderMediaLocations": "媒體路徑", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", "HeaderMusicVideos": "MV", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", "HeaderName": "名稱", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", "HeaderNewUsers": "新用戶", "HeaderNextUp": "接下來", "HeaderNotifications": "通知", "HeaderNowPlaying": "正在播放", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "路徑", "HeaderPendingInstallations": "等待安裝", - "HeaderPendingInvitations": "Pending Invitations", "HeaderPeople": "人物", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "人物類型:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", "HeaderPlaybackSettings": "播放設置", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "請登入", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", "HeaderProgram": "程式", "HeaderRecentActivity": "最近動態", "HeaderRecentlyPlayed": "最近播放", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", "HeaderRemoteControl": "遙控器", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "HeaderRestart": "重新啟動", "HeaderResult": "結果", "HeaderResume": "恢復播放", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", "HeaderRunningTasks": "運行任務", - "HeaderRuntime": "Runtime", "HeaderScenes": "場景", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", "HeaderSeason": "劇集季度", "HeaderSeasonNumber": "劇集季度數目", "HeaderSeasons": "季度劇集", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", "HeaderSelectDate": "選擇日期", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectSubtitles": "選擇字幕", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "電視劇:", "HeaderSeriesRecordings": "電視劇錄影", - "HeaderServerSettings": "Server Settings", "HeaderServices": "服務", - "HeaderSettings": "Settings", "HeaderSetupLibrary": "建立你的媒體資料庫", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", "HeaderSource": "來源", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "特色", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "狀態", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", "HeaderSubtitles": "字幕", "HeaderSupportTheTeam": "贊助我們的團隊", "HeaderSync": "同步", "HeaderSyncJobInfo": "同步任務", "HeaderSystemDlnaProfiles": "系統配置", "HeaderTV": "電視", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Jellyfin 服務條款", "HeaderThemeSongs": "主題曲", "HeaderThemeVideos": "主題影片", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "要繼續訪問,請選擇您的簡易 PIN 碼", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", "HeaderTvTuners": "調諧器", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "上傳新圖像", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "用戶", "HeaderVideo": "影片", - "HeaderVideoTypes": "Video Types", "HeaderVideos": "影片", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "推薦 1:1 長寬比。只適用於 JPG/ PNG。", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", "LabelAddConnectSupporterHelp": "要添加沒有列出的用戶,首先需要由個人帳戶頁,連接他們帳戶到 Jellyfin Connect 。", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "允許自動重新啟動來更新", "LabelAllowServerAutoRestartHelp": "只在沒有活躍用戶和空檔時間重新啟動。", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", "LabelArtists": "藝人:", "LabelArtistsHelp": "分開多重使用", "LabelAudioCodec": "音訊:{0}", "LabelAudioLanguagePreference": "首選音訊語言:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", "LabelCache": "緩存:", "LabelCachePath": "緩存路徑:", "LabelCachePathHelp": "選擇指定所需的緩存文件路徑,如圖像。保留空白以使用默認設定。", "LabelCameraUploadPath": "相片上傳路徑:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", "LabelCommunityRating": "討論區評分", "LabelCompleted": "已完成", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "進行設定", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "內容類型:", "LabelContentTypeValue": "內容類型:{0}", - "LabelContext": "Context:", "LabelConversionCpuCoreLimit": "CPU 核心數目限制:", "LabelConversionCpuCoreLimitHelp": "轉檔時,只會使用限制 CPU 核心數目", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "國家:", "LabelCreateCameraUploadSubfolder": "建立每個裝置的文件夾", "LabelCreateCameraUploadSubfolderHelp": "從裝置頁面,裝置能通過所屬文件夾。", "LabelCurrentPassword": "目前密碼:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", "LabelCustomCss": "自訂 CSS:", "LabelCustomCssHelp": "應用自訂 CSS Web 界面。", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "自訂媒體類型:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "日子:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "顯示每季缺少劇集資料", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", "LabelDisplaySpecialsWithinSeasons": "顯示劇集季度中的特集", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "從互聯網下載相關圖片和資料屬性", "LabelDownloadInternetMetadataHelp": "Jellyfin 伺服器可以下載有關您的媒體資訊,以顯示豐富媒體展示。", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "啟用自動連接埠映射", "LabelEnableAutomaticPortMapHelp": "自動嘗試映射公共連接埠到 UPnP 本地連接埠。這可能無法用於某些路由器。", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", "LabelEnableDebugLogging": "啟用記錄除錯日誌", "LabelEnableDlnaClientDiscoveryInterval": "尋找客戶端時間間隔(秒)", "LabelEnableDlnaClientDiscoveryIntervalHelp": "由 Jellyfin 決定進行 SSDP 搜索之間以秒計的持續時間。", @@ -736,120 +199,41 @@ "LabelEnableDlnaDebugLoggingHelp": "將建立一個頗大的日誌文件,建議只需進行故障排除時啟動。", "LabelEnableDlnaPlayTo": "啟用播放到 DLNA 設備", "LabelEnableDlnaPlayToHelp": "Jellyfin 可以在網絡內檢測裝置,並提供遠程控制它們的能力。", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "啟用實時監控", "LabelEnableRealtimeMonitorHelp": "支援立即處理文件系統上的改變", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", "LabelEndingEpisodeNumber": "已完結戲集集數:", "LabelEndingEpisodeNumberHelp": "只需多劇集文件", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "事件:", "LabelEveryXMinutes": "每次:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelFailed": "失敗", "LabelFanartApiKey": "個人 API 鎖匙:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "完成", - "LabelFolder": "Folder:", "LabelFolderType": "文件夾類型:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "友好伺服器名稱:", "LabelFriendlyServerNameHelp": "名稱用於識辨伺服器。如果留空,將使用本機(伺服器)名稱。", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHttpsPort": "本地 https 連接埠號碼:", "LabelHttpsPortHelp": "TCP 連接埠號碼應綁定到 Jellyfin https 伺服器。", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", "LabelImageFetchers": "媒體圖片獲取程式:", "LabelImageFetchersHelp": "啟用媒體圖片獲取程式的優先次序", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "語言:", "LabelLastResult": "最新結果:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "本地 http 連接埠號碼:", "LabelLocalHttpServerPortNumberHelp": "TCP 連接埠號碼應綁定到 Jellyfin http 伺服器。", - "LabelLocalSyncStatusValue": "Status: {0}", "LabelLoginDisclaimer": "登入字句:", "LabelLoginDisclaimerHelp": "顯示在登入界面的底部", "LabelLogs": "日誌:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "每個背景項目的最大數目:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "最大允許的家長評級:", "LabelMaxResumePercentage": "最大恢復播放百分比", "LabelMaxResumePercentageHelp": "媒體如果在這個時間之後停止,會被認定為已播放。", "LabelMaxScreenshotsPerItem": "每件截圖物品的最大數量:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", "LabelMetadata": "資料屬性:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", "LabelMetadataDownloaders": "媒體屬性下載器:", "LabelMetadataDownloadersHelp": "啟用媒體屬性下載器的優先次序,愈下次序只會用來填補缺少的信息。", "LabelMetadataPath": "媒體資料屬性路徑:", "LabelMetadataPathHelp": "選擇藝術作品和媒體資料屬性下載的自定位置。", "LabelMetadataReaders": "資料屬性閱讀器:", "LabelMetadataReadersHelp": "優先排序您的首選資料屬性來源。首個找到的文件將被讀取。", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "最小下載背景寬度:", "LabelMinResumeDuration": "最少恢復播放時間(秒):", "LabelMinResumeDurationHelp": "媒體比此更短將不可恢復播放", @@ -857,433 +241,117 @@ "LabelMinResumePercentageHelp": "媒體如果在這個時間之前停止,會被認定為未播放。", "LabelMinScreenshotDownloadWidth": "最小下載截圖寬度:", "LabelMissing": "缺少", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", "LabelMusicVideo": "MV", "LabelName": "名稱:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "新密碼:", "LabelNewPasswordConfirm": "新密碼確認:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "下一個", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", "LabelNumberOfGuideDays": "下載電視指南日數", "LabelNumberOfGuideDaysHelp": "下載更多電視指南資料會提供更好時間表查看能力,但將需要更長的下載時間。自動基於頻道數目來選擇。", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", "LabelOpenSubtitlesPassword": "Open Subtitles 密碼:", "LabelOpenSubtitlesUsername": "Open Subtitles 用户名:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "密碼:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", "LabelPath": "路徑:", "LabelPinCode": "PIN 碼:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", "LabelPreferredDisplayLanguage": "首選語言:", "LabelPreferredDisplayLanguageHelp": "翻譯 Jellyfin 是一個進行中的項目。", "LabelPrevious": "前一個", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "公共 http 連接埠號碼:", "LabelPublicHttpPortHelp": "公共連接埠號碼應映射到本地 http 連接埠。", "LabelPublicHttpsPort": "公共 https 連接埠號碼:", "LabelPublicHttpsPortHelp": "公共連接埠號碼應映射到本地 https 連接埠。", - "LabelQuality": "Quality:", "LabelReadHowYouCanContribute": "了解如何作出貢獻。", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "運行於 http 連接埠 {0}.", "LabelRunningOnPorts": "運行於 http 連接埠 {0}, 和 https 連接埠 {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "儲存媒體圖片和資料屬性到媒體所屬的文件夾", "LabelSaveLocalMetadataHelp": "直接儲存媒體圖片和資料到媒體文件夾,讓編輯工作更容易。", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", "LabelSeasonFolderPattern": "季度戲集文件夾模式:", - "LabelSeasonNumber": "Season number:", "LabelSeasonZeroFolderName": "首季戲集文件夾名稱:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", "LabelSelectUsers": "選擇用戶:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", "LabelSeries": "電視劇:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", "LabelSkipIfAudioTrackPresentHelp": "取消此項,無論音訊語言是否一致,所有影片都會確保下載字幕。", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", "LabelSkipIfGraphicalSubsPresentHelp": "保留文字版本的字幕會更有效率傳遞,減低影片轉碼的機會。", "LabelSkipped": "略過", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "狀態:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "首選字幕語言:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", "LabelSyncTempPath": "臨時文件的路徑:", "LabelSyncTempPathHelp": "選擇自定同步工作的文件夾。在同步過程中建立的轉換媒體將被存放到這裡。", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "時間:", "LabelTimeLimitHours": "時限(小時):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "臨時轉碼路徑:", "LabelTranscodingTempPathHelp": "此文件夾包含轉換器需要的文件。選擇自定路徑,保留空白以使用默認伺服器的數據文件夾。", "LabelTranscodingTemporaryFiles": "暫存轉碼文件:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", "LabelTransferMethod": "傳遞方法", "LabelTriggerType": "觸發類型:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "顯示每季尚未播放的劇集資料", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", "LabelUser": "用戶:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", "LabelVersionInstalled": "已安裝 {0}", "LabelVersionNumber": "版本 {0}", "LabelVersionUpToDate": "已是最新版本!", "LabelVideoCodec": "影片:{0}", "LabelVideoType": "影片類型:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "您的名字是:", "LabelYoureDone": "大功告成!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "選擇與此用戶共享媒體文件夾。管理員將能夠使用媒體資料瀏覽器而編輯所有文件夾。", - "LinkApi": "Api", "LinkCommunity": "討論區", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "此用戶會被隱藏具有較高評價的家長評級內容。", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", "MediaInfoPath": "路徑", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", "MediaInfoStreamTypeAudio": "音訊", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", "MediaInfoStreamTypeVideo": "影片", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmRestart": "您確認重新啟動伺服器?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", "MessageNoCollectionsAvailable": "收藏庫讓您享受個人化分組的電影、劇集、相簿和書籍。按下 \"+\" 開始建立收藏庫", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoServicesInstalled": "沒有安裝的服務。", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "這裹什麼都沒有。", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "請確保啟用網絡資料屬性下載功能。", "MessagePleaseRestart": "請重新啟動來完成更新", "MessagePleaseRestartServerToFinishUpdating": "請重新啟動來確認更新", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "稍後在控制台可以添加更多用戶。", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", "NewVersionOfSomethingAvailable": "版本{0}更新發佈了", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "未有發現。開始欣賞您的節目!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "演員", "OptionAdminUsers": "管理員", "OptionAfterSystemEvent": "系統事件後", "OptionAlbum": "唱片", "OptionAlbumArtist": "唱片歌手", - "OptionAll": "All", "OptionAllUsers": "所有用戶", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "允許訪問電視直播", - "OptionAllowContentDownloading": "Allow media downloading and syncing", "OptionAllowLinkSharing": "允許社交媒體分享", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", "OptionAllowManageLiveTv": "允許管理電視直播錄影", "OptionAllowMediaPlayback": "允許媒體播放", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", "OptionAllowRemoteControlOthers": "允許遠程控制其他用戶", "OptionAllowRemoteSharedDevices": "允許遠程控制共享裝置", "OptionAllowRemoteSharedDevicesHelp": "DLNA 裝置會被認為是共享,直到用戶進行控制。", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "允許此用戶管理伺服器", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "任何", - "OptionArt": "Art", "OptionArtist": "歌手", "OptionAscending": "遞升", "OptionAuto": "自動", "OptionAutomatic": "自動", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "背景", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "橫幅", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "公測", - "OptionBirthLocation": "Birth Location", "OptionBlockBooks": "書籍", - "OptionBlockChannelContent": "Internet Channel Content", "OptionBlockGames": "遊戲", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", "OptionBluray": "藍光", "OptionBooks": "書籍", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionCollections": "藏品", "OptionCommunityRating": "討論區評分", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "繼續", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "評論家評分", "OptionCustomUsers": "自訂", "OptionDaily": "每日", "OptionDateAdded": "已添加日期", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "已播放日期", - "OptionDefaultSort": "Default", "OptionDescending": "遞降", - "OptionDev": "Dev", - "OptionDirector": "Director", "OptionDirectors": "導演", "OptionDisableUser": "禁用此用戶", "OptionDisableUserHelp": "如果禁用此伺服器,將不允許此用戶的任何連接。現有的連接將被即時終止。", - "OptionDisc": "Disc", "OptionDislikes": "負評", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "圖像", "OptionDownloadBackImage": "媒體背面", "OptionDownloadBannerImage": "橫幅", "OptionDownloadBoxImage": "媒體裝飾", "OptionDownloadDiscImage": "光碟", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "標誌", "OptionDownloadMenuImage": "菜單", "OptionDownloadPrimaryImage": "主要圖像", @@ -1293,35 +361,17 @@ "OptionEnableAccessFromAllDevices": "啟用所有裝置通行證", "OptionEnableAccessToAllChannels": "允許所有頻道通行", "OptionEnableAccessToAllLibraries": "允許所有媒體庫通行", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", "OptionEnableExternalVideoPlayers": "允許外置影片播放器", - "OptionEnableForAllTuners": "Enable for all tuner devices", "OptionEnableFullSpeedConversion": "允許全速轉檔", "OptionEnableFullSpeedConversionHelp": "預設轉檔時,只會限制 CPU 時脈速度,來減低效能消耗", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "完成", "OptionEpisodeSortName": "劇集名稱排序", "OptionEpisodes": "劇集", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "我的最愛", "OptionFolderSort": "文件夾", "OptionFriday": "星期五", - "OptionFridayShort": "Fri", "OptionGameSystems": "遊戲系統", "OptionGames": "遊戲", - "OptionGenres": "Genres", "OptionGuestStars": "特約明星", "OptionHasSpecialFeatures": "特色", "OptionHasSubtitles": "字幕", @@ -1331,286 +381,113 @@ "OptionHideUser": "由登錄頁面隱藏此用戶", "OptionHideUserFromLoginHelp": "有效私人或隱藏的管理員帳戶。用戶需手動輸入用戶名和密碼登錄。", "OptionHlsSegmentedSubtitles": "Hls 字幕分段", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "IMDB 評分", - "OptionInProgress": "In-Progress", "OptionIsHD": "高清", "OptionIsSD": "標清", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "正評", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "缺少的劇集", "OptionMissingImdbId": "缺少 IMDB 編號", "OptionMissingOverview": "缺少概況", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "缺少 TMDB 編號", "OptionMissingTvdbId": "缺少 TheTVDB 編號", - "OptionMobileApps": "Mobile apps", "OptionMonday": "星期一", - "OptionMondayShort": "Mon", "OptionMovies": "電影", "OptionMusicAlbums": "專輯", "OptionMusicArtists": "歌手", "OptionMusicVideos": "MV", - "OptionName": "Name", "OptionNameSort": "名稱", "OptionNo": "否", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", "OptionOnAppStartup": "在伺服器啟動", "OptionOnInterval": "每個時段", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "其他影像", "OptionOthers": "其他", - "OptionOverview": "Overview", "OptionParentalRating": "家長評級", "OptionPeople": "幕後班底", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "播放次數", "OptionPlayed": "已播放", "OptionPoster": "海報", "OptionPosterCard": "海報卡片", "OptionPremiereDate": "首映日期", - "OptionPrimary": "Primary", "OptionPriority": "優先度", - "OptionProducer": "Producer", "OptionProducers": "製作者", "OptionProfileAudio": "音訊", - "OptionProfilePhoto": "Photo", "OptionProfileVideo": "影片", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", "OptionRecordAnytime": "每一次記錄", "OptionRecordOnAllChannels": "記錄所有頻道", "OptionRecordOnlyNewEpisodes": "只記錄最新劇集", "OptionRecordSeries": "錄影電視劇", - "OptionRegex": "Regex", "OptionRelease": "官方發佈", "OptionReleaseDate": "發佈日期", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "能夠恢復", - "OptionResumablemedia": "Resume", "OptionRuntime": "運行時間", "OptionSaturday": "星期六", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", "OptionSeason0": "首季", "OptionSeasons": "劇集季度", "OptionSeries": "電視劇", "OptionSongs": "歌曲", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "特集", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "星期日", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "縮圖", "OptionThumbCard": "縮圖卡片", "OptionThursday": "星期四", - "OptionThursdayShort": "Thu", "OptionTimeline": "時間軸", "OptionTrackName": "曲目名稱", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "星期二", - "OptionTuesdayShort": "Tue", "OptionTvdbRating": "Tvdb 評分", "OptionUnairedEpisode": "尚未播放的劇集", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "未播放", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "影片比特率", "OptionWakeFromSleep": "從休眠中恢復", - "OptionWatched": "Watched", "OptionWednesday": "星期三", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "每週", "OptionWriters": "作者", "OptionYes": "是", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "由 PayPal 註冊", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", "SystemDlnaProfilesHelp": "系統配置文件是唯讀的。更改系統配置文件將被保存到一個自定新配置文件。", "TabAbout": "關於", "TabAccess": "可以通行", - "TabActivity": "Activity", "TabAdvanced": "進階", "TabAlbumArtists": "唱片歌手", "TabAlbums": "專輯", - "TabAppSettings": "App Settings", "TabArtists": "歌手", "TabBasic": "基本", "TabBasics": "基本", "TabCameraUpload": "相片上載", - "TabCast": "Cast", "TabCatalog": "目錄", "TabChannels": "頻道", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "標題", "TabCollections": "藏品", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", "TabDashboard": "狀態", "TabDevices": "裝置", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "劇集", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "我的最受", - "TabFilter": "Filter", "TabFolders": "文件夾", "TabGames": "遊戲", "TabGeneral": "一般", "TabGenres": "風格", "TabGuide": "指南", - "TabHelp": "Help", "TabHome": "首頁", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "圖像", - "TabImages": "Images", "TabInfo": "資訊", - "TabLanguages": "Languages", "TabLatest": "最新", "TabLibrary": "媒體庫", "TabLibraryAccess": "媒體庫通行證", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", "TabMetadata": "媒體資料屬性", "TabMovies": "電影", "TabMusic": "音樂", "TabMusicVideos": "MV", "TabMyLibrary": "我的媒體庫", "TabMyPlugins": "我的插件", - "TabNavigation": "Navigation", "TabNetworks": "網絡", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", "TabNotifications": "通知", - "TabNowPlaying": "Now Playing", "TabOther": "其它", "TabOthers": "其他", - "TabParentalControl": "Parental Control", "TabPassword": "密碼", "TabPaths": "路徑", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "播放清單", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "簡介", "TabProfiles": "簡介", "TabRecordings": "錄影", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "安全性", "TabSeries": "電視劇", "TabServer": "伺服器", @@ -1618,111 +495,39 @@ "TabSettings": "設定", "TabShows": "節目", "TabSongs": "歌曲", - "TabStreaming": "Streaming", "TabStudios": "工作室", "TabSubtitles": "字幕", "TabSuggestions": "建議", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", "TabTV": "電視節目", "TabTrailers": "預告", "TabTranscoding": "轉碼中", "TabUpcoming": "即將發佈", "TabUsers": "用戶", - "TabView": "View", "TellUsAboutYourself": "介紹一下自己", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", "TextEnjoyBonusFeatures": "享受更多功能", - "Themes": "Themes", "ThisWizardWillGuideYou": "此教學協助您完成安裝過程。首先,請選擇您的語言。", "TitleDevices": "裝置", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "電視直播", - "TitleNewUser": "New User", "TitleNotifications": "通知", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", "TitlePlugins": "插件", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "任務時間表", - "TitleServer": "Server", "TitleSignIn": "登入", "TitleSupport": "支援", - "TitleSync": "Sync", "TitleUsers": "用戶", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin 已內置支援用戶設置文件,讓每個用戶都有自己的顯示設置,播放情況和家長監護。", "Users": "用戶", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} 劇集", - "ValueExample": "Example: {0}", "ValueGameCount": "{0} 遊戲", "ValueGuestStar": "特約明星", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} 個 MV", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1個 MV", "ValueOneSeries": "1 劇集", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", "ValueSeriesCount": "{0} 劇集", - "ValueSeriesYearToPresent": "{0} - Present", "ValueSongCount": "{0} 首歌", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "版本 {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", "ViewTypeGames": "遊戲", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", "ViewTypeMusicFavoriteSongs": "我的最愛歌曲", - "ViewTypeMusicFavorites": "Favorites", "ViewTypeMusicSongs": "歌曲", - "ViewTypeTvShows": "TV", "WelcomeToProject": "歡迎來到 Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "這就是我們所需要的。 Jellyfin 已開始收集有關您的媒體庫信息。請看看我們一些應用程式,然後點擊 完成 才查看 服務器控制台 。", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } diff --git a/src/strings/zh-TW.json b/src/strings/zh-TW.json index 9c409bab7a..94f7621f78 100644 --- a/src/strings/zh-TW.json +++ b/src/strings/zh-TW.json @@ -1,855 +1,166 @@ { "AddGuideProviderHelp": "新增節目表提供者", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "AddUser": "添加用戶", - "AddUserByManually": "Add a local user by manually entering user information.", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "Advanced": "進階", - "Alerts": "Alerts", "All": "全部", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", - "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", "AllowRemoteAccessHelp": "如果未勾選,所有連線都將被阻擋。", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", "Browse": "瀏覽", "BrowsePluginCatalogMessage": "瀏覽我們的插件目錄來查看可用的插件。", - "ButtonAccept": "Accept", "ButtonAdd": "添加", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", "ButtonAddServer": "新增伺服器", "ButtonAddUser": "添加使用者", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", "ButtonCancel": "取消", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", - "ButtonConfigurePinCode": "Configure pin code", - "ButtonConnect": "Connect", "ButtonConvertMedia": "轉檔", "ButtonCreate": "創建", "ButtonDelete": "刪除", "ButtonDeleteImage": "刪除圖像", - "ButtonDown": "Down", - "ButtonDownload": "Download", "ButtonEdit": "編輯", "ButtonEditImages": "編輯圖片", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonExit": "離開", "ButtonFilter": "過濾", "ButtonForgotPassword": "忘記密碼", - "ButtonFullscreen": "Fullscreen", "ButtonGuide": "節目表", - "ButtonHelp": "Help", - "ButtonHide": "Hide", "ButtonHome": "首頁", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", "ButtonManageServer": "管理伺服器", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", "ButtonNew": "建立", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", "ButtonOk": "確定", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", "ButtonPlay": "播放", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", "ButtonPrivacyPolicy": "隱私權政策", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", "ButtonQuickStartGuide": "快速開始指南", "ButtonRecord": "開始錄影", - "ButtonReenable": "Re-enable", "ButtonRefresh": "重新整理", "ButtonRefreshGuideData": "更新電視節目表", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", "ButtonRemove": "清除", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", - "ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetPassword": "重設密碼", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", "ButtonSave": "保存", - "ButtonScanAllLibraries": "Scan All Libraries", "ButtonScanLibrary": "掃描媒體庫", - "ButtonScheduledTasks": "Scheduled tasks", "ButtonSearch": "搜尋", "ButtonSelect": "選擇", "ButtonSelectDirectory": "選擇目錄", "ButtonSelectServer": "選擇伺服器", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", "ButtonShare": "分享", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", "ButtonSignIn": "登錄", "ButtonSignOut": "登出", "ButtonSignUp": "註冊", "ButtonSkip": "跳過", "ButtonSort": "排序", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", "ButtonSync": "同步", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", "ButtonUpload": "上載", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", "CategorySync": "同步", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", "CustomDlnaProfilesHelp": "為新的設備創建自定義配置或覆蓋原有系統配置。", - "DeathDateValue": "Died: {0}", - "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.", "Delete": "刪除", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteImage": "刪除圖像", "DeleteImageConfirmation": "你確定要刪除這張圖像?", - "DeleteMedia": "Delete media", "DeleteUser": "刪除用戶", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an email to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", "ErrorMessageEmailInUse": "此電子郵件帳號已被使用過,請輸入其他的電子郵件帳號,然後再試一次,或使用「忘記密碼」功能找回密碼。", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", "FileNotFound": "未找到檔案。", - "FileReadCancelled": "The file read has been canceled.", "FileReadError": "在讀取檔案時發生錯誤。", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "電影", "FolderTypeMusic": "音樂", "FolderTypeMusicVideos": "MV", "FolderTypePhotos": "照片", "FolderTypeTvShows": "TV", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "GuideProviderLogin": "登入", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", "HeaderActiveRecordings": "正在錄影的節目", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", "HeaderAddTitles": "添加標題", - "HeaderAddUpdateImage": "Add/Update Image", "HeaderAddUser": "增加使用者", "HeaderAdditionalParts": "附加部份", "HeaderAdmin": "管理", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", "HeaderAllRecordings": "所有錄影", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", - "HeaderApiKey": "Api Key", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", "HeaderAutomaticUpdates": "自動更新", "HeaderAvailableServices": "可用的服務", "HeaderAwardsAndReviews": "獎項與評論", - "HeaderBackdrops": "Backdrops", "HeaderBecomeProjectSupporter": "立即取得", - "HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Jellyfin to fit the needs of your group or organization.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", "HeaderCastCrew": "拍攝人員及演員", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", "HeaderChannels": "頻道", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", "HeaderCreatePassword": "創建密碼", - "HeaderCredits": "Credits", "HeaderCustomDlnaProfiles": "自定義配置", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", "HeaderDays": "錄影日", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", "HeaderDetails": "詳細資料", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "簡易 PIN 碼", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFeatureAccess": "可以使用的功能", - "HeaderFeatures": "Features", "HeaderFetchImages": "抓取圖像:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", "HeaderForgotPassword": "忘記密碼", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderFrequentlyPlayed": "經常播放", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", "HeaderGuideProviders": "節目表提供者", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", "HeaderImageSettings": "圖像設置", - "HeaderImages": "Images", - "HeaderInstall": "Install", "HeaderInstalledServices": "已安裝的服務", "HeaderInstantMix": "瞬時混播", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", "HeaderLatestAlbums": "最新專輯", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", "HeaderLatestEpisodes": "最新節目單元", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", "HeaderLatestMovies": "最新電影", - "HeaderLatestMusic": "Latest Music", "HeaderLatestRecordings": "最新錄影的節目", "HeaderLatestSongs": "最新歌曲", "HeaderLatestTrailers": "最新預告", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", "HeaderLinks": "鏈接", "HeaderLiveTV": "電視", "HeaderLiveTv": "電視", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", "HeaderMediaFolders": "媒體文件夾", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", "HeaderMusicVideos": "音樂視頻", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", - "HeaderNewApiKey": "New Api Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", "HeaderNewUsers": "新使用者", "HeaderNextUp": "下一集", - "HeaderNotifications": "Notifications", "HeaderNowPlaying": "正在播放", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", "HeaderParentalRating": "Parental Rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", "HeaderPaths": "路徑", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", "HeaderPersonTypes": "人物類型:", - "HeaderPhotoInfo": "Photo Info", - "HeaderPinCodeReset": "Reset Pin Code", "HeaderPlayAll": "全部播放", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", "HeaderPleaseSignIn": "請登錄", - "HeaderPluginInstallation": "Plugin Installation", "HeaderPreferredMetadataLanguage": "首選媒體資料語言", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", "HeaderRecentlyPlayed": "最近播放", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", "HeaderScenes": "場景", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", "HeaderSearch": "搜尋", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", "HeaderSelectPlayer": "選擇播放裝置", "HeaderSelectServer": "選擇伺服器", "HeaderSelectServerCachePath": "選擇伺服器快取路徑", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", "HeaderSeries": "Series:", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", "HeaderSetupTVGuide": "電視設定指南", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", "HeaderSignUp": "註冊", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderSpecialFeatures": "特色", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", "HeaderStatus": "狀態", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", "HeaderSync": "同步", "HeaderSyncJobInfo": "同步作業", "HeaderSystemDlnaProfiles": "系統配置", "HeaderTV": "電視節目", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", "HeaderTermsOfService": "Jellyfin 服務條款", "HeaderThemeSongs": "主題曲", "HeaderThemeVideos": "主題視頻", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", "HeaderTvTuners": "調諧器", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", "HeaderUploadNewImage": "上傳新圖片", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", "HeaderUsers": "使用者", "HeaderVideo": "影片", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", "HeaderYear": "Year:", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", - "HttpsRequiresCert": "To enable secure connections, you will need to supply a trusted SSL certificate, such as Lets Encrypt. Please either supply a certificate, or disable secure connections.", "ImageUploadAspectRatioHelp": "推薦使有1:1寬高比例的圖像。只允許JPG/PNG格式", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", - "InviteAnJellyfinConnectUser": "Add a user by sending an email invitation.", - "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server visit {0}.", - "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", "LabelAllowServerAutoRestart": "允許伺服器自動重新啟動去安裝更新資料", "LabelAllowServerAutoRestartHelp": "伺服器只會在沒有活躍用戶及空閒期間重新啟動。", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", "LabelAudioLanguagePreference": "音頻語言偏好選項:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", "LabelCachePath": "緩存路徑:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", "LabelConfigureSettings": "配置設定", - "LabelConnectGuestUserName": "Their Jellyfin Connect email address or username:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", "LabelContentType": "內容類型:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", "LabelCountry": "國家:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCurrentPassword": "當前的密碼:", - "LabelCurrentPath": "Current path:", - "LabelCustomCertificatePath": "Custom ssl certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "LabelDataProvider": "Data provider:", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", "LabelDay": "日:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "顯示節目季度內缺少的單元", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownloadInternetMetadata": "從互聯網下載媒體圖像及資料", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", - "LabelEasyPinCode": "Easy pin code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", "LabelEnableDebugLogging": "記錄除錯信息到日誌", "LabelEnableDlnaClientDiscoveryInterval": "尋找客戶端時間間隔(秒)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", "LabelEnableDlnaDebugLogging": "記錄DLNA除錯信息到日誌", "LabelEnableDlnaDebugLoggingHelp": "這將創建一個非常大的日誌文件,建議只需要進行故障排除時啟動。", "LabelEnableDlnaPlayTo": "播放到DLNA設備", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableRealtimeMonitor": "啟用實時監控", "LabelEnableRealtimeMonitorHelp": "支持的文件系統上的更改,將會立即處理。", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", "LabelEvent": "事件:", "LabelEveryXMinutes": "每:", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom ssl certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", - "LabelFanartApiKey": "Personal api key:", - "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.", - "LabelFileOrUrl": "File or url:", "LabelFinish": "完成", - "LabelFolder": "Folder:", "LabelFolderType": "文件夾類型:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", "LabelFriendlyServerName": "友好伺服器名稱:", "LabelFriendlyServerNameHelp": "此名稱將用於標識伺服器。如果留空,計算機名稱將被使用。", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "LabelH264Crf": "H264 encoding CRF:", - "LabelH264EncodingPreset": "H264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Jellyfin's https server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "LabelIpAddressValue": "Ip address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.", - "LabelLanNetworks": "LAN networks:", "LabelLanguage": "語言:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Jellyfin's http server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelMaxBackdropsPerItem": "每個項目背景的最大數目:", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", "LabelMaxParentalRating": "最大允許的家長評級:", "LabelMaxResumePercentage": "最大恢復播放百分比", "LabelMaxResumePercentageHelp": "媒體如果在這個時間之後停止,會被定為已播放。", "LabelMaxScreenshotsPerItem": "每件物品截圖的最大數量:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "LabelMetadataPath": "媒體資料文件夾路徑:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", "LabelMinBackdropDownloadWidth": "最小背景下載寬度:", "LabelMinResumeDuration": "最少恢復播放時間(秒):", "LabelMinResumeDurationHelp": "媒體比這更短不可恢復播放", @@ -857,872 +168,196 @@ "LabelMinResumePercentageHelp": "媒體如果在這個時間之前停止,會被定為未播放。", "LabelMinScreenshotDownloadWidth": "最小截圖下載寬度:", "LabelMissing": "缺少", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelUrl": "Model url", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", "LabelName": "名字:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", "LabelNewPassword": "新密碼:", "LabelNewPasswordConfirm": "確認新密碼:", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "LabelNewsCategories": "News categories:", "LabelNext": "下一個", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", "LabelPassword": "密碼:", - "LabelPasswordConfirm": "Password (confirm):", - "LabelPasswordRecoveryPinCode": "Pin code:", - "LabelPath": "Path:", "LabelPinCode": "PIN 碼:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelPrevious": "上一個", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelSaveLocalMetadata": "保存媒體圖像及資料到媒體所在的文件夾。", "LabelSaveLocalMetadataHelp": "直接保存媒體圖像及資料到媒體所在的文件夾能使編輯工作更容易。", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "LabelSkipped": "已跳過", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", "LabelSubtitleLanguagePreference": "字幕語言偏好選項:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", "LabelTime": "時間:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", "LabelTranscodingTempPath": "轉碼臨時路徑:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", "LabelTriggerType": "觸發類型:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "在節目季度內顯示還未發佈的單元", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "LabelUrl": "Url:", - "LabelUseNotificationServices": "Use the following services:", "LabelUser": "使用者:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", "LabelVideoType": "視頻類型:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelYourFirstName": "你的名字:", "LabelYoureDone": "完成!", - "LabelZipCode": "Zip Code:", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", "LibraryAccessHelp": "選擇媒體文件夾與這用戶共享。管理員將可以使用媒體資料據管理器編輯所有的媒體文件夾。", - "LinkApi": "Api", "LinkCommunity": "社區", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", "LoginDisclaimer": "Jellyfin可以協助你管理你的個人媒體,像是影片或照片。使用Jellyfin的任何軟體表示您已閱讀並同意我們的服務條款。", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", "MaxParentalRatingHelp": "具有較高的家長評級內容將從這用戶被隱藏", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoMovieSuggestionsAvailable": "目前並沒有推薦的電影。開始觀看並對您的電影評分後,我們就會為您推薦您可能會喜歡的內容。", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNothingHere": "這裡沒有什麼。", "MessagePasswordResetForUsers": "該使用者的密碼已經被移除。要以該使用者登入時,請將密碼欄位留白", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePleaseEnsureInternetMetadata": "請確保已啟用從互聯網下載媒體資料。", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing, and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTunerDeviceNotListed": "你的調諧器沒有列在清單中嗎?試著安裝額外的插件以取得更多選項", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", "MoreUsersCanBeAddedLater": "往後可以在控制台內添加更多用戶。", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", - "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialog and enter the device information manually.", "NoNextUpItemsMessage": "沒有找到。開始看你的節目!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", "NoPluginsInstalledMessage": "你沒有安裝插件。", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", "OptionActors": "演員", - "OptionAdminUsers": "Administrators", "OptionAfterSystemEvent": "系統事件之後", "OptionAlbum": "專輯", "OptionAlbumArtist": "專輯歌手", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowBrowsingLiveTv": "允許使用電視", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", "OptionAllowManageLiveTv": "允許管理電視節目錄影", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", "OptionAllowUserToManageServer": "允許這用戶管理伺服器", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAnyNumberOfPlayers": "任何", - "OptionArt": "Art", "OptionArtist": "歌手", "OptionAscending": "升序", - "OptionAuto": "Auto", "OptionAutomatic": "自動", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", "OptionBackdrop": "背景", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", "OptionBanner": "橫向圖", - "OptionBestAvailableStreamQuality": "Best available", "OptionBeta": "公測版本", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", "OptionBlockLiveTvChannels": "電視頻道", "OptionBlockLiveTvPrograms": "電視頻道", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", "OptionBluray": "藍光", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", "OptionCommunityRating": "社區評分", - "OptionComposer": "Composer", - "OptionComposers": "Composers", "OptionContinuing": "持續", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", "OptionCriticRating": "評論家評價", - "OptionCustomUsers": "Custom", "OptionDaily": "每日", "OptionDateAdded": "添加日期", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDatePlayed": "播放日期", - "OptionDefaultSort": "Default", "OptionDescending": "降序", - "OptionDev": "Dev", - "OptionDirector": "Director", "OptionDirectors": "導演", "OptionDisableUser": "禁用此用戶", "OptionDisableUserHelp": "被禁用的用戶將不允許連接伺服器。現有的連接將被即時終止。", - "OptionDisc": "Disc", "OptionDislikes": "不喜歡", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "OptionDownloadArtImage": "圖像", "OptionDownloadBackImage": "媒體包裝背面", - "OptionDownloadBannerImage": "Banner", "OptionDownloadBoxImage": "媒體包裝", "OptionDownloadDiscImage": "光碟", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "OptionDownloadLogoImage": "標誌", "OptionDownloadMenuImage": "菜單", "OptionDownloadPrimaryImage": "主要圖", "OptionDownloadThumbImage": "縮略圖", "OptionDvd": "DVD", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", "OptionEnded": "完結", "OptionEpisodeSortName": "單元排序名稱", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "我的最愛", - "OptionFolderSort": "Folders", "OptionFriday": "星期五", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", "OptionGuestStars": "特邀明星", - "OptionHasSpecialFeatures": "Special Features", "OptionHasSubtitles": "字幕", "OptionHasThemeSong": "主題曲", "OptionHasThemeVideo": "主題視頻", - "OptionHasTrailer": "Trailer", "OptionHideUser": "在登入頁面隱藏此使用者", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "OptionImages": "Images", "OptionImdbRating": "IMDB評分", - "OptionInProgress": "In-Progress", "OptionIsHD": "高清", "OptionIsSD": "標清", "OptionIso": "鏡像檔", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", "OptionLikes": "喜歡", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", "OptionMissingEpisode": "缺少了的單元", "OptionMissingImdbId": "缺少IMDB編號", "OptionMissingOverview": "缺少概述", - "OptionMissingParentalRating": "Missing parental rating", "OptionMissingTmdbId": "缺少TMDB編號", "OptionMissingTvdbId": "缺少TheTVDB編號", - "OptionMobileApps": "Mobile apps", "OptionMonday": "星期一", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", "OptionNameSort": "名字", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", "OptionOff": "關閉", "OptionOn": "開啟", "OptionOnAppStartup": "在伺服器啟動", "OptionOnInterval": "每時段", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", "OptionOtherVideos": "其他視頻", - "OptionOthers": "Others", - "OptionOverview": "Overview", "OptionParentalRating": "家長評級", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", "OptionPlayCount": "播放次數", "OptionPlayed": "已播放", "OptionPoster": "海報", - "OptionPosterCard": "Poster card", "OptionPremiereDate": "首映日期", - "OptionPrimary": "Primary", "OptionPriority": "優先", - "OptionProducer": "Producer", "OptionProducers": "制片人", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", - "OptionProtocolHls": "Http Live Streaming", - "OptionProtocolHttp": "Http", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordOnlyNewEpisodes": "只錄製新的集數", "OptionRecordSeries": "錄影電視劇", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", "OptionResumable": "可恢復", - "OptionResumablemedia": "Resume", "OptionRuntime": "播放長度", "OptionSaturday": "星期六", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", "OptionSpecialEpisode": "特集", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", "OptionSunday": "星期天", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", "OptionThumb": "縮略圖", - "OptionThumbCard": "Thumb card", "OptionThursday": "星期四", - "OptionThursdayShort": "Thu", "OptionTimeline": "時間軸", "OptionTrackName": "曲目名稱", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTuesday": "星期二", - "OptionTuesdayShort": "Tue", "OptionTvdbRating": "Tvdb評分", "OptionUnairedEpisode": "還未發佈的單元", - "OptionUnidentified": "Unidentified", "OptionUnplayed": "未播放", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", "OptionVideoBitrate": "視頻比特率", "OptionWakeFromSleep": "從休眠中回復", - "OptionWatched": "Watched", "OptionWednesday": "星期三", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", "OptionWeekly": "每週", "OptionWriters": "作者", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", "Password": "密碼", "PasswordMatchError": "密碼和密碼確認必須一致。", "PasswordResetComplete": "密碼已重設", "PasswordResetConfirmation": "你確定要重設密碼?", - "PasswordResetHeader": "Reset Password", "PasswordSaved": "密碼已保存。", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", - "PinCodeResetComplete": "The pin code has been reset.", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", - "PluginInstalledMessage": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", - "PluginTabAppClassic": "Jellyfin for Windows Media Center", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", - "Programs": "Programs", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "RegisterWithPayPal": "以 PayPal 註冊", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", - "RequireHttps": "Require https for external connections", - "RequireHttpsHelp": "If enabled, connections over http will be redirected to https.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", - "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plugin.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", "SettingsSaved": "設置已保存。", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with ffmpeg. Jellyfin is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", - "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup, and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "TabAbout": "關於", - "TabAccess": "Access", - "TabActivity": "Activity", "TabAdvanced": "進階", "TabAlbumArtists": "專輯歌手", "TabAlbums": "專輯", - "TabAppSettings": "App Settings", "TabArtists": "歌手", "TabBasic": "基本", "TabBasics": "基本", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "目錄", "TabChannels": "頻道", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", "TabCollectionTitles": "標題", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", "TabEpisodes": "單元", - "TabExpert": "Expert", - "TabExtras": "Extras", - "TabFavorites": "Favorites", - "TabFilter": "Filter", "TabFolders": "文件夾", "TabGames": "遊戲", "TabGeneral": "一般", "TabGenres": "類型", "TabGuide": "節目表", - "TabHelp": "Help", "TabHome": "首頁", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", "TabImage": "圖像", "TabImages": "圖像", "TabInfo": "資訊", - "TabLanguages": "Languages", "TabLatest": "最新", - "TabLibrary": "Library", "TabLibraryAccess": "媒體庫瀏覽權限", "TabLiveTV": "電視", - "TabLogs": "Logs", "TabMetadata": "媒體資料", "TabMovies": "電影", "TabMusic": "音樂", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", "TabMyPlugins": "我的插件", - "TabNavigation": "Navigation", "TabNetworks": "網絡", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", "TabOthers": "其他", - "TabParentalControl": "Parental Control", "TabPassword": "密碼", "TabPaths": "路徑", - "TabPhotos": "Photos", - "TabPlayback": "Playback", "TabPlaylist": "播放清單", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", "TabProfile": "配置", "TabProfiles": "配置", "TabRecordings": "錄影", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", "TabSecurity": "安全性", "TabSeries": "電視劇", "TabServer": "伺服器", - "TabServices": "Services", "TabSettings": "設定", "TabShows": "節目", "TabSongs": "歌曲", - "TabStreaming": "Streaming", "TabStudios": "工作室", - "TabSubtitles": "Subtitles", "TabSuggestions": "推薦內容", "TabSync": "同步", - "TabSyncJobs": "Sync Jobs", "TabTV": "電視節目", "TabTrailers": "預告", "TabTranscoding": "轉碼中", "TabUpcoming": "接下來", - "TabUsers": "Users", - "TabView": "View", "TellUsAboutYourself": "請自我介紹一下你自己", - "TermsOfUse": "Terms of use", "TextConnectToServerManually": "手動連線到伺服器", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", "ThisWizardWillGuideYou": "此精靈將帶你完成安裝過程。開始之前,請選擇您慣用的語言。", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", "TitleLiveTV": "電視", - "TitleNewUser": "New User", "TitleNotifications": "通知", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", "TitleScheduledTasks": "計劃任務", - "TitleServer": "Server", "TitleSignIn": "登錄", "TitleSupport": "支援", "TitleSync": "同步", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", "UninstallPluginConfirmation": "你確定要卸載{0}?", "UninstallPluginHeader": "卸載插件", - "Unmute": "Unmute", - "UserAgentHelp": "Supply a custom user-agent http header, if necessary.", "UserProfilesIntro": "Jellyfin 包含對用戶配置文件的內置支持,使每個用戶都可以擁有自己的顯示設置,播放狀態和家長控制。", "Users": "使用者", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", "VersionNumber": "版本{0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", "WelcomeToProject": "歡迎使用 Jellyfin!", - "Whitelist": "Whitelist", "WizardCompleted": "這就是我們所需要的全部資訊,Jellyfin現在正在收集你的媒體櫃的資料,在這段時間內,不妨參考我們推出的應用程式。按一下完成進入伺服器總覽頁", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "Yesterday": "Yesterday" } From 4a693837657d4fe251d3b9694d5831b722c20cbd Mon Sep 17 00:00:00 2001 From: dkanada Date: Tue, 22 Jan 2019 17:32:30 +0900 Subject: [PATCH 03/16] remove english strings from other languages in emby-webcomponents --- .../emby-webcomponents/strings/ar.json | 666 ----------------- .../emby-webcomponents/strings/be-by.json | 677 ------------------ .../emby-webcomponents/strings/bg-bg.json | 329 --------- .../emby-webcomponents/strings/ca.json | 358 --------- .../emby-webcomponents/strings/cs.json | 131 ---- .../emby-webcomponents/strings/da.json | 353 --------- .../emby-webcomponents/strings/de.json | 55 -- .../emby-webcomponents/strings/el.json | 16 - .../emby-webcomponents/strings/es-ar.json | 676 ----------------- .../emby-webcomponents/strings/es-mx.json | 21 - .../emby-webcomponents/strings/es.json | 182 ----- .../emby-webcomponents/strings/fi.json | 673 ----------------- .../emby-webcomponents/strings/fr-ca.json | 593 --------------- .../emby-webcomponents/strings/fr.json | 29 - .../emby-webcomponents/strings/gsw.json | 659 ----------------- .../emby-webcomponents/strings/he.json | 371 ---------- .../emby-webcomponents/strings/hr.json | 380 ---------- .../emby-webcomponents/strings/hu.json | 438 ----------- .../emby-webcomponents/strings/id.json | 674 ----------------- .../emby-webcomponents/strings/it.json | 36 - .../emby-webcomponents/strings/kk.json | 5 - .../emby-webcomponents/strings/ko.json | 525 -------------- .../emby-webcomponents/strings/lt-lt.json | 373 ---------- .../emby-webcomponents/strings/ms.json | 677 ------------------ .../emby-webcomponents/strings/nb.json | 270 ------- .../emby-webcomponents/strings/nl.json | 50 -- .../emby-webcomponents/strings/pl.json | 9 - .../emby-webcomponents/strings/pt-br.json | 33 - .../emby-webcomponents/strings/pt-pt.json | 560 --------------- .../emby-webcomponents/strings/ro.json | 657 ----------------- .../emby-webcomponents/strings/ru.json | 5 - .../emby-webcomponents/strings/sk.json | 284 -------- .../emby-webcomponents/strings/sl-si.json | 669 ----------------- .../emby-webcomponents/strings/sv.json | 48 -- .../emby-webcomponents/strings/tr.json | 648 ----------------- .../emby-webcomponents/strings/uk.json | 649 ----------------- .../emby-webcomponents/strings/vi.json | 668 ----------------- .../emby-webcomponents/strings/zh-cn.json | 159 ---- .../emby-webcomponents/strings/zh-hk.json | 630 ---------------- .../emby-webcomponents/strings/zh-tw.json | 601 ---------------- 40 files changed, 14837 deletions(-) diff --git a/src/bower_components/emby-webcomponents/strings/ar.json b/src/bower_components/emby-webcomponents/strings/ar.json index 70e3b7cf96..65e9316238 100644 --- a/src/bower_components/emby-webcomponents/strings/ar.json +++ b/src/bower_components/emby-webcomponents/strings/ar.json @@ -1,680 +1,14 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "الغاء", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "الجمعة", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "البلد:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "اللغة:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "الاثنين", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "السبت", "Save": "تخزين", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "الاحد", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "الخميس", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "الثلاثاء", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "الاربعاء", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/be-by.json b/src/bower_components/emby-webcomponents/strings/be-by.json index e8d394ddd6..dcfd5cde6b 100644 --- a/src/bower_components/emby-webcomponents/strings/be-by.json +++ b/src/bower_components/emby-webcomponents/strings/be-by.json @@ -1,680 +1,3 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Адмяніць", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", - "ParentalRating": "Parental rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/bg-bg.json b/src/bower_components/emby-webcomponents/strings/bg-bg.json index 4f98fb470a..50a9de3e73 100644 --- a/src/bower_components/emby-webcomponents/strings/bg-bg.json +++ b/src/bower_components/emby-webcomponents/strings/bg-bg.json @@ -1,222 +1,102 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Актьор", "Add": "Добавяне", "AddToCollection": "Добавяне към колекция", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Добавяне към списък", "AddedOnValue": "Добавено на {0}", "Advanced": "Разширени", "AirDate": "Дата на излъчване", "Aired": "Излъчено", "Albums": "Албуми", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", "AllowSeasonalThemes": "Автоматични сезонни облици", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", "Art": "Картина", "Artists": "Изпълнители", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Нови", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Автоматично", "AutoBasedOnLanguageSetting": "Автоматично (според езика)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Автоматично сваляне на ново съдържание", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", "Backdrop": "Фон", "Backdrops": "Фонове", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", "Books": "Книги", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Отмяна", "ButtonGotIt": "Добре", "ButtonOk": "Добре", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Повторно пускане", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "Опитайте отново", "ButtonUnlockPrice": "Отключване на {0}", "ButtonUnlockWithPurchase": "Отключване с покупка", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Колекции", - "ColorPrimaries": "Color primaries", "ColorSpace": "Цветово пространство", - "ColorTransfer": "Color transfer", "CommunityRating": "Обществена ощенка", "Composer": "Съчинител", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Изтриване на изображението?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Продължаване", "ContinueInSecondsValue": "Продължаване след {0} секунди.", "ContinueWatching": "Продължаване на гледането", "Continuing": "Продължаващо", "Convert": "Преобразуване", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Държави", "CriticRating": "Оценка на критиците", "DateAdded": "Дата на добавяне", "DatePlayed": "Дата на пускане", "Days": "Дни", "Default": "По подразбиране", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Изтриване", "DeleteMedia": "Изтриване на медията", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Работен плот", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Режисьор", "DirectorValue": "Режисьор: {0}", "DirectorsValue": "Режисьори: {0}", "Disc": "Диск", - "Disconnect": "Disconnect", "Dislike": "Нехаресване", "Display": "Показване", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "Изтегляне", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Изтеглени", "Downloading": "Изтегляне", "DownloadingDots": "Изтегляне...", "Downloads": "Изтегляния", "DownloadsValue": "{0} изтегляния", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Редактиране", "EditImages": "Редактиране на изображенията", "EditMetadata": "Редактиране на метаданните", "EditSubtitles": "Редактиране на субтитрите", "EnableBackdrops": "Фонове", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Включване на режим \"Киносалон\"", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Тематични песни", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Приключило", "EndsAtValue": "Свършва на {0}", "Episodes": "Епизоди", "Error": "Грешка", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Много голям", "Extras": "Екстри", "Favorite": "В любими", "Favorites": "Любими", "FeatureRequiresJellyfinPremiere": "Функцията изисква активен абонамент за премиерното издание на Емби.", - "Features": "Features", "File": "Файл", - "Fill": "Fill", "Filters": "Филтри", - "Folders": "Folders", "FormatValue": "Формат: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Петък", "GenreValue": "Жанр: {0}", "Genres": "Жанрове", "GenresValue": "Жанрове: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Групиране на версиите", "GuestStar": "Гостуваща звезда", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "Guide": "Справочник", "HDPrograms": "Програми с висока разделителна способност", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Добавяне към колекция", "HeaderAddToPlaylist": "Добавяне към списък", "HeaderAddUpdateImage": "Добавяне/редактиране на изображение", "HeaderAlbumArtists": "Изпълнители на албуми", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", "HeaderAudioSettings": "Настройки на звука", "HeaderBecomeProjectSupporter": "Вземете премиерното издание", "HeaderBenefitsJellyfinPremiere": "Предимства на премиерното издание", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "Режим \"Киносалон\"", "HeaderCloudSync": "Синхронизиране в облака", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", "HeaderContinueListening": "Продължаване на слушането", "HeaderContinueWatching": "Продължаване на гледането", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Настройки на показване", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Редактиране на изображенията", "HeaderEnabledFields": "Включени полета", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", "HeaderFavoriteAlbums": "Любими албуми", "HeaderFavoriteArtists": "Любими изпълнители", "HeaderFavoriteCollections": "Любими колекции", @@ -227,17 +107,10 @@ "HeaderFavoriteShows": "Любими предавания", "HeaderFavoriteSongs": "Любими песни", "HeaderFavoriteVideos": "Любими клипове", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderHomeScreen": "Начален екран", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderInvitationSent": "Поканата е изпратена", "HeaderJellyfinAccountAdded": "Сметката в Емби е добавена", "HeaderJellyfinAccountRemoved": "Сметката в Емби е премахната", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", "HeaderLatestMedia": "Последни медии", "HeaderLatestRecordings": "Последни записи", "HeaderLearnMore": "Научете повече", @@ -251,72 +124,36 @@ "HeaderNewRecording": "Нов запис", "HeaderNextEpisodePlayingInValue": "Следващият епизод ще се пусне след {0}", "HeaderNextUp": "Следва", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", "HeaderOnNow": "На живо сега", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", "HeaderPlayOn": "Пускане на", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", "HeaderSecondsValue": "{0} секунди", "HeaderSelectDate": "Избиране на дата", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Пускане веднага", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Облик на субтитрите", "HeaderSubtitleSettings": "Настройки на субтитрите", "HeaderSyncRequiresSub": "Изтеглянето изисква активен абонамент за премиерното издание.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "Отключване на функцията", "HeaderUploadImage": "Качване на изображение", "HeaderVideoQuality": "Качество на видеото", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Помощ", "Hide": "Скриване", "HideWatchedContentFromLatestMedia": "Скриване на гледаното съдържание от последната медия", "Home": "Начало", "Horizontal": "Водоравно", - "HowDidYouPay": "How did you pay?", "IHaveJellyfinPremiere": "Имам премиерно издание", - "IPurchasedThisApp": "I purchased this app", "Identify": "Разпознаване", "Images": "Изображения", "ImdbRating": "Оценка в IMDb", "InstallingPackage": "Инсталиране на {0}", "InstantMix": "Пускане на подобни", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "Триизмерен формат:", "LabelAirDays": "Дни на излъчване:", "LabelAirTime": "Час на излъчване:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Албум:", "LabelAlbumArtists": "Изпълнители на албума:", "LabelArtists": "Изпълнители:", "LabelArtistsHelp": "Отделете няколко с ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Предпочитан език на звука:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "Колекция:", "LabelCommunityRating": "Обществена оценка", "LabelContentType": "Тип на съдържанието:", @@ -327,234 +164,114 @@ "LabelDashboardTheme": "Облик на сървърното табло:", "LabelDateAdded": "Дата на добавяне:", "LabelDateTimeLocale": "Местоположение за дата и час:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", "LabelDisplayLanguage": "Език на показване:", "LabelDisplayLanguageHelp": "Превеждането на Емби е текущ проект.", "LabelDisplayMode": "Режим на показване:", "LabelDisplayOrder": "Ред на показване:", "LabelDropImageHere": "Пуснете изображение тук или щракнете за разглеждане.", "LabelDropShadow": "Сянка:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Електронна поща:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Номер на епизода:", "LabelFont": "Шрифт:", "LabelHomeNetworkQuality": "Качество на домашната мрежа:", "LabelHomeScreenSectionValue": "Раздел {0} на началния екран:", "LabelImageType": "Вид изображение:", "LabelInternetQuality": "Качество на интернетната връзка:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Език:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Предпочитан език на сваляне:", "LabelName": "Име:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Оригинално съотношение:", "LabelOriginalTitle": "Оригинално заглавие:", "LabelOverview": "Обобщение:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Родителска оценка:", "LabelPath": "Път:", "LabelPersonRole": "Роля:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Рождено място:", "LabelPlayDefaultAudioTrack": "Да се пуска първоначалната звукова пътечка независимо от езика", "LabelPlaylist": "Списък:", "LabelPreferredSubtitleLanguage": "Предпочитан език на субтитрите:", - "LabelProfile": "Profile:", "LabelQuality": "Качество:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Дата на издаване:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Номер на сезона:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Кратко обобщение:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", "LabelSortBy": "Подреждане по:", "LabelSortOrder": "Ред на подреждане", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Състояние:", - "LabelStopWhenPossible": "Stop when possible:", "LabelSubtitlePlaybackMode": "Режим на субтитрите:", "LabelSubtitles": "Субтитри:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Синхронизиране към:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", "LabelTextColor": "Цвят на текста:", "LabelTextSize": "Размер на текста:", "LabelTheme": "Облик:", "LabelTitle": "Заглавие:", - "LabelTrackNumber": "Track number:", "LabelType": "Вид:", "LabelVersion": "Версия:", - "LabelVideo": "Video:", "LabelWebsite": "Сайт:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Година:", "Large": "Голям", "LatestFromLibrary": "Последни {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Научете повече", "Like": "Харесване", "LinksValue": "Препратки: {0}", "List": "Списък", "Live": "На живо", - "LiveBroadcasts": "Live broadcasts", "LiveTV": "Телевизия на живо", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Телевизията на живо изисква активен абонамент за премиерното издание.", "Logo": "Логотип", - "ManageRecording": "Manage recording", "MarkPlayed": "Отбелязване като пускано", "MarkUnplayed": "Отбелязване като непускано", "MarkWatched": "Отбелязване като изгледано", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", "Menu": "Меню", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoSyncJobsFound": "Няма изтегляния. Създайте задачи чрез копчетата за сваляне.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", "MinutesAfter": "минути след", "MinutesBefore": "минути преди", "Mobile": "Мобилно устройство", "Monday": "Понеделник", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", "Movies": "Филми", "MySubtitles": "Моите субтитри", "Name": "Име", "NewCollection": "Нова колекция", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Пример: колекция Междузвездни войни", "NewEpisodes": "Нови епизоди", "NewEpisodesOnly": "Само нови епизоди", "News": "Новини", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Няма намерени резултати.", "NoSubtitles": "Без субтитри", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Нищо", "Normal": "Нормален", "Off": "Изключено", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Отваряне", "OptionNew": "Нов...", - "Original": "Original", "OriginalAirDateValue": "Дата на първоначално излъчване: {0}", "Overview": "Обобщение", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Родителска оценка", "People": "Хора", - "PerfectMatch": "Perfect match", "Photos": "Снимки", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Пускане", "PlayAllFromHere": "Пускане на всичко от тук", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Автоматично пускане на следващия епизод", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Пускано", "Playlists": "Списъци", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Моля, пуснете сървъра отново - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Премиера", "Premieres": "Премиери", - "Previous": "Previous", "Primary": "Главно", - "PrivacyPolicy": "Privacy policy", "Producer": "Продуцент", - "ProductionLocations": "Production locations", "Programs": "Програми", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Качество", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", "RecentlyWatched": "Скоро гледани", "Record": "Записване", - "RecordSeries": "Record series", "RecordingCancelled": "Записването е отказано.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Опресняване", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Опресняване на метаданните", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", "ReleaseDate": "Дата на издаване", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Премахване от колекцията", "RemoveFromPlaylist": "Премахване от списъка", - "RemovingFromDevice": "Removing from device", "Repeat": "Повтаряне", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Продължаване от {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Времетраене", "Saturday": "Събота", "Save": "Запазване", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", "Schedule": "Разписание", "Screenshot": "Снимка на екрана", "Screenshots": "Снимки на екрана", @@ -562,12 +279,6 @@ "SearchForCollectionInternetMetadata": "Търсене в интернет за картини и метаданни", "SearchForMissingMetadata": "Търсене за лисващи метаданни", "SearchForSubtitles": "Търсене на субтитри", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", "SeriesYearToPresent": "{0} - Настояще", "ServerNameIsRestarting": "Сървърно издание Емби - {0} се пуска повторно.", "ServerNameIsShuttingDown": "Сървърно издание Емби - {0} се изключва.", @@ -575,32 +286,17 @@ "Settings": "Настройки", "SettingsSaved": "Настройките са запазени.", "Share": "Споделяне", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "Показване на заглавието", "ShowYear": "Показване на годината", "Shows": "Предавания", "Shuffle": "Пускане в разбъркан ред", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "Малък", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Умни", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Песни", "Sort": "Подреждане", "SortByValue": "Подреждане по {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", "Sports": "Спортни", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Студиа", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Субтитри", "Suggestions": "Предложения", "Sunday": "Неделя", @@ -614,14 +310,9 @@ "SyncJobItemStatusSynced": "Изтеглено", "SyncJobItemStatusSyncedMarkForRemoval": "Премахване от устройството", "SyncJobItemStatusTransferring": "Прехвърляне", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", "TV": "Телевизор", "Tags": "Етикети", "TagsValue": "Етикети: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", "ThemeSongs": "Фонови песни", "ThemeVideos": "Фонови видеоклипове", "TheseSettingsAffectSubtitlesOnThisDevice": "Тези настройки променят субтитрите на текущото устройство", @@ -630,17 +321,8 @@ "TrackCount": "{0} песни", "Trailer": "Трейлър", "Trailers": "Трейлъри", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Вторник", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", "Unplayed": "Непускано", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", "Upload": "Качване", "ValueAlbumCount": "{0} албума", "ValueDiscNumber": "Диск {0}", @@ -652,7 +334,6 @@ "ValueOneAlbum": "1 албум", "ValueOneEpisode": "1 епизод", "ValueOneGame": "1 игра", - "ValueOneItem": "1 item", "ValueOneMovie": "1 филм", "ValueOneMusicVideo": "1 музикален клип", "ValueOneSeries": "1 сериал", @@ -662,19 +343,9 @@ "ValueSongCount": "{0} песни", "ValueSpecialEpisodeName": "Специални - {0}", "Vertical": "Отвесно", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Преглед на албума", "ViewArtist": "Преглед на изпълнителя", - "VoiceInput": "Voice Input", "Watched": "Изгледано", "Wednesday": "Сряда", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Писател", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ca.json b/src/bower_components/emby-webcomponents/strings/ca.json index bc7cf2dd38..0c2f4c5c1f 100644 --- a/src/bower_components/emby-webcomponents/strings/ca.json +++ b/src/bower_components/emby-webcomponents/strings/ca.json @@ -1,205 +1,75 @@ { - "Absolute": "Absolute", "Accept": "Accepta", "AccessRestrictedTryAgainLater": "L'accés està restringit actualment. Intenta-ho de nou més tard si et plau.", - "Actor": "Actor", "Add": "Afegeix", "AddToCollection": "Afegeix a col·lecció", "AddToPlayQueue": "Afegeix a la llista de reproducció", "AddToPlaylist": "Afegeix a la llista de reproducció", - "AddedOnValue": "Added {0}", "Advanced": "Avançat", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Tots els canals", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Tots els episodis", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Reprodueix sempre amb subtítols", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", "AroundTime": "Cap a les {0}", - "Art": "Art", "Artists": "Artistes", "AsManyAsPossible": "Tants com sigui possible", - "Ascending": "Ascending", "AspectRatio": "Relació d'aspecte", "AttributeNew": "Nou", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Descarrega nou contingut automàticament", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Millor ajustament", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel·la", "ButtonGotIt": "Entesos", "ButtonOk": "D'acord", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Restaura Compra", "ButtonTryAgain": "Intenta-ho de nou", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", "CancelDownload": "Cancel·la descàrrega", "CancelRecording": "Cancel·la enregistrament", "CancelSeries": "Cancel·la sèrie", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CloudSyncFeatureDescription": "Sincronitza els teus mitjans amb el núvol per a copiar, arxivar i convertir fàcilment.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Esborrar imatge?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", "ConfirmDeletion": "Confirma supressió", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Connecta", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Continua", "ContinueInSecondsValue": "Continua en {0} segons", - "ContinueWatching": "Continue watching", "Continuing": "Continuant", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Països", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dies", - "Default": "Default", "DefaultErrorMessage": "Hi ha hagut un error processant la petició. Intenta-ho més tard si et plau.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Esborra", "DeleteMedia": "Esborra", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Escriptori", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Desconnecta", "Dislike": "No m'agrada", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Mostra també els episodis que no tingui a les temporades", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "DisplayModeHelp": "Selecciona el tipus de pantalla en el que tens Jellyfin funcionant.", "DoNotRecord": "No enregistris", "Down": "Avall", "Download": "Descarrega", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Descarregat", "Downloading": "Descarregant", "DownloadingDots": "Descarregant...", "Downloads": "Descàrregues", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", "DvrFeatureDescription": "Programa enregistraments de TV en directe individuals, de sèries i molt més amb Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Edita", "EditImages": "Edita imatges", - "EditMetadata": "Edit metadata", "EditSubtitles": "Edita subtítols", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Habilitar mode cinema", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Habilita la vista de mirall", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Acabades", "EndsAtValue": "Acabaria a les {0}", "Episodes": "Episodis", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favorit", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", "File": "Fitxer", "Fill": "Omplir", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Divendres", - "GenreValue": "Genre: {0}", "Genres": "Gèneres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "Artista convidat", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "Programes HD", "HeaderActiveRecordings": "Enregistraments Actius", "HeaderAddToCollection": "Afegir a Col·lecció", "HeaderAddToPlaylist": "Afegir a la llista de reproducció", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Obtenir Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", "HeaderCancelRecording": "Cancel·lar Enregistrament", "HeaderCancelSeries": "Cancel·lar Sèries", "HeaderCinemaMode": "Mode Cinema", @@ -207,36 +77,17 @@ "HeaderConfirmRecordingCancellation": "Confirmar Cancel·lació de l'Enregistrament", "HeaderContinueListening": "Continua Escoltant", "HeaderContinueWatching": "Continua Veient", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Esborrar Ítem", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Opcions de Visualització", "HeaderDownloadSettings": "Preferències de descàrregues", "HeaderEditImages": "Edita Imatges", "HeaderEnabledFields": "Camps Habilitats", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "Identificadors externs:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoritePlaylists": "Llistes de Reproducció Preferides", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderHomeScreen": "Pàgina d'Inici", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Continuar Enregistrant", "HeaderKeepSeries": "Mantenir Sèries", "HeaderLatestChannelItems": "Darrers ítems del canal", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Novetats a {0}", "HeaderLatestMedia": "Darrers MItjans", "HeaderLatestRecordings": "Darrers Enregistraments", @@ -244,7 +95,6 @@ "HeaderLibraryFolders": "Directoris de la Llibreria", "HeaderLibraryOrder": "Ordre de la llibreria", "HeaderMetadataSettings": "Preferències de Metadades", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "El meu dispositiu", "HeaderMyMedia": "Els meus mitjans", "HeaderMyMediaSmall": "Els meus mitjans (petit)", @@ -255,199 +105,101 @@ "HeaderOfflineDownloads": "Mitjans Sense Connexió", "HeaderOfflineDownloadsDescription": "Descarrega mitjans als teus dispositius per a un fàcil ús fora de línia.", "HeaderOnNow": "En Directe Ara", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Error de Reproducció", "HeaderRecordingOptions": "Opcions d'Enregistrament", "HeaderRemoteControl": "Control Remot", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Digues alguna cosa com...", "HeaderSecondsValue": "{0} segons", "HeaderSelectDate": "Seleccionar Data", "HeaderSeriesOptions": "Opcions de Sèries", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Començar Ara", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Apariència de subtítols", "HeaderSubtitleSettings": "Preferències de subtítols", "HeaderSyncRequiresSub": "Descarregar requereix una subscripció activa d'Jellyfin Premiere.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperant Wifi", "HeaderYouSaid": "Has dit...", "Help": "Ajuda", "Hide": "Amaga", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identifica", "Images": "Imatges", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instal·lant {0}", "InstantMix": "Mescla instantània", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} ítems", - "Items": "Items", - "KeepDownload": "Keep download", "KeepOnDevice": "Mantingues al dispositiu", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Àlbum:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artistes:", "LabelArtistsHelp": "Separa'n varis emprant ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Data de naixement:", "LabelBirthYear": "Any de naixement:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Canals:", "LabelCollection": "Col·lecció:", "LabelCommunityRating": "Valoració de la comunitat:", "LabelContentType": "Tipus de contingut:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Valoració crítica:", - "LabelCustomRating": "Custom rating:", "LabelDashboardTheme": "Tema del tauler de control del servidor:", "LabelDateAdded": "Data afegit:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Data de defunció:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Disc:", "LabelDisplayLanguage": "Idioma de visualització:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Ordre de visualització:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "Identificador {0}:", "LabelEmailAddress": "Correu electrònic:", "LabelEndDate": "Data de finalització:", "LabelEpisodeNumber": "Episodi:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Secció {0} de la pàgina d'inici:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", "LabelKeepUpTo": "Mantingues fins a:", "LabelLanguage": "Idioma:", "LabelLockItemToPreventChanges": "Bloca aquest ítem per evitar canvis futurs", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Idioma preferit de descàrrega:", "LabelName": "Nom:", "LabelNumber": "Nombre:", "LabelOriginalAspectRatio": "Relació d'aspecte original:", "LabelOriginalTitle": "Títol original:", "LabelOverview": "Sinopsi:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "Directori:", "LabelPersonRole": "Rol:", "LabelPersonRoleHelp": "Exemple: Conductor de camió de gelats", "LabelPlaceOfBirth": "Lloc de naixement:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Llista de rep.:", "LabelPreferredSubtitleLanguage": "Idioma preferit de subtítols:", "LabelProfile": "Perfil:", "LabelQuality": "Qualitat:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Enregistra:", "LabelRefreshMode": "Mode de refresc:", "LabelReleaseDate": "Data de publicació:", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelScreensaver": "Salva pantalla:", "LabelSeasonNumber": "Temporada:", "LabelSelectFolderGroups": "Agrupa automàticament el contingut de les següents carpetes en col·leccions com Pel·lícules, Música i TV:", "LabelSelectFolderGroupsHelp": "Les carpetes desmarcades serán mostrades individualment en la seva pròpia vista.", "LabelShortOverview": "Sinopsi curta:", "LabelSkin": "Aspecte:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Títol d'endreçat:", "LabelSoundEffects": "Efectes de so:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Inicia quan sigui possible:", "LabelStatus": "Estat:", "LabelStopWhenPossible": "Atura quan sigui possible:", "LabelSubtitlePlaybackMode": "Mode de subtítol:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sincronitza a:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", "LabelTheme": "Tema:", "LabelTitle": "Títol:", "LabelTrackNumber": "Pista:", "LabelType": "Tipus:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Any:", - "Large": "Large", "LatestFromLibrary": "Novetats a {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "M'agrada", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Directe", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV requereix una subscripció d'Jellyfin Premiere activa", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Marca com a reproduït", "MarkUnplayed": "Marca com a no reproduït", "MarkWatched": "Marca com a vist", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "Estàs segur que vols eliminar aquest fitxer de subtítols?", "MessageConfirmRecordingCancellation": "Estàs segur que vols cancel·lar aquest enregistrament?", "MessageDownloadQueued": "Descàrrega encuada.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Ítem desat.", "MessageItemsAdded": "Ítems afegits.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageNoDownloadsFound": "No s'han trobat descàrregues sense connexió. Descarrega mitjans per reproduir sense connexió emprant els botons de \"Descarrega\" que trobaràs per tota l'app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", "MessageNoSyncJobsFound": "No s'han trobat descàrregues. Crea noves tasques de descàrrega emprant els botons de \"Descarrega\" que trobaràs per tota l'app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si tens una subscripció activa d'Jellyfin Premiere assegura't que l'has configurat al teu tauler de control de l'Jellyfin Server, on pots accedir clicant a l'opció d'Jellyfin Premiere al menú principal.", "MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un únic pagament, o amb una subscripció activa d'Jellyfin Premiere.", "MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripció activa d'Jellyfin Premiere.", @@ -459,7 +211,6 @@ "More": "Més", "MoveLeft": "Moure a l'esquerra", "MoveRight": "Moure a la dreta", - "Movies": "Movies", "MySubtitles": "Els meus subtítols", "Name": "Nom", "NewCollection": "Nova Col·lecció", @@ -467,140 +218,71 @@ "NewCollectionNameExample": "Exemple: Col·leció Star Wars", "NewEpisodes": "Nous episodis", "NewEpisodesOnly": "Només nous episodis", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "No s'han trobat ítems.", "NoSubtitleSearchResultsFound": "No s'han trobat resultats.", "NoSubtitles": "Sense subtítols", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Cap", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", "OnlyForcedSubtitles": "Només subtítols forçats", "OnlyForcedSubtitlesHelp": "Només es carregaran aquells subtítols marcats com a forçats.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Obre", "OptionNew": "Nou...", - "Original": "Original", "OriginalAirDateValue": "Data original d'emissió: {0}", - "Overview": "Overview", "PackageInstallCancelled": "Instal·lació {0} cancel·lada.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Valoració Parental", "People": "Gent", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Reprodueix", "PlayAllFromHere": "Reprodueix tots des d'aquí", - "PlayCount": "Play count", "PlayFromBeginning": "Reprodueix des de l'inici", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproduït", "Playlists": "Llistes de reproducció", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Reinicia el Servidor d'Jellyfin si et plau - {0}.", "PleaseSelectDeviceToSyncTo": "Selecciona el dispositiu on ho vulguis descarregar.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Première", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Productor", - "ProductionLocations": "Production locations", "Programs": "Programes", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Qualitat", "QueueAllFromHere": "Afegeix tots a la cua des d'aquí", - "Raised": "Raised", "RecentlyWatched": "Reproduït recentment", "Record": "Grava", "RecordSeries": "Enregistra la sèrie", "RecordingCancelled": "Enregistrament cancel·lat.", "RecordingScheduled": "Enregistrament programat.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Refresca", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Refresca metadades", "RefreshQueued": "Actualització encuada.", "Reject": "Rebutja", "ReleaseDate": "Data de publicació", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Elimina de la col·lecció", "RemoveFromPlaylist": "Esborra de la llista de reproducció", "RemovingFromDevice": "Eliminant del dispositiu", "Repeat": "Repeteix", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Repetir episodis", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Reemplaça totes les metadades", "ReplaceExistingImages": "Reemplaça imatges existents", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Reprodueix des de {0}", "Retry": "Reintenta", "RunAtStartup": "Arrenca en iniciar", - "Runtime": "Runtime", "Saturday": "Dissabte", "Save": "Desa", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Captures de pantalla", "Search": "Cerca", "SearchForCollectionInternetMetadata": "Cerca a internet artwork i metadades", "SearchForMissingMetadata": "Cerca metadades perdudes", "SearchForSubtitles": "Cerca Subtítols", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Sèrie cancel·lada.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Enregistrament de la sèrie programat.", "SeriesSettings": "Preferències de la sèrie", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "El Servidor Jellyfin necessita ser actualitzat. Per descarregar la darrera versió, si et plau, visita {0}", "Settings": "Preferències", "SettingsSaved": "Preferències desades.", "Share": "Comparteix", "ShowIndicatorsFor": "Mostra indicadors per a:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Aleatori", "SkipEpisodesAlreadyInMyLibrary": "No enregistris episodis que ja estan a la meva biblioteca", "SkipEpisodesAlreadyInMyLibraryHelp": "Els episodis es compararan emprant la temporada i el nombre d'episodi quan siguin disponibles.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", "SortName": "Nom per endreçar:", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Estudis", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Format de subtítol no suportat", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtítols", "Suggestions": "Suggerències", "Sunday": "Diumenge", @@ -616,65 +298,25 @@ "SyncJobItemStatusTransferring": "Transferint", "SyncUnwatchedVideosOnly": "Descarrega només els vídeos no vists", "SyncUnwatchedVideosOnlyHelp": "Només els vídeos no vists seran descarregats, i els vídeos seran eliminats del dispositiu un cop s'hagin vist.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiquetes", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Aquestes preferències afecten els subtítols d'aquest dispositiu", - "Thumb": "Thumb", "Thursday": "Dijous", "TrackCount": "{0} pistes", "Trailer": "Tràiler", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prova el Multi-Select", "TryMultiSelectMessage": "Per editar múltiples mitjans multimèdia simplement fes clic i mantingues premut sobre qualsevol cartell i després selecciona els ítems que vulguis gestionar. Prova-ho!", "Tuesday": "Dimarts", - "Uniform": "Uniform", "UnlockGuide": "Guia de desbloqueig", - "Unplayed": "Unplayed", "Unrated": "Sense valorar", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Amunt", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} episodis", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} vídeos musicals", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1 vídeo musical", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Veure àlbum", "ViewArtist": "Veure artista", - "VoiceInput": "Voice Input", "Watched": "Vists", "Wednesday": "Dimecres", "WifiRequiredToDownload": "Es requereix una connexió Wifi per continuar descarregant.", "Writer": "Escriptor", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/cs.json b/src/bower_components/emby-webcomponents/strings/cs.json index 76d670aa7b..8da0b4f551 100644 --- a/src/bower_components/emby-webcomponents/strings/cs.json +++ b/src/bower_components/emby-webcomponents/strings/cs.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "Přijmout", "AccessRestrictedTryAgainLater": "Přístup je v současné době omezen. Prosím zkuste to znovu později.", "Actor": "Herec", @@ -9,55 +8,37 @@ "AddToPlaylist": "Přidat do playlistu", "AddedOnValue": "Přidáno {0}", "Advanced": "Pokročilé", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Alba", "All": "Vše", "AllChannels": "Všechny kanály", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Všechny epizody", "AllLanguages": "Všechny jazyky", "AllowSeasonalThemes": "Povolit automatická sezónní témata", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Vždy zobrazit titulky", "AlwaysPlaySubtitlesHelp": "Titulky odpovídající jazykové předvolbě se načtou bez ohledu na jazyk audia.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Kdykoliv", "AroundTime": "Okolo {0}", "Art": "Umění", "Artists": "Umělci", "AsManyAsPossible": "Tolikrát jak je možné", - "Ascending": "Ascending", "AspectRatio": "Poměr stran", "AttributeNew": "Nové", - "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Datový tok audia není podporován", "AudioChannelsNotSupported": "Audio kanály nejsou podporovány", "AudioCodecNotSupported": "Audio kodek není podporován", "AudioProfileNotSupported": "Audio profil není podporován", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Automatizovat", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Automaticky stahovat nový obsah", "AutomaticallySyncNewContentHelp": "Nový obsah přidaný do této složky bude automaticky stažen do zařízení.", "Backdrop": "Pozadí", "Backdrops": "Pozadí", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Místo narození", "Books": "Knihy", "Box": "Pouzdro", "BoxRear": "Zadní část pouzdra", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušit", "ButtonGotIt": "Mám to", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Přehrát jednu minutu", - "ButtonRestart": "Restart", "ButtonRestorePreviousPurchase": "Obnovit nákup", "ButtonTryAgain": "Zkusit znovu", "ButtonUnlockPrice": "Odemknout {0}", @@ -72,9 +53,6 @@ "CinemaModeFeatureDescription": "S režimem Kino získate funkci, která před hlavním programem přehraje trailery a uživatelská intra.", "CloudSyncFeatureDescription": "Synchronizujte vaše média na cloud pro jednodušší zálohování, archivaci a konverzi.", "Collections": "Kolekce", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Hodnocení komunity", "Composer": "Skladatel", "ConfigureDateAdded": "Konfigurace přidání data je definována v nastavení knihovny v ovládacím panelu", @@ -85,19 +63,12 @@ "ConfirmEndPlayerSession": "Chcete vypnout Jellyfin na {0}?", "ConfirmRemoveDownload": "Odebrat stažení?", "Connect": "Připojit", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Kontejner není podporován", "Continue": "Pokračovat", "ContinueInSecondsValue": "Pokračovat za {0} sekund.", "ContinueWatching": "Pokračovat ve sledování", "Continuing": "Pokračování", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Země", - "CriticRating": "Critic rating", "DateAdded": "Datum přidání", "DatePlayed": "Datum přehrání", "Days": "Dny", @@ -106,41 +77,29 @@ "DefaultSubtitlesHelp": "Titulky jsou načteny na základě výchozích a vynucených nastavení ve vložených metadatech. Jazykové preference jsou vzaty v úvahu, pokud je k dispozici více možností.", "Delete": "Odstranit", "DeleteMedia": "Odstranit média", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "PC", - "DirectPlayError": "Direct play error", "DirectPlaying": "Přímé přehrání", "DirectStreamHelp1": "Médium je kompatibilní se zařízením, pokud jde o rozlišení a typ média (H.264, AC3, atd.), ale je v nekompatibilním kontejneru (.mkv, .avi, .wmv, atd.). Video bude za běhu přebaleno než bude streamováno do zařízení.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", "DirectStreaming": "Přímé streamování", "Director": "Režisér", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "Disk", "Disconnect": "Odpojit", "Dislike": "Nemám rád", "Display": "Zobrazení", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Zobrazit chybějící epizody", "DisplayMissingEpisodesWithinSeasonsHelp": "Musí být zapnuto pro knihovny TV v nastavení Jellyfin Server", "DisplayModeHelp": "Zvolte typ obrazovky, na které používáte Jellyfin.", "DoNotRecord": "Nenahrávat", "Down": "Dolů", "Download": "Stáhnout", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Staženo", "Downloading": "Stahování", "DownloadingDots": "Stahování...", "Downloads": "Stahování", - "DownloadsValue": "{0} downloads", "DropShadow": "Vrhat stín", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR vyžaduje aktivní předplatné Jellyfin Premiere.", "Edit": "Upravit", "EditImages": "Editace obrázků", - "EditMetadata": "Edit metadata", "EditSubtitles": "Editovat titulky", "EnableBackdrops": "Povolit pozadí", "EnableBackdropsHelp": "Pokud je povoleno, pozadí je zobrazeno pro některé stránky při procházení vaší knihovny.", @@ -148,9 +107,7 @@ "EnableColorCodedBackgrounds": "Aktivovat barevně označené pozadí", "EnableDisplayMirroring": "Povolit zrcadlení obrazu", "EnableExternalVideoPlayers": "Povolit externí video přehrávače", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", "EnableNextVideoInfoOverlay": "Povolit informaci o následujícím videu během přehrávání", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Povolit tématickou hudbu na pozadí", "EnableThemeSongsHelp": "Pokud povolíte, bude při procházení knihovny na pozadí přehrávána tématická melodie.", "EnableThemeVideos": "Povolit tématické video", @@ -163,27 +120,18 @@ "ErrorAddingGuestAccount2": "Pokud stále máte problémy, pošlete prosím e-mail na adresu {0} a přiložte Vaši i jejich e-mailovou adresu.", "ErrorAddingJellyfinConnectAccount1": "Nastala chyba při přidávání účtu Jellyfin Connect. Opravdu máte vytvořen účet u Jellyfin? Přihlaste se zde {0}.", "ErrorAddingJellyfinConnectAccount2": "Pokud stále máte problémy, pošlete prosím e-mail na adresu {0} z e-mailové adresy použité na účtu Jellyfin.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", "ErrorDeletingItem": "Nastala chyba při mazání položky z Jellyfin Serveru. Zkontrolujte prosím, že Jellyfin Server má oprávnění k zápisu do složky médií a zkuste to prosím znovu.", "ErrorReachingJellyfinConnect": "Došlo k chybě při navázání spojení k serveru Jellyfin Connect. Ujistěte se, zda je funkční připojení k internetu a zkuste to znovu.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Extra velký", - "Extras": "Extras", "Favorite": "Oblíbené", "Favorites": "Oblíbené", "FeatureRequiresJellyfinPremiere": "Tato funkce vyžaduje aktivní předplatné Jellyfin Premiere.", - "Features": "Features", "File": "Soubor", "Fill": "Vyplnit", - "Filters": "Filters", - "Folders": "Folders", "FormatValue": "Formát: {0}", "FreeAppsFeatureDescription": "Užijte si výběr Jellyfin aplikací zdarma pro vaše zařízení.", "Friday": "Pátek", - "GenreValue": "Genre: {0}", "Genres": "Žánry", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Skupinové verze", "GuestStar": "Hostující hvězda", "GuestUserNotFound": "Uživatel nenalezen. Prosím, ujistěte se, že název je správný a zkuste to znovu, nebo zkuste zadat jejich e-mailovou adresu.", @@ -195,7 +143,6 @@ "HeaderAddUpdateImage": "Přidat/Aktualizovat obrázek", "HeaderAlbumArtists": "Umělci alba", "HeaderAlreadyPaid": "Již zaplaceno?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audio knihy", "HeaderAudioSettings": "Nastavení zvuku", "HeaderBecomeProjectSupporter": "Získat Jellyfin Premiere", @@ -208,7 +155,6 @@ "HeaderContinueListening": "Pokračovat v poslechu", "HeaderContinueWatching": "Pokračovat ve sledování", "HeaderConvertYourRecordings": "Konverze vašich nahrávek", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Smazat položku", "HeaderDeleteItems": "Odstranit položky", "HeaderDisplaySettings": "Nastavení zobrazení", @@ -216,17 +162,6 @@ "HeaderEditImages": "Editace obrázků", "HeaderEnabledFields": "Povolené pole", "HeaderEnabledFieldsHelp": "Zrušte zaškrtnutí, abyste zabránily změnám dat.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Jellyfin Apps zdarma", "HeaderHomeScreen": "Domovská obrazovka", "HeaderIdentifyItemHelp": "Zadejte jedno nebo více vyhledávacích kritérií. Odstraňte kritéria pro vyhledání více výsledků.", @@ -255,9 +190,7 @@ "HeaderOfflineDownloads": "Offline média", "HeaderOfflineDownloadsDescription": "Stáhnout média do vašeho zařízení pro snadné použití offline.", "HeaderOnNow": "Právě teď", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Přehrát moje Média", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Chyba přehrávání", "HeaderRecordingOptions": "Nastavení nahrávání", "HeaderRemoteControl": "Dálkový ovladač", @@ -266,10 +199,8 @@ "HeaderSecondsValue": "{0} sekund", "HeaderSelectDate": "Vyber datum", "HeaderSeriesOptions": "Nastavení seriálu", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Infromace o speciální epizodě", "HeaderStartNow": "Začít teď", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Vzhled titulků", "HeaderSubtitleSettings": "Nastavení titulků", "HeaderSyncRequiresSub": "Stahování vyžaduje aktivní předplatné Jellyfin Premiere.", @@ -278,14 +209,12 @@ "HeaderUnlockFeature": "Odemknout funkci", "HeaderUploadImage": "Nahrát obrázek", "HeaderVideoQuality": "Kvalita videa", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čekání na Wifi", "HeaderYouSaid": "Zmínil ses...", "Help": "Nápověda", "Hide": "Skrýt", "HideWatchedContentFromLatestMedia": "Skrýt přehrané položky ze seznamu nejnovějších médií", "Home": "Domů", - "Horizontal": "Horizontal", "HowDidYouPay": "Jak chcete platit?", "IHaveJellyfinPremiere": "Již mám Jellyfin Premiere", "IPurchasedThisApp": "Tuto aplikaci mám již zaplacenu", @@ -297,7 +226,6 @@ "InterlacedVideoNotSupported": "Prokládané video není podporováno", "ItemCount": "{0} položek", "Items": "Položky", - "KeepDownload": "Keep download", "KeepOnDevice": "Ponechat na zařízení", "Kids": "Dětské", "Label3DFormat": "3D formát:", @@ -306,7 +234,6 @@ "LabelAirsAfterSeason": "Vysíláno po sezóně:", "LabelAirsBeforeEpisode": "Vysíláno před epizodou:", "LabelAirsBeforeSeason": "Vysíláno před sezónou:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Alba umělce:", "LabelArtists": "Úmělci", "LabelArtistsHelp": "Odděl pomocí ;", @@ -315,20 +242,16 @@ "LabelBirthDate": "Datum narození:", "LabelBirthYear": "Rok narození:", "LabelBitrateMbps": "Datový tok (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanály:", "LabelCollection": "Kolekce:", "LabelCommunityRating": "Hodnocení komunity:", "LabelContentType": "Typ obsahu:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Země:", "LabelCriticRating": "Hodnocení kritiků:", "LabelCustomRating": "Vlastní hodnocení:", "LabelDashboardTheme": "Téma hlavní nabídky serveru:", "LabelDateAdded": "Datum přidání:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Datum úmrtí:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Číslo disku:", "LabelDisplayLanguage": "Jazyk rozhraní:", "LabelDisplayLanguageHelp": "Překlad Jellyfin je projekt ve fázi neustálého vývoje.", @@ -336,15 +259,12 @@ "LabelDisplayOrder": "Pořadí zobrazení:", "LabelDropImageHere": "Sem přetáhněte obrázek nebo klikněte pro procházení.", "LabelDropShadow": "Vrhat stín:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailová adresa:", "LabelEndDate": "Datum ukončení:", "LabelEpisodeNumber": "Číslo epizody:", "LabelFont": "Písmo:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Domovská obrazovka sekce {0}", "LabelImageType": "Typ obrázku:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Limit položek:", "LabelKeep:": "Udržet:", "LabelKeepUpTo": "Aktualizovat k:", @@ -360,15 +280,12 @@ "LabelParentNumber": "Číslo rodičovského prvku", "LabelParentalRating": "Rodičovské hodnocení:", "LabelPath": "Cesta k souboru:", - "LabelPersonRole": "Role:", "LabelPersonRoleHelp": "Příklad: Řidič kamiónu se zmrzlinou", "LabelPlaceOfBirth": "Místo narození:", "LabelPlayDefaultAudioTrack": "Přehrávat defaultní audio stopu bez ohledu na jazyk", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Preferovaný jazyk titulků:", "LabelProfile": "Profil:", "LabelQuality": "Kvalita:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Záznam:", "LabelRefreshMode": "Mód obnovy:", "LabelReleaseDate": "Datum vydání:", @@ -378,11 +295,8 @@ "LabelSelectFolderGroups": "Automaticky seskupit obsah z následujících složek do zobrazení, jako jsou Filmy, Hudba a TV:", "LabelSelectFolderGroupsHelp": "Složky, které nejsou zaškrtnuty budou zobrazeny ve vlastním pohledu.", "LabelShortOverview": "Hlavní linie:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Délka posunu zpět:", "LabelSkipForwardLength": "Délka posunu vpřed:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Třídit dle názvu:", "LabelSoundEffects": "Zvukové efekty:", "LabelSource": "Zdroj:", @@ -392,9 +306,7 @@ "LabelSubtitlePlaybackMode": "Mód titulků:", "LabelSubtitles": "Titulky:", "LabelSyncJobName": "Název Sync úlohy:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sync do:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", "LabelTextBackgroundColor": "Barva pozadí textu:", "LabelTextColor": "Barva textu:", @@ -404,7 +316,6 @@ "LabelTrackNumber": "Číslo stopy:", "LabelType": "Typ:", "LabelVersion": "Verze:", - "LabelVideo": "Video:", "LabelWebsite": "Webové stránky:", "LabelWindowBackgroundColor": "Barva pozadí textu:", "LabelYear": "Rok:", @@ -413,19 +324,14 @@ "LearnHowYouCanContribute": "Zjistěte, jak můžete přispět.", "LearnMore": "Zjistit více", "Like": "Mám rád", - "LinksValue": "Links: {0}", "List": "Seznam", "Live": "Živě", "LiveBroadcasts": "Přímé přenosy", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV vyžaduje aktivní předplatné Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Spravovat nahrávání", "MarkPlayed": "Označit přehrané", "MarkUnplayed": "Označit nepřehrané", "MarkWatched": "Označit jako shlédnuté", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Střední", "Menu": "Nabídka", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivní předplatné Jellyfin Premiere je zapotřebí pro vytvoření automatického nahrávání řad.", @@ -434,8 +340,6 @@ "MessageDownloadQueued": "Stažení zařazeno.", "MessageFileReadError": "Došlo k chybě při čtení souboru. Prosím zkuste to znovu.", "MessageIfYouBlockedVoice": "Pokud byl Váš přístup odepřen pomocí hlasové aplikace, budete ji muset překonfigurovat před dalším pokusem.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "E-mail byl odeslán na adresu {0} s výzvou k registraci s Jellyfin.", "MessageInvitationSentToUser": "E-mail byl odeslán na adresu {0} a přijmutím této pozvnánky akceptujete vaší pozvánku ke sdílení.", "MessageItemSaved": "Položka uložena.", @@ -443,9 +347,7 @@ "MessageJellyfinAccontRemoved": "Účet Jellyfin byl odstraněn pro tohoto uživatele.", "MessageJellyfinAccountAdded": "Jellyfin účet byl přidáno k tomuto uživateli.", "MessageLeaveEmptyToInherit": "Při ponechání prázdné položky bude zděděno nastavení z položky nadřazené nebo z globální defaultní hodnoty.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "Žádné servery nejsou k dispozici. Pokud jste byli pozváni na sdílený server, ujistěte se, že jste pozvánku níže akceptovali nebo klikly na odkaz v e-mailu.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "Účet Jellyfin byl přidán pro tohoto uživatele. E-mail bude zaslán majiteli účtu. Pozvánku bude nutné potvrdit kliknutím na odkaz uvnitř e-mailu.", "MessagePlayAccessRestricted": "Přehrávání tohoto obsahu je momentálně omezeno. Pro více informací kontaktujte prosím Vašeho správce Jellyfin Serveru.", "MessageToValidateSupporter": "Pokud máte aktivní předplatné Jellyfin Premiere, ujistěte se, že máte nastaven Jellyfin Premiere v panelu Nastavení pod Nápověda -> Jellyfin Premiere.", @@ -480,7 +382,6 @@ "OneChannel": "Jeden kanál", "OnlyForcedSubtitles": "Pouze vynucené titulky", "OnlyForcedSubtitlesHelp": "Jen vynucené titulky budou nahrány.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otevřít", "OptionNew": "Nový...", "Original": "Originál", @@ -503,13 +404,10 @@ "PlaybackErrorNoCompatibleStream": "Žádné kompatibilní streamy nejsou v současné době k dispozici. Zkuste to prosím později nebo pro více podrobností kontaktujte svého správce systému", "PlaybackErrorNotAllowed": "V současné době nejste oprávněni přehrávat tento obsah. Pro více informací se obraťte se na správce systému.", "PlaybackErrorPlaceHolder": "Pro přehrání videa nejdříve vložte disk", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Přehráno", "Playlists": "Playlisty", "PleaseEnterNameOrId": "Prosím, zadejte název nebo externí Id.", "PleaseRestartServerName": "Prosím, restartujte Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vyberte nejméně dvě položky prosím.", "Premiere": "Premiéra", "Premieres": "Premiéry", @@ -522,14 +420,12 @@ "PromoConvertRecordingsToStreamingFormat": "Automaticky konvertovat nahrávky do doporučeného streamovacího formátu s Jellyfin Premiere. Nahrávky budou při přehrávání konvertovány do MP4 nebo MKV - dle nastavení Jellyfin server.", "Quality": "Kvalita", "QueueAllFromHere": "Zařadit vše do fronty", - "Raised": "Raised", "RecentlyWatched": "Nedávno shlédnuté", "Record": "Nahrávat", "RecordSeries": "Nahrát série", "RecordingCancelled": "Nahrávání zrušeno.", "RecordingScheduled": "Plán nahrávání.", "Recordings": "Nahrávky", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Obnovit", "RefreshDialogHelp": "Metadata se aktualizují na základě nastavení a internetových služeb, které jsou povoleny v nastavení Jellyfin Server.", "RefreshMetadata": "Obnovit metadata", @@ -565,7 +461,6 @@ "SearchResults": "Výsledky vyhledávání", "SecondaryAudioNotSupported": "Přepínání audio stopy není podporováno", "SeriesCancelled": "Série zrušena.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Plán nahrávání seriálu.", "SeriesSettings": "Nastavení seriálu", "SeriesYearToPresent": "{0} - Současnost", @@ -576,31 +471,21 @@ "SettingsSaved": "Nastavení uloženo.", "Share": "Sdílet", "ShowIndicatorsFor": "Zobrazit indikátor pro:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Seriály", "Shuffle": "Náhodně", "SkipEpisodesAlreadyInMyLibrary": "Přeskočit nahrávání epizod, které jsou v knihovně", "SkipEpisodesAlreadyInMyLibraryHelp": "Epizody budou porovnávány s použitím období a čísla epizody, pokud jsou k dispozici.", "Small": "Malý", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Chytrý", "SmartSubtitlesHelp": "Titulky budou načteny po porovnání s preferovaným jazykem, pokud je zvuk v cizím jazyce.", "Songs": "Skladby", - "Sort": "Sort", "SortByValue": "Třídit dle {0}", "SortChannelsBy": "Třídit kanály dle:", "SortName": "Setřídit dle názvu", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", "StopRecording": "Zastavit nahrávání", "Studios": "Studia", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formát titulků není podporován", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titulky", "Suggestions": "Návrhy", "Sunday": "Neděle", @@ -616,27 +501,19 @@ "SyncJobItemStatusTransferring": "Přenášení", "SyncUnwatchedVideosOnly": "Stáhnout pouze neshlédnutá videa", "SyncUnwatchedVideosOnlyHelp": "Pouze neshlédnutá videa budou stažena a budou odstraněna ze zařízení, jakmile je zhlédnete.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tagy", - "TagsValue": "Tags: {0}", "TermsOfUse": "Podmínky použití", "ThankYouForTryingEnjoyOneMinute": "Prosím užijte si jednu minutu přehrávání. Děkujeme vám za vyzkoušení Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Tato nastavení ovlivní titulky na tomto zařízení", "Thumb": "Miniatura", "Thursday": "Čtvrtek", "TrackCount": "{0} stop", "Trailer": "Ukázka/trailer", - "Trailers": "Trailers", "Transcoding": "Překódování", "TryMultiSelect": "Vyzkoušej multi-výběr", "TryMultiSelectMessage": "Chcete-li upravit více mediálních položek, stačí kliknout a podržet na kterémkoliv plakátu. Poté můžete vybrat více položek, které chcete spravovat. Zkus to!", "Tuesday": "Úterý", - "Uniform": "Uniform", "UnlockGuide": "Průvodce pro odemčení", - "Unplayed": "Unplayed", "Unrated": "Nehodnoceno", "UntilIDelete": "Dokud nesmažu", "UntilSpaceNeeded": "Do potřebného prostoru", @@ -646,35 +523,27 @@ "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizod", "ValueGameCount": "{0} her", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmů", "ValueMusicVideoCount": "{0} hudebních klipů", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 hra", "ValueOneItem": "1 položka", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 hudební klip", "ValueOneSeries": "1 seriál", - "ValueOneSong": "1 song", "ValueSeconds": "{0} sekund", "ValueSeriesCount": "{0} seriálů", "ValueSongCount": "{0} songů", "ValueSpecialEpisodeName": "Speciál - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "Video kodek není podporován", "VideoFramerateNotSupported": "Snímková frekvence videa není podporována", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Video profil není podporován", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Rozlišení videa není podporováno", "ViewAlbum": "Zobrazit album", "ViewArtist": "Zobrazit úmělce", "VoiceInput": "Hlasový vstup", "Watched": "Shlédnuto", "Wednesday": "Středa", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Napsal", "Yes": "Ano" } diff --git a/src/bower_components/emby-webcomponents/strings/da.json b/src/bower_components/emby-webcomponents/strings/da.json index 61cfe345aa..3e1d8e9196 100644 --- a/src/bower_components/emby-webcomponents/strings/da.json +++ b/src/bower_components/emby-webcomponents/strings/da.json @@ -1,7 +1,5 @@ { - "Absolute": "Absolute", "Accept": "Godkend", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Skuespiller", "Add": "Tilføj", "AddToCollection": "Tilføj til samling", @@ -9,53 +7,17 @@ "AddToPlaylist": "Tilføj til afspilningsliste", "AddedOnValue": "Tilføjet {0}", "Advanced": "Avanceret", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Alle kanaler", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Alle episoder", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Altid", "AroundTime": "Omkring {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Så mange som muligt", - "Ascending": "Ascending", "AspectRatio": "Billedformat", "AttributeNew": "Ny", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Bedste tilpasning", "BirthLocation": "Fødselslokation", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuller", "ButtonGotIt": "Forstået", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Afspil Ét Minut", "ButtonRestart": "Genstart", "ButtonRestorePreviousPurchase": "Genskab Indkøb", @@ -68,136 +30,50 @@ "Categories": "Kategorier", "ChannelNameOnly": "Udelukkende kanal {0}", "ChannelNumber": "Kanalnummer", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "Biograftilstand giver dig den ægte biografoplevelse med trailers og brugertilpassede introer, før selve filmen.", "CloudSyncFeatureDescription": "Synk dine medier til skyen for nem backup, arkivering og konvertering.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Komponist", "ConfigureDateAdded": "Konfigurer hvordan tilføjet-dato bestemmes, under Jellyfin Server-kontrolpanelet under Biblioteksindstillinger", "ConfirmDeleteImage": "Slet billede?", "ConfirmDeleteItem": "Hvis dette element slettes, fjernes det både fra dit filsystem samt din mediebibliotek. Er du sikker på du ønsker at fortsætte?", "ConfirmDeleteItems": "Sletning af disse emner vil både fjerne dem fra filsystemet og dit mediebibliotek. Er du sikker på at du vil fortsætte?", "ConfirmDeletion": "Bekræft sletning", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", "ConfirmRemoveDownload": "Fjern download?", "Connect": "Forbind", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Fortsæt", "ContinueInSecondsValue": "Fortsæt om {0} sekunder.", - "ContinueWatching": "Continue watching", "Continuing": "Forsættes", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Lande", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dage", - "Default": "Default", "DefaultErrorMessage": "Det opstod en fejl ved behandlingen af forespørgslen. Prøv igen senere.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Slet", "DeleteMedia": "Slet medie", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Instruktør", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Afbryd", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Optag ikke", - "Down": "Down", "Download": "Hent", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR påkræver et aktivt Jellyfin Premiere abonnement.", "Edit": "Rediger", "EditImages": "Rediger billeder", - "EditMetadata": "Edit metadata", "EditSubtitles": "Rediger undertekster", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Aktiver biograftilstand", "EnableColorCodedBackgrounds": "Aktiver farvekodet baggrunde", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Færdig", "EndsAtValue": "Slutter {0}", - "Episodes": "Episodes", "Error": "Fejl", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favorit", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Denne funktion kræver et aktivt Jellyfin Premiere abonnement.", - "Features": "Features", "File": "Fil", "Fill": "Udfyld", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "God fornøjelse med gratis adgang til Jellyfin apps til dine enheder.", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Genre", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Grupér versioner", "GuestStar": "Gæsteskuespiller", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD-programmer", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Tilføj til samling", "HeaderAddToPlaylist": "Tilføj til afspilningsliste", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Allerede Betalt?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Få Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Fordele ved Jellyfin Premiere", "HeaderCancelRecording": "Annuller Optagelse", @@ -205,152 +81,76 @@ "HeaderCinemaMode": "Biograftilstand", "HeaderCloudSync": "Sky-Synk", "HeaderConfirmRecordingCancellation": "Bekræft annullering af optagelse", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konverter Dine Optagelser", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Slet element", "HeaderDeleteItems": "Slet emner", "HeaderDisplaySettings": "Visningsindstillinger", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Rediger billeder", "HeaderEnabledFields": "Aktivér Felter", "HeaderEnabledFieldsHelp": "Fjern fluebenet fra et felt for at låse det og forhindre dets data fra at blive ændret.", "HeaderExternalIds": "Eksterne ID'er:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Gratis Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Indtast et eller flere søgekriterier.Fjern kriterier for at få flere søgeresultater.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Bevar Optagelse", "HeaderKeepSeries": "Bevar Serie", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Lær Mere", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Indstillinger for metadata", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min Enhed", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Ny optagelse", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Offline Medie", "HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Afspil mit Medie", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Fejl i afspilning", "HeaderRecordingOptions": "Optagelsesindstillinger", "HeaderRemoteControl": "Fjernbetjening", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Sig noget i stil med...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Vælg dato", "HeaderSeriesOptions": "Serieindstillinger", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Information om specialepisoder", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Prøv Afspilning", "HeaderUnlockFeature": "Lås op for Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Du sagde...", "Help": "Hjælp", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Hvordan betalte du?", "IHaveJellyfinPremiere": "Jeg har Jellyfin Premiere", "IPurchasedThisApp": "Jeg købte denne app", "Identify": "Identificer", "Images": "Billeder", - "ImdbRating": "IMDb rating", "InstallingPackage": "Installerer {0}", "InstantMix": "Instant Mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementer", "Items": "emner", - "KeepDownload": "Keep download", "KeepOnDevice": "Bevar på enhed", "Kids": "Børn", - "Label3DFormat": "3D format:", "LabelAirDays": "Sendedage:", "LabelAirTime": "Sendetid:", "LabelAirsAfterSeason": "Sendes efter sæson:", "LabelAirsBeforeEpisode": "Sendes før episode:", "LabelAirsBeforeSeason": "Sendes før sæson:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Albumartister:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Angiv flere ved at sætte ; mellem dem.", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Fødselsdato:", "LabelBirthYear": "Fødselsår:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanaler:", "LabelCollection": "Samling:", "LabelCommunityRating": "Fællesskabsvurdering:", "LabelContentType": "Indholdstype:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", "LabelCriticRating": "Kritikervurdering:", "LabelCustomRating": "Brugerdefineret bedømmelse:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dato for tilføjelse:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dødsdato:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Disk-nummer", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Visningsorden:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Email-adresse:", "LabelEndDate": "Slutdato:", "LabelEpisodeNumber": "Episodenummer:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Maks. filer:", "LabelKeep:": "Bevar:", "LabelKeepUpTo": "Bevar op til:", "LabelLanguage": "Sprog:", "LabelLockItemToPreventChanges": "Lås for at undgå fremtidige ændringer", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Foretrukket sprog for nedhentning:", "LabelName": "Navn:", "LabelNumber": "Nummer:", @@ -363,100 +163,42 @@ "LabelPersonRole": "Rolle:", "LabelPersonRoleHelp": "Eksempel: Isbilschauffør", "LabelPlaceOfBirth": "Fødselssted:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Afspilningsliste:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvalitet:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Optag:", "LabelRefreshMode": "Genopfrisk tilstand:", "LabelReleaseDate": "Udgivelsesdato:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sæsonnummer:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Kort oversigt:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Sortér titel:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Start når muligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop når muligt:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Navn til synkroniserings job:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Synkroniser til:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Titel:", "LabelTrackNumber": "Spor nummer:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Hjemmeside:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Lær mere", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", "LiveBroadcasts": "Live-udsending", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Markér som afspillet", "MarkUnplayed": "Markér som ikke afspillet", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Jellyfin Premiere abonnement er nødvendigt for at oprette automatiserede optagelser af serier.", "MessageAreYouSureDeleteSubtitles": "Er du sikker på du ønsker at slette denne undertekstfil?", "MessageConfirmRecordingCancellation": "Er du sikker på du ønsker at annullere denne optagelse?", "MessageDownloadQueued": "Download sat i kø.", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Hvis du afslog adgang til tale for appen, skal du re-konfigurere før du prøver igen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Element gemt.", "MessageItemsAdded": "Emne tilføjet.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardværdi.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Hvis du har et aktivt Jellyfin Premiere abonnement, skal du være sikker på at Jellyfin Premiere er konfigureret i dit Jellyfin Server-kontrolpanel, som kan tilgåes ved at klikke på Jellyfin Premiere i hovedmenuen.", "MessageUnlockAppWithPurchaseOrSupporter": "Lås op for dette feature med en lille enkeltstående betaling, eller med et aktivt Jellyfin Premiere abonnement.", "MessageUnlockAppWithSupporter": "Lås op for dette feature med et aktivt Jellyfin Premiere abonnement.", "MessageWeDidntRecognizeCommand": "Beklager, men vi genkendte ikke denne kommando.", "MinutesAfter": "minutter efter", "MinutesBefore": "minutter før", - "Mobile": "Mobile / Tablet", "Monday": "Mandag", - "More": "More", "MoveLeft": "Flyt mod venstre", "MoveRight": "Flyt mod højre", "Movies": "Film", @@ -468,19 +210,9 @@ "NewEpisodes": "Nye episoder", "NewEpisodesOnly": "Kun nye episoder", "News": "Nyheder", - "Next": "Next", - "No": "No", "NoItemsFound": "Ingen emner fundet.", "NoSubtitleSearchResultsFound": "Ingen resultater fundet.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", "OneChannel": "En kanal", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Åben", "OptionNew": "Ny...", "Original": "Standard", @@ -491,48 +223,27 @@ "PackageInstallFailed": "{0} installationen mislykkedes.", "ParentalRating": "Parental Rating", "People": "Personer", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Placer favoritkanaler i begyndelsen", "Play": "Afspil", "PlayAllFromHere": "Afspil alt fra her", - "PlayCount": "Play count", "PlayFromBeginning": "Afspil fra begyndelsen", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Afspillet", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.", "PleaseRestartServerName": "Genstart venligst Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vælg venligst mindst to elementer.", - "Premiere": "Premiere", "Premieres": "Premiere", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Producent", "ProductionLocations": "Produktionslokationer", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Konverter automatisk optagelser til streaming-venlige formater med Jellyfin Premiere. Optagelser bliver konverteret on-the-fly til MP4 eller MKV, afhængigt af dine Jellyfin serverindstillinger.", "Quality": "Kvalitet", "QueueAllFromHere": "Set alt her i kø", - "Raised": "Raised", "RecentlyWatched": "Nyligt sete", "Record": "Optag", "RecordSeries": "Optag serie", "RecordingCancelled": "Optagelse annulleret.", "RecordingScheduled": "Optagelse planlagt.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Opdater", "RefreshDialogHelp": "Metadata opdateres alt efter hvilke indstillinger og internet-servicer der er aktiveret i Jellyfin Server-kontrolpanelet.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Opdatering sat i kø", "Reject": "Afvis", "ReleaseDate": "Udgivelsesdato", @@ -541,31 +252,21 @@ "RemoveFromPlaylist": "Fjer fra afspilningsliste", "RemovingFromDevice": "Fjerner fra enhed", "Repeat": "Gentag", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Gentag episoder", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Erstat alle metadata", "ReplaceExistingImages": "Erstat eksisterende billeder", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Genoptag fra {0}", "Retry": "Prøv igen", - "RunAtStartup": "Run at startup", "Runtime": "Afspilningstid", "Saturday": "Lørdag", "Save": "Gem", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Skærmbilleder", "Search": "Søg", "SearchForCollectionInternetMetadata": "Søg på internettet efter billeder og metadata", "SearchForMissingMetadata": "Søg efter manglende metadata", "SearchForSubtitles": "Søg efter undertekster", "SearchResults": "Søgeresultater", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serie annulleret.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Optagning af serie planlagt.", "SeriesSettings": "Serieindstillinger", "SeriesYearToPresent": "{0} - Nuværende", @@ -573,36 +274,16 @@ "ServerNameIsShuttingDown": "Jellyfin Server - {0} lukker ned.", "ServerUpdateNeeded": "Denne Jellyfin server bør opdateres. For at downloade den nyeste version besøg venligst {0}", "Settings": "Indstillinger", - "SettingsSaved": "Settings saved.", "Share": "Del", "ShowIndicatorsFor": "Vis indikatorer for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Bland", "SkipEpisodesAlreadyInMyLibrary": "Optag ikke episoder som allerede findes i mit bibliotek", "SkipEpisodesAlreadyInMyLibraryHelp": "Episoder bliver sammenlignet på sæson og episodenummer, når muligt.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Sortér kanaler efter:", "SortName": "Sorteringsnavn", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studier", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertekster", - "Suggestions": "Suggestions", "Sunday": "Søndag", "Sync": "Synk", "SyncJobItemStatusCancelled": "Annulleret", @@ -614,67 +295,33 @@ "SyncJobItemStatusSynced": "Downloadet", "SyncJobItemStatusSyncedMarkForRemoval": "Fjerner fra enhed", "SyncJobItemStatusTransferring": "Overfører", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Nyd venligst et minuts afspilning. Tak fordi du prøver Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Torsdag", "TrackCount": "{0} numre", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prøv Multi-Valg", "TryMultiSelectMessage": "For at redigere adskillige emner, skal du blot klikke og holde på hvilken som helst plakat og vælge de emner du vil administrere. Prøv det!", "Tuesday": "Tirsdag", - "Uniform": "Uniform", "UnlockGuide": "Oplås guide", - "Unplayed": "Unplayed", "Unrated": "Ingen bedømmelse", "UntilIDelete": "Til jeg sletter", "UntilSpaceNeeded": "Til pladsen er nødvendig", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} album", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} episoder", "ValueGameCount": "{0} spil", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} musikvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spil", "ValueOneItem": "1 emne", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serier", "ValueSongCount": "{0} sange", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Vis album", "ViewArtist": "Vis kunstner", "VoiceInput": "Taleinput", - "Watched": "Watched", "Wednesday": "Onsdag", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Forfatter", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/de.json b/src/bower_components/emby-webcomponents/strings/de.json index 7d1a1acc51..c378a98a40 100644 --- a/src/bower_components/emby-webcomponents/strings/de.json +++ b/src/bower_components/emby-webcomponents/strings/de.json @@ -26,7 +26,6 @@ "AnyLanguage": "Jede Sprache", "Anytime": "Jederzeit", "AroundTime": "Um {0}", - "Art": "Art", "Artists": "Interpreten", "AsManyAsPossible": "So viele wie möglich", "Ascending": "Aufsteigend", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Audio Codec nicht unterstützt", "AudioProfileNotSupported": "Audio Profil nicht unterstützt", "AudioSampleRateNotSupported": "Audio Sample Rate nicht unterstützt", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatisch (basierend auf Spracheinstellung)", "AutomaticallyConvertNewContent": "Konvertiere neue Inhalte automatisch", "AutomaticallyConvertNewContentHelp": "Neue Inhalte in diesem Ordner werden automatisch konveriert.", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "Neu zu diesem Ordner hinzugefügte Inhalte werden automatisch auf das Gerät heruntergeladen.", "Backdrop": "Hintergrund", "Backdrops": "Hintergründe", - "Banner": "Banner", "BestFit": "Beste Übereinstimmung", "BirthLocation": "Geburtsort", "Books": "Bücher", - "Box": "Box", "BoxRear": "Box (Rückseite)", "BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll während der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. Wähle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB/IDX, etc.) sowie bestimmte ASS/SSA-Untertitel einbrennen zu lassen.", "ButtonCancel": "Abbrechen", "ButtonGotIt": "Verstanden", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Eine Minute wiedergeben", "ButtonRestart": "Neustart", "ButtonRestorePreviousPurchase": "Kauf wiederherstellen", @@ -72,9 +67,7 @@ "CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogefühl mit Trailern und eigenen Intros vor dem Hauptfilm.", "CloudSyncFeatureDescription": "Synchronisiere deine Medien in die Cloud für ein Backup, eine Archivierung und Konvertierung.", "Collections": "Sammlungen", - "ColorPrimaries": "Color primaries", "ColorSpace": "Farbraum", - "ColorTransfer": "Color transfer", "CommunityRating": "Community Bewertung", "Composer": "Komponist", "ConfigureDateAdded": "Bestimme in den Bibliotheks-Einstellungen des Jellyfin Server Dashboards, wie das Feld \"Hinzugefügt am\" interpretiert werden soll.", @@ -108,7 +101,6 @@ "DeleteMedia": "Medien löschen", "Depressed": "Gedrückt", "Descending": "Absteigend", - "Desktop": "Desktop", "DirectPlayError": "Fehler bei der direkten Wiedergabe", "DirectPlaying": "Direktes Abspielen", "DirectStreamHelp1": "Das Medium ist mit dem Abspielgerät kompatibel bzgl. Auflösung und Codecs (H.264, AC3, etc.), besitzt jedoch einen inkompatiblen Dateicontainer (.mkv, .avi, .wmv, etc.). Das Video wird in Echtzeit neugepackt bevor es zum Abspielgerät gestreamt wird.", @@ -128,12 +120,10 @@ "DisplayModeHelp": "Bitte wähle den Typ des Bildschirms auf dem Du Jellyfin verwendest.", "DoNotRecord": "Nicht aufnehmen", "Down": "Runter", - "Download": "Download", "DownloadItemLimitHelp": "Optional. Lege die maximale Anzahl der herunterzuladenden Dateien fest.", "Downloaded": "Heruntergeladen", "Downloading": "Lädt herunter", "DownloadingDots": "Lädt herunter...", - "Downloads": "Downloads", "DownloadsValue": "{0} Downloads", "DropShadow": "Schlagschatten", "DvrFeatureDescription": "Plane individuelle Aufnahmen von Live-TV, Serien und mehr mit Jellyfin DVR.", @@ -168,21 +158,15 @@ "ErrorReachingJellyfinConnect": "Fehler bei der Verbindung zum Jellyfin Connect Server. Stelle bitte sicher, dass du über eine aktive Internetverbindung verfügst und versuche es erneut.", "ErrorRemovingJellyfinConnectAccount": "Fehler beim Entfernen des Jellyfin Connect Kontos. Bitte stelle sicher, dass du über eine aktive Internetverbindung verfügst und versuche es erneut.", "ExtraLarge": "Extragroß", - "Extras": "Extras", "Favorite": "Favorit", "Favorites": "Favoriten", "FeatureRequiresJellyfinPremiere": "Dieses Feature benötigt eine aktive Jellyfin Premiere Mitgliedschaft.", - "Features": "Features", "File": "Datei", "Fill": "Ausfüllen", "Filters": "Filter", "Folders": "Verzeichnisse", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Genieße Zugriff auf kostenlose Jellyfin Apps für deine Geräte.", "Friday": "Freitag", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Nach Serien gruppieren", "GroupVersions": "Gruppiere Versionen", "GuestStar": "Gaststar", @@ -284,8 +268,6 @@ "Help": "Hilfe", "Hide": "Verstecke", "HideWatchedContentFromLatestMedia": "Verberge gesehene Inhalte von neuesten Medien.", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Wie hast Du bezahlt?", "IHaveJellyfinPremiere": "Ich besitze Jellyfin Premiere", "IPurchasedThisApp": "Ich habe diese App gekauft", @@ -306,15 +288,12 @@ "LabelAirsAfterSeason": "Ausstrahlungen nach Staffel:", "LabelAirsBeforeEpisode": "Ausstrahlungen vor Episode:", "LabelAirsBeforeSeason": "Ausstrahlungen vor Staffel:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Alben Interpreten:", "LabelArtists": "Interpreten:", "LabelArtistsHelp": "Trenne mehrere Einträge durch ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Bevorzugte Audiosprache:", "LabelBirthDate": "Geburtsdatum:", "LabelBirthYear": "Geburtsjahr:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Untertitel einbrennen:", "LabelChannels": "Kanäle:", "LabelCollection": "Sammlung:", @@ -336,7 +315,6 @@ "LabelDisplayOrder": "Anzeigereihenfolge:", "LabelDropImageHere": "Fotos hierher ziehen oder klicken im zu browsen.", "LabelDropShadow": "Schlagschatten:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-Mail Adresse:", "LabelEndDate": "Endzeit:", "LabelEpisodeNumber": "Episodennummer:", @@ -352,7 +330,6 @@ "LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zukünftige Änderungen zu verhindern", "LabelMaxChromecastBitrate": "Max Chromcast Datenrate:", "LabelMetadataDownloadLanguage": "Bevorzugte Sprache für Downloads:", - "LabelName": "Name:", "LabelNumber": "Nummer:", "LabelOriginalAspectRatio": "Original Seitenverhältnis:", "LabelOriginalTitle": "Original Titel:", @@ -378,7 +355,6 @@ "LabelSelectFolderGroups": "Gruppiere Inhalte von folgenden Verzeichnissen automatisch zu Ansichten wie beispielsweise Filme, Musik und TV:", "LabelSelectFolderGroupsHelp": "Verzeichnisse die nicht markiert sind werden alleine mit ihren eigenen Ansichten angezeigt.", "LabelShortOverview": "Kurzübersicht:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Sprungweite rückwärts:", "LabelSkipForwardLength": "Sprungweite vorwärts:", "LabelSortBy": "Sortiert nach:", @@ -387,7 +363,6 @@ "LabelSoundEffects": "Soundeffekte:", "LabelSource": "Quelle:", "LabelStartWhenPossible": "Starte wenn möglich:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stoppe wenn möglich", "LabelSubtitlePlaybackMode": "Untertitelmodus:", "LabelSubtitles": "Untertitel:", @@ -395,17 +370,12 @@ "LabelSyncNoTargetsHelp": "Es sieht so aus als würdest du aktuell keine Apps verwenden, die Offline-Downloads unterstützen.", "LabelSyncTo": "Synchronisiere mit:", "LabelTVHomeScreen": "TV-Mode Startseite", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Hintergrundfarbe des Textes:", "LabelTextColor": "Textfarbe:", "LabelTextSize": "Textgröße", - "LabelTheme": "Theme:", "LabelTitle": "Titel:", "LabelTrackNumber": "Stück Nummer:", "LabelType": "Typ:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Hintergrundfarbe des Textes:", "LabelYear": "Jahr:", "Large": "Groß", @@ -413,14 +383,10 @@ "LearnHowYouCanContribute": "Erfahre, wie du unterstützen kannst.", "LearnMore": "Erfahre mehr", "Like": "Mag ich", - "LinksValue": "Links: {0}", "List": "Liste", - "Live": "Live", "LiveBroadcasts": "Liveübertragungen", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "Streame Live TV zu jeder Jellyfin App mit einem kompatiblen TV Tuner , der auf deinem Jellyfin Server installiert ist.", "LiveTvRequiresUnlock": "Live TV benötigt eine aktive Jellyfin Premiere Mitgliedschaft.", - "Logo": "Logo", "ManageRecording": "Aufnahme verwalten", "MarkPlayed": "Markiere \"als gesehen\"", "MarkUnplayed": "Markiere \"als ungesehen\"", @@ -434,8 +400,6 @@ "MessageDownloadQueued": "Download eingereiht.", "MessageFileReadError": "Es gab einen Fehler beim Lesen der Datei. Bitte versuche es erneut.", "MessageIfYouBlockedVoice": "Wenn du die Sprachsteuerung für die App nicht erlaubt hast, musst du dies vor einem erneuten Versuch ändern.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Eine Email wurde an {0} mit einer Einladung zur Anmeldung an Jellyfin gesendet.", "MessageInvitationSentToUser": "Eine E-Mail mit der Einladung zum Sharing ist an {0} geschickt worden.", "MessageItemSaved": "Element gespeichert", @@ -461,7 +425,6 @@ "MoveRight": "Nach rechts bewegen", "Movies": "Filme", "MySubtitles": "Meine Untertitel", - "Name": "Name", "NewCollection": "Neue Collection", "NewCollectionHelp": "Sammlungen ermöglichen personallisierte Gruppen von Filmen oder anderen Medien.", "NewCollectionNameExample": "Beispiel: Star Wars Collection", @@ -475,7 +438,6 @@ "NoSubtitles": "Keine Untertitel", "NoSubtitlesHelp": "Untertitel werden standardmäßig nicht geladen. Sie können aber während der Wiedergabe manuell aktiviert werden.", "None": "Keines", - "Normal": "Normal", "Off": "Aus", "OneChannel": "Ein Kanal", "OnlyForcedSubtitles": "Nur erzwungene Untertitel", @@ -483,7 +445,6 @@ "OnlyImageFormats": "Nur Bildformate (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Öffnen", "OptionNew": "Neu...", - "Original": "Original", "OriginalAirDateValue": "Erstausstrahlung: {0}", "Overview": "Übersicht", "PackageInstallCancelled": "{0} Installation abgebrochen", @@ -503,7 +464,6 @@ "PlaybackErrorNoCompatibleStream": "Derzeit sind keine kompatiblen Stream verfügbar. Bitte versuche es später nochmal oder kontaktiere deinen Systemadministrator für weitere Informationen.", "PlaybackErrorNotAllowed": "Die verfügst derzeit über keine Berechtigung um diesen Inhalt abzuspielen. Bitte kontaktiere deinen Systemadministrator für weitere Informationen.", "PlaybackErrorPlaceHolder": "Bitte lege die Disc ein um das Video abzuspielen.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Um die Wiedergabeeinstellungen zu ändern, stoppen Sie die Wiedergabe und klicken Sie auf Ihr Benutzer-Icon in der oberen rechten Ecke der App.", "Played": "Gesehen", "Playlists": "Wiedergabelisten", @@ -511,7 +471,6 @@ "PleaseRestartServerName": "Bitte starte Jellyfin Server - {0} neu.", "PleaseSelectDeviceToSyncTo": "Bitte wähle ein Download-Zielgerät.", "PleaseSelectTwoItems": "Bitte wähle mindestens zwei Optionen aus.", - "Premiere": "Premiere", "Premieres": "Premieren", "Previous": "Vorheriges", "Primary": "Primär", @@ -557,7 +516,6 @@ "ScanForNewAndUpdatedFiles": "Scanne nach neuen und aktualisierten Dateien", "Schedule": "Zeitplan", "Screenshot": "Bildschirmfoto", - "Screenshots": "Screenshots", "Search": "Suche", "SearchForCollectionInternetMetadata": "Suche im Internet nach Bildmaterial und Metadaten", "SearchForMissingMetadata": "Suche nach fehlenden Metadaten", @@ -585,9 +543,7 @@ "Small": "Klein", "SmallCaps": "Kapitälchen", "Smaller": "Kleiner", - "Smart": "Smart", "SmartSubtitlesHelp": "Untertitel, die den Spracheinstellungen entsprechen, werden nur bei einer Tonspur in fremder Sprache heruntergeladen.", - "Songs": "Songs", "Sort": "Sortieren", "SortByValue": "Sortieren nach {0}", "SortChannelsBy": "Sortiere Kanäle nach:", @@ -595,11 +551,9 @@ "Sports": "Sport", "StatsForNerds": "Statistiken für Tüftler", "StopRecording": "Aufnahme stoppen", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Diese Einstellungen werden auch auf jede Chromecast-Wiedergabe angewendet, die von diesem Gerät gestartet wird.", "SubtitleAppearanceSettingsDisclaimer": "Diese Einstellungen werden nicht auf grafische Untertitel (PGS, DVD, etc.) oder Untertitel mit eingebettetem Style-Elementen (ASS/SSA) angewendet.", "SubtitleCodecNotSupported": "Untertitelformat nicht unterstützt", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Um das Aussehen der Untertitel und die Spracheinstellungen zu ändern, stoppen Sie die Wiedergabe und klicken Sie auf Ihr Benutzer-Icon in der oberen rechten Ecke der App.", "Subtitles": "Untertitel", "Suggestions": "Empfehlungen", @@ -617,20 +571,14 @@ "SyncUnwatchedVideosOnly": "Lade nur ungesehene Videos herunter", "SyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden heruntergeladen. Videos werden entfernt sobald diese auf dem Gerät angeschaut wurden.", "SyncingDots": "Synchronisieren...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Nutzungsbedingungen", "ThankYouForTryingEnjoyOneMinute": "Genieße eine Minute Wiedergabe. Danke, dass du Jellyfin ausprobierst.", "ThemeSongs": "Titelsongs", "ThemeVideos": "Titelvideos", "TheseSettingsAffectSubtitlesOnThisDevice": "Diese Einstellungen beeinflussen Untertitel auf diesem Gerät", - "Thumb": "Thumb", "Thursday": "Donnerstag", "TrackCount": "{0} Titel", - "Trailer": "Trailer", "Trailers": "Trailer", - "Transcoding": "Transcoding", "TryMultiSelect": "Versuche Mehrfachauswahl", "TryMultiSelectMessage": "Für eine Mehrfachauswahl klicke und halte ein Poster. Wähle die Einträge die du bearbeiten möchten. Versuch es!", "Tuesday": "Dienstag", @@ -643,7 +591,6 @@ "Up": "Hoch", "Upload": "Hochladen", "ValueAlbumCount": "{0} Alben", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} Episoden", "ValueGameCount": "{0} Spiele", "ValueMinutes": "{0} Minuten", @@ -660,14 +607,12 @@ "ValueSeconds": "{0} Sekunden", "ValueSeriesCount": "{0} Serien", "ValueSongCount": "{0} Lieder", - "ValueSpecialEpisodeName": "Special - {0}", "Vertical": "Vertikal", "VideoBitDepthNotSupported": "Videobittiefe nicht unterstützt", "VideoCodecNotSupported": "Video Codec nicht unterstützt", "VideoFramerateNotSupported": "Videoframerate nicht unterstützt", "VideoLevelNotSupported": "Video Level nicht unterstützt", "VideoProfileNotSupported": "Videoprofil nicht unterstützt", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Video Auflösung nicht unterstützt", "ViewAlbum": "Zeige Album", "ViewArtist": "Zeige Darsteller", diff --git a/src/bower_components/emby-webcomponents/strings/el.json b/src/bower_components/emby-webcomponents/strings/el.json index 2997301643..7c9536a419 100644 --- a/src/bower_components/emby-webcomponents/strings/el.json +++ b/src/bower_components/emby-webcomponents/strings/el.json @@ -51,11 +51,9 @@ "BirthLocation": "Τόπος γέννησης:", "Books": "Βιβλία", "Box": "Κουτί", - "BoxRear": "Box (rear)", "BurnSubtitlesHelp": "Καθορίζει αν ο διακομιστής πρέπει να εγγράψει στους υπότιτλους κατά τη μετατροπή βίντεο ανάλογα με τη μορφή των υπότιτλων. Η αποφυγή της εγγραφής στους υπότιτλους θα βελτιώσει την απόδοση του διακομιστή. Επιλέξτε Αυτόματα για να εγγράψετε μορφές βασισμένες σε εικόνες (π.χ. VOBSUB, PGS, SUB / IDX κ.λπ.) καθώς και ορισμένους υπότιτλους ASS / SSA", "ButtonCancel": "Ακύρωση ", "ButtonGotIt": "Το κατάλαβα", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Αναπαραγωγή για ένα λεπτό", "ButtonRestart": "Επανεκκίνηση", "ButtonRestorePreviousPurchase": "Επαναφορά αγοράς", @@ -72,7 +70,6 @@ "CinemaModeFeatureDescription": "Η λειτουργία Κινηματογράφου σάς προσφέρει την πραγματική κινηματογραφική εμπειρία με ρυμουλκούμενα και προσαρμοσμένες intros πριν από τη λειτουργία.", "CloudSyncFeatureDescription": "Συγχρονίστε τα πολυμέσα σας στο cloud για εύκολη δημιουργία αντιγράφων ασφαλείας, αρχειοθέτηση και μετατροπή.", "Collections": "Συλλογές", - "ColorPrimaries": "Color primaries", "ColorSpace": "Χρωματικός χώρος", "ColorTransfer": "Μεταφορά χρώματος", "CommunityRating": "Βαθμολογία Κοινότητας", @@ -303,9 +300,6 @@ "Label3DFormat": "Τρισδιάστατη φόρμα", "LabelAirDays": "Ημέρες κυκλοφορίας:", "LabelAirTime": "Ώρα κυκλοφορίας", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Άλμπουμ", "LabelAlbumArtists": "Άλμπουμ Καλλιτέχνες", "LabelArtists": "Καλλιτέχνες:", @@ -314,7 +308,6 @@ "LabelAudioLanguagePreference": "Προτιμώμενη γλώσσα ήχου:", "LabelBirthDate": "Ημερομηνία Γενεθλίων:", "LabelBirthYear": "Έτος Γέννησης:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Εγγραφή υπότιτλων:", "LabelChannels": "Κανάλια:", "LabelCollection": "Συλλογή:", @@ -336,7 +329,6 @@ "LabelDisplayOrder": "Σειρά εμφάνισης:", "LabelDropImageHere": "Κάντε κλικ εδώ, ή κάντε κλικ για να περιηγηθείτε.", "LabelDropShadow": "Σκίαση:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Διεύθυνση E-mail", "LabelEndDate": "Ημερομηνία Λήξης:", "LabelEpisodeNumber": "Νούμερο Επεισοδίου:", @@ -378,7 +370,6 @@ "LabelSelectFolderGroups": "Αυτόματη ομαδοποίηση περιεχομένου από τους ακόλουθους φακέλους σε προβολές όπως ταινίες, μουσική και τηλεόραση:", "LabelSelectFolderGroupsHelp": "Οι φάκελοι που δεν έχουν επιλεγεί θα εμφανίζονται από μόνοι τους στη δική τους άποψη.", "LabelShortOverview": "Σύντομη Επισκόπηση", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Παράλειψη πίσω μήκους:", "LabelSkipForwardLength": "Παράλειψη προς τα εμπρός:", "LabelSortBy": "Ταξινόμηση κατά:", @@ -434,8 +425,6 @@ "MessageDownloadQueued": "Η λήψη προγραμματίστηκε.", "MessageFileReadError": "Παρουσιάστηκε σφάλμα κατά την ανάγνωση του αρχείου. Παρακαλώ προσπάθησε ξανά.", "MessageIfYouBlockedVoice": "Αν αρνηθήκατε τη φωνητική πρόσβαση στην εφαρμογή, θα χρειαστεί να επαναρυθμίσετε τη ρύθμιση πριν δοκιμάσετε ξανά.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Έγινε αποστολή ενός μηνύματος ηλεκτρονικού ταχυδρομείου στο {0}, καλώντας τα να εγγραφούν στο Jellyfin.", "MessageInvitationSentToUser": "Ένα μήνυμα ηλεκτρονικού ταχυδρομείου έχει σταλεί στο {0}, καλώντας τα να αποδεχθούν την πρόσκληση κοινής χρήσης.", "MessageItemSaved": "Το στοιχείο αποθηκεύτηκε", @@ -503,7 +492,6 @@ "PlaybackErrorNoCompatibleStream": "Δεν υπάρχουν επί του παρόντος διαθέσιμες συμβατές ροές. Δοκιμάστε ξανά αργότερα ή επικοινωνήστε με τον διαχειριστή του συστήματος για λεπτομέρειες.", "PlaybackErrorNotAllowed": "Δεν είστε επί του παρόντος εξουσιοδοτημένος να αναπαράγετε αυτό το περιεχόμενο. Επικοινωνήστε με το διαχειριστή του συστήματός σας για λεπτομέρειες.", "PlaybackErrorPlaceHolder": "Εισαγάγετε τον δίσκο για να παίξετε αυτό το βίντεο.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Για να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις αναπαραγωγής, σταματήστε την αναπαραγωγή βίντεο και στη συνέχεια, κάντε κλικ στο εικονίδιο χρήστη στην επάνω δεξιά ενότητα της εφαρμογής.", "Played": "Έγινε Αναπαραγωγή", "Playlists": "Λίστες αναπαραγωγής", @@ -565,7 +553,6 @@ "SearchResults": "Αποτελέσματα αναζήτησης", "SecondaryAudioNotSupported": "Η εναλλαγή της γραμμής ήχου δεν υποστηρίζεται", "SeriesCancelled": "Η Σειρά ακυρώθηκε.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Προγραμματισμός εγγραφών Σειρών", "SeriesSettings": "Ρυθμίσεις Σειρών", "SeriesYearToPresent": "{0} - εμφανίστηκε", @@ -599,7 +586,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Αυτές οι ρυθμίσεις ισχύουν επίσης για οποιαδήποτε αναπαραγωγή του Chromecast που ξεκίνησε από αυτήν τη συσκευή.", "SubtitleAppearanceSettingsDisclaimer": "Αυτές οι ρυθμίσεις δεν θα ισχύουν για γραφικούς υποτίτλους (PGS, DVD, κ.λπ.) ή για υπότιτλους που έχουν ενσωματωμένο το δικό τους στυλ (ASS / SSA).", "SubtitleCodecNotSupported": "Η μορφή υποτίτλων δεν υποστηρίζεται", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Για να ρυθμίσετε την προεπιλεγμένη εμφάνιση υπότιτλων και τις ρυθμίσεις γλώσσας, σταματήστε την αναπαραγωγή βίντεο και, στη συνέχεια, κάντε κλικ στο εικονίδιο χρήστη στην επάνω δεξιά ενότητα της εφαρμογής.", "Subtitles": "Υπότιτλοι", "Suggestions": "Προτάσεις", @@ -625,7 +611,6 @@ "ThemeSongs": "Θεματικά τραγούδια", "ThemeVideos": "Θεματικά βίντεο", "TheseSettingsAffectSubtitlesOnThisDevice": "Αυτές οι ρυθμίσεις επηρεάζουν τους υπότιτλους αυτής της συσκευής", - "Thumb": "Thumb", "Thursday": "Πέμπτη", "TrackCount": "{0} κομμάτια", "Trailer": "Τρέϊλερ", @@ -667,7 +652,6 @@ "VideoFramerateNotSupported": "Το βίντεο καρέ δεν υποστηρίζεται", "VideoLevelNotSupported": "Το επίπεδο βίντεο δεν υποστηρίζεται", "VideoProfileNotSupported": "Το προφίλ βίντεο δεν υποστηρίζεται", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Η ανάλυση βίντεο δεν υποστηρίζεται", "ViewAlbum": "Προβολή άλμπουμ", "ViewArtist": "Εμφάνιση Καλλιτέχνη", diff --git a/src/bower_components/emby-webcomponents/strings/es-ar.json b/src/bower_components/emby-webcomponents/strings/es-ar.json index 4f5b3022c6..cd95668bd1 100644 --- a/src/bower_components/emby-webcomponents/strings/es-ar.json +++ b/src/bower_components/emby-webcomponents/strings/es-ar.json @@ -1,680 +1,4 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Ejemplo: Colección de Star Wars", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/es-mx.json b/src/bower_components/emby-webcomponents/strings/es-mx.json index 49aaf8b50f..7a1328a146 100644 --- a/src/bower_components/emby-webcomponents/strings/es-mx.json +++ b/src/bower_components/emby-webcomponents/strings/es-mx.json @@ -2,7 +2,6 @@ "Absolute": "Absoluto", "Accept": "Aceptar", "AccessRestrictedTryAgainLater": "El acceso esta restringido en este momento. Por favor intente de nuevo mas tarde.", - "Actor": "Actor", "Add": "Agregar", "AddToCollection": "Agregar a Colección.", "AddToPlayQueue": "Agregar a la cola de reproduccion", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Codec de audio no soportado", "AudioProfileNotSupported": "Perfil de audio no soportado", "AudioSampleRateNotSupported": "Muestreo (sample) de audio no soportado", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basado en la configuración del lenguaje)", "AutomaticallyConvertNewContent": "Convertir contenidos nuevos automáticamente", "AutomaticallyConvertNewContentHelp": "Los contenidos nuevos agregados a esta carpeta serán convertidos automáticamente.", @@ -55,7 +53,6 @@ "BurnSubtitlesHelp": "Determina si el servidor debería quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en imágenes (por ejemplo VOBSUB, PGS, SUB/IDX, etc.) así como ciertos subtitulos ASS/SSA", "ButtonCancel": "Cancelar", "ButtonGotIt": "Hecho", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproducir un minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Restaurar Compra", @@ -114,8 +111,6 @@ "DirectStreamHelp1": "El medio es compatible con el dispositivo en cuanto a la resolución y tipo de medio (H.264, AC3, etc.), pero es un es un contenedor de archivo incompatible (.mkv, .avi, .wmv, etc.). El video sera re empaquetado al vuelo antes de transmitirlo al dispositivo.", "DirectStreamHelp2": "La Transmisión Directa de un archivo usa muy poco poder de procesamiento sin ninguna perdida en la calidad de video.", "DirectStreaming": "Transmisión Directa", - "Director": "Director", - "DirectorValue": "Director: {0}", "DirectorsValue": "Directores: {0}", "Disc": "DIsco", "Disconnect": "Desconectar", @@ -158,7 +153,6 @@ "Ended": "Finalizado", "EndsAtValue": "Termina a las {0}", "Episodes": "Episodios", - "Error": "Error", "ErrorAddingGuestAccount1": "Hubo un error agregando la cuenta de Jellyfin Connect. ¿Su invitado ya ha creado una cuenta de Jellyfin Connect? Puede registrarse en {0}.", "ErrorAddingGuestAccount2": "Si continua teniendo problemas, escriba un correo electrónico a {0}, e incluya su dirección de correo electrónico ademas de la de su invitado.", "ErrorAddingJellyfinConnectAccount1": "Hubo un error agregando la cuenta de Jellyfin Connect. ¿Ya ha creado una cuenta de Jellyfin? Registrese en {0}.", @@ -168,7 +162,6 @@ "ErrorReachingJellyfinConnect": "Hubo un error al tratar de contactar el servidor de Jellyfin Connect. Por favor asegúrese de que tiene una conexión activa de internet e intente de nuevo.", "ErrorRemovingJellyfinConnectAccount": "Hubo un error retirando la cuenta de Jellyfin Connect. Por favor asegúrese que su conexión a internet esta activa e intente de nuevo.", "ExtraLarge": "Extra grande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Esta característica requiere de una suscripción activa de Jellyfin Premiere.", @@ -285,7 +278,6 @@ "Hide": "Ocultar", "HideWatchedContentFromLatestMedia": "Ocultar contenido ya visto de Agregadas Recientemente", "Home": "Inicio", - "Horizontal": "Horizontal", "HowDidYouPay": "¿Cual sera su forma de pago?", "IHaveJellyfinPremiere": "Ya cuento con Jellyfin Premiere", "IPurchasedThisApp": "Ya he comprado esta app", @@ -310,7 +302,6 @@ "LabelAlbumArtists": "Artistas del álbum:", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar múltiples empleando:", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Idioma preferido de audio:", "LabelBirthDate": "Fecha de Nacimiento:", "LabelBirthYear": "Año de nacimiento:", @@ -336,7 +327,6 @@ "LabelDisplayOrder": "Orden para mostrar:", "LabelDropImageHere": "Arrastre la imagen aquí, o de clic para navegar.", "LabelDropShadow": "Mostrar sombra:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Dirección de correo:", "LabelEndDate": "Fecha de Fin:", "LabelEpisodeNumber": "Episodio numero:", @@ -404,7 +394,6 @@ "LabelTrackNumber": "Número de Pista:", "LabelType": "Tipo:", "LabelVersion": "Versión:", - "LabelVideo": "Video:", "LabelWebsite": "Sitio web:", "LabelWindowBackgroundColor": "Color de fondo para el texto:", "LabelYear": "Año:", @@ -434,8 +423,6 @@ "MessageDownloadQueued": "Descargar cola.", "MessageFileReadError": "Hubo un error al leer el archivo. Por favor intente de nuevo.", "MessageIfYouBlockedVoice": "Si ha negado el acceso a la voz a la aplicación necesitara reconfigurar antes de intentarlo de nuevo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un correo electrónico se ha enviado a {0} invitándolos a registrarse en Jellyfin.", "MessageInvitationSentToUser": "Se ha enviado un correo electrónico a {0}, invitándolo a aceptar tu invitación para compartir.", "MessageItemSaved": "Ítem guardado.", @@ -469,13 +456,11 @@ "NewEpisodesOnly": "Solo episodios nuevos", "News": "Noticias", "Next": "Siguiente", - "No": "No", "NoItemsFound": "No se encontraron ítems.", "NoSubtitleSearchResultsFound": "No se encontraron resultados.", "NoSubtitles": "Sin Subtitulos", "NoSubtitlesHelp": "Los subtítulos no serán cargados por defecto. Pero pueden ser activados manualmente durante la reproducción.", "None": "Ninguno", - "Normal": "Normal", "Off": "Apagar", "OneChannel": "Un canal", "OnlyForcedSubtitles": "Únicamente subtítulos forzados", @@ -483,7 +468,6 @@ "OnlyImageFormats": "Solo formato de imagen (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nuevo...", - "Original": "Original", "OriginalAirDateValue": "Fecha de emisión original: {0}", "Overview": "Sinopsis", "PackageInstallCancelled": "{0} instalación cancelada.", @@ -617,7 +601,6 @@ "SyncUnwatchedVideosOnly": "Descargar únicamente videos no vistos", "SyncUnwatchedVideosOnlyHelp": "Solamente los videos aún no vistos serán descargados, se eliminarán los videos del dispositivo conforme éstos sean vistos.", "SyncingDots": "Sincronizando...", - "TV": "TV", "Tags": "Etiquetas", "TagsValue": "Etiquetas: {0}", "TermsOfUse": "Términos de uso", @@ -628,7 +611,6 @@ "Thumb": "Miniatura", "Thursday": "Jueves", "TrackCount": "{0} Pistas", - "Trailer": "Trailer", "Trailers": "Tráilers", "Transcoding": "Transcodificando", "TryMultiSelect": "Intente Multi-Selección", @@ -646,7 +628,6 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodios", "ValueGameCount": "{0} juegos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} videos musicales", "ValueOneAlbum": "1 álbum", @@ -658,10 +639,8 @@ "ValueOneSeries": "1 serie", "ValueOneSong": "1 canción", "ValueSeconds": "{0} segundos", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} canciones", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidad de bits de Video no soportado", "VideoCodecNotSupported": "Codec de video no soportado", "VideoFramerateNotSupported": "Tasa de Cuadros por Segundo del video no soportado", diff --git a/src/bower_components/emby-webcomponents/strings/es.json b/src/bower_components/emby-webcomponents/strings/es.json index 86cae6abf1..89c566a1db 100644 --- a/src/bower_components/emby-webcomponents/strings/es.json +++ b/src/bower_components/emby-webcomponents/strings/es.json @@ -1,61 +1,38 @@ { - "Absolute": "Absolute", "Accept": "Aceptar", "AccessRestrictedTryAgainLater": "El acceso está restringido actualmente. Por favor inténtalo más tarde.", - "Actor": "Actor", "Add": "Añadir", "AddToCollection": "Añadir a la colección", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Añadir a la lista de reproducción", "AddedOnValue": "Añadido {0}", "Advanced": "Avanzado", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Álbumes", "All": "Todo", "AllChannels": "Todos los canales", "AllComplexFormats": "Todos los formatos complejos (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Todos los episodios", "AllLanguages": "Todos los idiomas", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Mostrar siempre subtítulos", "AlwaysPlaySubtitlesHelp": "Los subtítulos que concuerden con la preferencia de idioma se cargarán independientemente del idioma de audio.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", "Art": "Arte", "Artists": "Artistas", "AsManyAsPossible": "Tantos como sea posible", - "Ascending": "Ascending", "AspectRatio": "Relación de aspecto", "AttributeNew": "Nuevo", "AudioBitDepthNotSupported": "Profundidad de bits de audio no soportada", - "AudioBitrateNotSupported": "Audio bitrate not supported", "AudioChannelsNotSupported": "Canales de audio no soportados", "AudioCodecNotSupported": "Codec de audio no soportado", "AudioProfileNotSupported": "Perfil de audio no soportado", "AudioSampleRateNotSupported": "Frecuencia de muestreo de audio no soportada", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Descargar automáticamente contenido nuevo", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", "Backdrop": "Imagen de fondo", "Backdrops": "Imágenes de fondo", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Lugar de nacimiento", "Books": "Libros", "Box": "Caja", "BoxRear": "Caja (trasera)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", "ButtonGotIt": "Lo tengo", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproducir un minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Recuperar compra", @@ -72,10 +49,6 @@ "CinemaModeFeatureDescription": "El Modo Cine te da la verdadera experiencia de cine con tráilers e intros personalizadas antes de la función principal.", "CloudSyncFeatureDescription": "Sincroniza tus medios en la nube para una copia de seguridad, archivado y conversión fácil.", "Collections": "Colecciones", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", "ConfigureDateAdded": "Configura como la fecha añadida se determina en el Panel de Control del servidor Jellyfin en los ajustes de la biblioteca.", "ConfirmDeleteImage": "Borrar imagen", @@ -85,105 +58,56 @@ "ConfirmEndPlayerSession": "¿Quieres cerrar Jellyfin en el dispositivo?", "ConfirmRemoveDownload": "¿Quieres eliminar la descarga?", "Connect": "Conectar", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Contenedor no soportado", "Continue": "Continuar", "ContinueInSecondsValue": "Continuar en {0} segundos", - "ContinueWatching": "Continue watching", "Continuing": "Continuando", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Países", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Días", "Default": "Por defecto", "DefaultErrorMessage": "Ha habido un error procesando la solicitud. Por favor inténtalo más tarde.", "DefaultSubtitlesHelp": "Los subtítulos se activan en función de los ajustes por defecto y etiquetas en los metadatos integrados. Los ajustes de idioma se tienen en cuenta cuando hay varias opciones disponibles.", "Delete": "Borrar", "DeleteMedia": "Eliminar medios", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Escritorio", - "DirectPlayError": "Direct play error", "DirectPlaying": "Reproducción directa", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", "DirectStreaming": "Streaming directo", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "Disco", "Disconnect": "Desconectar", "Dislike": "No me gusta", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "DisplayModeHelp": "Seleccione el tipo de pantalla que está ejecutando Jellyfin.", "DoNotRecord": "No grabar", "Down": "Abajo", "Download": "Descargar", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Descargado", "Downloading": "Descargando", "DownloadingDots": "Descargando", "Downloads": "Descargas", "DownloadsValue": "Descargas: {0}", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Editar", "EditImages": "Editar imágenes", - "EditMetadata": "Edit metadata", "EditSubtitles": "Editar subtítulos", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Activar modo cine", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Activar mirroring de la pantalla", "EnableExternalVideoPlayers": "Activar reproductores externos", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", "EnableNextVideoInfoOverlay": "Activar la información del siguiente video durante la reproducción", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "EnableThemeVideos": "Habilitar temas videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Finalizado", "EndsAtValue": "Termina a las {0}", "Episodes": "Episodios", - "Error": "Error", "ErrorAddingGuestAccount1": "Se ha producido un error al agregar la cuenta Jellyfin Connect. ¿Ha creado su invitado una cuenta de Jellyfin? Pueden registrarse en {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", "ErrorAddingJellyfinConnectAccount1": "Ha habido un error añadiendo la cuenta de Jellyfin Connect. ¿Te has creado una cuenta de Jellyfin primero? Regístrate en {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", "ErrorReachingJellyfinConnect": "Ha habido un error accediendo al servidor Jellyfin Connect. Por favor, asegúrate de que tienes conexión a internet e inténtalo de nuevo.", "ErrorRemovingJellyfinConnectAccount": "Ha habido un error quitando la cuenta de Jellyfin Connect. Por favor asegúrate de que tienes una conexión a internet activa e inténtalo otra vez.", "ExtraLarge": "Extragrande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Esta característica necesita una suscripción a Jellyfin Premiere.", - "Features": "Features", "File": "Archivo", "Fill": "Llenar", - "Filters": "Filters", - "Folders": "Folders", "FormatValue": "Formato: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Viernes", - "GenreValue": "Genre: {0}", "Genres": "Géneros", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Agrupar versiones", "GuestStar": "Estrella invitada", "GuestUserNotFound": "Usuario no encontrado. Asegúrese de que el nombre es correcto y vuelva a intentarlo o intente ingresar su dirección de correo electrónico.", @@ -193,9 +117,7 @@ "HeaderAddToCollection": "Agregar a la colección", "HeaderAddToPlaylist": "Añadir a la lista", "HeaderAddUpdateImage": "Añadir/Actualizar imagen", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "¿Ya has pagado?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audiolibros", "HeaderAudioSettings": "Ajustes de audio", "HeaderBecomeProjectSupporter": "Consigue Jellyfin Premiere", @@ -207,8 +129,6 @@ "HeaderConfirmRecordingCancellation": "Confirmar la cancelación de la grabación", "HeaderContinueListening": "Continuar escuchando", "HeaderContinueWatching": "Continuar viendo", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Borrar elemento", "HeaderDeleteItems": "Borrar ítems", "HeaderDisplaySettings": "Opciones de pantalla", @@ -217,16 +137,6 @@ "HeaderEnabledFields": "Campos activados", "HeaderEnabledFieldsHelp": "Desmarca un campo para bloquearlo y evitar que se cambie su contenido.", "HeaderExternalIds": "Ids externos:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Apps de Jellyfin gratuitas", "HeaderHomeScreen": "Pantalla de inicio", "HeaderIdentifyItemHelp": "Asigna uno o más criterios de búsqueda. Quita criterios para aumentar el número de resultados de búsqueda", @@ -244,7 +154,6 @@ "HeaderLibraryFolders": "Carpetas de la Biblioteca", "HeaderLibraryOrder": "Orden de la Biblioteca", "HeaderMetadataSettings": "Ajustes de metadatos", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Mi dispositivo", "HeaderMyMedia": "Mis Contenidos", "HeaderMyMediaSmall": "Mis Contenidos (pequeño)", @@ -255,43 +164,34 @@ "HeaderOfflineDownloads": "Medios fuera de línea", "HeaderOfflineDownloadsDescription": "Descargue los medios a sus dispositivos para un uso sin conexión.", "HeaderOnNow": "Transmitiendo Ahora", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Reproducir mis contenidos", "HeaderPlayOn": "Reproducir en", "HeaderPlaybackError": "Error de reproducción", "HeaderRecordingOptions": "Ajustes de grabación", "HeaderRemoteControl": "Control remoto", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Di algo como...", "HeaderSecondsValue": "{0} segundos", "HeaderSelectDate": "Seleccionar Fecha", "HeaderSeriesOptions": "Opciones de Series", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Información del episodio especial", "HeaderStartNow": "Empezar ahora", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Apariencia de los subtítulos", "HeaderSubtitleSettings": "Ajustes de subtítulos", "HeaderSyncRequiresSub": "La descarga requiere de una suscripción activa de Jellyfin Premiere.", "HeaderTermsOfPurchase": "Términos de compra", "HeaderTryPlayback": "Reproducción de prueba", - "HeaderUnlockFeature": "Unlock Feature", "HeaderUploadImage": "Subir imagen", "HeaderVideoQuality": "Calidad de Video", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperando a la red Wifi", "HeaderYouSaid": "Dijiste...", "Help": "Ayuda", "Hide": "Esconder", "HideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios más recientes", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "¿Cómo has pagado?", "IHaveJellyfinPremiere": "Tengo Jellyfin Premiere", "IPurchasedThisApp": "He comprado esta aplicación", "Identify": "Identificar", "Images": "Imágenes", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instalando {0}", "InstantMix": "Mix instantáneo", "InterlacedVideoNotSupported": "Entrelazamiento de video no soportado", @@ -310,38 +210,28 @@ "LabelAlbumArtists": "Artistas de los álbumes", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar multiples usando ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Idioma de audio preferido", "LabelBirthDate": "Fecha de nacimiento:", "LabelBirthYear": "Año de nacimiento:", "LabelBitrateMbps": "Tasa de bits (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Canales", "LabelCollection": "Colección:", "LabelCommunityRating": "Puntuación de la comunidad", "LabelContentType": "Tipo de contenido:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Valoración de la crítica:", "LabelCustomRating": "Valoración pesonalizada:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Fecha añadido:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Fecha de muerte:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Número de disco:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelDisplayMode": "Modo de visualización:", "LabelDisplayOrder": "Mostrar orden:", "LabelDropImageHere": "Soltar imagen aquí, o pulsar para navegar.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} id:", "LabelEmailAddress": "Dirección de correo", "LabelEndDate": "Fecha de fin:", "LabelEpisodeNumber": "Episodio número:", "LabelFont": "Fuente:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Sección de la pantalla de inicio {0}:", "LabelImageType": "Tipo de imagen:", "LabelInternetQuality": "Calidad en internet:", @@ -357,11 +247,9 @@ "LabelOriginalAspectRatio": "Relación de aspecto original:", "LabelOriginalTitle": "Título original", "LabelOverview": "Resumen:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Clasificación parental:", "LabelPath": "Ruta:", "LabelPersonRole": "Rol:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Lugar de nacimiento:", "LabelPlayDefaultAudioTrack": "Reproducir pista de audio predeterminado, independientemente del idioma", "LabelPlaylist": "Lista:", @@ -378,54 +266,35 @@ "LabelSelectFolderGroups": "Agrupar contenido automáticamente desde las siguientes carpetas en vistas como Películas, Música y Series:", "LabelSelectFolderGroupsHelp": "Las carpetas sin seleccionar se mostrarán ellas mismas en su propia vista.", "LabelShortOverview": "Resumen corto:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Clasificar por título:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Empezar cuando sea posible:", "LabelStatus": "Estado:", "LabelStopWhenPossible": "Parar cuando sea posible:", "LabelSubtitlePlaybackMode": "Modo de subtítulo:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Nombre del trabajo de sincronización:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sincronizar en:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Lema:", "LabelTextBackgroundColor": "Color de fondo del texto:", "LabelTextColor": "Color del texto:", "LabelTextSize": "Tamaño del texto:", - "LabelTheme": "Theme:", "LabelTitle": "Título", "LabelTrackNumber": "Número de pista:", "LabelType": "Tipo:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Sitio web:", "LabelWindowBackgroundColor": "Color de fondo del texto:", "LabelYear": "Año:", "Large": "Grande", "LatestFromLibrary": "Últimas {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Aprende más", "Like": "Me gusta", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Directo", "LiveBroadcasts": "Emisiones en vivo", "LiveTV": "TV en vivo", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "TV en vivo requiere de una suscripción activa de Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gestionar grabación", "MarkPlayed": "Marcar como reproducido", "MarkUnplayed": "Marcar como no reproducido", "MarkWatched": "Marcar como visto", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Mediano", "Menu": "Menú", "MessageActiveSubscriptionRequiredSeriesRecordings": "Se necesita una suscripción a Jellyfin Premiere para poder crear grabaciones automáticas.", @@ -434,8 +303,6 @@ "MessageDownloadQueued": "Descarga en cola.", "MessageFileReadError": "Ha habido un error leyendo el fichero. Por favor inténtalo más tarde.", "MessageIfYouBlockedVoice": "Si has denegado el acceso a la voz a la aplicación tendrás que reconfigurarlo antes de intentarlo de nuevo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Se le ha enviado un correo a {0}, invitándolo a que se registre en Jellyfin.", "MessageInvitationSentToUser": "Se le ha enviado un correo a {0}, invitándolo a que acepte lo que has compartido.", "MessageItemSaved": "Elemento grabado.", @@ -443,11 +310,8 @@ "MessageJellyfinAccontRemoved": "Se ha eliminado la cuenta de Jellyfin para este usuario.", "MessageJellyfinAccountAdded": "Se ha añadido la cuenta de Jellyfin a este usuario", "MessageLeaveEmptyToInherit": "Dejar en blanco para heredar la configuración de un elemento principal, o el valor predeterminado global.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "No hay servidores disponibles para conectarse. Si te han invitado a unirte a un servidor, asegúrate de aceptar aquí abajo o haciendo clic en el enlace del correo.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "Se ha añadido una cuenta de Jellyfin a este usuario. Se va a enviar un correo al dueño de la cuenta. La invitación necesita confirmarse haciendo clic en el enlace del correo.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si tienes una suscripción a Jellyfin Premiere asegúrate de que la has configurado en el Panel de Control de tu servidor Jellyfin en Ayuda -> Jellyfin Premiere.", "MessageUnlockAppWithPurchaseOrSupporter": "Desbloquea esta característica con una pequeña compra una vez o con una suscripción a Jellyfin Premiere.", "MessageUnlockAppWithSupporter": "Desbloquea esta característica con una suscripción a Jellyfin Premiere.", @@ -463,27 +327,22 @@ "MySubtitles": "Mis Subtitulos", "Name": "Nombre", "NewCollection": "Nueva colección", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Ejemplo: Colección de Star Wars", "NewEpisodes": "Nuevos episodios", "NewEpisodesOnly": "Solo nuevos episodios", "News": "Noticias", "Next": "Siguiente", - "No": "No", "NoItemsFound": "No se han encontrado ítems", "NoSubtitleSearchResultsFound": "No se han encontrado resultados.", "NoSubtitles": "Sin subtítulos", "NoSubtitlesHelp": "Los subtítulos no se cargarán de forma predeterminada. Tienen que ser activados manualmente durante la reproducción.", "None": "Nada", - "Normal": "Normal", - "Off": "Off", "OneChannel": "Un canal", "OnlyForcedSubtitles": "Sólo subtítulos forzados", "OnlyForcedSubtitlesHelp": "Sólo se cargarán los subtítulos marcados como forzados.", "OnlyImageFormats": "Solo formatos de imagen (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nuevo...", - "Original": "Original", "OriginalAirDateValue": "Fecha de emisión original: {0}", "Overview": "Sinopsis", "PackageInstallCancelled": "{0} instalación cancelada.", @@ -491,27 +350,19 @@ "PackageInstallFailed": "{0} instalación fallida.", "ParentalRating": "Parental Rating", "People": "Gente", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Situar los canales favoritos al principio", "Play": "Reproducir", "PlayAllFromHere": "Reproducir todos desde aquí", - "PlayCount": "Play count", "PlayFromBeginning": "Iniciar desde el principio", "PlayNext": "Reproducir siguiente", "PlayNextEpisodeAutomatically": "Reproducir siguiente episodio automáticamente", "PlaybackErrorNoCompatibleStream": "No tienes disponible ninguna calidad por ahora. Inténtalo más tarde o contacta con el administrador para más detalles.", "PlaybackErrorNotAllowed": "No estás autorizado a reproducir este contenido. Contacta con el administrador para más detalles.", "PlaybackErrorPlaceHolder": "El contenido elegido no se puede reproducir desde este dispositivo.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproducido", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.", "PleaseRestartServerName": "Por favor, reinicie el Servidor de Jellyfin - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Seleccione al menos dos elementos.", - "Premiere": "Premiere", "Premieres": "Estrenos", "Previous": "Anterior", "Primary": "Principal", @@ -519,10 +370,8 @@ "Producer": "Productor", "ProductionLocations": "Localizaciones de producción", "Programs": "Programas", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Calidad", "QueueAllFromHere": "En cola todos desde aquí", - "Raised": "Raised", "RecentlyWatched": "Vistos recientemente", "Record": "Grabar", "RecordSeries": "Grabar serie", @@ -531,7 +380,6 @@ "Recordings": "Grabaciones", "RefFramesNotSupported": "Número de cuadros de referencia de video no soportados", "Refresh": "Refrescar", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Actualizar metadatos", "RefreshQueued": "Actualiza la cola", "Reject": "Rechazar", @@ -547,10 +395,8 @@ "RepeatOne": "Repetir uno", "ReplaceAllMetadata": "Reemplazar todos los metadatos", "ReplaceExistingImages": "Reemplazar imágenes existentes", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Continuar desde {0}", "Retry": "Reintentar", - "RunAtStartup": "Run at startup", "Runtime": "Tiempo de Ejecución", "Saturday": "Sábado", "Save": "Grabar", @@ -565,7 +411,6 @@ "SearchResults": "Resultados de la Búsqueda", "SecondaryAudioNotSupported": "Cambio de pista de audio no soportado", "SeriesCancelled": "Serie cancelada.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Grabación de series programada.", "SeriesSettings": "Ajustes de series", "SeriesYearToPresent": "{0} - Actualidad", @@ -576,31 +421,21 @@ "SettingsSaved": "Configuración guardada.", "Share": "Compartir", "ShowIndicatorsFor": "Mostrar indicaciones para:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Series", "Shuffle": "Mezclar", "SkipEpisodesAlreadyInMyLibrary": "No grabar episodios que ya están en mi libreria", "SkipEpisodesAlreadyInMyLibraryHelp": "Los episodios serán comparados usando el número de temporada y de episodio, cuando estén disponibles.", "Small": "Pequeño", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Listo", "SmartSubtitlesHelp": "Los subtítulos que coincidan con el idioma preferido se activarán cuando el audio esté en otro idioma.", "Songs": "Canciones", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Ordenar canales por:", "SortName": "Ordenar por nombre", "Sports": "Deportes", "StatsForNerds": "Estadísticas para Frikis", "StopRecording": "Parar grabación", "Studios": "Estudios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formato de subtítulos no soportado", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtítulos", "Suggestions": "Sugerencias", "Sunday": "Domingo", @@ -614,29 +449,17 @@ "SyncJobItemStatusSynced": "Descargado", "SyncJobItemStatusSyncedMarkForRemoval": "Quitar del dispositivo", "SyncJobItemStatusTransferring": "Transfiriendo", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiquetas", - "TagsValue": "Tags: {0}", "TermsOfUse": "Términos de uso", "ThankYouForTryingEnjoyOneMinute": "Disfruta de un minuto de reproducción. Gracias por probar Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Estas opciones afectan a los subtítulos en este dispositivo", "Thumb": "Miniatura", "Thursday": "Jueves", "TrackCount": "{0} pistas", "Trailer": "Tráiler", - "Trailers": "Trailers", "Transcoding": "Transcodificación", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Martes", - "Uniform": "Uniform", "UnlockGuide": "Guía de desbloqueo", - "Unplayed": "Unplayed", "Unrated": "Sin clasificar", "UntilIDelete": "Hasta que lo elimine", "UntilSpaceNeeded": "Hasta que necesite espacio", @@ -646,7 +469,6 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodios", "ValueGameCount": "{0} juegos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} vídeos musicales", "ValueOneAlbum": "1 álbum", @@ -658,16 +480,12 @@ "ValueOneSeries": "1 serie", "ValueOneSong": "1 canción", "ValueSeconds": "{0} segundos", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} canciones", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidad de bits de video no soportados", "VideoCodecNotSupported": "Codec de video no soportado", "VideoFramerateNotSupported": "Cuadros por segundo de video no soportados", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Perfil de video no soportado", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Resolución de video no soportada", "ViewAlbum": "Ver album", "ViewArtist": "Ver artista", diff --git a/src/bower_components/emby-webcomponents/strings/fi.json b/src/bower_components/emby-webcomponents/strings/fi.json index e8502275d8..baa659c2a1 100644 --- a/src/bower_components/emby-webcomponents/strings/fi.json +++ b/src/bower_components/emby-webcomponents/strings/fi.json @@ -1,680 +1,7 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Lopeta", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Maa:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Kieli:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", "Save": "Tallenna", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/fr-ca.json b/src/bower_components/emby-webcomponents/strings/fr-ca.json index 31d1b932c8..6f3d73edd6 100644 --- a/src/bower_components/emby-webcomponents/strings/fr-ca.json +++ b/src/bower_components/emby-webcomponents/strings/fr-ca.json @@ -1,680 +1,87 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Ajouter", "AddToCollection": "Ajouter à la collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Ajouter à la liste de lecture", - "AddedOnValue": "Added {0}", "Advanced": "Avancé", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Nouveau", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuler", "ButtonGotIt": "J'ai compris", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Redémarrer", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "Le Mode Cinéma vous donne la véritable expérience cinématographique avec des bandes annonces et des intros personnalisés avant le film.", "CloudSyncFeatureDescription": "Synchronisez vos médias avec le Cloud pour faciliter la sauvegarde, l'archivage et la conversion.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "La suppression de cet élément le supprimera à la fois du système de fichiers et de votre médiathèque. Êtes-vous sûr de vouloir continuer?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Jours", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Supprimer", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Se déconnecter", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "Télécharger", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Modifier", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Activer l'affichage mirroir", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Se termine à {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Cette fonctionnalité nécessite un abonnement Jellyfin Première actif.", - "Features": "Features", "File": "Fichier", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Profitez de l'accès gratuit aux applications Jellyfin pour vos appareils.", "Friday": "Vendredi", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Ajouter à la Collection", "HeaderAddToPlaylist": "Ajouter à la liste de lecture", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Obtenez Jellyfin Première", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "Mode Cinéma", "HeaderCloudSync": "Synchronisation Cloud", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", "HeaderContinueWatching": "Continuer à regarder", "HeaderConvertYourRecordings": "Convertir vos enregistrements", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Supprimer l'élément", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Applications Jellyfin gratuites", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", "HeaderMyMedia": "Mes Médias", "HeaderMyMediaSmall": "Mes médias (petit)", "HeaderNewRecording": "Nouvel enregistrement", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "À Suivre", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Média hors ligne", "HeaderOfflineDownloadsDescription": "Téléchargez le média sur vos appareils pour une utilisation hors ligne facile.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Jouer mon média", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", "HeaderRemoteControl": "Télécommande", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Sélectionner une date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Aide", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} articles", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Adresse courriel:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Langage:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Nom:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Liste de lecture:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Année:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", "Live": "En direct", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abonnement Jellyfin Première actif est nécessaire pour créer des enregistrements automatiques en série.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", "MessageItemsAdded": "Éléments ajoutés.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si vous avez un abonnement Jellyfin Première actif, assurez-vous d'avoir installé Jellyfin Première sur le tableau de bord de votre serveur Jellyfin, auquel vous pouvez accéder en cliquant sur Jellyfin Première dans le menu principal.", "MessageUnlockAppWithPurchaseOrSupporter": "Déverrouillez cette fonctionnalité avec un petit achat unique ou avec un abonnement Jellyfin Premiere actif.", "MessageUnlockAppWithSupporter": "Déverrouillez cette fonctionnalité avec un abonnement Jellyfin Première actif.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Lundi", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Nouvelle Collection", "NewCollectionHelp": "Les collections vous permettent de créer des regroupements personnalisés de films et d'autres contenus de la bibliothèque.", "NewCollectionNameExample": "Exemple: Collection Star Wars", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Aucun résultat trouvé.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", "OptionNew": "Nouveau...", - "Original": "Original", "OriginalAirDateValue": "Date de diffusion originale: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Classement parentale", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Première", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Convertissez automatiquement des enregistrements en un format convivial avec Jellyfin Première. Les enregistrements seront rapidement convertis en MP4 ou MKV, en fonction des paramètres du serveur Jellyfin.", "Quality": "Qualité", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Enregistrement", - "RecordSeries": "Record series", "RecordingCancelled": "Enregistrement annulé.", "RecordingScheduled": "Enregistrement programmé.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Rafraîchir", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Rafraîchir la file d'attente.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Répéter", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Samedi", "Save": "Sauvegarder", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Rechercher", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "Rechercher des sous-titres", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Série annulée.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Enregistrement en série programmé.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "Ce serveur Jellyfin doit être mis à jour. Pour télécharger la dernière version, veuillez visiter {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", "Share": "Partager", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Sous-titres", - "Suggestions": "Suggestions", "Sunday": "Dimanche", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Jeudi", "TrackCount": "{0} pistes", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Mardi", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Spécial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Mercredi", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/fr.json b/src/bower_components/emby-webcomponents/strings/fr.json index 53be76fc9c..9a1eec7498 100644 --- a/src/bower_components/emby-webcomponents/strings/fr.json +++ b/src/bower_components/emby-webcomponents/strings/fr.json @@ -11,7 +11,6 @@ "Advanced": "Avancé", "AirDate": "Date de diffusion", "Aired": "Diffusé", - "Albums": "Albums", "All": "Tout", "AllChannels": "Toutes les chaînes", "AllComplexFormats": "Tous les formats complexes (ASS, SSA, VOBSUB, PGS, SUB/IDX etc)", @@ -26,7 +25,6 @@ "AnyLanguage": "N'importe quel langage", "Anytime": "N'importe quand", "AroundTime": "Aux environs de {0}", - "Art": "Art", "Artists": "Artistes", "AsManyAsPossible": "Autant que possible", "Ascending": "Croissant", @@ -38,7 +36,6 @@ "AudioCodecNotSupported": "Codec audio non supporté", "AudioProfileNotSupported": "Profil audio non pris en charge", "AudioSampleRateNotSupported": "Taux d'échantillonnage audio non pris en charge", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basé sur le réglage de la langue)", "AutomaticallyConvertNewContent": "Convertir automatiquement les nouveaux contenus", "AutomaticallyConvertNewContentHelp": "Les nouveaux contenus seront automatiquement convertis", @@ -71,7 +68,6 @@ "CinemaModeConfigurationHelp": "Le mode cinéma apporte l'expérience du cinéma directement dans votre salon grâce à la possibilité de lire des bandes-annonces et des introductions personnalisées avant le film principal.", "CinemaModeFeatureDescription": "Le mode cinéma apporte l'expérience du cinéma directement dans votre salon grâce à la possibilité de lire des bandes-annonces et des introductions personnalisées avant le film principal.", "CloudSyncFeatureDescription": "Synchronisez vos médias vers le cloud pour le sauvegarder, l'archiver et le convertir facilement.", - "Collections": "Collections", "ColorPrimaries": "Couleurs primaires", "ColorSpace": "Espace colorimétrique", "ColorTransfer": "Transfert de couleur", @@ -168,7 +164,6 @@ "ErrorReachingJellyfinConnect": "Une erreur est survenue pendant la connexion au serveur Jellyfin Connect. Veuillez vous assurer que vous avez une connexion internet active puis réessayez.", "ErrorRemovingJellyfinConnectAccount": "Une erreur est survenue pendant la suppression du compte Jellyfin Connect. Veuillez vous assurer que vous avez une connexion internet active puis réessayez.", "ExtraLarge": "Très grand", - "Extras": "Extras", "Favorite": "Favori", "Favorites": "Favoris", "FeatureRequiresJellyfinPremiere": "Cette fonctionnalité nécessite un abonnement Jellyfin Premiere.", @@ -180,14 +175,9 @@ "FormatValue": "Format : {0}", "FreeAppsFeatureDescription": "Profitez d'un accès gratuit aux applications Jellyfin pour vos appareils.", "Friday": "Vendredi", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Grouper par séries", "GroupVersions": "Grouper les versions", - "GuestStar": "Guest star", "GuestUserNotFound": "Utilisateur non trouvé. Veuillez vérifier que le nom est correct et essayez à nouveau, ou essayez de renseigner l'adresse courriel.", - "Guide": "Guide", "HDPrograms": "Programmes HD", "HeaderActiveRecordings": "Enregistrements actifs", "HeaderAddToCollection": "Ajouter à la collection", @@ -285,12 +275,10 @@ "Hide": "Cacher", "HideWatchedContentFromLatestMedia": "Masquer le contenu déjà vu dans les derniers médias", "Home": "Accueil", - "Horizontal": "Horizontal", "HowDidYouPay": "Comment avez-vous payé ?", "IHaveJellyfinPremiere": "J'ai Jellyfin Premiere", "IPurchasedThisApp": "J'ai acheté cette application", "Identify": "Identifier", - "Images": "Images", "ImdbRating": "Note IMDb", "InstallingPackage": "Installation de {0}", "InstantMix": "Mix instantané", @@ -310,7 +298,6 @@ "LabelAlbumArtists": "Artistes de l'album :", "LabelArtists": "Artistes :", "LabelArtistsHelp": "Séparer les différents éléments par ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Langue audio préférée :", "LabelBirthDate": "Date de naissance :", "LabelBirthYear": "Année de naissance :", @@ -385,7 +372,6 @@ "LabelSortOrder": "Ordre de tri :", "LabelSortTitle": "Titre de tri :", "LabelSoundEffects": "Effets sonores :", - "LabelSource": "Source:", "LabelStartWhenPossible": "Commencer si possible :", "LabelStatus": "État :", "LabelStopWhenPossible": "Arrêter si possible :", @@ -420,22 +406,18 @@ "LiveTV": "TV en direct", "LiveTvFeatureDescription": "Diffuser la TV en direct vers n'importe quelle application Jellyfin avec un tuner TV compatible installé sur votre serveur Jellyfin.", "LiveTvRequiresUnlock": "La TV en direct nécessite un abonnement Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gérer l'enregistrement", "MarkPlayed": "Marquer comme lu", "MarkUnplayed": "Marquer comme non lu", "MarkWatched": "Marquer comme lu", "MediaIsBeingConverted": "Le média est converti en un format compatible avec l'appareil qui lit le média.", "Medium": "Moyen", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abonnement Jellyfin Premiere est nécessaire pour créer des enregistrements de séries automatiques.", "MessageAreYouSureDeleteSubtitles": "Voulez-vous vraiment supprimer ce fichier de sous-titres ?", "MessageConfirmRecordingCancellation": "Annuler l'enregistrement ?", "MessageDownloadQueued": "Téléchargement mis en file d'attente.", "MessageFileReadError": "Une erreur est survenue lors de la lecture du fichier. Veuillez réessayer.", "MessageIfYouBlockedVoice": "Si vous avez supprimé l'accès par commande vocale à l'application, vous devrez le reconfigurer avant de réessayer.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un courriel a été envoyé à {0}, les invitant à s'inscrire à Jellyfin.", "MessageInvitationSentToUser": "Un courriel a été envoyé à {0} avec votre invitation de partage.", "MessageItemSaved": "Élément enregistré.", @@ -475,7 +457,6 @@ "NoSubtitles": "Pas de sous-titres", "NoSubtitlesHelp": "Les sous-titres ne seront pas chargés par défaut. Ils peuvent toujours être activés manuellement pendant la lecture.", "None": "Aucun", - "Normal": "Normal", "Off": "Désactivés", "OneChannel": "Une chaîne", "OnlyForcedSubtitles": "Seulement les sous-titres forcés", @@ -483,7 +464,6 @@ "OnlyImageFormats": "Seulement les formats image (VOBSUB, PGS, SUB/IDX etc)", "Open": "Ouvrir", "OptionNew": "Nouveau...", - "Original": "Original", "OriginalAirDateValue": "Date de diffusion originale : {0}", "Overview": "Synopsis", "PackageInstallCancelled": "L'installation de {0} a été annulée.", @@ -492,7 +472,6 @@ "ParentalRating": "Classification parentale", "People": "Personnes", "PerfectMatch": "Correspondance parfaite", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Mettre vos chaînes favorites au début", "Play": "Lire", "PlayAllFromHere": "Tout lire à partir d'ici", @@ -511,7 +490,6 @@ "PleaseRestartServerName": "Veuillez redémarrer le serveur Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "Veuillez sélectionner l'appareil auquel le téléchargement doit être envoyé.", "PleaseSelectTwoItems": "Veuillez sélectionner au moins deux éléments.", - "Premiere": "Premiere", "Premieres": "Inédits", "Previous": "Précédent", "Primary": "Principal", @@ -592,17 +570,14 @@ "SortByValue": "Trier par {0}", "SortChannelsBy": "Trier les chaînes par :", "SortName": "Nom de tri", - "Sports": "Sports", "StatsForNerds": "Statistiques pour les geeks", "StopRecording": "Arrêter l'enregistrement", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Ces paramètres s'appliquent également à toute lecture Chromecast démarrée par cet appareil.", "SubtitleAppearanceSettingsDisclaimer": "Ces paramètres ne s'appliqueront pas aux sous-titres graphiques (PGS, DVD etc) ou aux sous-titres qui ont leurs propres styles incorporés (ASS/SSA).", "SubtitleCodecNotSupported": "Format des sous-titres non pris en charge", "SubtitleSettings": "Paramètres des sous-titres", "SubtitleSettingsIntro": "Pour configurer l'apparence des sous-titres et la langue par défaut, arrêtez la lecture de la vidéo, puis cliquez sur votre icône utilisateur située en haut à droite dans l'application.", "Subtitles": "Sous-titres", - "Suggestions": "Suggestions", "Sunday": "Dimanche", "Sync": "Synchroniser", "SyncJobItemStatusCancelled": "Annulé", @@ -617,7 +592,6 @@ "SyncUnwatchedVideosOnly": "Télécharger seulement les vidéos non lues", "SyncUnwatchedVideosOnlyHelp": "Seule les vidéos non lues seront téléchargées et les vidéos seront supprimées de l'appareil au fur et à mesure que vous les regardez.", "SyncingDots": "Synchronisation...", - "TV": "TV", "Tags": "Étiquettes", "TagsValue": "Mots clés: {0}", "TermsOfUse": "Conditions d'utilisation", @@ -642,14 +616,11 @@ "UntilSpaceNeeded": "Jusqu'à ce que l'espace disque soit nécessaire", "Up": "Haut", "Upload": "Envoyer", - "ValueAlbumCount": "{0} albums", "ValueDiscNumber": "Disque {0}", "ValueEpisodeCount": "{0} épisodes", "ValueGameCount": "{0} jeux", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} vidéos musicales", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 épisode", "ValueOneGame": "1 jeu", "ValueOneItem": "1 élément", diff --git a/src/bower_components/emby-webcomponents/strings/gsw.json b/src/bower_components/emby-webcomponents/strings/gsw.json index 37c3694ad5..3b3f468af2 100644 --- a/src/bower_components/emby-webcomponents/strings/gsw.json +++ b/src/bower_components/emby-webcomponents/strings/gsw.json @@ -1,680 +1,21 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Abbreche", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Fortlaufend", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Beendent", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Friitig", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artist:", "LabelArtistsHelp": "Trenn mehreri iisträg dur es ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Date Art:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Sproch:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Mäntig", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Biispell: Star Wars Sammlig", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Samstig", "Save": "Speichere", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "Dursuechs Internet nach Bilder und Metadate", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Sonntig", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Donnstig", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Tsischtig", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Mittwoch", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/he.json b/src/bower_components/emby-webcomponents/strings/he.json index a7529722b4..73fbb47e4d 100644 --- a/src/bower_components/emby-webcomponents/strings/he.json +++ b/src/bower_components/emby-webcomponents/strings/he.json @@ -1,203 +1,68 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "שחקן", "Add": "הוסף", "AddToCollection": "להוסיף לאוסף", "AddToPlayQueue": "הוסף לתור הפעלה", "AddToPlaylist": "הוסף לרשימת ניגון", - "AddedOnValue": "Added {0}", "Advanced": "מתקדם", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "כל הערוצים", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "כל הפרקים", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "בכל עת", "AroundTime": "בסביבות {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "כמה שיותר", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "חדש", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", "AutomaticallySyncNewContentHelp": "תוכן חדש שנוסף לתיקיה זו יוריד באופן אוטומטי למכשיר.", - "Backdrop": "Backdrop", "Backdrops": "תפאורות", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "מיקום לידה", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "בטל", "ButtonGotIt": "הבנתי", "ButtonOk": "בסדר", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "איתחול", "ButtonRestorePreviousPurchase": "שחזר רכישה", "ButtonTryAgain": "נסה שנית", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", "CancelRecording": "ביטול הקלטה", "CancelSeries": "בטל סדרה", "Categories": "קטגוריות", "ChannelNameOnly": "ערוץ {0} בלבד", "ChannelNumber": "מספר ערוץ", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "מצב קולנוע נותן לך את החוויה הקולנוע אמיתי עם קדימונים מותאמים אישית לפני התכונה.", "CloudSyncFeatureDescription": "סנכרן את המדיה שלך לענן לצורך גיבוי קל, אחסון בארכיון והמרה.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "מלחין", "ConfigureDateAdded": "הגדר כיצד תאריך התוספת נקבע בלוח המחוונים של שרת Amby תחת הגדרות ספריה", "ConfirmDeleteImage": "למחוק את התמונה?", "ConfirmDeleteItem": "מחיקת פריט זה תמחק אותו הן ממערכת הקבצים והן מספריית המדיה שלך. האם אתה בטוח שברצונך להמשיך?", "ConfirmDeleteItems": "מחיקת פריטים אלה תמחק אותם הן ממערכת הקבצים והן מספריית המדיה שלך. האם אתה בטוח שברצונך להמשיך?", "ConfirmDeletion": "אשר מחיקה", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "ממשיך", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "מדינות", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "ימים", - "Default": "Default", "DefaultErrorMessage": "אירעה שגיאה בעיבוד הבקשה. בבקשה נסה שוב מאוחר יותר.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "מחק", "DeleteMedia": "מחק מדיה", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "מנהל", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "לא אוהב", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "אל תקליט", - "Down": "Down", "Download": "הורדה", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", "Downloads": "הורדות", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "אמבי DVR דורשת מנוי פעיל של Jellyfin Premiere.", "Edit": "ערוך", "EditImages": "ערוך תמונות", - "EditMetadata": "Edit metadata", "EditSubtitles": "ערוך כתוביות", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "אפשר רקע בצבע מקודד", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "הסתיים", "EndsAtValue": "מסתיים ב {0}", - "Episodes": "Episodes", "Error": "שגיאה", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "מועדף", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "תכונה זו דורשת מנוי פעיל של Jellyfin Premiere.", - "Features": "Features", "File": "קובץ", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "באפשרותך ליהנות מגישה חופשית ליישומי Jellyfin עבור המכשירים שלך.", "Friday": "שישי", - "GenreValue": "Genre: {0}", "Genres": "ז'אנרים", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "גרסאות קבוצתיות", "GuestStar": "כוכב אורח", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "תוכניות HD", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "להוסיף לאוסף", "HeaderAddToPlaylist": "הוסף לרשימת ניגון", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "קבל Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "היתרונות של אמבי Premiere", "HeaderCancelRecording": "ביטול הקלטה", @@ -205,100 +70,39 @@ "HeaderCinemaMode": "מצב קולנוע", "HeaderCloudSync": "סנכרון ענן", "HeaderConfirmRecordingCancellation": "אשר ביטול הקלטה", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "המרת הקלטות שלך", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "מחק פריט", "HeaderDeleteItems": "מחיקת פריטים", "HeaderDisplaySettings": "הגדרות תצוגה", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "ערוך תמונות", "HeaderEnabledFields": "שדות זמינים", "HeaderEnabledFieldsHelp": "בטל את הסימון בשדה כדי לנעול אותו ולמנוע שינוי בנתונים.", "HeaderExternalIds": "מזהים חיצוניים:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "אפליקציות אמבי בחינם", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "הזן קריטריון חיפוש אחד או יותר. הסר קריטריונים כדי להגדיל את תוצאות החיפוש.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "שמור על הקלטה", "HeaderKeepSeries": "שמור סדרה", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "למד עוד", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "הגדרות מטא נתונים", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "הקלטה חדשה", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "מדיה לא מקוונת", "HeaderOfflineDownloadsDescription": "הורד מדיה למכשירים שלך לשימוש לא מקוון בקלות.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "אפשרויות הקלטה", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "תגיד משהו כמו ...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "בחר תאריך", "HeaderSeriesOptions": "אפשרויות סדרה", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "פרטי אפיזודות מיוחדות", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "נסה הפעלה", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "אתה אמרת...", "Help": "עזרה", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "איך שילמת?", "IHaveJellyfinPremiere": "יש לי אמבי Premiere", "IPurchasedThisApp": "רכשתי את האפליקציה הזו", "Identify": "לזהות", "Images": "תמונות", - "ImdbRating": "IMDb rating", "InstallingPackage": "מתקין {0}", "InstantMix": "מיקס מיידי", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "פריטים {0}", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "ילדים", "Label3DFormat": "פורמט תלת-ממדי:", "LabelAirDays": "ימי אויר:", @@ -310,47 +114,29 @@ "LabelAlbumArtists": "אלבום אומנים:", "LabelArtists": "אומנים:", "LabelArtistsHelp": "הפרד מרובים באמצעות;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "תאריך לידה:", "LabelBirthYear": "שנת לידה:", "LabelBitrateMbps": "קצב סיביות (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "ערוצים:", "LabelCollection": "אוספים:", "LabelCommunityRating": "דירוג הקהילה:", "LabelContentType": "סוג התוכן", - "LabelConvertTo": "Convert to:", "LabelCountry": "מדינה:", "LabelCriticRating": "דירוג ביקורת:", "LabelCustomRating": "דירוג מותאם אישית:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "תאריך הוסף:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "תאריך המוות:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "מספר דיסק:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "סדר תצוגה:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} תעודת זהות:", "LabelEmailAddress": "כתובת דוא\"ל:", "LabelEndDate": "תאריך סיום:", "LabelEpisodeNumber": "מספר פרק:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "מגבלת פריט:", "LabelKeep:": "שמור:", "LabelKeepUpTo": "שמור עד ל:", "LabelLanguage": "שפה:", "LabelLockItemToPreventChanges": "נעל פריט זה כדי למנוע שינויים עתידיים", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "שפת הורדה מועדפת:", "LabelName": "שם:", "LabelNumber": "מספר:", @@ -363,100 +149,48 @@ "LabelPersonRole": "תפקיד:", "LabelPersonRoleHelp": "דוגמה: נהג משאית גלידה", "LabelPlaceOfBirth": "מקום לידה:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "רשימת ניגון:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "פרופיל:", "LabelQuality": "איכות:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "הקלטה:", "LabelRefreshMode": "מצב רענון:", "LabelReleaseDate": "תאריך הוצאה:", "LabelRuntimeMinutes": "זמן ריצה (דקות):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "מספר עונה:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "סקירה קצרה:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "מיין כותרת:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "התחל ברגע שניתן:", "LabelStatus": "סטטוס:", "LabelStopWhenPossible": "הפסק ברגע שאפשר", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "סנכרן את שם העבודה:", "LabelSyncNoTargetsHelp": "נראה שאין לך כרגע אפליקציות התומכות בהורדה במצב לא מקוון.", "LabelSyncTo": "סנכרן ל:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "שורת תיוג:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "כותרת:", "LabelTrackNumber": "קטע מספר:", "LabelType": "סוג:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "אתר:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "שנה:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "למד עוד", "Like": "אוהב", - "LinksValue": "Links: {0}", - "List": "List", "Live": "שידור חי", "LiveBroadcasts": "שידורים חיים", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "סמן נוגן", "MarkUnplayed": "סמן לא נוגן", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "האם אתה בטוח שברצונך למחוק קובץ כתובית זה?", "MessageConfirmRecordingCancellation": "האם אתה בטוח שברצונך לבטל הקלטה זו?", "MessageDownloadQueued": "הורד תור", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "אם מנעת גישה קולית לאפליקציה שתצטרך להגדיר מחדש לפני שתנסה שוב.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "הפריט נשמר.", "MessageItemsAdded": "פריטים נוספו.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "השאר ריק כדי לרשת את ההגדרות מפריט אב, או את ערך ברירת המחדל הגלובלי.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "אם יש לך מנוי פעיל של Jellyfin Premiere, ודא שהגדרת את Jellyfin Premiere במרכז השליטה של ​​אמבי שרת, שבו באפשרותך לגשת על-ידי לחיצה על Jellyfin Premiere בתפריט הראשי.", "MessageUnlockAppWithPurchaseOrSupporter": "נעילת תכונה זו עם רכישה חד פעמית קטנה, או עם מנוי פעיל Premiere אמבי.", "MessageUnlockAppWithSupporter": "ביטול נעילה של תכונה זו עם מנוי פעיל של Jellyfin Premiere.", "MessageWeDidntRecognizeCommand": "אנחנו מצטערים, לא זיהינו את הפקודה הזאת.", "MinutesAfter": "דקות אחרי", "MinutesBefore": "דקות לפני", - "Mobile": "Mobile / Tablet", "Monday": "שני", - "More": "More", "MoveLeft": "זוז שמאלה", "MoveRight": "זוז ימינה", "Movies": "סרטים", @@ -468,104 +202,55 @@ "NewEpisodes": "פרקים חדשים", "NewEpisodesOnly": "פרקים חדשים בלבד", "News": "חדשות", - "Next": "Next", - "No": "No", "NoItemsFound": "לא נמצאו פריטים", "NoSubtitleSearchResultsFound": "לא נמצאו תוצאות.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "פתח", "OptionNew": "חדש...", - "Original": "Original", "OriginalAirDateValue": "תאריך אוויר מקורי: {0}", "Overview": "סקירה כללית", "PackageInstallCancelled": "{0} ההתקנה בוטלה.", - "PackageInstallCompleted": "{0} installation completed.", "PackageInstallFailed": "ההתקנה {0} נכשלה.", "ParentalRating": "דירוג ההורים", "People": "אנשים", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "נגן", "PlayAllFromHere": "נגן הכל מכאן", - "PlayCount": "Play count", "PlayFromBeginning": "נגן מהתחלה", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "הזן שם או מזהה חיצוני.", "PleaseRestartServerName": "אנא הפעל מחדש את שרת Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "בחר מכשיר להורדה אליו.", "PleaseSelectTwoItems": "בחר לפחות שני פריטים.", "Premiere": "הקרנת בכורה", "Premieres": "בכורות", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "במאי", "ProductionLocations": "מיקומי ייצור", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "להמיר באופן אוטומטי הקלטות בפורמט זורם ידידותי עם אמבי Premiere. הקלטות יומרו על לטוס ל MP4 או MKV, בהתבסס על הגדרות שרת אמבי.", - "Quality": "Quality", "QueueAllFromHere": "הוסף הכל מכאן לתור", - "Raised": "Raised", "RecentlyWatched": "נצפה לאחרונה", "Record": "הקלט", "RecordSeries": "הקלט סדרה", "RecordingCancelled": "בטל הקלטה", "RecordingScheduled": "ההקלטה מתוזמנת.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "רענון", "RefreshDialogHelp": "המטא נתונים מתרעננים על סמך הגדרות ושירותי אינטרנט שמופעלים בלוח המחוונים של מרכז אמבי.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "רענן תור.", - "Reject": "Reject", "ReleaseDate": "תאריך שיחרור", - "RemoveDownload": "Remove download", "RemoveFromCollection": "הסר מאוספים", "RemoveFromPlaylist": "הסר מרשימת הניגון", - "RemovingFromDevice": "Removing from device", "Repeat": "חזור", - "RepeatAll": "Repeat all", "RepeatEpisodes": "חזור על פרקים", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "החלף את כל המטא נתונים", "ReplaceExistingImages": "החלף תמונות קיימות", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "המשך מ {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "זמן ריצה", "Saturday": "שבת", "Save": "שמור", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "צילומי מסך", "Search": "חיפוש", "SearchForCollectionInternetMetadata": "חפש באינרנט אחרי מידע ותמונות", "SearchForMissingMetadata": "חפש מטא נתונים חסרים", "SearchForSubtitles": "חיפוש של כתוביות", "SearchResults": "תוצאות חיפוש", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "בטל סדרות", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "הקלטת סדרה מתוזמנת.", "SeriesSettings": "הגדרות סדרה", "SeriesYearToPresent": "{0} - היום", @@ -573,75 +258,31 @@ "ServerNameIsShuttingDown": "שרת Jellyfin - {0} נכבה.", "ServerUpdateNeeded": "שרת אמבי זה צריך להיות מעודכן. כדי להוריד את הגרסה העדכנית ביותר, בקר בכתובת {0}", "Settings": "הגדרות", - "SettingsSaved": "Settings saved.", "Share": "שיתוף", "ShowIndicatorsFor": "הצג מחוונים עבור:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "ערבב", "SkipEpisodesAlreadyInMyLibrary": "אל תקליטו פרקים שכבר נמצאים בספרייה שלי", "SkipEpisodesAlreadyInMyLibraryHelp": "פרקים יושוו באמצעות העונה ואת הפרק פרק, כאשר זמין.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "מיין ערוצים לפי:", "SortName": "מיין לפי שם", "Sports": "ספורט", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "אולפני", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "כתוביות", - "Suggestions": "Suggestions", "Sunday": "ראשון", "Sync": "סנכרן", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", "SyncUnwatchedVideosOnlyHelp": "רק סרטונים שלא הורדו יורדו, וסרטונים יוסרו מהמכשיר כפי שהם צפו.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "תגים", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "אנא ליהנות דקה אחת של השמעה. תודה שניסית את אמבי.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "חמישי", "TrackCount": "שירים {0}", "Trailer": "קטעי סרט", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "נסה בחירה מרובה", "TryMultiSelectMessage": "כדי לערוך פריטי מדיה מרובים, פשוט לחץ לחיצה ארוכה על כל פוסטר ובחר את הפריטים שברצונך לנהל. נסה זאת!", "Tuesday": "שלישי", - "Uniform": "Uniform", "UnlockGuide": "נעילת מדריך", - "Unplayed": "Unplayed", "Unrated": "אין דירוג", "UntilIDelete": "עד שאמחק", "UntilSpaceNeeded": "עד הצורך במרחב", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} אלבומים", "ValueDiscNumber": "דיסק {0}", "ValueEpisodeCount": "{0} פרקים", @@ -657,24 +298,12 @@ "ValueOneMusicVideo": "וידאו קליפ 1", "ValueOneSeries": "1 סדרה", "ValueOneSong": "שיר 1", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} סדרות", "ValueSongCount": "{0} שירים", "ValueSpecialEpisodeName": "מיוחד- {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "צפה באלבום", "ViewArtist": "צפה באמן", "VoiceInput": "קלט קולי", - "Watched": "Watched", "Wednesday": "רביעי", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "כותב", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/hr.json b/src/bower_components/emby-webcomponents/strings/hr.json index b9d30e828c..2cf2e4cfd9 100644 --- a/src/bower_components/emby-webcomponents/strings/hr.json +++ b/src/bower_components/emby-webcomponents/strings/hr.json @@ -1,58 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Glumac", "Add": "Dodaj", "AddToCollection": "Dodaj u kolekciju", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Dodaj u popis", - "AddedOnValue": "Added {0}", "Advanced": "Napredno", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Svi kanali", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Sve epizode", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Bilo kada", "AroundTime": "Oko {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Što više je moguće", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Novo", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Pozadine", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Lokacije rođenja", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Odustani", "ButtonGotIt": "Shvaćam", "ButtonOk": "U redu", @@ -62,142 +21,48 @@ "ButtonTryAgain": "Pokušajte ponovo", "ButtonUnlockPrice": "Otključaj {0}", "ButtonUnlockWithPurchase": "Otključaj s kupovinom", - "CancelDownload": "Cancel download", "CancelRecording": "Prekini snimanje", "CancelSeries": "Odustani od serije", "Categories": "Kategorije", "ChannelNameOnly": "Kanali {0} samo", "ChannelNumber": "Broj kanala", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "Kino način vam daje pravi doživljaj kina s kratkim filmovima i prilagođenim isječcima prije odabrane značajke.", "CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Kompozitor", "ConfigureDateAdded": "Podesite kako se datum dodavanja određuje na nadzornoj ploči Jellyfin Server-a u postavkama biblioteke", "ConfirmDeleteImage": "Izbriši sliku?", "ConfirmDeleteItem": "Brisanjem ove stavke će je izbrisati iz oba datotečnog sustava i medijskoj biblioteci. Jeste li sigurni da želite nastaviti?", "ConfirmDeleteItems": "Brisanjem ove stavke će se izbrisati iz oba datotečnog sustava i medijskoj biblioteci. Jeste li sigurni da želite nastaviti?", "ConfirmDeletion": "Potvrdite brisanje", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Nastavlja se", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Zemlje", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dani", - "Default": "Default", "DefaultErrorMessage": "Došlo je do pogreške prilikom obrade zahtjeva. Molimo pokušajte ponovo kasnije.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Izbriši", "DeleteMedia": "Izbriši medij", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režiser", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Ne sviđa mi se", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Ne snimi", - "Down": "Down", "Download": "Preuzimanje", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR zahtijeva aktivnu pretplatu Jellyfin Premijere.", "Edit": "Izmjeni", "EditImages": "Uređivanje slika", - "EditMetadata": "Edit metadata", "EditSubtitles": "Uredi titlove", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Omogući kodirane boje pozadine", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Završeno", "EndsAtValue": "Završava u {0}", - "Episodes": "Episodes", "Error": "Greška", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Omiljeni", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Ova značajka zahtijeva aktivnu pretplatu Jellyfin Premijere.", - "Features": "Features", "File": "Datoteka", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Uživajte u slobodnom pristupu Jellyfin aplikacija za svoje uređaje.", "Friday": "Petak", - "GenreValue": "Genre: {0}", "Genres": "Žanrovi", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Verzija grupe", "GuestStar": "Zvijezda gost", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD programi", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Dodaj u kolekciju", "HeaderAddToPlaylist": "Dodaj u popis", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Nabavite Jellyfin Premijeru", "HeaderBenefitsJellyfinPremiere": "Prednosti Jellyfin premijere", "HeaderCancelRecording": "Prekini snimanje", @@ -205,258 +70,121 @@ "HeaderCinemaMode": "Kino način", "HeaderCloudSync": "Sink. preko oblaka", "HeaderConfirmRecordingCancellation": "Potvrdi otkazivanje snimanja", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konvertiraj snimke", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Izbriši stavku", "HeaderDeleteItems": "Brisanje stavki", "HeaderDisplaySettings": "Postavke prikaza", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Uređivanje slika", "HeaderEnabledFields": "Omogući polja", "HeaderEnabledFieldsHelp": "Poništi polje za zaključavanje i spriječi njihove podatke od toga da budu promijenjeni.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Besplatne Jellyfin aplikacije", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Unesite jednu ili više kriterija pretraživanja. Uklonite kriterije za povećanje rezultata pretraživanja.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Zadrži snimanje", "HeaderKeepSeries": "Zadrži serije", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Nauči još", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Postavke meta-podataka", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova snimka", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Izvanmrežni mediji", "HeaderOfflineDownloadsDescription": "Preuzimanje medija na svojim uređajima za jednostavnu upotrebu izvan mreže.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Reproduciraj moje medije", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "Opcije snimanja", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Reci nešto poput...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Odaberi datum", "HeaderSeriesOptions": "Opcije serija", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Posebni podaci o epizodi", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Isprobajte reprodukciju", "HeaderUnlockFeature": "Otključaj značajke", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Rekao si...", "Help": "Pomoć", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Kako ste platili?", "IHaveJellyfinPremiere": "Imam Jellyfin Premijeru", "IPurchasedThisApp": "Kupio sam ovu aplikaciju", "Identify": "Identificiraj", "Images": "Slike", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instaliranje {0}", "InstantMix": "Trenutno miješanje", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} stavaka", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "Djeca", - "Label3DFormat": "3D format:", "LabelAirDays": "Dani emitiranja:", "LabelAirTime": "Vrijeme emitiranja:", "LabelAirsAfterSeason": "Emitiranje nakon sezona:", "LabelAirsBeforeEpisode": "Emitiranje prije epizoda:", "LabelAirsBeforeSeason": "Emitiranje prije sezone:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Izvođači albuma", "LabelArtists": "Izvođači:", "LabelArtistsHelp": "Odvoji višestruko koristeći ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Datum rođenja:", "LabelBirthYear": "Godina rođenja:", "LabelBitrateMbps": "Brzina prijenosa (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanali:", "LabelCollection": "Kolekcija:", "LabelCommunityRating": "Ocjene zajednice:", "LabelContentType": "Tip sadržaja:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Zemlja:", "LabelCriticRating": "Ocjene kritike:", "LabelCustomRating": "Prilagođena ocjena:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Datumu dodavanja", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Datum smrti:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Poredak prikaza:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mail adresa:", "LabelEndDate": "Datum završetka:", "LabelEpisodeNumber": "Broj epizode:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Ograničenje stavke:", "LabelKeep:": "Zadrži:", "LabelKeepUpTo": "Drži se na:", "LabelLanguage": "Jezik:", "LabelLockItemToPreventChanges": "Zaključajte ovu stavku kako bi se spriječile buduće promjene", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Željeni jezik za preuzimanje:", "LabelName": "Ime:", "LabelNumber": "Broj:", "LabelOriginalAspectRatio": "Originalni omjer gledanja:", "LabelOriginalTitle": "Originalni naslov:", "LabelOverview": "Pregled:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Roditeljska ocjena:", "LabelPath": "Putanja:", "LabelPersonRole": "Uloga:", "LabelPersonRoleHelp": "Primjer: vozač kamiona sa sladoledom", "LabelPlaceOfBirth": "Datum rođenja:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Popis:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvaliteta:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Snimka:", "LabelRefreshMode": "Način osvježavanja:", "LabelReleaseDate": "Datum izdavanja:", "LabelRuntimeMinutes": "Vrijeme izvođenja (minuta):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Broj sezone:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Kratki pregled:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Naziv vrste:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Počni kada je moguće:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Zaustavi kada je moguće:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Ime sinkronizacijskog posla:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sinkroniziraj na:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Naslov:", "LabelTrackNumber": "Broj pjesme:", "LabelType": "Tip:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Web stranica:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Nauči još", "Like": "Sviđa mi se", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Uživo", "LiveBroadcasts": "Emitiranja uživo", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Označi pogledan", "MarkUnplayed": "Označi nepogledan", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivna pretplata Jellyfin Premijere je potrebna kako bi se napravilo automatsko snimanje serija.", "MessageAreYouSureDeleteSubtitles": "Da li ste sigurni da želite izbrisati ove titlove prijevoda?", "MessageConfirmRecordingCancellation": "Jeste li sigurni da želite poništiti ovu snimku?", "MessageDownloadQueued": "Preuzimanje na čekanju", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Ako ste zabranili glasovni pristup aplikaciji morate ponovo podesiti prije ponovnog pokušaja.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Stavka je snimljena.", "MessageItemsAdded": "Stavke su dodane", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Ostavite prazno da naslijedi postavke od roditelja stavke ili globalnu zadanu vrijednost.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Ako imate aktivnu pretplatu Jellyfin Premijere provjerite dali ste postavili Jellyfin Premijeru u svojoj nadzornoj ploči Jellyfin Server-a kojoj možete pristupiti klikom Jellyfin Premijera u glavnom izborniku.", "MessageUnlockAppWithPurchaseOrSupporter": "Otključaj ovu mogućnost s malom jednokratnom kupnjom ili s aktivnom pretplatom Jellyfin Premijere.", "MessageUnlockAppWithSupporter": "Otključaj ovu mogućnost sa pretplatom Jellyfin Premijere.", "MessageWeDidntRecognizeCommand": "Nažalost, nismo prepoznali tu naredbu.", "MinutesAfter": "Minuta nakon", "MinutesBefore": "Minuta prije", - "Mobile": "Mobile / Tablet", "Monday": "Ponedjeljak", - "More": "More", "MoveLeft": "Pomakni ulijevo", "MoveRight": "Pomakni udesno", "Movies": "Filmovi", @@ -468,22 +196,10 @@ "NewEpisodes": "Nove epizode", "NewEpisodesOnly": "Samo nove epizode", "News": "Vijesti", - "Next": "Next", - "No": "No", "NoItemsFound": "Nije ništa pronađeno.", "NoSubtitleSearchResultsFound": "Nije ništa pronađeno.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otvori", "OptionNew": "Novo...", - "Original": "Original", "OriginalAirDateValue": "Originalni datum prikazivanja: {0}", "Overview": "Pregled", "PackageInstallCancelled": "{0} instaliranje otkazano.", @@ -491,81 +207,45 @@ "PackageInstallFailed": "{0} instaliranje neuspjelo.", "ParentalRating": "Parental Rating", "People": "Ljudi", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Postavi omiljene kanale na početak", "Play": "Pokreni", "PlayAllFromHere": "Pokreni sve odavde", - "PlayCount": "Play count", "PlayFromBeginning": "Igraj od početka", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Unesite naziv ili vanjski Id.", "PleaseRestartServerName": "Ponovno pokrenite Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Molimo odaberite najmanje dvije stavke.", "Premiere": "Premijera", "Premieres": "Premijere", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Producent", "ProductionLocations": "Lokacije proizvodnje", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Automatski pretvoriti snimke na prijateljskom formatu strujanja s Jellyfin Premijerom. Snimke će se pretvoriti u letu u MP4 ili MKV na temelju postavki Jellyfin poslužitelja.", - "Quality": "Quality", "QueueAllFromHere": "Stavi u red čekanja sve odavde", - "Raised": "Raised", "RecentlyWatched": "Nedavno pogledano", "Record": "Snimi", "RecordSeries": "Snimi serije", "RecordingCancelled": "Snimka je otkazana.", "RecordingScheduled": "Snimka je zakazana.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Osviježi", "RefreshDialogHelp": "Meta-podaci se osvježavaju na temelju postavki i internet usluga koje su omogućene u nadzornoj ploči Jellyfin Server-a.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Osviježi stavke na čekanju", - "Reject": "Reject", "ReleaseDate": "Datum izdavanja", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Ukloni iz kolekcije", "RemoveFromPlaylist": "Ukloni iz popisa", - "RemovingFromDevice": "Removing from device", "Repeat": "Ponovi", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Reprize", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Zamijeni sve mate-podatke", "ReplaceExistingImages": "Zamijeni postojeće slike", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Nastavi od {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Trajanje", "Saturday": "Subota", "Save": "Snimi", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Isječci slika", "Search": "Traži", "SearchForCollectionInternetMetadata": "Potraži na internetu grafike i metadata", "SearchForMissingMetadata": "Potraga za meta-podacima koji nedostaju", "SearchForSubtitles": "Traži titlove prijevoda", "SearchResults": "Rezultati pretraživanja", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serija je otkazana.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Snimanje serije je zakazano.", "SeriesSettings": "Postavke serija", "SeriesYearToPresent": "{0} - sada", @@ -573,75 +253,29 @@ "ServerNameIsShuttingDown": "Jellyfin Server - {0} se gasi.", "ServerUpdateNeeded": "Jellyfin Server treba ažurirati. Da biste preuzeli najnoviju verziju, posjetite {0}", "Settings": "Postavke", - "SettingsSaved": "Settings saved.", "Share": "Dijeli", "ShowIndicatorsFor": "Prikaži pokazatelja za:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Miješaj", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Epizode će se usporediti pomoću sezone i broja epizode, kada su dostupni.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Složi kanale po:", "SortName": "Ime vrste", "Sports": "Sportovi", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studija", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titlovi", - "Suggestions": "Suggestions", "Sunday": "Nedjelja", "Sync": "Sink.", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Oznake", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Molimo Vas da uživate u jednoj minuti reprodukcije. Hvala što ste isprobali Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Četvrtak", "TrackCount": "{0} pjesme", "Trailer": "Kratki video", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Pokušajte višestruki odabir", "TryMultiSelectMessage": "Da biste uredili više medijskih stavaka, samo kliknite i držite bilo koji plakat i odaberite stavke kojima želite upravljati. Probaj!", "Tuesday": "Utorak", - "Uniform": "Uniform", "UnlockGuide": "Otključaj vodič", - "Unplayed": "Unplayed", "Unrated": "Neocijenjeno", "UntilIDelete": "Dok ne izbrišem", "UntilSpaceNeeded": "Dok ne treba prostora", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} albuma", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizoda", @@ -649,32 +283,18 @@ "ValueMinutes": "{0} minuta", "ValueMovieCount": "{0} filmova", "ValueMusicVideoCount": "{0} glazbenih videa", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 igra", - "ValueOneItem": "1 item", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 glazbeni video", "ValueOneSeries": "1 serija", "ValueOneSong": "1 pjesma", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serija", "ValueSongCount": "{0} pjesma", "ValueSpecialEpisodeName": "Specijal - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Pogledaj album", "ViewArtist": "Pogledaj umjetnika", "VoiceInput": "Ulazni glas", - "Watched": "Watched", "Wednesday": "Srijeda", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Pisac", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/hu.json b/src/bower_components/emby-webcomponents/strings/hu.json index c4ea5df5c0..e94ea9804d 100644 --- a/src/bower_components/emby-webcomponents/strings/hu.json +++ b/src/bower_components/emby-webcomponents/strings/hu.json @@ -1,680 +1,242 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Hozzáad", "AddToCollection": "Hozzáadás gyűjteményhez", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Lejátszási listához adni", "AddedOnValue": "Hozzáadva {0}", "Advanced": "Haladó", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Összes epizód", "AllLanguages": "Összes nyelv", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", "Ascending": "Növekvő", - "AspectRatio": "Aspect ratio", "AttributeNew": "Új", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", "AudioProfileNotSupported": "Audió profil nem támogatott", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatikus (a nyelvi beállítások alapján)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", "Books": "Könyvek", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Mégsem", "ButtonGotIt": "Értettem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Egy perc lejátszása", "ButtonRestart": "Újraindítás", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "A Cinema Mode igazi mozi élményt nyújt előzetessel és egyedi intróval a film vetítése előtt.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Gyűjtemények", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Közösségi értékelés", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Kapcsolódás", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Tovább", "ContinueInSecondsValue": "Tovább {0} mp múlva.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", "Convert": "Átkonvertál", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "Csak a nem látott videók konvertálása", "ConvertUnwatchedVideosOnlyHelp": "Csak a nem látott videók lesznek konvertálva.", "ConvertingDots": "Átkonvertálás...", - "Countries": "Countries", - "CriticRating": "Critic rating", "DateAdded": "Hozzáadva", "DatePlayed": "Lejátszás dátuma", "Days": "Nap", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Törlés", "DeleteMedia": "Média törlés", - "Depressed": "Depressed", "Descending": "Csökkenő", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Rendező", "DirectorValue": "Rendező: {0}", "DirectorsValue": "Rendezők: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Nem tettszik", "Display": "Megjelenítés", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Hiányzó évad epizódok megjelenítése", "DisplayMissingEpisodesWithinSeasonsHelp": "Ezt engedélyezni kell az Jellyfin Szerver beállításban lévő TV könyvtárak esetében is.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", "Down": "Le", "Download": "Letöltés", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Letöltött", "Downloading": "Letöltés", "DownloadingDots": "Letöltés...", "Downloads": "Letöltések", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Szerkesztés", "EditImages": "Képek szerkesztése", "EditMetadata": "Metaadat szerkesztés", "EditSubtitles": "Feliratok szerkesztése", "EnableBackdrops": "Háttérképek engedélyezve", "EnableBackdropsHelp": "Ha engedélyezve van, akkor a háttérképek a könyvtár böngészése közben néhány oldal hátterében jelennek meg.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Főcím dalok engedélyezése", "EnableThemeSongsHelp": "Ha engedélyezve van, a főcím dalok a háttérben játszódnak le a könyvtár böngészése közben.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Várható befejezés {0}", "Episodes": "Epizódok", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Kedvenc", "Favorites": "Kedvencek", "FeatureRequiresJellyfinPremiere": "Ez a szolgáltatás aktív Jellyfin Premier előfizetést igényel.", "Features": "Jellemzők", - "File": "File", - "Fill": "Fill", "Filters": "Szűrők", "Folders": "Mappák", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Péntek", - "GenreValue": "Genre: {0}", "Genres": "Műfajok", "GenresValue": "Műfajok: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Hozzáadás gyűjteményhez", "HeaderAddToPlaylist": "Lejátszási listához adni", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Már Fizetve?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Hangos könyvek", "HeaderAudioSettings": "Audió Beállítások", "HeaderBecomeProjectSupporter": "Jellyfin Premiere beszerzése", "HeaderBenefitsJellyfinPremiere": "Jellyfin Premiere előnyei", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", "HeaderCloudSync": "Felhőszinkronizáció ", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", "HeaderContinueWatching": "Vetítés(ek) folytatása", - "HeaderConvertYourRecordings": "Convert Your Recordings", "HeaderCustomizeHomeScreen": "Kezdőképernyő testreszabása", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Képernyő beállítások", "HeaderDownloadSettings": "Letöltés beállítások", "HeaderEditImages": "Képek szerkesztése", "HeaderEnabledFields": "Engedélyezett mezők", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "Külső id-k:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", "HeaderFavoriteEpisodes": "Kedvenc Epizódok", - "HeaderFavoriteGames": "Favorite Games", "HeaderFavoriteMovies": "Kedvenc Filmek", - "HeaderFavoritePlaylists": "Favorite Playlists", "HeaderFavoriteShows": "Kedvenc Műsorok", "HeaderFavoriteSongs": "Kedvenc Dalok", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Ingyenes Jellyfin alkalmazások", "HeaderHomeScreen": "Kezdőképernyő", "HeaderIdentifyItemHelp": "Adj meg egy vagy több keresési kritériumot. Távolítsd el a kritériumokat a keresési eredmények növelése érdekében.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Legújabb innen {0}", "HeaderLatestMedia": "Legújabb média", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", "HeaderLibraryFolders": "Könyvtár mappák", "HeaderLibraryOrder": "Médiatár rendezés", "HeaderMetadataSettings": "Metaadat Beállítások", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Jelenlegi eszköz", "HeaderMyMedia": "Médiatáram", "HeaderMyMediaSmall": "Médiatáram (kicsi)", "HeaderNewRecording": "Új Felvétel", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "Következik", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Offline Média", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", "HeaderPlayOn": "Vetítés itt", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Válassz dátumot", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Felirat Beállítások", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "Funkció feloldása", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Videó típusa:", "HeaderWaitingForWifi": "Wifi-re vár", - "HeaderYouSaid": "You Said...", "Help": "Segítség", - "Hide": "Hide", "HideWatchedContentFromLatestMedia": "A megtekintett tartalom elrejtése a legújabb médiából", "Home": "Kezdőlap", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Azonosítás", "Images": "Képek", - "ImdbRating": "IMDb rating", "InstallingPackage": "{0} Telepítése", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "3D formátum:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Előadók:", - "LabelArtistsHelp": "Separate multiple using ;", "LabelAudio": "Audió:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", "LabelBirthYear": "Születési év:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "Gyűjtemény:", "LabelCommunityRating": "Közösségi értékelés:", "LabelContentType": "Tartalom típusa:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Ország:", "LabelCriticRating": "Kritikusok értékelése", "LabelCustomRating": "Egyéni értékelés:", "LabelDashboardTheme": "Szerver vezérlőpult kinézet:", "LabelDateAdded": "Hozzáadva:", "LabelDateTimeLocale": "Földrajzi dátum:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Megjelenítési sorrend:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mail cím:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Epizód száma:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Kezdőképernyő blokk {0}:", "LabelImageType": "Kép típusa:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Elemszám limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Nyelv:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Elsődleges letöltendő nyelv:", "LabelName": "Név:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Eredeti képarány:", "LabelOriginalTitle": "Eredeti cím:", "LabelOverview": "Tartalom:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Korhatár besorolás:", "LabelPath": "Útvonal:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Lejátszási lista:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Minőség:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", "LabelRefreshMode": "Frissítési mód:", "LabelReleaseDate": "Megjelenés dátuma:", "LabelRuntimeMinutes": "Játékidő (perc):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Évad száma:", "LabelSelectFolderGroups": "Automatikusan csoportosítsa a következő mappák tartalmát olyan nézetekre, mint a Filmek, a Zene és a TV:", "LabelSelectFolderGroupsHelp": "A ki nem választott mappák önmagukban, saját nézetben jelennek meg.", "LabelShortOverview": "Rövid tartalom:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", "LabelSortBy": "Rendezés:", "LabelSortOrder": "Sorrend:", "LabelSortTitle": "ABC szerinti cím:", - "LabelSoundEffects": "Sound effects:", "LabelSource": "Forrás:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Státusz:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", "LabelSubtitles": "Feliratok:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Címke:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", "LabelTheme": "Kinézet:", "LabelTitle": "Cím:", - "LabelTrackNumber": "Track number:", "LabelType": "Típus:", - "LabelVersion": "Version:", "LabelVideo": "Videó:", "LabelWebsite": "Weboldal:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Év:", - "Large": "Large", "LatestFromLibrary": "Legújabb {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "Tettszik", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Élő", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "A Live TV aktív Jellyfin Premiere előfizetést igényel.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", "MarkWatched": "Megtekintett", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", "MessageUnlockAppWithSupporter": "Engedélyezd ezt a funkciót aktív Jellyfin Premiere előfizetéssel.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Hétfő", "More": "Tovább", - "MoveLeft": "Move left", - "MoveRight": "Move right", "Movies": "Filmek", "MySubtitles": "Feliratok", "Name": "Név", "NewCollection": "Új Gyűjtemény", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Például: Star Wars Gyűjtemény", "NewEpisodes": "Új epizódok", "NewEpisodesOnly": "Csak új epizódok", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Nincs találat.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Nincs", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Megnyitás", "OptionNew": "Új...", - "Original": "Original", "OriginalAirDateValue": "Eredeti vetítés dátuma: {0}", - "Overview": "Overview", "PackageInstallCancelled": "{0} telepítése megszakítva.", "PackageInstallCompleted": "{0} telepítése befejezve.", "PackageInstallFailed": "{0} telepítése nem sikerült.", "ParentalRating": "Korhatár besorolás", "People": "Személyek", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Lejátszás", "PlayAllFromHere": "Összes vetítése innen", "PlayCount": "Lejátszások száma", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Megnézett", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Kérlek indítsd újra az Jellyfin Szerver-t - {0}.", "PleaseSelectDeviceToSyncTo": "Válassz egy eszközt a letöltéshez.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Minőség", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Felvétel", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Frissítés", "RefreshDialogHelp": "A metaadatok frissítése az Jellyfin Server vezérlőpultjában engedélyezett beállítások és internetszolgáltatások alapján történik.", "RefreshMetadata": "Metaadat frissítés", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", "ReleaseDate": "Megjelenés dátuma", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Ismétlés", "RepeatAll": "Folyamatos ismétlés ", - "RepeatEpisodes": "Repeat episodes", "RepeatMode": "Ismétlő mód", "RepeatOne": "Ismétlés egyszer", "ReplaceAllMetadata": "Összes metaadat cseréje", "ReplaceExistingImages": "Cserélje ki a meglévő képeket", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Játékidő", "Saturday": "Szombat", "Save": "Mentés", "ScanForNewAndUpdatedFiles": "Keresés az új és frissített fileokra", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Keresés", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", "SearchForMissingMetadata": "Keresés a hiányzó metaadatokra", "SearchForSubtitles": "Felirat keresése", "SearchResults": "A keresés eredménye", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", "SeriesYearToPresent": "{0} - Napjainkig", "ServerNameIsRestarting": "Jellyfin Szerver - {0} újraindul.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} leáll.", "ServerUpdateNeeded": "Ezt az Jellyfin Sertvert frissíteni kell. A legújabb verzió letöltéséhez kérjük, látogass el ide {0}", "Settings": "Beállítások", - "SettingsSaved": "Settings saved.", "Share": "Megosztás", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "Név megjelenítése", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Keverés", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Az epizódokat összehasonlítjuk az évad és az epizód számával, ha rendelkezésre állnak.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", "Sort": "Rendezés: ", "SortByValue": "Rendezés {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", "StatsForNerds": "Szakértői statisztika", - "StopRecording": "Stop recording", "Studios": "Stúdiók", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Feliratok", "Suggestions": "Javaslatok", "Sunday": "Vasárnap", "Sync": "Szinkronizál", - "SyncJobItemStatusCancelled": "Cancelled", "SyncJobItemStatusConverting": "Átkonvertálás", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Címkék", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Csütörtök", - "TrackCount": "{0} tracks", "Trailer": "Előzetes", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Kedd", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Fel", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} epizód", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Videó profil nem támogatott", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", "Watched": "Megtekintett", "Wednesday": "Szerda", "WifiRequiredToDownload": "Wifi kapcsolat szükséges a letöltés folytatásához.", "Writer": "Író", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/id.json b/src/bower_components/emby-webcomponents/strings/id.json index 9dc97a0b36..6f32d39252 100644 --- a/src/bower_components/emby-webcomponents/strings/id.json +++ b/src/bower_components/emby-webcomponents/strings/id.json @@ -1,680 +1,6 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tipe konten:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Negara:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Bahasa:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/it.json b/src/bower_components/emby-webcomponents/strings/it.json index 8842e91080..2f8d67eb68 100644 --- a/src/bower_components/emby-webcomponents/strings/it.json +++ b/src/bower_components/emby-webcomponents/strings/it.json @@ -26,7 +26,6 @@ "AnyLanguage": "Qualsiasi lingua", "Anytime": "In qualsiasi momento", "AroundTime": "Circa {0}", - "Art": "Art", "Artists": "Artisti", "AsManyAsPossible": "Tutto il possibile", "Ascending": "Crescente", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Il codec audio non è supportato", "AudioProfileNotSupported": "Profilo audio non supportato", "AudioSampleRateNotSupported": "Il tasso di campionamento audio non è supportato", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basato sull'impostazione della lingua)", "AutomaticallyConvertNewContent": "Converti automaticamente i nuovi contenuti", "AutomaticallyConvertNewContentHelp": "I nuovi contenuti aggiunti in questa cartella verranno automaticamente convertiti.", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "I nuovi contenuti aggiunti verranno scaricati automaticamente al dispositivo.", "Backdrop": "Sfondo", "Backdrops": "Sfondi", - "Banner": "Banner", "BestFit": "Adatta", "BirthLocation": "Luogo di nascita", "Books": "Libri", - "Box": "Box", "BoxRear": "Box (retro)", "BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorerà le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB / IDX, ecc.) così come alcuni sottotitoli ASS / SSA", "ButtonCancel": "Annulla", "ButtonGotIt": "Ho capito", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Riproduci un minuto", "ButtonRestart": "Riavvia", "ButtonRestorePreviousPurchase": "Ripristina Acquisto", @@ -95,7 +90,6 @@ "ConvertItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno convertiti.", "ConvertUnwatchedVideosOnly": "Converti solo video non visti", "ConvertUnwatchedVideosOnlyHelp": "Verranno convertiti solo video non visti", - "ConvertingDots": "Converting...", "Countries": "Nazioni", "CriticRating": "Voto della critica", "DateAdded": "Aggiunto il", @@ -134,7 +128,6 @@ "Downloading": "In scaricamento", "DownloadingDots": "In scaricamento...", "Downloads": "Scaricamenti", - "DownloadsValue": "{0} downloads", "DropShadow": "Ombreggiato", "DvrFeatureDescription": "Pianifica le registrazioni di Live TV, registrazioni di serie e altro ancora con Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR richiede un abbonamento ad Jellyfin Premiere.", @@ -173,7 +166,6 @@ "Favorites": "Preferiti", "FeatureRequiresJellyfinPremiere": "Questa funzionalità richiede un abbonamento ad Jellyfin Premiere.", "Features": "Caratteristiche", - "File": "File", "Fill": "Riempi", "Filters": "Filtri", "Folders": "Cartelle", @@ -195,7 +187,6 @@ "HeaderAddUpdateImage": "Aggiungi/aggiorna Immagine", "HeaderAlbumArtists": "Artisti Album", "HeaderAlreadyPaid": "Hai già pagato?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audiolibri", "HeaderAudioSettings": "Impostazioni audio", "HeaderBecomeProjectSupporter": "Ottieni Jellyfin Premiere", @@ -208,7 +199,6 @@ "HeaderContinueListening": "Continua ad ascoltare", "HeaderContinueWatching": "Continua a guardare", "HeaderConvertYourRecordings": "Converti le tue Registrazioni", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Elimina Elemento", "HeaderDeleteItems": "Elimina Elementi", "HeaderDisplaySettings": "Impostazioni Video", @@ -284,7 +274,6 @@ "Help": "Aiuto", "Hide": "Nascondi", "HideWatchedContentFromLatestMedia": "Nascondi i contenuti già visti dagli Ultimi Media", - "Home": "Home", "Horizontal": "Orizzontale", "HowDidYouPay": "Come hai pagato?", "IHaveJellyfinPremiere": "Sono abbonato ad Jellyfin Premiere", @@ -306,15 +295,12 @@ "LabelAirsAfterSeason": "In onda dopo la stagione:", "LabelAirsBeforeEpisode": "In onda prima dell'episodio:", "LabelAirsBeforeSeason": "In onda prima della stagione:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Artisti album:", "LabelArtists": "Artisti:", "LabelArtistsHelp": "Separa valori multipli usando ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Lingua audio preferita:", "LabelBirthDate": "Data di nascita:", "LabelBirthYear": "Anno di nascita:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Applica sottotitoli:", "LabelChannels": "Canali:", "LabelCollection": "Collezione:", @@ -336,11 +322,9 @@ "LabelDisplayOrder": "Ordine di visualizzazione:", "LabelDropImageHere": "Rilasciare l'immagine qui, oppure clicca per sfogliare.", "LabelDropShadow": "Ombreggiatura:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Indirizzo e-mail:", "LabelEndDate": "Data di fine:", "LabelEpisodeNumber": "Numero espisodio:", - "LabelFont": "Font:", "LabelHomeNetworkQuality": "Qualità della rete domestica:", "LabelHomeScreenSectionValue": "Pagina iniziale Sezione {0}:", "LabelImageType": "Tipo immagine:", @@ -364,7 +348,6 @@ "LabelPersonRoleHelp": "Esempio: Autista di chiosco dei gelati", "LabelPlaceOfBirth": "Luogo di nascita:", "LabelPlayDefaultAudioTrack": "Riprodurre la traccia audio di default indipendentemente dalla lingua", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Lingua dei sottotitoli preferita:", "LabelProfile": "Profilo:", "LabelQuality": "Qualità:", @@ -378,7 +361,6 @@ "LabelSelectFolderGroups": "Raggruppa i contenuti delle seguenti cartelle in viste come Film, Musica e Serie TV", "LabelSelectFolderGroupsHelp": "Le cartelle non selezionate verranno mostrate come se stesse nelle proprie viste", "LabelShortOverview": "Trama breve:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Durata salta indietro:", "LabelSkipForwardLength": "Durata salta avanti:", "LabelSortBy": "Ordina per:", @@ -404,7 +386,6 @@ "LabelTrackNumber": "Numero traccia:", "LabelType": "Tipo:", "LabelVersion": "Versione:", - "LabelVideo": "Video:", "LabelWebsite": "Sito Web:", "LabelWindowBackgroundColor": "Colore di sfondo del testo:", "LabelYear": "Anno:", @@ -420,7 +401,6 @@ "LiveTV": "Diretta TV", "LiveTvFeatureDescription": "Stream Live TV a qualsiasi applicazione Jellyfin, con un dispositivo di sintonizzatore TV compatibile installato sul server Jellyfin.", "LiveTvRequiresUnlock": "La TV in diretta richiede un abbonamento Jellyfin Premiere attivo.", - "Logo": "Logo", "ManageRecording": "Gestisci registrazione", "MarkPlayed": "Segna visto", "MarkUnplayed": "Segna non visto", @@ -434,8 +414,6 @@ "MessageDownloadQueued": "Scaricamento programmato.", "MessageFileReadError": "Si è verificato un errore durante la lettura del file. Si prega di riprovare.", "MessageIfYouBlockedVoice": "Se hai negato l'accesso vocale all'app dovrai riconfigurarlo prima di riprovare di nuovo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un'email è stata inviata a {0} invitandolo a registrarsi a Jellyfin", "MessageInvitationSentToUser": "Una e-mail è stata inviata a {0}, invitandoli ad accettare l'invito di condivisione.", "MessageItemSaved": "Elemento salvato.", @@ -454,7 +432,6 @@ "MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.", "MinutesAfter": "minuti dopo", "MinutesBefore": "minuti prima", - "Mobile": "Mobile / Tablet", "Monday": "Lunedì", "More": "Dettagli", "MoveLeft": "Sposta a sinistra", @@ -469,7 +446,6 @@ "NewEpisodesOnly": "Solo i nuovi episodi", "News": "Notizie", "Next": "Prossimo", - "No": "No", "NoItemsFound": "Nessun elemento trovato.", "NoSubtitleSearchResultsFound": "Nessun risultato.", "NoSubtitles": "Nessun Sottotitolo", @@ -503,8 +479,6 @@ "PlaybackErrorNoCompatibleStream": "Nessuna trasmissione compatibile è al momento disponibile. Per favore riprova in seguito o contatta il tuo Amministratore di sistema per chiarimenti", "PlaybackErrorNotAllowed": "Al momento non sei autorizzato a riprodurre questo contenuto. Per favore contatta l'amministratore del sistema per ulteriori dettagli", "PlaybackErrorPlaceHolder": "Per favore inserisci i dischi nell'ordine per riprodurre questo video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Visto", "Playlists": "Playlist", "PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.", @@ -584,7 +558,6 @@ "SkipEpisodesAlreadyInMyLibraryHelp": "Gli episodi verranno confrontati usando la stagione ed il numero dell'episodio, quando disponibili.", "Small": "Piccolo", "SmallCaps": "Maiuscoletto", - "Smaller": "Smaller", "Smart": "Intelligente", "SmartSubtitlesHelp": "I sottotitoli che coincidono con la lingua nelle preferenze verranno caricati quando l'audio sarà in una lingua straniera.", "Songs": "Canzoni", @@ -595,12 +568,9 @@ "Sports": "Sport", "StatsForNerds": "Statistiche per nerds", "StopRecording": "Ferma registrazione", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Queste impostazioni si applicano anche a qualsiasi riproduzione di Chromecast avviata da questo dispositivo.", "SubtitleAppearanceSettingsDisclaimer": "Queste impostazioni non si applicano a sottotitoli grafici (PGS, DVD, ecc.), o sottotitoli che hanno i propri stili incorporati (ASS / SSA).", "SubtitleCodecNotSupported": "Il formato del sottotitolo non è supportato", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Sottotitoli", "Suggestions": "Suggerimenti", "Sunday": "Domenica", @@ -616,10 +586,7 @@ "SyncJobItemStatusTransferring": "Trasferendo", "SyncUnwatchedVideosOnly": "Scarica solo i video non visti", "SyncUnwatchedVideosOnlyHelp": "Solo i video non visti verranno scaricati, e verranno rimossi dal dispositivo non appena visti.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tag", - "TagsValue": "Tags: {0}", "TermsOfUse": "Termini di utilizzo", "ThankYouForTryingEnjoyOneMinute": "Siamo lieti di offrirti un minuto di riproduzione. Grazie per aver provato Jellyfin.", "ThemeSongs": "Temi canzoni", @@ -628,7 +595,6 @@ "Thumb": "Miniatura", "Thursday": "Giovedì", "TrackCount": "{0} tracce", - "Trailer": "Trailer", "Trailers": "Trailer", "Transcoding": "Trascodifica", "TryMultiSelect": "Prova la selezione multipla", @@ -646,10 +612,8 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodi", "ValueGameCount": "{0} giochi", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} video musicali", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 episodio", "ValueOneGame": "1 gioco", "ValueOneItem": "1 elemento", diff --git a/src/bower_components/emby-webcomponents/strings/kk.json b/src/bower_components/emby-webcomponents/strings/kk.json index 0c21b9e8c9..aa8c04be4d 100644 --- a/src/bower_components/emby-webcomponents/strings/kk.json +++ b/src/bower_components/emby-webcomponents/strings/kk.json @@ -336,7 +336,6 @@ "LabelDisplayOrder": "Бейнелеу реті:", "LabelDropImageHere": "Суретті мұнда сүйретіңіз немесе шарлау үшін нұқыңыз.", "LabelDropShadow": "Жиектер:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Э-пошта мекенжайы:", "LabelEndDate": "Аяқталу күні:", "LabelEpisodeNumber": "Бөлім нөмірі:", @@ -434,8 +433,6 @@ "MessageDownloadQueued": "Жүктеп алу кезекте.", "MessageFileReadError": "Файл оқу кезінде қате орын алды. Әрекетті кейін қайталаңыз.", "MessageIfYouBlockedVoice": "Егер қолданбаға дауыстық қатынаудан бас тартсаңыз, қайта әрекеттенуіңізден алдынан қайта теңшеуіңіз қажет болады.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Jellyfin үшін тіркелу шақыруыңыз, э-пошта {0} үшін жіберілді.", "MessageInvitationSentToUser": "Оларға ортақтасу шақыруыңызды қабылдау ұсынысымен, э-пошта {0} арнап жіберілді.", "MessageItemSaved": "Тармақ сақталды.", @@ -503,7 +500,6 @@ "PlaybackErrorNoCompatibleStream": "Ағымда ешқандай сыйысымды ағындар қолжетімді емес. Әрекетті кейін қайталаңыз немесе толық мәліметтер үшін жүйелік әкімшіңізге байланысыңыз.", "PlaybackErrorNotAllowed": "Осы мазмұнды ойнату үшін ағымда сізге рұқсат етілмеген. Толық мәліметтер үшін жүйелік әкімшіңізге байланысыңыз.", "PlaybackErrorPlaceHolder": "Осы бейнені ойнату үшін дискіні енгізіңіз.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Әдепкі ойнату параметрлерін теңшеу үшін бейне ойнатуды тоқтатыңыз, содан кейін қолданбаның жоғарғы оң жақ бөлігіндегі пайдаланушы белгішесін басыңыз.", "Played": "Ойнатылған", "Playlists": "Ойнату тізімдері", @@ -599,7 +595,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Бұл параметрлер осы құрылғы арқылы іске қосылған кез-келген Chromecast ойнатуына қолданылады.", "SubtitleAppearanceSettingsDisclaimer": "Бұл параметрлер графикалық субтитрлерге (PGS, DVD ж.т.б.) немесе өз мәнері бар ендірілген субтитрлерге (ASS/SSA) қолданылмайды.", "SubtitleCodecNotSupported": "Субтитрлер пішім үшін қолдау көрсетілмейді", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Әдепкі субтитр көрінісін және тіл параметрлерін теңшеу үшін бейне ойнатуды тоқтатыңыз, содан кейін қолданбаның жоғарғы оң жақ бөлігіндегі пайдаланушы белгішесін басыңыз.", "Subtitles": "Субтитрлер", "Suggestions": "Ұсыныстар", diff --git a/src/bower_components/emby-webcomponents/strings/ko.json b/src/bower_components/emby-webcomponents/strings/ko.json index ce76774d9a..312244560d 100644 --- a/src/bower_components/emby-webcomponents/strings/ko.json +++ b/src/bower_components/emby-webcomponents/strings/ko.json @@ -1,647 +1,135 @@ { - "Absolute": "Absolute", - "Accept": "Accept", "AccessRestrictedTryAgainLater": "접근이 제한되었습니다. 다시 시도하세요.", "Actor": "배우", "Add": "추가", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "재생목록에 추가", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", "All": "모두", "AllChannels": "모든 채널", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "모든 에피소드", "AllLanguages": "모든 언어", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "신규", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "배경", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "취소", "ButtonGotIt": "그럴게요.", "ButtonOk": "OK", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "다시 시작", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "다시 시도하세요", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "작곡가", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "이 항목을 삭제하면 파일 시스템과 라이브러리 모두에서 삭제됩니다. 계속하겠습니까?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeletion": "삭제 확인", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "접속", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "일", - "Default": "Default", "DefaultErrorMessage": "요구 처리 과정에 오류가 발생하였습니다. 다시 시도하세요.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "삭제", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "감독", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "싫어함", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "다운로드", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "편집", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", "EditSubtitles": "자막 편집", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "시네마 모드 사용", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", "Error": "오류", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "금요일", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "컬렉션에 추가", "HeaderAddToPlaylist": "재생목록에 추가", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", "HeaderConfirmRecordingCancellation": "녹화 취소 확인", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "항목 삭제", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "메타데이터 설정", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "내 미디어 (작음)", "HeaderNewRecording": "신규 녹화", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "재생 오류", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "날짜 선택", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "스페셜 에피소드 정보", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "도움말", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", "Images": "이미지", - "ImdbRating": "IMDb rating", "InstallingPackage": "{0} 설치 중", "InstantMix": "인스턴트 믹스", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} 항목", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "3D 형식:", "LabelAirDays": "방영일:", "LabelAirTime": "방영 시각:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "앨범", "LabelAlbumArtists": "앨범 아티스트:", "LabelArtists": "아티스트:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "생일:", "LabelBirthYear": "생년:", "LabelBitrateMbps": "비트레이트 (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "커뮤니티 평점:", "LabelContentType": "콘텐츠 종류:", - "LabelConvertTo": "Convert to:", "LabelCountry": "국가:", "LabelCriticRating": "Critic 평점:", "LabelCustomRating": "사용자 평점:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "추가한 날짜:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "사망일:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "표시 순서:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "항목 제한:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "언어:", "LabelLockItemToPreventChanges": "변경할 수 없게 항목 잠금", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "다운로드 선호 언어:", - "LabelName": "Name:", "LabelNumber": "번호:", "LabelOriginalAspectRatio": "원 화면비율:", - "LabelOriginalTitle": "Original title:", "LabelOverview": "줄거리:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "등급:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "출생지:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "재생목록:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "프로파일:", "LabelQuality": "품질:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "개봉일:", "LabelRuntimeMinutes": "상영 시간 (분):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "줄거리 요약:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "상태:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "동기화 작업 이름:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "동기화 장치:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "태그라인:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", "LabelTrackNumber": "트랙 번호:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "웹사이트:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "더 알아보기", "Like": "좋아함", - "LinksValue": "Links: {0}", - "List": "List", "Live": "라이브", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "자동 시리즈 녹화를 예약하려면 Jellyfin 프리미어 가입이 필요합니다.", "MessageAreYouSureDeleteSubtitles": "이 자막 파일을 삭제하겠습니까?", "MessageConfirmRecordingCancellation": "이 녹화를 취소하겠습니까?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "항목이 저장되었습니다.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "월요일", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "새 컬렉션", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "항목이 없습니다.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "열기", - "OptionNew": "New...", - "Original": "Original", "OriginalAirDateValue": "최초 방송일: {0}", - "Overview": "Overview", "PackageInstallCancelled": "{0} 설치 취소.", "PackageInstallCompleted": "{0} 설치 완료.", "PackageInstallFailed": "{0} 설치 실패.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "재생", "PlayAllFromHere": "여기부터 모두 재생", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "재생함", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "최소 두 개의 항목을 선택하세요.", "Premiere": "프리미어", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "프로듀서", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", "QueueAllFromHere": "여기부터 모두 대기열에 추가", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "녹화", "RecordSeries": "시리즈 녹화", "RecordingCancelled": "녹화가 취소되었습니다.", "RecordingScheduled": "녹화가 예약되었습니다.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "새로 고침", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", "RemoveFromPlaylist": "재생목록에서 제거", - "RemovingFromDevice": "Removing from device", "Repeat": "반복", "RepeatAll": "모두 반복", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", "ReplaceExistingImages": "현재 이미지 교체", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "토요일", "Save": "저장", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "찾기", "SearchForCollectionInternetMetadata": "인터넷에서 아트워크와 메타데이터 검색", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "자막 검색", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "시리즈가 취소되었습니다.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "시리즈 녹화가 예약되었습니다.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "설정", - "SettingsSaved": "Settings saved.", "Share": "공유", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "작음", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", "SortName": "정렬 제목", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "일요일", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "태그", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "목요일", "TrackCount": "{0} 트랙", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "화요일", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} 앨범", "ValueDiscNumber": "디스크 {0}", "ValueEpisodeCount": "{0} 에피소드", @@ -652,29 +140,16 @@ "ValueOneAlbum": "1 앨범", "ValueOneEpisode": "1 에피소드", "ValueOneGame": "1 게임", - "ValueOneItem": "1 item", "ValueOneMovie": "1 영화", "ValueOneMusicVideo": "1 뮤직 비디오", "ValueOneSeries": "1 시리즈", "ValueOneSong": "1 노래", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 시리즈", "ValueSongCount": "{0} 노래", "ValueSpecialEpisodeName": "특별편 - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "앨범 보기", "ViewArtist": "아티스트 보기", - "VoiceInput": "Voice Input", "Watched": "시청함", "Wednesday": "수요일", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "작가", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/lt-lt.json b/src/bower_components/emby-webcomponents/strings/lt-lt.json index 895d52f0c8..196cfb73ba 100644 --- a/src/bower_components/emby-webcomponents/strings/lt-lt.json +++ b/src/bower_components/emby-webcomponents/strings/lt-lt.json @@ -1,58 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Aktorius", "Add": "Pridėti", "AddToCollection": "Pridėti į kolekciją", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Pridėti į grojaraštį", - "AddedOnValue": "Added {0}", "Advanced": "Smulkiau", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Visi kanalai", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Visas serijas", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Bet kada", "AroundTime": "Maždaug {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Kiek tik įmanoma", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Naujas", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Fonai", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Gimimo vieta", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Atšaukti", "ButtonGotIt": "Supratau", "ButtonOk": "OK", @@ -62,142 +21,49 @@ "ButtonTryAgain": "Bandyti dar", "ButtonUnlockPrice": "Atrakinti {0}", "ButtonUnlockWithPurchase": "Atrakinti perkant", - "CancelDownload": "Cancel download", "CancelRecording": "Atšaukti įrašymą", "CancelSeries": "Atšaukti laidą", "Categories": "Kategorijos", "ChannelNameOnly": "Kanalas tik {0}", "ChannelNumber": "Kanalo numeris", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "Kinoteatro režimas papildomai rodo anonsus ir kitą medžiagą prieš filmą.", "CloudSyncFeatureDescription": "Sinchronizuokite savo mediją su debesimi lengvam išsaugojimui, archyvavimui ir konvertavimui.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Kompozitorius", "ConfigureDateAdded": "Pakeisti, kaip nustatoma pridėjimo data galima Jellyfin Serveryje prie Bibliotekos nustatymų", "ConfirmDeleteImage": "Trinti paveikslą?", "ConfirmDeleteItem": "Tai atlikus elementas bus ištrintas ir iš bibliotekos, ir iš failų sistemos. Ar tikrai norite tęsti?", "ConfirmDeleteItems": "Tai atlikus šie elementai bus ištrinti ir iš bibliotekos, ir iš failų sistemos. Ar tikrai norite tęsti?", "ConfirmDeletion": "Patvirtinti trynimą", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Tęsiamas", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Šalys", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dienos", - "Default": "Default", "DefaultErrorMessage": "Įvyko klaida vykdant užklausą. Pabandykite vėliau.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Ištrinti", "DeleteMedia": "Trinti mediją", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režisierius", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Nepatinka", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Neįrašyti", - "Down": "Down", "Download": "Siųstis", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", "Downloads": "Atsiuntimai", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR reikalauja aktyvios Jellyfin Premiere prenumeratos.", "Edit": "Redaguoti", "EditImages": "Redaguoti paveikslus", - "EditMetadata": "Edit metadata", "EditSubtitles": "Redaguoti subtitrus", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Įjungti spalvotus fonus", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Pasibaigė", "EndsAtValue": "Baigiasi {0}", - "Episodes": "Episodes", "Error": "Klaida", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Mėgstamas", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Šiai funkcijai reikia aktyvios Jellyfin Serverio prenumeratos.", - "Features": "Features", "File": "Failas", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Gaukite nemokamas Jellyfin programėles savo įrenginiams.", "Friday": "Penktadienis", - "GenreValue": "Genre: {0}", "Genres": "Žanrai", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Grupuoti versijas", "GuestStar": "Kviestinė žvaigždė", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD laidoms", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Pridėti į Kolekciją", "HeaderAddToPlaylist": "Pridėti į Grojaraštį", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Gauti Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Jellyfin Premiere privalumai", "HeaderCancelRecording": "Atšaukti įrašą", @@ -205,100 +71,40 @@ "HeaderCinemaMode": "Kinoteatro režimas", "HeaderCloudSync": "Sinch. su debesimi", "HeaderConfirmRecordingCancellation": "Patvirtinti įrašo atšaukimą", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konvertuokite savo įrašus", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Ištrinti elementą", "HeaderDeleteItems": "Ištrinti elementus", "HeaderDisplaySettings": "Rodymo nustatymai", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Redaguoti paveikslus", "HeaderEnabledFields": "Įjungti laukeliai", "HeaderEnabledFieldsHelp": "Nuimkite varnelę nuo lauko kad jį užrakinti ir neleisti keisti jo duomenų.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Nemokamos Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Įveskite vieną ar daugiau paieškos kriterijų. Pašalinkite kriterijų jei norite gauti daugiau paieškos rezultatų.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Palikti įrašą", "HeaderKeepSeries": "Palikti laidą", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Sužinoti daugiau", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Metaduomenų nustatymai", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Naujas įrašas", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Vietinė medija", "HeaderOfflineDownloadsDescription": "Atsisiųsti mediją į savo įrenginius lengvai prieigai be interneto.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Atkurti mano mediją", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "Įrašymo nustatymai", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Pasakykite maždaug...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Pasirinkite datą", "HeaderSeriesOptions": "Laidų nustatymai", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Ypatingos serijos info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Bandomasis atkūrimas", "HeaderUnlockFeature": "Atrakinti funkciją", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Jūs pasakėte:", "Help": "Padėti", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Kaip sumokėjote?", "IHaveJellyfinPremiere": "Turiu Jellyfin Premiere", "IPurchasedThisApp": "Pirkau šią programėlę", "Identify": "Identifikuoti", "Images": "Paveiksliukai", - "ImdbRating": "IMDb rating", "InstallingPackage": "Įdiegiu {0}", "InstantMix": "Leisti miksą", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementų", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "Vaikams", "Label3DFormat": "3D formatas:", "LabelAirDays": "Eterio dienos:", @@ -310,153 +116,81 @@ "LabelAlbumArtists": "Albumo atlikėjai:", "LabelArtists": "Atlikėjai:", "LabelArtistsHelp": "Atskirti kelis naudojant:", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Gimimo data:", "LabelBirthYear": "Gimimo metai:", "LabelBitrateMbps": "Kokybė (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanalai:", "LabelCollection": "Kolekcija:", "LabelCommunityRating": "Bendruomenės vertinimas:", "LabelContentType": "Turinio tipas:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Šalis:", "LabelCriticRating": "Kritikų vertinimas:", "LabelCustomRating": "Kitoks vertinimas:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Pridėjimo data:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Mirties data:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Rodymo tvarka:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} ID:", "LabelEmailAddress": "E-pašto adresas:", "LabelEndDate": "Pabaigos data:", "LabelEpisodeNumber": "Serijos numeris:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Elementų limitas:", "LabelKeep:": "Laikyti:", "LabelKeepUpTo": "Spėti iki:", "LabelLanguage": "Kalba:", "LabelLockItemToPreventChanges": "Uždrausti šio elemento pakeitimus", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Pageidaujama siuntimo kalba:", "LabelName": "Pavadinimas:", "LabelNumber": "Numeris:", "LabelOriginalAspectRatio": "Originalus formatas:", "LabelOriginalTitle": "Originalus pavadinimas:", "LabelOverview": "Apžvalga:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Tėvų reitingas:", "LabelPath": "Kelias:", "LabelPersonRole": "Vaidmuo:", "LabelPersonRoleHelp": "Pavyzdys: Ledų mašinos vairuotojas", "LabelPlaceOfBirth": "Gimimo vieta:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Grojaraštis:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profilis:", "LabelQuality": "Kokybė:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Įrašyti:", "LabelRefreshMode": "Atnaujinimo režimas:", "LabelReleaseDate": "Išleidimo data:", "LabelRuntimeMinutes": "Trukmė (min.):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sezono numeris:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Trumpa apžvalga:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Rūšiavimo pavadinimas:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Jei galima, pradėti:", "LabelStatus": "Būklė:", "LabelStopWhenPossible": "Jei galima, nutraukti:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Sinchronizavimo darbo pavadinimas:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sinchronizuoti į:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Šūkis:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Pavadinimas:", "LabelTrackNumber": "Dainos numeris:", "LabelType": "Tipas:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Tinklapis:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Metai:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Sužinoti daugiau", "Like": "Patinka", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Tiesiogiai", "LiveBroadcasts": "Tiesioginėms transliacijoms", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Žymėti rodytu", "MarkUnplayed": "Žymėti nerodytu", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Norint kurti automatinius laidos įrašus reikia aktyvios Jellyfin Premiere prenumeratos.", "MessageAreYouSureDeleteSubtitles": "Ar tikrai norite ištrinti šį subtitrų failą?", "MessageConfirmRecordingCancellation": "Ar tikrai norite atšaukti šį įrašą?", "MessageDownloadQueued": "Siuntimas užsakytas.", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Jei neleidote programėlei naudoti mikrofono, pakeiskite nustatymus ir bandykite dar kartą.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Elementas išsaugotas.", "MessageItemsAdded": "Elementai pridėti.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Palikite tuščią kad paveldėtų nustatymus nuo tėviško elemento arba globalias standartines reikšmes.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Jei turite aktyvią Jellyfin Premiere prenumeratą, sutvarkykite Jellyfin Premiere savo Jellyfin Serverio skydelyje. Tai galite atlikti paspaudė Jellyfin Premiere užrašą pagrindiniame meniu.", "MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite šią funkciją nedideliu vienkartiniu mokesčiu arba įsigiję Jellyfin Premiere prenumeratą.", "MessageUnlockAppWithSupporter": "Atrakinkite šią funkciją įsigiję Jellyfin Premiere prenumeratą.", "MessageWeDidntRecognizeCommand": "Deja, nepažinome šios komandos.", "MinutesAfter": "min. po", "MinutesBefore": "min. prieš", - "Mobile": "Mobile / Tablet", "Monday": "Pirmadienis", - "More": "More", "MoveLeft": "Perkelti kairėn", "MoveRight": "Perkelti dešinėn", "Movies": "Filmai", @@ -468,22 +202,10 @@ "NewEpisodes": "Naujoms serijoms", "NewEpisodesOnly": "Tik naujas serijas", "News": "Naujienos", - "Next": "Next", - "No": "No", "NoItemsFound": "Nieko nerasta.", "NoSubtitleSearchResultsFound": "Nieko neradau.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Atidaryti", "OptionNew": "Naujas...", - "Original": "Original", "OriginalAirDateValue": "Pirmo eterio data: {0}", "Overview": "Apžvalga", "PackageInstallCancelled": "{0} įdiegimas atšauktas.", @@ -491,81 +213,45 @@ "PackageInstallFailed": "{0} įdiegimas nepavyko.", "ParentalRating": "Tėvų reitingas", "People": "Žmonės", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Mėgstamiausius kanalus į pradžią", "Play": "Leisti", "PlayAllFromHere": "Leisti viską nuo čia", - "PlayCount": "Play count", "PlayFromBeginning": "Leisti nuo pradžių", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Įveskite vardą arba išorinį ID.", "PleaseRestartServerName": "Prašau paleisti Jellyfin Serverį iš naujo - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Pasirinkite bent du elementus.", "Premiere": "Premiera", "Premieres": "Premieras", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Prodiuseris", "ProductionLocations": "Filmavimo vietos", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Su Jellyfin Premiere automatiškai paverčia įrašus į transliavimui patogius formatus. Įrašai bus iš karto konvertuojami į MP4 arba MKV priklausomai nuo nustatymų.", - "Quality": "Quality", "QueueAllFromHere": "Į eilę viską nuo čia", - "Raised": "Raised", "RecentlyWatched": "Nesenai žiūrėta", "Record": "Įrašyti", "RecordSeries": "Įrašyti laidą", "RecordingCancelled": "Įrašas atšauktas.", "RecordingScheduled": "Įrašas numatytas.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Atnaujinti", "RefreshDialogHelp": "Metaduomenys atnaujinami pagal Jellyfin Serverio nustatymus ir įjungtas interneto paslaugas.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Atnaujinimas užsakytas.", - "Reject": "Reject", "ReleaseDate": "Išleidimo data", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Pašalinti iš kolekcijos", "RemoveFromPlaylist": "Pašalinti iš grojaraščio", - "RemovingFromDevice": "Removing from device", "Repeat": "Kartojimas", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Kartojamoms serijoms", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Pakeisti visus metaduomenis", "ReplaceExistingImages": "Pakeisti esamus paveikslus", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Tęsti nuo {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Trukmė", "Saturday": "Šeštadienis", "Save": "Saugoti", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Ekrano nuotraukos", "Search": "Ieškoti", "SearchForCollectionInternetMetadata": "Ieškoti internete iliustracijų ir metaduomenų", "SearchForMissingMetadata": "Ieškoti trūkstamų metaduomenų", "SearchForSubtitles": "Ieškoti subtitrų", "SearchResults": "Paieškos rezultatai", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Laida atšaukta.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Laidos įrašas numatytas.", "SeriesSettings": "Laidų nustatymai", "SeriesYearToPresent": "{0} - dabar", @@ -573,75 +259,29 @@ "ServerNameIsShuttingDown": "Jellyfin Serveris - {0} išsijungia.", "ServerUpdateNeeded": "Šį Jellyfin serverį reikia atnaujinti. Naujausią versiją atsisiųsti galite {0}", "Settings": "Nustatymai", - "SettingsSaved": "Settings saved.", "Share": "Dalintis", "ShowIndicatorsFor": "Rodyti indikatorius:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Atsitiktinai", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Kai įmanoma serijos bus lyginamos pagal sezonų ir serijų skaičius.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Rūšiuoti kanalus pagal:", "SortName": "Rūšiavimo vardas", "Sports": "Sportas", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studijos", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtitrai", - "Suggestions": "Suggestions", "Sunday": "Sekmadienis", "Sync": "Sinchronizuoti", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Žymės", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Išbandykite vieną minutę atkūrimo. Ačiū kad bandote Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Ketvirtadienis", "TrackCount": "{0} dainų", "Trailer": "Anonsas", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Pabandykite Multi-Select", "TryMultiSelectMessage": "Kelių elementų redagavimui paspauskite ir palaikykite ant bet kurio plakato, o tada pasirinkite norimus redaguoti elementus. Pabandykite!", "Tuesday": "Antradienis", - "Uniform": "Uniform", "UnlockGuide": "Atrakinti gidą", - "Unplayed": "Unplayed", "Unrated": "Nevertinta", "UntilIDelete": "Kol ištrinsiu", "UntilSpaceNeeded": "Kol pritrūks vietos", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} albumų", "ValueDiscNumber": "Diskas {0}", "ValueEpisodeCount": "{0} serijų", @@ -652,29 +292,16 @@ "ValueOneAlbum": "1 albumas", "ValueOneEpisode": "1 serija", "ValueOneGame": "1 žaidimas", - "ValueOneItem": "1 item", "ValueOneMovie": "1 filmas", "ValueOneMusicVideo": "1 muzikinis video", "ValueOneSeries": "1 laida", "ValueOneSong": "1 daina", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} laidų", "ValueSongCount": "{0} dainų", "ValueSpecialEpisodeName": "Ypatinga - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Žiūrėti albumą", "ViewArtist": "Žiūrėti atlikėją", "VoiceInput": "Balso komandos", - "Watched": "Watched", "Wednesday": "Trečiadienis", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Rašytojas", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ms.json b/src/bower_components/emby-webcomponents/strings/ms.json index fe299fa836..1c32b2455d 100644 --- a/src/bower_components/emby-webcomponents/strings/ms.json +++ b/src/bower_components/emby-webcomponents/strings/ms.json @@ -1,680 +1,3 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/nb.json b/src/bower_components/emby-webcomponents/strings/nb.json index 7dc2a640f2..02a11788b6 100644 --- a/src/bower_components/emby-webcomponents/strings/nb.json +++ b/src/bower_components/emby-webcomponents/strings/nb.json @@ -1,7 +1,6 @@ { "Absolute": "Absolutt", "Accept": "Aksepter", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Skuespiller", "Add": "Legg til", "AddToCollection": "Legg til i samling", @@ -9,53 +8,23 @@ "AddToPlaylist": "Legg til spilleliste", "AddedOnValue": "Lagt til {0}", "Advanced": "Avansert", - "AirDate": "Air date", "Aired": "Sendt tidligere", "Albums": "Album", - "All": "All", "AllChannels": "Alle kanaler", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Alle episoder", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", "AndroidUnlockRestoreHelp": "For å gjenopprette tidligere kjøp, må du forsikre deg om at du er logget på enheten med samme Google- (eller Amazonkonto) som opprinnelig gjorde kjøpet. Pass på at appbutikken er aktivert og ikke begrenset av foreldrekontroll,samt sørg for at du har en aktiv internettforbindelse. Du må bare gjøre dette en gang for å gjenopprette ditt tidligere kjøp.", - "AnyLanguage": "Any language", "Anytime": "Enhver tid", "AroundTime": "Rundt {0}", - "Art": "Art", "Artists": "Artister", "AsManyAsPossible": "Så mange som mulig", - "Ascending": "Ascending", "AspectRatio": "Størrelsesforholdet", "AttributeNew": "Ny", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Automatisk", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Passer best", "BirthLocation": "Fødelesested", "Books": "Bøker", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Avbryt", "ButtonGotIt": "Skjønner", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Spill av et minutt", "ButtonRestart": "Omstart", "ButtonRestorePreviousPurchase": "Gjenopprett kjøp", @@ -68,14 +37,12 @@ "Categories": "Kategorier", "ChannelNameOnly": "Kun kanal {0}", "ChannelNumber": "Kanal nummer", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "CinemaModeFeatureDescription": "Kinomodus gir deg den ekte kinoopplevelsen med trailere og tilpassede introer før funksjonen.", "CloudSyncFeatureDescription": "Synkroniser mediene til skyen for sikkerhetskopiering, arkivering og konvertering.", "Collections": "Samlinger", "ColorPrimaries": "Primærfarger", "ColorSpace": "Fargeutvalg", "ColorTransfer": "Overføring av farger", - "CommunityRating": "Community rating", "Composer": "Komponist", "ConfigureDateAdded": "Konfigurer hvordan dato er fastsatt i Jellyfin Server sitt dashbord under Bibliotek innstillinger", "ConfirmDeleteImage": "Slett bilde?", @@ -85,117 +52,50 @@ "ConfirmEndPlayerSession": "Vill du stenge Jellyfin på denne enheten?", "ConfirmRemoveDownload": "Fjern nedlastet?", "Connect": "Koble til", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Forsett", "ContinueInSecondsValue": "Forsett om {0} sekunder", "ContinueWatching": "Fortsett å se på", "Continuing": "Fortsetter", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Land", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dager", - "Default": "Default", "DefaultErrorMessage": "Det skjedde en feil under behandling av forespørselen. Vennligst prøv igjen senere.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Slett", "DeleteMedia": "Slett elementet", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Regissør", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Koble fra", "Dislike": "Misliker", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Ikke ta opp", "Down": "Ned", "Download": "Nedlasting", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Nedlastet", "Downloading": "Laster ned", - "DownloadingDots": "Downloading...", "Downloads": "Nedlastinger", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", "DvrFeatureDescription": "Planlegg enkelt Live opptak, serieopptak og mer med Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR krever et aktivt Jellyfin Premiere-abonnement.", "Edit": "Rediger", "EditImages": "Endre bilder", - "EditMetadata": "Edit metadata", "EditSubtitles": "Endre undertekster", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Aktiver kino mode", "EnableColorCodedBackgrounds": "Aktiver fargekoder for bakgrunn", "EnableDisplayMirroring": "Aktivert skjermspeiling", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Avsluttet", "EndsAtValue": "Slutter klokken {0}", "Episodes": "Episoder", "Error": "Feil", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favoritt", "Favorites": "Favoritter", "FeatureRequiresJellyfinPremiere": "Denne funksjonen krever et aktivt Jellyfin Premiere abonnement.", - "Features": "Features", "File": "Fil", "Fill": "Fyll ut", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Nyt gratis tilgang til Jellyfin Applikasjoner på din enhet", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Sjanger", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "Gjeste skuespiller", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD Programmer", "HeaderActiveRecordings": "Aktive opptak", "HeaderAddToCollection": "Legg til samling", "HeaderAddToPlaylist": "Legg til Spilleliste", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Allerede betalt?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Lydbøker", "HeaderAudioSettings": "Lyd inntilligner", "HeaderBecomeProjectSupporter": "Skaff Jellyfin Premiere", @@ -208,31 +108,16 @@ "HeaderContinueListening": "Forsett og høre på", "HeaderContinueWatching": "Forsett og se på", "HeaderConvertYourRecordings": "Konverter dine opptak", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Slett element", "HeaderDeleteItems": "Slett elementer", "HeaderDisplaySettings": "Skjerminnstillinger", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Endre bilder", "HeaderEnabledFields": "Aktiverte felt", "HeaderEnabledFieldsHelp": "Fjern merket et felt for å låse den og hindre sine data blir endret.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoritePlaylists": "Favorittspillelister", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Gratis Jellyfin Applikasjoner", "HeaderHomeScreen": "Hjemskjerm", "HeaderIdentifyItemHelp": "Oppgi ett eller flere søke kriterier. Fjern kriterie for å øke søke resultater.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Behold opptak", "HeaderKeepSeries": "Behold serie", "HeaderLatestChannelItems": "Siste kanal elementer", @@ -244,209 +129,124 @@ "HeaderLibraryFolders": "Bibliotek mapper", "HeaderLibraryOrder": "Bibliotekenes rekkefølge", "HeaderMetadataSettings": "Metadata innstilinger", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min enhet", "HeaderMyMedia": "Min Media", "HeaderMyMediaSmall": "Min Media (liten)", "HeaderNewRecording": "Nye opptak:", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "Neste", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Nedlastede media", "HeaderOfflineDownloadsDescription": "Last ned media til din enhet for enkel offline bruk", "HeaderOnNow": "På Nå", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Spill min media", "HeaderPlayOn": "Forsett avspilling", "HeaderPlaybackError": "Avspillingsfeil", "HeaderRecordingOptions": "Opptak innstillinger", "HeaderRemoteControl": "Fjernkontroll", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Si noenting slik som...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Velg dato", "HeaderSeriesOptions": "Serie innstillinger", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Spesial Episode info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Undertekster innstillinger", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", "HeaderTermsOfPurchase": "Kjøps betingelser", "HeaderTryPlayback": "Prøv tilbakespilling", "HeaderUnlockFeature": "Lås opp funksjon", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Du sa...", "Help": "Hjelp", - "Hide": "Hide", "HideWatchedContentFromLatestMedia": "Skjul sett innhold fra nyeste media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Hvordan betalte du?", "IHaveJellyfinPremiere": "Jeg har Jellyfin Premiere", "IPurchasedThisApp": "Jeg har kjøpt denne appen", "Identify": "Identifiser", "Images": "Bilder", - "ImdbRating": "IMDb rating", "InstallingPackage": "Installerer {0}", "InstantMix": "Direktemiks", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementer", "Items": "Elementer", "KeepDownload": "Behold nedlasting", "KeepOnDevice": "Behold på enhet", "Kids": "Barn", - "Label3DFormat": "3D format:", "LabelAirDays": "Sendings dager:", "LabelAirTime": "Sendings tid:", "LabelAirsAfterSeason": "Sendt etter sesong:", "LabelAirsBeforeEpisode": "Sendt før episode:", "LabelAirsBeforeSeason": "Send før sesong:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Album artister:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Skill flere med semikolon ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Fødselsdato:", "LabelBirthYear": "Fødselsår:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanal", "LabelCollection": "Samling:", "LabelCommunityRating": "Fellesskap anmeldelse:", "LabelContentType": "Innholdstype:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", "LabelCriticRating": "Kritiker anmeldelse:", "LabelCustomRating": "Kunde anmeldelse:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dato lagt til:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dødsdato:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", "LabelDisplayLanguageHelp": "Oversettelse av Jellyfin pågår.", "LabelDisplayMode": "Visningsmodus:", "LabelDisplayOrder": "Visningsrekkefølge:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-postadresse:", "LabelEndDate": "Slutt dato:", "LabelEpisodeNumber": "Episode nummer:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Hjemskjerm seksjon {0}", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Begrenset antall:", "LabelKeep:": "Behold", "LabelKeepUpTo": "Hold opptil", "LabelLanguage": "Språk:", "LabelLockItemToPreventChanges": "Lås dette elementet for å hindre fremtidige endringer", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Foretrukket nedlastingsspråk:", "LabelName": "Navn", "LabelNumber": "Nummer:", "LabelOriginalAspectRatio": "Originalt sideforhold:", "LabelOriginalTitle": "Original tittel:", "LabelOverview": "Oversikt:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Foreldresensur:", "LabelPath": "Sti:", "LabelPersonRole": "Rolle:", "LabelPersonRoleHelp": "Eksempel: Is bil fører", "LabelPlaceOfBirth": "Fødested:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Spilleliste", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvalitet:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Opptak:", "LabelRefreshMode": "Oppdatering modus:", "LabelReleaseDate": "Utgivelsesdato:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sesong nummer:", "LabelSelectFolderGroups": "Gruppér innhold automatisk etter følgende grupper til visninger som filmer, musikk og TV:", "LabelSelectFolderGroupsHelp": "Mapper som ikke er merket vil kun bli vist i sin egen visning.", "LabelShortOverview": "Kort oversikt:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Forkortet tittel:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Start når mulig:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop når mulig:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Navn på synkroniseringsjobb:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Synkroniser til:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slagord:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Tittel:", "LabelTrackNumber": "Spor nummer:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Nettsted:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", "LatestFromLibrary": "Siste {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Lære mer", "Like": "Liker", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Direkte", "LiveBroadcasts": "Direkte sending", "LiveTV": "Direkte TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV krever et aktivt Jellyfin Premium-abonnement.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Merker som sett", "MarkUnplayed": "Merker som usett", "MarkWatched": "Marker som sett", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Jellyfin Premiere abonnement er påkrevd for å kunne automatisere serieopptak.", "MessageAreYouSureDeleteSubtitles": "Er du sikker på at du vil slette denne undertekst filen?", "MessageConfirmRecordingCancellation": "Er du sikker på at du vil avbryte dette opptaket?", "MessageDownloadQueued": "Nedlasting satt til i kø", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Hvis du nektet tale tilgang til applikasjonen må du rekonfigurere før du prøver igjen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Element lagret.", "MessageItemsAdded": "Elementer lagt til.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "La være blank for å arve innstillinger fra et foreldre element, eller den globale standard verdien.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "Ingen servere tilgjengelig for å koble til. Hvis du har blitt invitert til å dele en server, må du akseptere den nedenfor eller ved å klikke på lenken i e-posten.", "MessageNoSyncJobsFound": "Ingen nedlastinger funnet. Opprett nedlastingsjobber ved hjelp av Lastn ed knappene som finnes i hele appen.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePlayAccessRestricted": "Avspilling av dette innholdet er for tiden begrenset. Ta kontakt med Jellyfin Server-administratoren for mer informasjon.", "MessageToValidateSupporter": "Hvis du har et aktivt Jellyfin Premiere-abonnement, må du sørge for at du har konfigurert Jellyfin Premiere i Jellyfin Server Dashboard, som du får tilgang til ved å klikke Jellyfin Premiere i hovedmenyen.", "MessageUnlockAppWithPurchaseOrSupporter": "Lås opp denne funksjonen med et engangskjøp, eller med et aktivt Jellyfin Premiere-abonnement.", @@ -454,7 +254,6 @@ "MessageWeDidntRecognizeCommand": "Vi beklager, Vi kunne ikke forstå denne kommandoen.", "MinutesAfter": "Minutter etter", "MinutesBefore": "Minutter før", - "Mobile": "Mobile / Tablet", "Monday": "Mandag", "More": "Mere", "MoveLeft": "Flytt venstre", @@ -468,22 +267,13 @@ "NewEpisodes": "Nye episoder", "NewEpisodesOnly": "Kun nye episoder", "News": "Nyheter", - "Next": "Next", "No": "Nei", "NoItemsFound": "Ingen elementer funnet", "NoSubtitleSearchResultsFound": "Ingen resulterer funnet.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Ingen", - "Normal": "Normal", - "Off": "Off", "OneChannel": "En kanal", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Åpne", "OptionNew": "Ny...", - "Original": "Original", "OriginalAirDateValue": "Original utgivelsedato: {0}", "Overview": "Oversikt", "PackageInstallCancelled": "{0} installasjon avbrutt.", @@ -491,30 +281,20 @@ "PackageInstallFailed": "{0} installasjon feilet.", "ParentalRating": "Parental Rating", "People": "Mennesker", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Plasser favorittkanaler i starten", "Play": "Spill", "PlayAllFromHere": "Spill alt herfra", - "PlayCount": "Play count", "PlayFromBeginning": "Start fra starten", "PlayNext": "Spill av neste", "PlayNextEpisodeAutomatically": "Spill av neste episode automatisk", "PlaybackErrorNoCompatibleStream": "Ingen kompatible strømmer er tilgjengelige for øyeblikket. Prøv igjen senere eller kontakt systemadministratoren for detaljer.", "PlaybackErrorNotAllowed": "Du er for øyeblikket ikke autorisert til avspilling dette innholdet. Ta kontakt med systemadministratoren for detaljer.", "PlaybackErrorPlaceHolder": "Sett inn disken for å spille av denne filmen.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Spilt", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.", "PleaseRestartServerName": "Vennligst start gjør en omstart av Jellyfin Server - {0}", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vennligst velg minst to elementer.", - "Premiere": "Premiere", "Premieres": "Premierer", - "Previous": "Previous", - "Primary": "Primary", "PrivacyPolicy": "Personvern regler", "Producer": "Produsent", "ProductionLocations": "Produksjon lokasjoner", @@ -522,14 +302,12 @@ "PromoConvertRecordingsToStreamingFormat": "Konverter opptak automatisk til et streaming-vennlig format med Jellyfin Premiere. Opptakene konverteres på rappen til MP4 eller MKV, basert på dine Jellyfin-serverinnstillinger.", "Quality": "Kvalitet", "QueueAllFromHere": "Kø alt herfra", - "Raised": "Raised", "RecentlyWatched": "Nylig sett", "Record": "Ta opp", "RecordSeries": "Ta opp serien", "RecordingCancelled": "Opptak er avbrutt.", "RecordingScheduled": "Opptak planlagt.", "Recordings": "Opptak", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Oppdater", "RefreshDialogHelp": "Metadata er oppdatert basert på innstillinger og internett-tjenester som er aktivert i Jellyfin Server dashbordet", "RefreshMetadata": "Frisk opp metadata", @@ -547,28 +325,23 @@ "RepeatOne": "Repetering en", "ReplaceAllMetadata": "Erstatt all metadata", "ReplaceExistingImages": "Bytt ut eksisterende bilder", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Forsett fra {0}", "Retry": "Prøv igjen", - "RunAtStartup": "Run at startup", "Runtime": "Spilletid", "Saturday": "Lørdag", "Save": "Lagre", "ScanForNewAndUpdatedFiles": "Se etter nye og oppdaterte filer", "Schedule": "Planlegg", - "Screenshot": "Screenshot", "Screenshots": "Skjermbilder", "Search": "Søk", "SearchForCollectionInternetMetadata": "Søk på internet for artwork og metadata", "SearchForMissingMetadata": "Søk etter manglende metadata", "SearchForSubtitles": "Søk etter undertekster", "SearchResults": "Søkeresultater", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serie avbrutt.", "SeriesDisplayOrderHelp": "Sorter episoder etter sendt dato, DVD-rekkefølge eller nummerering.", "SeriesRecordingScheduled": "Serieopptak planlagt.", "SeriesSettings": "Serie innstillinger", - "SeriesYearToPresent": "{0} - Present", "ServerNameIsRestarting": "Jellyfin Server - {0} starter om.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} avsluttes.", "ServerUpdateNeeded": "Denne Jellyfin serveren må oppdateres. For å laste ned siste versjonen, vennligst besøk: {0}", @@ -576,31 +349,14 @@ "SettingsSaved": "Innstillinger lagret", "Share": "Del", "ShowIndicatorsFor": "Vis indikatorer for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Programmer", - "Shuffle": "Shuffle", "SkipEpisodesAlreadyInMyLibrary": "Ikke ta opp episoder som allerede finnes i biblioteket mitt", "SkipEpisodesAlreadyInMyLibraryHelp": "Episoder vil bli sammenlignet med sesong- og episode nummer når de er tilgjengelige.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Sanger", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Sorter kanaler etter", "SortName": "Sorterings navn", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studioer", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertekster", "Suggestions": "Forslag", "Sunday": "Søndag", @@ -614,34 +370,19 @@ "SyncJobItemStatusSynced": "Ned lastet", "SyncJobItemStatusSyncedMarkForRemoval": "Fjern fra enhet", "SyncJobItemStatusTransferring": "Overfører", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tagger", - "TagsValue": "Tags: {0}", "TermsOfUse": "Bruks betingelser", "ThankYouForTryingEnjoyOneMinute": "Vennligst nyt ett minutt av avspilling. Takk for at du prøver Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Torsdag", "TrackCount": "{0} spor", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prøv flervalg", "TryMultiSelectMessage": "Hvis du vil redigere flere medier elementer, klikker du bare og hold en plakat og velg elementene du ønsker å administrere. Prøv det!", "Tuesday": "Tirsdag", - "Uniform": "Uniform", "UnlockGuide": "Lås opp Guide", - "Unplayed": "Unplayed", "Unrated": "Uvurdert", "UntilIDelete": "Inntil jeg sletter", "UntilSpaceNeeded": "Inntil lagringsplass er nødvendig", "Up": "Opp", - "Upload": "Upload", "ValueAlbumCount": "{0} album", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} episoder", @@ -649,32 +390,21 @@ "ValueMinutes": "{0} minutter", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikkvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spill", "ValueOneItem": "et element", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikkvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serier", "ValueSongCount": "{0} sanger", "ValueSpecialEpisodeName": "Spesial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", "VideoRange": "Videoområde", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Vis album", "ViewArtist": "Vis artist", "VoiceInput": "Stemme input", "Watched": "Sett", "Wednesday": "Onsdag", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Manus", "Yes": "Ja" } diff --git a/src/bower_components/emby-webcomponents/strings/nl.json b/src/bower_components/emby-webcomponents/strings/nl.json index 5419b5d2b6..20c130fec3 100644 --- a/src/bower_components/emby-webcomponents/strings/nl.json +++ b/src/bower_components/emby-webcomponents/strings/nl.json @@ -11,7 +11,6 @@ "Advanced": "Geavanceerd", "AirDate": "Uitzenddatum", "Aired": "Uitgezonden", - "Albums": "Albums", "All": "Alle", "AllChannels": "Alle kanalen", "AllComplexFormats": "Alle complexe formaten (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", @@ -26,7 +25,6 @@ "AnyLanguage": "Elke taal", "Anytime": "Op elk moment", "AroundTime": "Rond {0}", - "Art": "Art", "Artists": "Artiesten", "AsManyAsPossible": "Zo veel als mogelijk", "Ascending": "Oplopend", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "Aan deze map toegevoegde nieuwe inhoud automatisch naar het apparaat downloaden.", "Backdrop": "Achtergrond", "Backdrops": "Achtergronden", - "Banner": "Banner", "BestFit": "Best passend", "BirthLocation": "Geboorte Locatie", "Books": "Boeken", - "Box": "Box", "BoxRear": "Box (achterkant)", "BurnSubtitlesHelp": "Bepaalt of de server ondertitels moet inbranden wanneer video's op basis van het ondertitel formaat geconverteerd moeten worden. Inbranden van ondertitels hebben een negatief effect op de server performance. Selecteer Automatisch om op afbeelding gebaseerde formaten (bijv. VOBSUB, PGS, SUB/IDX etc.) en bepaalde ASS/SSA ondertitels in te branden.", "ButtonCancel": "Annuleren", "ButtonGotIt": "Begrepen", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Speel één minuut", "ButtonRestart": "Herstart", "ButtonRestorePreviousPurchase": "Herstel Aankoop", @@ -108,7 +103,6 @@ "DeleteMedia": "Verwijder media", "Depressed": "Onderdrukt", "Descending": "Aflopend", - "Desktop": "Desktop", "DirectPlayError": "Direct Afspelen fout", "DirectPlaying": "Direct afspelen", "DirectStreamHelp1": "De media is compatible met het apparaat wat betreft resolutie en media type (H.264, AC3 etc.), maar is in een incompatible bestandscontainer (.mkv, .avi, .wmv etc.). De video zal on the fly opnieuw worden verpakt voordat deze naar het apparaat wordt gestreamd.", @@ -133,8 +127,6 @@ "Downloaded": "Gedownload", "Downloading": "Downloaden", "DownloadingDots": "Downloaden...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", "DropShadow": "Schaduw", "DvrFeatureDescription": "Plan individuele Live TV opnames, serie opnames en meer met Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR vereist een actief Jellyfin Premiere abonnement.", @@ -175,14 +167,10 @@ "Features": "Kenmerken", "File": "Bestande", "Fill": "Vullen", - "Filters": "Filters", "Folders": "Mappen", "FormatValue": "Formaat: {0}", "FreeAppsFeatureDescription": "Geniet van gratis toegang tot Jellyfin apps voor uw apparaten.", "Friday": "Vrijdag", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Groeperen op serie", "GroupVersions": "Versies groeperen", "GuestStar": "Gast ster", @@ -252,7 +240,6 @@ "HeaderNextEpisodePlayingInValue": "Volgende Aflevering over {0}", "HeaderNextUp": "Volgende", "HeaderNextVideoPlayingInValue": "Volgende Afgespeeld over {0}", - "HeaderOfflineDownloads": "Offline Media", "HeaderOfflineDownloadsDescription": "Download media naar uw apparaten voor gemakkelijk offline gebruik.", "HeaderOnNow": "Aan het spelen", "HeaderPhotoAlbums": "Foto-albums", @@ -293,10 +280,7 @@ "Images": "Afbeeldingen", "ImdbRating": "IMDb-beoordeling", "InstallingPackage": "Installeren van {0}", - "InstantMix": "Instant mix", "InterlacedVideoNotSupported": "Interlaced video niet ondersteund", - "ItemCount": "{0} items", - "Items": "Items", "KeepDownload": "Download bewaren", "KeepOnDevice": "Bewaar op apparaat", "Kids": "Kinderen", @@ -306,15 +290,12 @@ "LabelAirsAfterSeason": "Uitgezonden na seizoen:", "LabelAirsBeforeEpisode": "Uitgezonden voor aflevering:", "LabelAirsBeforeSeason": "Uitgezonden voor seizoen:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Album artiesten:", "LabelArtists": "Artiest:", "LabelArtistsHelp": "Scheidt meerdere met een ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Voorkeurs audiotaal:", "LabelBirthDate": "Geboortedatum:", "LabelBirthYear": "Geboorte jaar:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Ondertitels inbranden:", "LabelChannels": "Kanalen:", "LabelCollection": "Collectie", @@ -336,7 +317,6 @@ "LabelDisplayOrder": "Weergave volgorde:", "LabelDropImageHere": "Sleep de afbeelding hierheen of klik om te bladeren.", "LabelDropShadow": "Schaduw:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailadres:", "LabelEndDate": "Eind datum|", "LabelEpisodeNumber": "Afleveringsnummer:", @@ -378,7 +358,6 @@ "LabelSelectFolderGroups": "De inhoud van de volgende mappen automatisch groeperen in secties zoals Films, Muziek en TV:", "LabelSelectFolderGroupsHelp": "Mappen die niet aangevinkt zijn worden getoond in hun eigen weergave.", "LabelShortOverview": "Kort overzicht:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Terugspoellengte", "LabelSkipForwardLength": "Vooruitspoellengte", "LabelSortBy": "Sorteren op:", @@ -387,7 +366,6 @@ "LabelSoundEffects": "Geluidseffecten:", "LabelSource": "Bron:", "LabelStartWhenPossible": "Start indien mogelijk:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop indien mogelijk:", "LabelSubtitlePlaybackMode": "Ondertitel mode:", "LabelSubtitles": "Ondertitels:", @@ -395,17 +373,13 @@ "LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die offline downloaden ondersteunen.", "LabelSyncTo": "Synchroniseer naar:", "LabelTVHomeScreen": "TV mode begin scherm", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Tekst achtergrond kleur:", "LabelTextColor": "Tekst kleur:", "LabelTextSize": "Tekst grootte:", "LabelTheme": "Thema:", "LabelTitle": "Titel:", "LabelTrackNumber": "Tracknummer:", - "LabelType": "Type:", "LabelVersion": "Versie:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Tekst achtergrond kleur:", "LabelYear": "Jaar:", "Large": "Groot", @@ -413,29 +387,22 @@ "LearnHowYouCanContribute": "Lees meer over hoe u kunt bijdragen.", "LearnMore": "Meer informatie", "Like": "Leuk", - "LinksValue": "Links: {0}", "List": "Lijst", - "Live": "Live", "LiveBroadcasts": "Live uitzendingen", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "Stream Live TV naar een Jellyfin app, met een compatible TV tuner apparaat in uw Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV vereist een actief Jellyfin Premiere lidmaatschap", - "Logo": "Logo", "ManageRecording": "Beheren opnames", "MarkPlayed": "Markeren als Afgespeeld", "MarkUnplayed": "Markeren als Niet Afgespeeld", "MarkWatched": "Markeer als bekeken", "MediaIsBeingConverted": "De media wordt geconverteerd naar een formaat dat compatible is met het apparaat dat wordt gebruikt om de media af te spelen.", "Medium": "Gemiddeld", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Jellyfin Premiere abonnement benodigd om een automatische serie opname aan te maken.", "MessageAreYouSureDeleteSubtitles": "Weet u zeker dat u dit ondertitelbestand wilt verwijderen?", "MessageConfirmRecordingCancellation": "Opnemen annuleren?", "MessageDownloadQueued": "Download in de wachtrij geplaatst.", "MessageFileReadError": "Er is een fout opgetreden bij het lezen van het bestand. Probeer het opnieuw.", "MessageIfYouBlockedVoice": "Als u spraak toegang uitgeschakeld heeft moet u dit opnieuw configureren voordat u verder gaat.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Een email is verzonden naar {0} met een uitnodiging om aan te melden bij Jellyfin.", "MessageInvitationSentToUser": "Een email is verzonden naar {0} met een uitnodiging om uw uitnodiging te accepteren.", "MessageItemSaved": "Item opgeslagen.", @@ -503,7 +470,6 @@ "PlaybackErrorNoCompatibleStream": "Geen compatibele streams beschikbaar. Probeer het later opnieuw of neem contact op met de serverbeheerder.", "PlaybackErrorNotAllowed": "U bent niet bevoegd om deze content af te spelen. Neem contact op met uw systeembeheerder voor meer informatie.", "PlaybackErrorPlaceHolder": "De gekozen content is niet af te spelen vanaf dit apparaat. Plaats de schijf.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Om de standaard afspeelinstellingen te configureren, stopt u het afspelen van de video. Vervolgens klikt u op het gebruikersicoon in de rechterbovenhoek van de app.", "Played": "Afgespeeld", "Playlists": "Afspeellijsten", @@ -511,7 +477,6 @@ "PleaseRestartServerName": "Herstart Jellyfin Server - {0} aub.", "PleaseSelectDeviceToSyncTo": "Selecteer een apparaat om naar te downloaden", "PleaseSelectTwoItems": "Selecteer ten minste twee items.", - "Premiere": "Premiere", "Premieres": "Premières", "Previous": "Vorige", "Primary": "Primair", @@ -557,7 +522,6 @@ "ScanForNewAndUpdatedFiles": "Scan op nieuwe en bijgewerkte bestanden", "Schedule": "Schema", "Screenshot": "Schermafdruk", - "Screenshots": "Screenshots", "Search": "Zoeken", "SearchForCollectionInternetMetadata": "Zoeken op het internet voor afbeeldingen en metadata", "SearchForMissingMetadata": "Zoeken naar missende metadata", @@ -592,14 +556,12 @@ "SortByValue": "Sorteren op {0}", "SortChannelsBy": "Sorteer kanalen op:", "SortName": "Sorteerbaar", - "Sports": "Sports", "StatsForNerds": "Statistieken voor nerds", "StopRecording": "Stop opname", "Studios": "Studio's", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Deze instellingen hebben ook effect op afspelen naar een Chromecast wanneer deze vanaf dit apparaat worden gestart.", "SubtitleAppearanceSettingsDisclaimer": "Deze instellingen hebben geen invloed op grafische ondertitels (PGS, DVD etc.) en ondertitels die hun eigen stijl ingebouwd hebben (ASS/SSA).", "SubtitleCodecNotSupported": "Ondertitel formaat niet ondersteund", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Om de standaard ondertiteling- en taalinstellingen te configureren, stopt u het afspelen van de video. Vervolgens klikt u op het gebruikersicoon in de rechterbovenhoek van de app.", "Subtitles": "Ondertiteling", "Suggestions": "Suggesties", @@ -617,7 +579,6 @@ "SyncUnwatchedVideosOnly": "Alleen niet bekeken video's downloaden", "SyncUnwatchedVideosOnlyHelp": "Alleen niet bekeken video's zullen worden gedownload en de video's worden van het apparaat verwijderd nadat deze zijn bekeken.", "SyncingDots": "Synchroniseren...", - "TV": "TV", "Tags": "Labels", "TagsValue": "Labels: {0}", "TermsOfUse": "Gebruiksvoorwaarden", @@ -628,13 +589,10 @@ "Thumb": "Miniatuur", "Thursday": "Donderdag", "TrackCount": "{0} nummers", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Transcoderen", "TryMultiSelect": "Probeer multi-select", "TryMultiSelectMessage": "Als u meerdere media-items wilt bewerken, klikt u er op een poster en hou even vast, selecteer nu de items die u wilt beheren. Probeer maar!", "Tuesday": "Dinsdag", - "Uniform": "Uniform", "UnlockGuide": "Gids vrijgeven", "Unplayed": "Niet afgespeeld", "Unrated": "Geen rating", @@ -642,23 +600,15 @@ "UntilSpaceNeeded": "Totdat de ruimte nodig is", "Up": "Omhoog", "Upload": "Uploaden", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} afleveringen", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} muziek video's", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 aflevering", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 muziek video", "ValueOneSeries": "1 serie", "ValueOneSong": "1 titel", "ValueSeconds": "{0} seconden", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} titels", "ValueSpecialEpisodeName": "Speciaal - {0}", "Vertical": "Verticaal", diff --git a/src/bower_components/emby-webcomponents/strings/pl.json b/src/bower_components/emby-webcomponents/strings/pl.json index f031762a05..7fc0294427 100644 --- a/src/bower_components/emby-webcomponents/strings/pl.json +++ b/src/bower_components/emby-webcomponents/strings/pl.json @@ -55,7 +55,6 @@ "BurnSubtitlesHelp": "Określa czy serwer powinien wypalać napisy podczas konwersji wideo, w zależności od formatu napisów. Unikanie wypalania napisów poprawia wydajność serwera. Wybierz Automatycznie, w celu wypalania zarówno napisów w formatach graficznych (np. VOBSUB, PGS, SUB/IDX, itp.), jak i pewnych napisów ASS/SSA.", "ButtonCancel": "Anuluj", "ButtonGotIt": "Rozumiem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Odtwarzaj jedną minutę", "ButtonRestart": "Uruchom ponownie", "ButtonRestorePreviousPurchase": "Przywróć zakup", @@ -177,7 +176,6 @@ "Fill": "Rozciągnij", "Filters": "Filtry", "Folders": "Foldery", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Korzystaj z darmowego dostępu do aplikacji Jellyfin na swoich urządzeniach.", "Friday": "Piątek", "GenreValue": "Gatunek: {0}", @@ -336,7 +334,6 @@ "LabelDisplayOrder": "Kolejność wyświetlania:", "LabelDropImageHere": "Upuść obraz tutaj lub naciśnij przycisk, aby przeglądać.", "LabelDropShadow": "Cień:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Adres pocztowy:", "LabelEndDate": "Data zakończenia:", "LabelEpisodeNumber": "Numer odcinka:", @@ -420,22 +417,18 @@ "LiveTV": "Telewizja", "LiveTvFeatureDescription": "Oglądaj transmisje telewizyjne z dowolną aplikacją Jellyfin, za pomocą zainstalowanego na serwerze Jellyfin tunera telewizyjnego.", "LiveTvRequiresUnlock": "Odbiór transmisji telewizyjnych wymaga aktywnej subskrypcji Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Zarządzaj nagrywaniem", "MarkPlayed": "Oznacz jako obejrzane", "MarkUnplayed": "Oznacz jako nieobejrzane", "MarkWatched": "Oznacz jako obejrzane", "MediaIsBeingConverted": "Media będą konwertowane do formatu kompatybilnego z urządzeniem, na który będą odtwarzane.", "Medium": "Średni", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Funkcja automatycznego nagrywania seriali wymaga aktywnej subskrypcji Jellyfin Premium.", "MessageAreYouSureDeleteSubtitles": "Czy jesteś pewien, że chcesz usunąć ten plik z napisami?", "MessageConfirmRecordingCancellation": "Anulować nagranie?", "MessageDownloadQueued": "Dodano do kolejki pobierania.", "MessageFileReadError": "Podczas wczytywania plików wystąpił błąd. Spróbuj ponownie później.", "MessageIfYouBlockedVoice": "Jeśli odmówisz aplikacji dostępu głosowego, będziesz musiał zmienić konfigurację przed ponownym urządzeniem.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Wiadomość pocztowa, z prośbą o rejestrację konta Jellyfin, została wysłana do {0}.", "MessageInvitationSentToUser": "Wiadomość pocztowa, z prośbą o akceptację zaproszenia współużytkowania, została wysłana do {0}.", "MessageItemSaved": "Obiekt zapisany.", @@ -646,10 +639,8 @@ "ValueDiscNumber": "Dysk {0}", "ValueEpisodeCount": "{0} odcinki", "ValueGameCount": "{0} gry", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmy", "ValueMusicVideoCount": "{0} teledyski", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 odcinek", "ValueOneGame": "1 gra", "ValueOneItem": "1 pozycja", diff --git a/src/bower_components/emby-webcomponents/strings/pt-br.json b/src/bower_components/emby-webcomponents/strings/pt-br.json index 42c0916ff2..42d18d351b 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-br.json +++ b/src/bower_components/emby-webcomponents/strings/pt-br.json @@ -38,7 +38,6 @@ "AudioCodecNotSupported": "Codec de áudio não suportado", "AudioProfileNotSupported": "Perfil de áudio não suportado", "AudioSampleRateNotSupported": "Taxa de sample de áudio não suportada", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automático (baseado na configuração do idioma)", "AutomaticallyConvertNewContent": "Converter novo conteúdo automaticamente", "AutomaticallyConvertNewContentHelp": "Novo conteúdo adicionado a esta pasta será automaticamente convertido.", @@ -46,7 +45,6 @@ "AutomaticallySyncNewContentHelp": "Novo conteúdo adicionado a esta pasta será automaticamente transferido para o dispositivo.", "Backdrop": "Imagem de Fundo", "Backdrops": "Imagens de Fundo", - "Banner": "Banner", "BestFit": "Mais provável", "BirthLocation": "Local de nascimento", "Books": "Livros", @@ -55,7 +53,6 @@ "BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no vídeo ao convertê-lo, dependendo do formato da legenda. Evitar a gravação da legenda irá melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB/IDX, etc.) assim como algumas legendas ASS/SSA.", "ButtonCancel": "Cancelar", "ButtonGotIt": "Feito", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproduzir Um Minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Recuperar Compra", @@ -108,7 +105,6 @@ "DeleteMedia": "Excluir mídia", "Depressed": "Deprimido", "Descending": "Descendente", - "Desktop": "Desktop", "DirectPlayError": "Erro de reprodução direta", "DirectPlaying": "Reprodução direta", "DirectStreamHelp1": "A mídia é compatível com o dispositivo, independente da resolução e tipo de mídia (H.264, AC3, etc.), mas está em um contaminar incompatível (.mkv, .avi, .wmv, etc.). O vídeo será reempacotado em tempo real antes de transmitir para o dispositivo.", @@ -128,13 +124,10 @@ "DisplayModeHelp": "Selecione o tipo de tela para executar o Jellyfin.", "DoNotRecord": "Não gravar", "Down": "Para baixo", - "Download": "Download", "DownloadItemLimitHelp": "Opcional. Definir um limite para o número de itens que serão baixados.", "Downloaded": "Transferido(s)", "Downloading": "Transferindo", "DownloadingDots": "Transferindo...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", "DropShadow": "Sombra", "DvrFeatureDescription": "Agendar gravações individuais de TV ao vivo, gravações de séries e mais com o Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR requer uma assinatura ativa do Jellyfin Premiere", @@ -168,7 +161,6 @@ "ErrorReachingJellyfinConnect": "Ocorreu um erro ao acessar o servidor do Jellyfin Connect. Por favor, verifique se possui uma conexão com a internet e tente novamente.", "ErrorRemovingJellyfinConnectAccount": "Ocorreu um erro ao remover a conta do Jellyfin Connect. Por favor, verifique se possui conexão com a internet e tente novamente.", "ExtraLarge": "Extra grande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Este recurso requer uma subscrição ativa do Jellyfin Premiere", @@ -285,7 +277,6 @@ "Hide": "Ocultar", "HideWatchedContentFromLatestMedia": "Ocultar conteúdo assistido das mídias recentes", "Home": "Início", - "Horizontal": "Horizontal", "HowDidYouPay": "Como você pagou?", "IHaveJellyfinPremiere": "Eu tenho Jellyfin Premiere", "IPurchasedThisApp": "Eu comprei este app", @@ -378,7 +369,6 @@ "LabelSelectFolderGroups": "Agrupar automaticamente o conteúdo das seguintes pastas dentro das visualizações como Filmes, Músicas e TV:", "LabelSelectFolderGroupsHelp": "Pastas que não estão marcadas serão exibidas em sua própria visualização.", "LabelShortOverview": "Sinopse curta:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Tamanho do intervalo para retroceder", "LabelSkipForwardLength": "Tamanho do intervalo para avançar", "LabelSortBy": "Classificar por:", @@ -387,7 +377,6 @@ "LabelSoundEffects": "Efeitos sonoros:", "LabelSource": "Fonte:", "LabelStartWhenPossible": "Iniciar quando possível:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Parar quando possível:", "LabelSubtitlePlaybackMode": "Modo de legendas:", "LabelSubtitles": "Legendas:", @@ -405,7 +394,6 @@ "LabelType": "Tipo:", "LabelVersion": "Versão:", "LabelVideo": "Vídeo:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Cor de fundo do texto:", "LabelYear": "Ano:", "Large": "Grande", @@ -413,29 +401,24 @@ "LearnHowYouCanContribute": "Saiba como você pode contribuir.", "LearnMore": "Saiba mais", "Like": "Curti", - "LinksValue": "Links: {0}", "List": "Lista", "Live": "Ao vivo", "LiveBroadcasts": "Broadcasts ao vivo", "LiveTV": "TV ao Vivo", "LiveTvFeatureDescription": "Assistir TV ao vivo em qualquer app Jellyfin com um sintonizador de TV compatível, instalado em seu servidor Jellyfin.", "LiveTvRequiresUnlock": "A TV ao vivo exige uma assinatura ativa do Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gerenciar gravação", "MarkPlayed": "Marcar como reproduzido", "MarkUnplayed": "Marcar como não-reproduzido", "MarkWatched": "Marcar como assisitido", "MediaIsBeingConverted": "A mídia está sendo convertida para um formato que é compatível com o dispositivo que reproduz a mídia.", "Medium": "Média", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscrição ativa do Jellyfin Premiere é requerida para criar a gravação automatizada de séries.", "MessageAreYouSureDeleteSubtitles": "Deseja realmente excluir este arquivo de legendas?", "MessageConfirmRecordingCancellation": "Cancelar gravação?", "MessageDownloadQueued": "Download enfileirado.", "MessageFileReadError": "Ocorreu um erro ao ler o arquivo. Por favor, tente novamente.", "MessageIfYouBlockedVoice": "Se você negou o acesso de voz ao app, você necessitará reconfigurar antes de tentar novamente.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Um email foi enviado para {0}, convidando-os a se registrarem no Jellyfin.", "MessageInvitationSentToUser": "Um email foi enviado para {0}, convidando-os para aceitar seu convite.", "MessageItemSaved": "Item salvo.", @@ -475,7 +458,6 @@ "NoSubtitles": "Sem Legenda", "NoSubtitlesHelp": "Legendas não serão carregadas por padrão. Elas podem ser carregadas manualmente durante a reprodução.", "None": "Nenhum(a)", - "Normal": "Normal", "Off": "Desligado", "OneChannel": "Um canal", "OnlyForcedSubtitles": "Apenas legendas forçadas", @@ -483,7 +465,6 @@ "OnlyImageFormats": "Apenas formatos de imagens (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nova...", - "Original": "Original", "OriginalAirDateValue": "Data de exibição original: {0}", "Overview": "Sinopse", "PackageInstallCancelled": "Instalação de {0} cancelada.", @@ -503,15 +484,12 @@ "PlaybackErrorNoCompatibleStream": "Não existem streams compatíveis. Por favor, tente novamente mais tarde ou contate o administrador do sistema para mais detalhes.", "PlaybackErrorNotAllowed": "Você não está autorizado a reproduzir este conteúdo. Por favor, contacte seu administrador do sistema para mais detalhes.", "PlaybackErrorPlaceHolder": "Por favor, insira o disco para reproduzir este vídeo.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproduzido", "Playlists": "Listas de Reprodução", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.", "PleaseRestartServerName": "Por favor reinicie o Servidor Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "Por favor, selecione um dispositivo para transferir.", "PleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", - "Premiere": "Premiere", "Premieres": "Estréias", "Previous": "Anterior", "Primary": "Capa", @@ -557,7 +535,6 @@ "ScanForNewAndUpdatedFiles": "Rastrear por arquivos novos e atualizados", "Schedule": "Agendar", "Screenshot": "Imagem da tela", - "Screenshots": "Screenshots", "Search": "Busca", "SearchForCollectionInternetMetadata": "Buscar artwork e metadados na internet", "SearchForMissingMetadata": "Buscar por metadados que faltam", @@ -599,8 +576,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estas configurações também se aplicam para qualquer reprodução do Chromecast para este dispositivo.", "SubtitleAppearanceSettingsDisclaimer": "Estes ajustes não serão aplicados às legendas gráficas (PGS, DVD, etc) ou às legendas que têm seus próprios estilos embutidos (ASS/SSA).", "SubtitleCodecNotSupported": "Formato da legenda não suportado", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Legendas", "Suggestions": "Sugestões", "Sunday": "Domingo", @@ -617,9 +592,6 @@ "SyncUnwatchedVideosOnly": "Transferir apenas vídeos não assistidos", "SyncUnwatchedVideosOnlyHelp": "Apenas vídeos não assistidos serão transferidos, e os vídeos serão removidos do dispositivo assim que forem assistidos.", "SyncingDots": "Sincronizando...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Termos de uso", "ThankYouForTryingEnjoyOneMinute": "Por favor aproveite um minuto de reprodução. Obrigado por testar Jellyfin.", "ThemeSongs": "Músicas Tema", @@ -628,8 +600,6 @@ "Thumb": "Ícone", "Thursday": "Quinta-feira", "TrackCount": "{0} faixas", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Transcodificação", "TryMultiSelect": "Experimentar a Seleção Múltipla", "TryMultiSelectMessage": "Para editar itens múltiplos de mídia, basta clicar e segurar qualquer capa e selecionar os itens que gostaria de gerenciar. Experimente!", @@ -646,13 +616,11 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episódios", "ValueGameCount": "{0} jogos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmes", "ValueMusicVideoCount": "{0} vídeos musicais", "ValueOneAlbum": "1 álbum", "ValueOneEpisode": "1 episódio", "ValueOneGame": "1 jogo", - "ValueOneItem": "1 item", "ValueOneMovie": "1 filme", "ValueOneMusicVideo": "1 vídeo musical", "ValueOneSeries": "1 série", @@ -661,7 +629,6 @@ "ValueSeriesCount": "{0} séries", "ValueSongCount": "{0} músicas", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidade de bit de vídeo não suportada", "VideoCodecNotSupported": "Codec de vídeo não suportado", "VideoFramerateNotSupported": "Taxa do vídeo não suportada", diff --git a/src/bower_components/emby-webcomponents/strings/pt-pt.json b/src/bower_components/emby-webcomponents/strings/pt-pt.json index 980ddbe503..59db31071b 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-pt.json +++ b/src/bower_components/emby-webcomponents/strings/pt-pt.json @@ -1,305 +1,46 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Ator", "Add": "Adicionar", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Adicionar à lista de reprodução", - "AddedOnValue": "Added {0}", "Advanced": "Avançado", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Novo", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Imagens de Fundo", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Reiniciar", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "Excluir este item o excluirá do sistema de arquivos e também da biblioteca multimédia. Deseja realmente continuar?", "ConfirmDeleteItems": "Ao excluir estes itens você os excluirá do sistema de arquivos e de sua biblioteca multimédia. Deseja realmente continuar?", "ConfirmDeletion": "Confirmar Exclusão", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Conectar", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "A Continuar", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dias", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Remover", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Diretor", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Editar", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Ativar modo cinema", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Terminado", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", "Error": "Erro", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Este recurso requer uma subscrição ativa do Jellyfin Premiere", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Sexta", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Adicionar à Coleção", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", "HeaderAudioSettings": "Ajustes de Áudio", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", "HeaderConfirmRecordingCancellation": "Confirmar Cancelamento da Gravação", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Remover item", "HeaderDeleteItems": "Remover Itens", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", "HeaderEnabledFields": "Campos Ativados", "HeaderEnabledFieldsHelp": "Desmarque um campo para bloqueá-lo e evitar que seus dados sejam alterados.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Digite um ou mais critérios de busca. Exclua o critério para aumentar os resultados da busca.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Ajustes dos Metadados", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova Gravação", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Erro na Reprodução", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Selecionar Data", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Informação do Episódio Especial", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Ajustes de Legenda", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Ajuda", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identificar", "Images": "Imagens", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", "InstantMix": "Mix instântaneo", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} itens", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "Formato 3D:", "LabelAirDays": "Dias da exibição:", "LabelAirTime": "Horário:", @@ -310,371 +51,70 @@ "LabelAlbumArtists": "Artistas do Álbum:", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separa múltiplas com ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "Avaliação da comunidade:", "LabelContentType": "Tipo de conteúdo:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Avaliação da crítica:", "LabelCustomRating": "Classificação personalizada:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Data adicionado:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Ordem de exibição:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", "LabelEndDate": "Data final:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Idioma:", "LabelLockItemToPreventChanges": "Bloquear este item para evitar alterações futuras", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Idioma preferido para download:", "LabelName": "Nome:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Proporção da imagem original:", - "LabelOriginalTitle": "Original title:", "LabelOverview": "Sinopse:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Classificação parental:", "LabelPath": "Local:", "LabelPersonRole": "Personagem:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Local de nascimento:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Data do lançamento:", "LabelRuntimeMinutes": "Duração (minutos):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Sinopse curta:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Estado:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", "LabelType": "Tipo:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Saiba mais", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscrição Jellyfin Premiere é necessária para criar a gravação automática de séries.", "MessageAreYouSureDeleteSubtitles": "Deseja realmente remover este arquivo de legendas?", "MessageConfirmRecordingCancellation": "Deseja realmente cancelar esta gravação?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Item salvo.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padrão global", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Segunda", "More": "Mais", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Nova Coleção", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Exemplo: Coleção Guerra das Estrelas", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nova...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Reproduzir", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Reproduzir próximo episódio automaticamente", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Produtor", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Gravar", - "RecordSeries": "Record series", "RecordingCancelled": "Gravação cancelada.", "RecordingScheduled": "Gravação agendada.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Atualizar", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Repetir", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", "ReplaceExistingImages": "Substituir imagens existentes", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Sábado", "Save": "Guardar", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Busca", "SearchForCollectionInternetMetadata": "Procurar na internet por imagens e metadados", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "Buscar Legendas", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "Este Servidor Jellyfin precisa ser atualizado. Para fazer download da versão mais recente, por favor visite {0}", "Settings": "Ajustes", - "SettingsSaved": "Settings saved.", "Share": "Partilhar", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Aleatório", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Domingo", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Quinta", "TrackCount": "{0} faixas", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", "TryMultiSelectMessage": "Para editar múltiplos ficheiros de multimédia, basta clicar e segurar qualquer capa e selecionar os itens que gostaria de gerir. Experimente!", "Tuesday": "Terça", - "Uniform": "Uniform", "UnlockGuide": "Desbloquear Guia", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Quarta", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Escritor", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ro.json b/src/bower_components/emby-webcomponents/strings/ro.json index d84b9c7325..8138f3b72f 100644 --- a/src/bower_components/emby-webcomponents/strings/ro.json +++ b/src/bower_components/emby-webcomponents/strings/ro.json @@ -1,680 +1,23 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Anuleaza", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Continua", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "S-a sfarsit", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Vineri", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Ajutor", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artisti:", "LabelArtistsHelp": "Folosire separata multipla", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tip continut:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Tara:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Limba:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Nume:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Luni", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Exemplu: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Sambata", "Save": "Salveaza", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "Căutare pe internet pentru postere și metadate", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Duminica", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Joi", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Marti", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Miercuri", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ru.json b/src/bower_components/emby-webcomponents/strings/ru.json index 37575ec9c6..cf6c01f209 100644 --- a/src/bower_components/emby-webcomponents/strings/ru.json +++ b/src/bower_components/emby-webcomponents/strings/ru.json @@ -336,7 +336,6 @@ "LabelDisplayOrder": "Порядок отображения:", "LabelDropImageHere": "Перетащите рисунок сюда или щёлкните для навигации", "LabelDropShadow": "Окантовка:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Адрес Э-почты:", "LabelEndDate": "Конечная дата:", "LabelEpisodeNumber": "Номер эпизода:", @@ -434,8 +433,6 @@ "MessageDownloadQueued": "Загрузка в очереди.", "MessageFileReadError": "Произошла ошибка при считывании файла. Повторите попытку позже.", "MessageIfYouBlockedVoice": "Если отказано в голосовом доступе к приложению, перед новой попыткой вам необходимо переконфигурирование.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Письмо была отправлена к {0}, с предложением зарегистрироваться в Jellyfin.", "MessageInvitationSentToUser": "Письмо было отправлено к {0}, с предложением принять ваше приглашение на совместный доступ.", "MessageItemSaved": "Элемент сохранён.", @@ -503,7 +500,6 @@ "PlaybackErrorNoCompatibleStream": "В настоящее время совместимых потоков в наличии не имеется. Повторите попытку позже или за подробностями обратитесь к своему системному администратору.", "PlaybackErrorNotAllowed": "В настоящее время вы не авторизованы чтобы воспроизводить данное содержание. За подробностями обратитесь к своему системному администратору.", "PlaybackErrorPlaceHolder": "Вставьте диск, чтобы воспроизвести данное видео.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Чтобы конфигурировать параметры воспроизведения по умолчанию, остановите воспроизведение видео, затем щелкните значок пользователя в правой верхней части приложения.", "Played": "Воспроизведено", "Playlists": "Плей-листы", @@ -599,7 +595,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Эти параметры также применимы к любому Chromecast-воспроизведению запущенному данным устройством.", "SubtitleAppearanceSettingsDisclaimer": "Данные параметры не применимы к графическим субтитрам (PGS, DVD и т.д.) или к субтитрам, которые имеют внедрённые свои собственные стили (ASS/SSA).", "SubtitleCodecNotSupported": "Формат субтитров не поддерживается", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Чтобы конфигурировать внешний вид субтитров и языковые настройки, остановите воспроизведение видео, затем щелкните значок пользователя в правой верхней части приложения.", "Subtitles": "Субтитры", "Suggestions": "Предлагаемое", diff --git a/src/bower_components/emby-webcomponents/strings/sk.json b/src/bower_components/emby-webcomponents/strings/sk.json index 803c1d5250..56a9ba3e6b 100644 --- a/src/bower_components/emby-webcomponents/strings/sk.json +++ b/src/bower_components/emby-webcomponents/strings/sk.json @@ -1,131 +1,72 @@ { - "Absolute": "Absolute", "Accept": "Prijať", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Herec", "Add": "Pridať", "AddToCollection": "Pridať do zbierky", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", "Advanced": "Pokročilé", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Albumy", "All": "Všetko", "AllChannels": "Všetky kanály", "AllComplexFormats": "Všetky komplexné formáty (ASS, SSA, VOBSUB, PGS, SUB/IDX, a pod.)", "AllEpisodes": "Všetky epizódy", "AllLanguages": "Všetky jazyky", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Vždy zobraziť titulky", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", "AnyLanguage": "Akýkoľvek jazyk", - "Anytime": "Anytime", "AroundTime": "Okolo {0}", - "Art": "Art", "Artists": "Umelci", "AsManyAsPossible": "Najviac ako je možné", "Ascending": "Vzostupne", "AspectRatio": "Pomer strán", "AttributeNew": "Nové", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", "AudioChannelsNotSupported": "Audio kanály nie sú podporované", "AudioCodecNotSupported": "Audio kodek nie je podporovaný", "AudioProfileNotSupported": "Audio profil nie je podporovaný", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automaticky (na základe nastavenia jazyka)", "AutomaticallyConvertNewContent": "Automaticky konvertovať nový obsah", "AutomaticallyConvertNewContentHelp": "Nový obsah pridaný do tohto priečinka bude automaticky skonvertovaný.", "AutomaticallySyncNewContent": "Automaticky sťahovať nový obsah", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Pozadie", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Miesto narodenia", "Books": "Knihy", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušiť", "ButtonGotIt": "Rozumiem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Prehrať jednu minútu", "ButtonRestart": "Reštartovať", "ButtonRestorePreviousPurchase": "Obnoviť nákup", "ButtonTryAgain": "Skúste znova", "ButtonUnlockPrice": "Odomknúť {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", "CancelDownload": "Zrušiť sťahovanie", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", "Categories": "Kategórie", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Zbierky", - "ColorPrimaries": "Color primaries", "ColorSpace": "Farebný priestor", - "ColorTransfer": "Color transfer", "CommunityRating": "Hodnotenie komunity", "Composer": "Skladateľ", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Zmazať obrázok?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", "ConfirmDeletion": "Potvrdiť zmazanie", "ConfirmEndPlayerSession": "Chcete vypnúť Jellyfin na {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Pripojiť", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Kontajner nie je podporovaný", "Continue": "Pokračovať", - "ContinueInSecondsValue": "Continue in {0} seconds.", "ContinueWatching": "Pokračovať v pozeraní", - "Continuing": "Continuing", "Convert": "Konvertovať", "ConvertItemLimitHelp": "Voliteľné. Nastaviť limit položiek, ktoré budú konvertované.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Krajiny", "CriticRating": "Hodnotenie kritikov", "DateAdded": "Dátum pridania", "DatePlayed": "Dátum prehrania", "Days": "Dni", - "Default": "Default", "DefaultErrorMessage": "Pri spracúvaní požiadavky došlo k chybe. Skúste prosím neskôr znova.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Zmazať", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", "Descending": "Zostupne", "Desktop": "Stolný počítač", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režisér", "DirectorValue": "Režisér: {0}", "DirectorsValue": "Režiséri: {0}", "Disc": "Disk", "Disconnect": "Odpojiť", "Dislike": "Nepáči sa mi to", - "Display": "Display", "DisplayInMyMedia": "Zobraziť na domácej obrazovke", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Zobraziť chýbajúce epizódy v rámci sezóny.", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Nenahrávať", "Down": "Dole", "Download": "Stiahnuť", @@ -135,96 +76,49 @@ "DownloadingDots": "Sťahuje sa…", "Downloads": "Sťahovania", "DownloadsValue": "{0} stiahnutí", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Upraviť", "EditImages": "Upraviť obrázky", "EditMetadata": "Upraviť metadáta", "EditSubtitles": "Upraviť titulky", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", "EnableExternalVideoPlayers": "Povoliť externé video prehrávače", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Končí o {0}", "Episodes": "Epizódy", "Error": "Chyba", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Veľmi veľké", - "Extras": "Extras", "Favorite": "Obľúbené", "Favorites": "Obľúbené", "FeatureRequiresJellyfinPremiere": "Táto funkcia vyžaduje aktívne predplatné Jellyfin Premiere.", - "Features": "Features", "File": "Súbor", "Fill": "Vyplniť", "Filters": "Filtre", - "Folders": "Folders", "FormatValue": "Formát: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Piatok", "GenreValue": "Žáner: {0}", "Genres": "Žánre", "GenresValue": "Žánre: {0}", "GroupBySeries": "Zoskupiť podľa série", - "GroupVersions": "Group versions", "GuestStar": "Hosťujúca hviezda", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "Guide": "Sprievodca", "HDPrograms": "HD programy", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Pridať do zbierky", - "HeaderAddToPlaylist": "Add to Playlist", "HeaderAddUpdateImage": "Pridať/nahrať obrázok", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audio knihy", "HeaderAudioSettings": "Nastavenia zvuku", "HeaderBecomeProjectSupporter": "Získať Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Výhody Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", "HeaderContinueListening": "Pokračovať v počúvaní", "HeaderContinueWatching": "Pokračovať v pozeraní", - "HeaderConvertYourRecordings": "Convert Your Recordings", "HeaderCustomizeHomeScreen": "Prispôsobiť domovskú obrazovku", "HeaderDeleteItem": "Zmazať položku", "HeaderDeleteItems": "Zmazať položky", - "HeaderDisplaySettings": "Display Settings", "HeaderDownloadSettings": "Nastavenia sťahovania", "HeaderEditImages": "Upraviť obrázky", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", "HeaderFavoriteAlbums": "Obľúbené albumy", "HeaderFavoriteArtists": "Obľúbení umelci", "HeaderFavoriteCollections": "Obľúbené zbierky", "HeaderFavoriteEpisodes": "Obľúbené epizódy", "HeaderFavoriteGames": "Obľúbené hry", "HeaderFavoriteMovies": "Obľúbené filmy", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", "HeaderFavoriteSongs": "Obľúbené skladby", "HeaderFavoriteVideos": "Obľúbené videá", "HeaderFreeApps": "Jellyfin Apps zdarma", @@ -233,14 +127,8 @@ "HeaderInvitationSent": "Pozvánka odoslaná", "HeaderJellyfinAccountAdded": "Jellyfin účet pridaný", "HeaderJellyfinAccountRemoved": "Jellyfin účet odstránený", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Najnovšie od {0}", "HeaderLatestMedia": "Najnovšie médiá", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", "HeaderLibraryFolders": "Priečinky knižnice", "HeaderLibraryOrder": "Poradie knižnice", "HeaderMetadataSettings": "Nastavenia metadát", @@ -248,74 +136,42 @@ "HeaderMyDevice": "Moje zariadenie", "HeaderMyMedia": "Moje média", "HeaderMyMediaSmall": "Moje médiá (malé)", - "HeaderNewRecording": "New Recording", "HeaderNextEpisodePlayingInValue": "Ďalšia epizóda sa spustí o {0}", "HeaderNextUp": "Nasleduje", "HeaderNextVideoPlayingInValue": "Ďalšie video sa spustí o {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", "HeaderPhotoAlbums": "Albumy fotografií", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Chyba prehrávania", - "HeaderRecordingOptions": "Recording Options", "HeaderRemoteControl": "Ďiaľkové ovládanie", "HeaderRestartingJellyfinServer": "Jellyfin Server sa reštartuje", - "HeaderSaySomethingLike": "Say Something Like...", "HeaderSecondsValue": "{0} sekúnd", "HeaderSelectDate": "Vyberte dátum", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Začať teraz", "HeaderStopRecording": "Zastaviť nahrávanie", "HeaderSubtitleAppearance": "Vzhľad titulkov", "HeaderSubtitleSettings": "Nastavenia titulkov", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", "HeaderUploadImage": "Nahrať obrázok", "HeaderVideoQuality": "Kvalita videa", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čakám na WiFi", - "HeaderYouSaid": "You Said...", "Help": "Pomoc", "Hide": "Skryť", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", "Home": "Domov", "Horizontal": "Horizontálne", "HowDidYouPay": "Ako ste platili?", "IHaveJellyfinPremiere": "Už mám Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identifikovať", "Images": "Obrázky", "ImdbRating": "IMDb hodnotenie", "InstallingPackage": "Inštalujem {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} položiek", "Items": "Položky", - "KeepDownload": "Keep download", "KeepOnDevice": "Ponechať na zariadení", "Kids": "Detské", "Label3DFormat": "3D formát:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Umelci:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Uprednostňovaný jazyk zvuku:", "LabelBirthDate": "Dátum narodenia:", "LabelBirthYear": "Rok narodenia:", "LabelBitrateMbps": "Dátový tok (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanály:", "LabelCollection": "Zbierka:", "LabelCommunityRating": "Hodnotenie komunity:", @@ -323,33 +179,20 @@ "LabelConvertTo": "Konvertovať do:", "LabelCountry": "Krajina:", "LabelCriticRating": "Hodnotenie kritikov:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dátum pridania:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dátum úmrtia:", "LabelDefaultScreen": "Predvolená obrazovka:", "LabelDiscNumber": "Číslo disku:", "LabelDisplayLanguage": "Jazyk rozhrania:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Poradie zobrazenia:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailová adresa:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Číslo epizódy:", "LabelFont": "Písmo:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Sekcia domácej obrazovky {0}:", "LabelImageType": "Typ obrázku:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", "LabelKeep:": "Ponechať:", "LabelKeepUpTo": "Ponechať najviac:", "LabelLanguage": "Jazyk:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelMaxChromecastBitrate": "Maximálny dátový tok pre Chromecast:", "LabelMetadataDownloadLanguage": "Preferovaný jazyk:", "LabelName": "Meno:", @@ -357,55 +200,32 @@ "LabelOriginalAspectRatio": "Pôvodný pomer strán:", "LabelOriginalTitle": "Pôvodný názov:", "LabelOverview": "Prehľad:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Rodičovské hodnotenie", "LabelPath": "Cesta:", "LabelPersonRole": "Úloha:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Miesto narodenia:", "LabelPlayDefaultAudioTrack": "Prehrať predvolenú zvukovú stopu bez ohľadu na jazyk", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Preferovaný jazyk titulkov:", "LabelProfile": "Profil:", "LabelQuality": "Kvalita:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Dátum vydania:", "LabelRuntimeMinutes": "Dĺžka (minúty):", "LabelScreensaver": "Šetrič obrazokvy:", "LabelSeasonNumber": "Číslo sezóny:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "Krátky prehľad:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Dĺžka skoku dozadu:", "LabelSkipForwardLength": "Dĺžka skoku dopredu:", "LabelSortBy": "Zoradiť podľa:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", "LabelSoundEffects": "Zvukové efekty:", "LabelSource": "Zdroj:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", "LabelSubtitles": "Titulky:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Farba pozadia textu:", "LabelTextColor": "Farba textu:", "LabelTextSize": "Veľkosť textu:", - "LabelTheme": "Theme:", "LabelTitle": "Názov:", "LabelTrackNumber": "Číslo stopy:", "LabelType": "Typ:", "LabelVersion": "Verzia:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Farba pozadia textu:", "LabelYear": "Rok:", "Large": "Veľké", @@ -413,45 +233,19 @@ "LearnHowYouCanContribute": "Zistite ako môžete prispieť.", "LearnMore": "Zistiť viac", "Like": "Páči sa mi to", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Naživo", "LiveBroadcasts": "Živé vysielania", "LiveTV": "Živý TV prenos", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Živá TV vyžaduje aktívne predplatné Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Spravovať nahrávanie", "MarkPlayed": "Označiť ako prehrané", "MarkUnplayed": "Označiť ako neprehrané", "MarkWatched": "Označiť ako prehrané", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Stredné", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "Ste si istý, že chcete zmazať súbor s titulkami?", "MessageConfirmRecordingCancellation": "Zrušiť nahrávanie?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Položka uložená.", "MessageItemsAdded": "Položky pridané.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", "MinutesAfter": "minút po", "MinutesBefore": "minút pred", "Mobile": "Mobil / Tablet", @@ -463,7 +257,6 @@ "MySubtitles": "Moje titulky", "Name": "Meno", "NewCollection": "Nová zbierka", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Príklad: Kolekcia Star Wars", "NewEpisodes": "Nové epizódy", "NewEpisodesOnly": "Iba nové epizódy", @@ -473,14 +266,11 @@ "NoItemsFound": "Žiadne výsledky.", "NoSubtitleSearchResultsFound": "Žiadne výsledky.", "NoSubtitles": "Žiadne titulky", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Žiadne", "Normal": "Normálne", - "Off": "Off", "OneChannel": "Jeden kanál", "OnlyForcedSubtitles": "Iba vynútené titulky", "OnlyForcedSubtitlesHelp": "Budú zobrazené iba titulky označené ako vynútené.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otvoriť", "OptionNew": "Nové...", "Original": "Originál", @@ -495,55 +285,33 @@ "Photos": "Fotky", "PlaceFavoriteChannelsAtBeginning": "Umiestniť obľúbené kanály na začiatok", "Play": "Prehrať", - "PlayAllFromHere": "Play all from here", "PlayCount": "Počet prehraní", "PlayFromBeginning": "Prehrať od začiatku", "PlayNext": "Prehrať ďalšie", "PlayNextEpisodeAutomatically": "Automaticky prehrať ďalšiu epizódu", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Prehrané", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Zadajte meno alebo externé ID prosím.", "PleaseRestartServerName": "Prosím reštartujte Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vyberte prosím aspoň dve položky.", "Premiere": "Premiéra", "Premieres": "Premiéry", "Previous": "Predchádzajúce", - "Primary": "Primary", "PrivacyPolicy": "Zásady ochrany osobných údajov", "Producer": "Producent", "ProductionLocations": "Miesta produkcie", "Programs": "Programy", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Kvalita", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", "RecentlyWatched": "Nedávno pozreté", - "Record": "Record", - "RecordSeries": "Record series", "RecordingCancelled": "Nahrávanie zrušené.", "RecordingScheduled": "Plán nahrávania.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Obnoviť", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Obnoviť metadáta", - "RefreshQueued": "Refresh queued.", "Reject": "Odmietnuť", "ReleaseDate": "Dátum vydania", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Odobrať zo zbierky", - "RemoveFromPlaylist": "Remove from playlist", "RemovingFromDevice": "Odstraňuje sa zo zariadenia", "Repeat": "Opakovať", "RepeatAll": "Opakovať všetko", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", "RepeatOne": "Opakovať jedno", "ReplaceAllMetadata": "Nahradiť všetky metadáta", "ReplaceExistingImages": "Nahradiť existujúce obrázky", @@ -551,11 +319,9 @@ "ResumeAt": "Pokračovať od {0}", "Retry": "Skúsiť znova", "RunAtStartup": "Spustiť pri štarte", - "Runtime": "Runtime", "Saturday": "Sobota", "Save": "Uložiť", "ScanForNewAndUpdatedFiles": "Hľadať nové a aktualizované súbory", - "Schedule": "Schedule", "Screenshot": "Snímka obrazovky", "Screenshots": "Snímky obrazovky", "Search": "Hľadať", @@ -563,93 +329,50 @@ "SearchForMissingMetadata": "Hľadať chýbajúce metadáta", "SearchForSubtitles": "Hľadať titulky", "SearchResults": "Výsledky vyhľadávania", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", "SeriesSettings": "Nastavenia série", - "SeriesYearToPresent": "{0} - Present", "ServerNameIsRestarting": "Jellyfin Server - {0} sa reštartuje.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} sa vypína.", "ServerUpdateNeeded": "Tento Jellyfin server treba aktualizovať. Najnovšiu verziu nájdete na {0}", "Settings": "Nastavenia", "SettingsSaved": "Nastavenia uložené.", "Share": "Zdieľať", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", "ShowYear": "Zobraz rok", "Shows": "Seriály", "Shuffle": "Zamiešať", "SkipEpisodesAlreadyInMyLibrary": "Nenahrávať epizódy, ktoré už sú v mojej knižnici", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "Malé", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Skladby", "Sort": "Zoradiť", "SortByValue": "Zoradiť podľa {0}", "SortChannelsBy": "Zoradiť kanály podľa:", - "SortName": "Sort name", "Sports": "Športy", - "StatsForNerds": "Stats for nerds", "StopRecording": "Zastaviť nahrávanie", "Studios": "Štúdiá", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formát titulkov nie je podporovaný", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titulky", "Suggestions": "Návrhy", "Sunday": "Nedeľa", - "Sync": "Sync", "SyncJobItemStatusCancelled": "Zrušené", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", "SyncJobItemStatusRemovedFromDevice": "Odstránené zo zariadenia", "SyncJobItemStatusSynced": "Stiahnuté", "SyncJobItemStatusSyncedMarkForRemoval": "Odstraňuje sa zo zariadenia", "SyncJobItemStatusTransferring": "Prenáša sa", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Podmienky použitia", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Štvrtok", "TrackCount": "{0} stôp", "Trailer": "Ukážka", "Trailers": "Ukážky", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Utorok", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", "Unplayed": "Neprehrané", "Unrated": "Nehodnotené", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Hore", "Upload": "Nahrať", "ValueAlbumCount": "{0} albumov", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizód", "ValueGameCount": "{0} hier", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmov", "ValueMusicVideoCount": "{0} hudobných videí", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizóda", "ValueOneGame": "1 hra", "ValueOneItem": "1 položka", @@ -662,19 +385,12 @@ "ValueSongCount": "{0} skladieb", "ValueSpecialEpisodeName": "Špeciál - {0}", "Vertical": "Vertikálne", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "Video kodek nie je podporovaný", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Video profil nie je podporovaný", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Nepodporované rozlíšenie videa", "ViewAlbum": "Zobraziť album", "ViewArtist": "Zobraziť umelca", "VoiceInput": "Hlasový vstup", - "Watched": "Watched", "Wednesday": "Streda", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", "Yes": "Áno" } diff --git a/src/bower_components/emby-webcomponents/strings/sl-si.json b/src/bower_components/emby-webcomponents/strings/sl-si.json index 5b96b3ed82..4443a541a7 100644 --- a/src/bower_components/emby-webcomponents/strings/sl-si.json +++ b/src/bower_components/emby-webcomponents/strings/sl-si.json @@ -1,680 +1,11 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Uporaba te funkcionalnosti zahteva aktivno Jellyfin Premiere narocnino.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Dodaj v Zbirko", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Izvajalci:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tip vsebine:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Drzava:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Jezik:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", "LabelQuality": "Kvaliteta:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Nastavitve", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/sv.json b/src/bower_components/emby-webcomponents/strings/sv.json index ee158a65fb..0458bd6436 100644 --- a/src/bower_components/emby-webcomponents/strings/sv.json +++ b/src/bower_components/emby-webcomponents/strings/sv.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "Acceptera", "AccessRestrictedTryAgainLater": "Åtkomst är begränsad. Försök igen senare.", "Actor": "Skådespelare", @@ -29,7 +28,6 @@ "Art": "Grafik", "Artists": "Artister", "AsManyAsPossible": "Så många som möjligt", - "Ascending": "Ascending", "AspectRatio": "Bildförhållande", "AttributeNew": "Ny", "AudioBitDepthNotSupported": "Ljudets bitdjup stöds inte", @@ -38,7 +36,6 @@ "AudioCodecNotSupported": "Ljud codec stöds inte", "AudioProfileNotSupported": "Ljudprofil stöds inte", "AudioSampleRateNotSupported": "Ljudsamplingrate stöds inte", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatisk (baserad på språkinställning)", "AutomaticallyConvertNewContent": "Konvertera nytt innehåll automatiskt", "AutomaticallyConvertNewContentHelp": "Nytt innehåll till den här mappen kommer automatiskt att konverteras.", @@ -55,7 +52,6 @@ "BurnSubtitlesHelp": "Avgör ifall servern ska \"bränna in\" undertexterna under videokonverteringen, beroende på undertextsformatet. Att undvika inbränning av undertexter kommer att förbättra prestandan på servern. Välj Auto för att bränna image-baserade formats (ex. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA undertexter.", "ButtonCancel": "Avbryt", "ButtonGotIt": "Ok", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Spela en minut", "ButtonRestart": "Starta om", "ButtonRestorePreviousPurchase": "Återställ köp", @@ -72,9 +68,6 @@ "CinemaModeFeatureDescription": "Bioläget ger dig en bioupplevelse med trailers och anpassade intros före varje film.", "CloudSyncFeatureDescription": "Synka din media till molnet för lätttillgängligt backup, arkivering och konvertering.", "Collections": "Samlingar", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Användaromdöme", "Composer": "Kompositör", "ConfigureDateAdded": "Konfigurera hur tillagt datum bestäms i Jellyfin servern under Biblioteksinställningar", @@ -92,10 +85,8 @@ "ContinueWatching": "Fortsätt titta på", "Continuing": "Pågående", "Convert": "Konvertera", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "Konvertera endast osedda videos", "ConvertUnwatchedVideosOnlyHelp": "Endast osedda videos kommer att konverteras.", - "ConvertingDots": "Converting...", "Countries": "Länder", "CriticRating": "Kritikerbetyg", "DateAdded": "Inlagd den", @@ -107,9 +98,7 @@ "Delete": "Ta bort", "DeleteMedia": "Ta bort media", "Depressed": "Nedsänkt", - "Descending": "Descending", "Desktop": "Skrivbord", - "DirectPlayError": "Direct play error", "DirectPlaying": "Direktuppspelning", "DirectStreamHelp1": "Innehållet är kompatibelt med enheten vad gäller upplösning och mediatyp (H.264, AC3, etc.) men det är en inkompatibel filkontainer (.mkv, .avi, .wmv etc.). Video-filen kommer att packas om live innan strömningen startar till enheten.", "DirectStreamHelp2": "Direktströmning av en fil använder väldigt lite resurser av CPU'n utan att bildkvaliten försämras.", @@ -129,7 +118,6 @@ "DoNotRecord": "Spela inte in", "Down": "Ner", "Download": "Ladda ned", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Nedladdade", "Downloading": "Laddar ner", "DownloadingDots": "Laddar ner...", @@ -163,12 +151,10 @@ "ErrorAddingGuestAccount2": "Om du fortfarande upplever problem, vänligen skicka ett mail till {0}, och inkludera din emailadress tillsammans med deras.", "ErrorAddingJellyfinConnectAccount1": "Det gick inte att lägga till ditt Jellyfin Connect-konto. Har du ett Jellyfin Connect-konto? Du kan skapa ett på {0}", "ErrorAddingJellyfinConnectAccount2": "Om du fortfarande upplever problem, vänligen skicka ett mail till {0} från emailadressen som är kopplat till Jellyfin-kontot.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", "ErrorDeletingItem": "Det gick inte att ta bort det här objektet från Jellyfin-servern. Kontrollera att Jellyfin-servern har skrivrättigheter till media-mappen och försök igen.", "ErrorReachingJellyfinConnect": "Ett fel uppstod när Jellyfin Connect försökte nås. Se till att du har en aktiv internetuppkoppling och försök igen.", "ErrorRemovingJellyfinConnectAccount": "Ett fel uppstod när Jellyfin Connect-kontot försökte tas bort. Se till att du har en aktiv internetuppkoppling och försök igen.", "ExtraLarge": "Extra stor", - "Extras": "Extras", "Favorite": "Favorit", "Favorites": "Favoriter", "FeatureRequiresJellyfinPremiere": "Den här funktionen kräver en aktiv Jellyfin Premium prenumeration.", @@ -177,17 +163,14 @@ "Fill": "Fyll", "Filters": "Filter", "Folders": "Mappar", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Få fri tillgång till Jellyfin appar för dina enheter.", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Genrer", "GenresValue": "Genrer: {0}", "GroupBySeries": "Gruppera efter serie", "GroupVersions": "Gruppera versioner", "GuestStar": "Gästmedverkande", "GuestUserNotFound": "Användaren kunde inte hittas. Se till så att namnet är korrekt och försök igen, eller pröva att ange emailadressen istället.", - "Guide": "Guide", "HDPrograms": "HD-program", "HeaderActiveRecordings": "Pågående inspelningar", "HeaderAddToCollection": "Lägg till samling", @@ -195,7 +178,6 @@ "HeaderAddUpdateImage": "Lägg till/uppdatera bild", "HeaderAlbumArtists": "Albumartister", "HeaderAlreadyPaid": "Redan betalat?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Ljudböcker", "HeaderAudioSettings": "Ljudinställningar", "HeaderBecomeProjectSupporter": "Skaffa Jellyfin Premium", @@ -208,7 +190,6 @@ "HeaderContinueListening": "Fortsätt lyssna på", "HeaderContinueWatching": "Fortsätt kolla på", "HeaderConvertYourRecordings": "Konvertera dina inspelningar", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Radera objekt", "HeaderDeleteItems": "Ta bort objekt", "HeaderDisplaySettings": "Visningsinställningar", @@ -219,11 +200,9 @@ "HeaderExternalIds": "Externa ID'n:", "HeaderFavoriteAlbums": "Favoritalbum", "HeaderFavoriteArtists": "Favoritartister", - "HeaderFavoriteCollections": "Favorite Collections", "HeaderFavoriteEpisodes": "Favoritavsnitt", "HeaderFavoriteGames": "Favoritspel", "HeaderFavoriteMovies": "Favoritfilmer", - "HeaderFavoritePlaylists": "Favorite Playlists", "HeaderFavoriteShows": "Favoritserier", "HeaderFavoriteSongs": "Favoritlåtar", "HeaderFavoriteVideos": "Favoritvideos", @@ -269,7 +248,6 @@ "HeaderSeriesStatus": "Seriestatus", "HeaderSpecialEpisodeInfo": "Information om specialavsnitt", "HeaderStartNow": "Starta nu", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Undertextutseende", "HeaderSubtitleSettings": "Inställningar för undertexter", "HeaderSyncRequiresSub": "Nedladdning kräver en aktiv Jellyfin Premiere-prenumeration.", @@ -306,7 +284,6 @@ "LabelAirsAfterSeason": "Sänds efter säsong:", "LabelAirsBeforeEpisode": "Sänds före avsnitt:", "LabelAirsBeforeSeason": "Sänds före säsong:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Albumartist:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Separera med ; vid flera", @@ -387,7 +364,6 @@ "LabelSoundEffects": "Ljudeffekter:", "LabelSource": "Källa:", "LabelStartWhenPossible": "Starta när det är möjligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stoppa när det är möjligt:", "LabelSubtitlePlaybackMode": "Undertextläge:", "LabelSubtitles": "Undertexter:", @@ -403,8 +379,6 @@ "LabelTitle": "Titel:", "LabelTrackNumber": "Spår nr", "LabelType": "Typ:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Hemsida:", "LabelWindowBackgroundColor": "Bakgrundsfärg för text:", "LabelYear": "År:", @@ -415,7 +389,6 @@ "Like": "Gilla", "LinksValue": "Länkar: {0}", "List": "Lista", - "Live": "Live", "LiveBroadcasts": "Livesändningar", "LiveTV": "Live-TV", "LiveTvFeatureDescription": "Strömma Live TV till vilken Jellyfin app du vill, med en kompatibel TV-tuner enhet som är installerad på din Jellyfin Server.", @@ -426,7 +399,6 @@ "MarkUnplayed": "Markera som ospelad", "MarkWatched": "Markera som visad", "MediaIsBeingConverted": "Media håller på att konverteras till ett format som är kompatibelt med enheten som ska användas.", - "Medium": "Medium", "Menu": "Meny", "MessageActiveSubscriptionRequiredSeriesRecordings": "Ett aktivt Jellyfin Premium-medlemskap krävs för att skapa automatiska TV-serieinspelningar.", "MessageAreYouSureDeleteSubtitles": "Är du säker på att du vill radera den här undertextfilen?", @@ -434,8 +406,6 @@ "MessageDownloadQueued": "Nedladdning köad.", "MessageFileReadError": "Ett fel uppstod när filen lästes in. Var god försök igen.", "MessageIfYouBlockedVoice": "Om du nekade tillgång för röståtkomst till appen så behöver du konfigurerara om innan du försöker igen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Ett mail har skickats till {0} med en inbjudan att registrera sig med Jellyfin.", "MessageInvitationSentToUser": "Ett mail har skickats till {0}, med en bekfräftelse för att acceptera din delade inbjudan.", "MessageItemSaved": "Objektet har sparats.", @@ -475,7 +445,6 @@ "NoSubtitles": "Inga undertexter", "NoSubtitlesHelp": "Undertexter kommer inte visas per standard. Det kan fortfarande sättas på manuellt under uppspelning.", "None": "Inga", - "Normal": "Normal", "Off": "Av", "OneChannel": "En kanal", "OnlyForcedSubtitles": "Endast tvingande undertexter", @@ -483,7 +452,6 @@ "OnlyImageFormats": "Endast image-format (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Öppna", "OptionNew": "Ny...", - "Original": "Original", "OriginalAirDateValue": "Ursprungligt sändningsdatum: {0}", "Overview": "Översikt", "PackageInstallCancelled": "Installationen av {0} avbröts.", @@ -503,8 +471,6 @@ "PlaybackErrorNoCompatibleStream": "Inga kompatibla strömmar finns att tillgå. Vänligen försök igen senare eller kontakta din systemadministratör för mer detaljer.", "PlaybackErrorNotAllowed": "Du har inte tillgång att spela upp det här innehållet. Kontakta din systemadministratör för mer detaljer.", "PlaybackErrorPlaceHolder": "Sätt in skivan för att kunna spela upp den här videon.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Visad", "Playlists": "Spellistor", "PleaseEnterNameOrId": "Ange ett namn eller externt id.", @@ -565,7 +531,6 @@ "SearchResults": "Sökresultat", "SecondaryAudioNotSupported": "Ljudspårs-switching stöds inte", "SeriesCancelled": "Serieinspelningen har avbokats.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Serieinspelning schemalagd.", "SeriesSettings": "Serieinställningar", "SeriesYearToPresent": "{0} - nu", @@ -584,8 +549,6 @@ "SkipEpisodesAlreadyInMyLibraryHelp": "Avsnitt kommer att jämföras med säsongs- och avsnittsnummer, när det finns.", "Small": "Liten", "SmallCaps": "Små bokstäver", - "Smaller": "Smaller", - "Smart": "Smart", "SmartSubtitlesHelp": "Undertexter som matchar förvalsspråket kommer visas när ljudspåret är på ett annat språk.", "Songs": "Låtar", "Sort": "Sortera", @@ -593,14 +556,11 @@ "SortChannelsBy": "Sortera kanaler efter:", "SortName": "Sorteringstitel", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", "StopRecording": "Avbryt inspelning", "Studios": "Studior", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Dessa inställningar gäller också för alla uppspelningar på Chromecast som startas av den här enheten.", "SubtitleAppearanceSettingsDisclaimer": "Dessa inställningar kommer inte gälla för grafiska undertexter (PGS, DVD, etc), eller undertexter som har en egen inbäddad stil (ASS/SSA).", "SubtitleCodecNotSupported": "Undertextsformatet stöds inte", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertexter", "Suggestions": "Förslag", "Sunday": "Söndag", @@ -616,8 +576,6 @@ "SyncJobItemStatusTransferring": "Överför", "SyncUnwatchedVideosOnly": "Ladda ned endast osedda videor", "SyncUnwatchedVideosOnlyHelp": "Endast osedda videor kommer att laddas ned, och videorna kommer tas bort från enheten när de har setts.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiketter", "TagsValue": "Etiketter: {0}", "TermsOfUse": "Användarvillkor", @@ -628,13 +586,10 @@ "Thumb": "Miniatyr", "Thursday": "Torsdag", "TrackCount": "{0} spår", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Omkodning", "TryMultiSelect": "Pröva flervalsmarkering", "TryMultiSelectMessage": "För att redigera flera mediaobjekt, klicka och håll på ett omslag och markera sedan så många du vill. Pröva nu!", "Tuesday": "Tisdag", - "Uniform": "Uniform", "UnlockGuide": "Lås upp guide", "Unplayed": "Inte spelad", "Unrated": "Ej klassad", @@ -646,10 +601,8 @@ "ValueDiscNumber": "Skiva {0}", "ValueEpisodeCount": "{0} avsnitt", "ValueGameCount": "{0} spel", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikvideor", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 avsnitt", "ValueOneGame": "1 spel", "ValueOneItem": "1 objekt", @@ -667,7 +620,6 @@ "VideoFramerateNotSupported": "Videons framerate stöds inte", "VideoLevelNotSupported": "Videonivån stöds inte", "VideoProfileNotSupported": "Videoprofilen stöds inte", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Bildupplösning stöds inte", "ViewAlbum": "Bläddra album", "ViewArtist": "Bläddra artist", diff --git a/src/bower_components/emby-webcomponents/strings/tr.json b/src/bower_components/emby-webcomponents/strings/tr.json index f224047293..13be436381 100644 --- a/src/bower_components/emby-webcomponents/strings/tr.json +++ b/src/bower_components/emby-webcomponents/strings/tr.json @@ -1,680 +1,32 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Ekle", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Yeni", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "İptal", - "ButtonGotIt": "Got It", "ButtonOk": "Tamam", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Tekrar Başlat", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Devam ediyor", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Günler", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Sil", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Düzenle", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Sonlandı", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Cuma", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Tarihi Seçin", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Ülke:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Dil:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "İsim:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", "LabelType": "Tür:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Yıl:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Canlı", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Pazartesi", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Yeni Koleksiyon", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Ebeveyn değeri", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Oynat", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Kayıt", - "RecordSeries": "Record series", "RecordingCancelled": "Kayıt iptal edildi.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Cumartesi", "Save": "Kaydet", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Pazar", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Perşembe", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Salı", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Çarşamba", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/uk.json b/src/bower_components/emby-webcomponents/strings/uk.json index 5e64cf97fe..3917d4c47d 100644 --- a/src/bower_components/emby-webcomponents/strings/uk.json +++ b/src/bower_components/emby-webcomponents/strings/uk.json @@ -1,647 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Скасувати", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Не подобається", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Улюблене", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Дата народження:", "LabelBirthYear": "Рік народження:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Країна:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Дата смерті:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Мова:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "Шлях:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "Подобається", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", "Save": "Зберігти", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Налаштування", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} альбомів", "ValueDiscNumber": "Диск {0}", "ValueEpisodeCount": "{0} епізодів", @@ -652,29 +22,10 @@ "ValueOneAlbum": "1 альбом", "ValueOneEpisode": "1 епізод", "ValueOneGame": "1 гра", - "ValueOneItem": "1 item", "ValueOneMovie": "1 фільм", "ValueOneMusicVideo": "1 музичний кліп", "ValueOneSeries": "1 серія", "ValueOneSong": "1 пісня", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} серій", "ValueSongCount": "{0} пісень", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/vi.json b/src/bower_components/emby-webcomponents/strings/vi.json index 2db6e383b8..68711df23f 100644 --- a/src/bower_components/emby-webcomponents/strings/vi.json +++ b/src/bower_components/emby-webcomponents/strings/vi.json @@ -1,680 +1,12 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Thêm", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Thoát", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Quốc gia:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Ngôn ngữ", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Tên:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Thứ Hai", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Thứ Bảy", "Save": "Lưu", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Chủ Nhật", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/zh-cn.json b/src/bower_components/emby-webcomponents/strings/zh-cn.json index fe7efc1949..0bd480d039 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-cn.json +++ b/src/bower_components/emby-webcomponents/strings/zh-cn.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "接受", "AccessRestrictedTryAgainLater": "访问目前受限。请稍后再试。", "Actor": "演员", @@ -12,7 +11,6 @@ "AirDate": "播出日期", "Aired": "已发布", "Albums": "专辑", - "All": "All", "AllChannels": "所有频道", "AllComplexFormats": "所有复杂的格式(ASS, SSA, VOBSUB, PGS, SUB/IDX 等)", "AllEpisodes": "所有集", @@ -21,23 +19,14 @@ "AllowSeasonalThemesHelp": "如果启用,当季节性主题使用时会覆盖你的主题设置。", "AlwaysPlaySubtitles": "总是显示字幕", "AlwaysPlaySubtitlesHelp": "无论音频为何种语言,都将加载与语言偏好匹配的字幕。", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "任何时间", "AroundTime": "{0} 左右", - "Art": "Art", "Artists": "艺术家", "AsManyAsPossible": "尽可能多", "Ascending": "升序", - "AspectRatio": "Aspect ratio", "AttributeNew": "新增", - "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "音频比特率不受支持", - "AudioChannelsNotSupported": "Audio channels not supported", "AudioCodecNotSupported": "音频编码不受支持", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "自动", "AutoBasedOnLanguageSetting": "自动(取决于语言设置)", "AutomaticallyConvertNewContent": "自动转换新内容", @@ -47,11 +36,8 @@ "Backdrop": "背景", "Backdrops": "背景", "Banner": "横幅", - "BestFit": "Best fit", "BirthLocation": "出生地", "Books": "书籍", - "Box": "Box", - "BoxRear": "Box (rear)", "BurnSubtitlesHelp": "根据字幕格式确定服务器在转换视频时是否应烧录字幕。避免烧录字幕会提高服务器性能。选择“自动”以烧录基于图像的字幕格式(如 VOBSUB, PGS, SUB/IDX 等)和一些复杂的 ASS/SSA 字幕。", "ButtonCancel": "取消", "ButtonGotIt": "知道了", @@ -67,35 +53,22 @@ "CancelSeries": "取消系列", "Categories": "分类", "ChannelNameOnly": "只在频道 {0}", - "ChannelNumber": "Channel number", "CinemaModeConfigurationHelp": "影院模式直接为您的客厅带来剧场级体验,同时还可以播放预告片和自定义介绍。", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CloudSyncFeatureDescription": "同步你的媒体到云以便于备份,存档和转换。", "Collections": "收藏", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "公众评分", "Composer": "作曲家", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "删除图片?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", "ConfirmDeletion": "确认删除", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", "ConfirmRemoveDownload": "删除下载?", "Connect": "连接", "ContainerBitrateExceedsLimit": "媒体比特率超过限制。", - "ContainerNotSupported": "Container not supported", "Continue": "继续", - "ContinueInSecondsValue": "Continue in {0} seconds.", "ContinueWatching": "继续观看", "Continuing": "继续", "Convert": "转换", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "仅转换未观看的视频", "ConvertUnwatchedVideosOnlyHelp": "只有未观看的视频会被转换。", - "ConvertingDots": "Converting...", "Countries": "国家", "CriticRating": "影评人评分", "DateAdded": "加入日期", @@ -106,17 +79,13 @@ "DefaultSubtitlesHelp": "字幕将基于内嵌元数据中的“默认”标志和“强制”标志来载入。当多个选项可用时,将根据语言偏好决定。", "Delete": "删除", "DeleteMedia": "删除媒体", - "Depressed": "Depressed", "Descending": "降序", "Desktop": "桌面", "DirectPlayError": "直接播放发生错误", "DirectPlaying": "直接播放", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", "DirectStreamHelp2": "直接串流一个文件仅仅会占用非常少的处理能力并且视频的品质不会有任何损失。", "DirectStreaming": "直接串流", "Director": "导演", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "光盘", "Disconnect": "断开连接", "Dislike": "不喜欢", @@ -125,19 +94,15 @@ "DisplayInOtherHomeScreenSections": "在“最新的媒体”和“继续观看“等主屏幕模块中显示", "DisplayMissingEpisodesWithinSeasons": "显示每季里缺少的剧集", "DisplayMissingEpisodesWithinSeasonsHelp": "必须在 Jellyfin 服务器的 TV 媒体库设置中也启用该功能。", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "不录制", "Down": "下", "Download": "下载", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "已下载", "Downloading": "下载中", "DownloadingDots": "正在下载...", "Downloads": "下载", "DownloadsValue": "{0} 下载", "DropShadow": "阴影", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "编辑", "EditImages": "修改图片", "EditMetadata": "编辑元数据", @@ -145,7 +110,6 @@ "EnableBackdrops": "启用背景图", "EnableBackdropsHelp": "如果启用,当浏览媒体库时背景图将作为一些页面的背景显示。", "EnableCinemaMode": "启用影院模式", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "开启显示镜像", "EnableExternalVideoPlayers": "启用外部播放器", "EnableExternalVideoPlayersHelp": "当你开始播放视频时,将会显示一个外部播放器菜单。", @@ -159,56 +123,32 @@ "EndsAtValue": "结束于 {0}", "Episodes": "剧集", "Error": "错误", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "特大", "Extras": "额外", "Favorite": "我的最爱", "Favorites": "我的最爱", "FeatureRequiresJellyfinPremiere": "这项功能需要一个有效的 Jellyfin Premiere 订阅。", - "Features": "Features", "File": "文件", - "Fill": "Fill", "Filters": "筛选", "Folders": "文件夹", "FormatValue": "格式:{0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", "Genres": "风格", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "特邀明星", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "高清节目", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "加入收藏", "HeaderAddToPlaylist": "添加到播放列表", "HeaderAddUpdateImage": "添加/更新 图片", "HeaderAlbumArtists": "专辑艺术家", "HeaderAlreadyPaid": "已付款?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "有声读物", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "获取 Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "影院模式", "HeaderCloudSync": "云同步", "HeaderConfirmRecordingCancellation": "确认取消录制", "HeaderContinueListening": "继续听", "HeaderContinueWatching": "继续观看", "HeaderConvertYourRecordings": "转换您的录制", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "删除项目", "HeaderDeleteItems": "删除项目", "HeaderDisplaySettings": "显示设置", @@ -230,75 +170,52 @@ "HeaderFreeApps": "免费 Jellyfin 应用", "HeaderHomeScreen": "主屏幕", "HeaderIdentifyItemHelp": "输入一个或多个搜索条件。删除条件可得到更多搜索结果。", - "HeaderInvitationSent": "Invitation Sent", "HeaderJellyfinAccountAdded": "Jellyfin 账户已添加", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", "HeaderLatestChannelItems": "最新频道项目", "HeaderLatestChannelMedia": "最新频道项目", "HeaderLatestFrom": "最新的 {0}", "HeaderLatestMedia": "最新媒体", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "了解更多", - "HeaderLibraryFolders": "Library Folders", "HeaderLibraryOrder": "媒体库顺序", "HeaderMetadataSettings": "元数据设置", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "我的设备", "HeaderMyMedia": "我的媒体", "HeaderMyMediaSmall": "我的媒体 (小)", "HeaderNewRecording": "新录制", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "下一个", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "离线媒体", "HeaderOfflineDownloadsDescription": "下载媒体到你的设备上以便于离线使用。", - "HeaderOnNow": "On Now", "HeaderPhotoAlbums": "相册", "HeaderPlayMyMedia": "播放我的媒体", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "播放错误", "HeaderRecordingOptions": "录制选项", "HeaderRemoteControl": "远程控制", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "请说些什么,比如...", "HeaderSecondsValue": "{0} 秒", "HeaderSelectDate": "选择日期", "HeaderSeriesOptions": "系列选项", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "特别剧集信息", "HeaderStartNow": "现在开始", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "字幕外观", "HeaderSubtitleSettings": "字幕设置", "HeaderSyncRequiresSub": "下载需要一个有效的 Jellyfin Premiere 订阅。", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "解锁功能", "HeaderUploadImage": "上传图片", "HeaderVideoQuality": "视频质量", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "等待 Wifi 连接", "HeaderYouSaid": "您说了...", "Help": "帮助", "Hide": "隐藏", "HideWatchedContentFromLatestMedia": "从最新媒体中隐藏已观看的内容", "Home": "首页", - "Horizontal": "Horizontal", "HowDidYouPay": "你想如何付款?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", "IPurchasedThisApp": "我已购买此应用", "Identify": "识别", "Images": "图片", "ImdbRating": "IMDb 评分", "InstallingPackage": "正在安装 {0}", "InstantMix": "即时混音", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} 项", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "儿童", "Label3DFormat": "3D格式:", "LabelAirDays": "播出日期:", @@ -310,7 +227,6 @@ "LabelAlbumArtists": "专辑作家:", "LabelArtists": "艺术家:", "LabelArtistsHelp": "独立多功能;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "首选音频语言:", "LabelBirthDate": "出生日期:", "LabelBirthYear": "出生年份:", @@ -334,7 +250,6 @@ "LabelDisplayLanguageHelp": "Jellyfin的翻译工作是一个不断推进的工程项目。", "LabelDisplayMode": "显示模式:", "LabelDisplayOrder": "显示顺序:", - "LabelDropImageHere": "Drop image here, or click to browse.", "LabelDropShadow": "阴影:", "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "邮箱地址:", @@ -345,9 +260,7 @@ "LabelHomeScreenSectionValue": "主屏幕模块{0}:", "LabelImageType": "图片类型:", "LabelInternetQuality": "网络质量:", - "LabelItemLimit": "Item limit:", "LabelKeep:": "保留:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "语言:", "LabelLockItemToPreventChanges": "锁定此项目防止改动", "LabelMaxChromecastBitrate": "最大 Chromecast 比特率:", @@ -361,7 +274,6 @@ "LabelParentalRating": "家长分级:", "LabelPath": "路径:", "LabelPersonRole": "角色:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "出生地:", "LabelPlayDefaultAudioTrack": "播放默认音轨无论是什么语言", "LabelPlaylist": "播放列表:", @@ -375,8 +287,6 @@ "LabelRuntimeMinutes": "播放时长(分钟):", "LabelScreensaver": "屏幕保护:", "LabelSeasonNumber": "季号:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "LabelShortOverview": "简介:", "LabelSkin": "皮肤:", "LabelSkipBackLength": "跳过长度:", @@ -404,7 +314,6 @@ "LabelTrackNumber": "音轨号码:", "LabelType": "类型:", "LabelVersion": "版本:", - "LabelVideo": "Video:", "LabelWebsite": "网站:", "LabelWindowBackgroundColor": "文本背景色:", "LabelYear": "年份:", @@ -413,41 +322,21 @@ "LearnHowYouCanContribute": "学习如何构建。", "LearnMore": "了解更多", "Like": "喜欢", - "LinksValue": "Links: {0}", "List": "列表", "Live": "直播", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "通过一个安装在你的 Jellyfin 服务器上的受兼容的电视协调器来串流你的电视直播至任何其他 Jellyfin 应用程序。", "LiveTvRequiresUnlock": "电视直播需要一个有效的 Jellyfin Premiere 订阅。", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "标为已播放", "MarkUnplayed": "标为未播放", "MarkWatched": "标记为已观看", "MediaIsBeingConverted": "媒体正在被转换成与正在播放该媒体的设备兼容的格式。", "Medium": "标准", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "你确定希望删除此字幕文件?", "MessageConfirmRecordingCancellation": "取消录制?", "MessageDownloadQueued": "下载已列队。", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "项目已保存。", "MessageItemsAdded": "项目已添加。", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "留空则继承父项或全局默认值设置。", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "如果你已经拥有一个有效的 Jellyfin Premiere 订阅,请确保你已经在你 Jellyfin 服务器控制台的“Jellyfin Premiere”选项中配置了你的 Jellyfin Premiere,你可以在 Jellyfin 服务器控制台主菜单中找到“Jellyfin Premiere”选项。", "MessageUnlockAppWithPurchaseOrSupporter": "通过一次性付费或一个有效的 Jellyfin Premiere 订阅来解锁这项功能。", "MessageUnlockAppWithSupporter": "通过一个有效的 Jellyfin Premiere 订阅来解锁这项功能。", @@ -476,7 +365,6 @@ "NoSubtitlesHelp": "字幕将默认不被加载,但你仍然可以在播放时手动打开字幕。", "None": "无", "Normal": "普通", - "Off": "Off", "OneChannel": "一个频道", "OnlyForcedSubtitles": "只显示强制字幕", "OnlyForcedSubtitlesHelp": "只有被标记为“强制”的字幕会被加载。", @@ -493,18 +381,11 @@ "People": "人物", "PerfectMatch": "最佳匹配", "Photos": "照片", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", "PlayAllFromHere": "这里的全部内容都开始播放", "PlayCount": "播放次数", "PlayFromBeginning": "从头播放", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", "PlaybackErrorPlaceHolder": "请插入光盘以播放此视频。", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "已播放", "Playlists": "播放列表", "PleaseEnterNameOrId": "请输入一个名称或一个外部ID。", @@ -512,26 +393,18 @@ "PleaseSelectDeviceToSyncTo": "请选择要下载的设备。", "PleaseSelectTwoItems": "请至少选择2个项目。", "Premiere": "首映", - "Premieres": "Premieres", "Previous": "上一个", "Primary": "封面图", - "PrivacyPolicy": "Privacy policy", "Producer": "制片人", "ProductionLocations": "产地", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "质量", "QueueAllFromHere": "这里的全部内容都加入队列", - "Raised": "Raised", "RecentlyWatched": "最近观看", "Record": "录制", "RecordSeries": "录制电视剧", "RecordingCancelled": "录制已取消。", "RecordingScheduled": "录制计划", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "刷新", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "刷新元数据", "RefreshQueued": "列队已刷新。", "Reject": "拒绝", @@ -542,12 +415,10 @@ "RemovingFromDevice": "从设备移除中", "Repeat": "重播", "RepeatAll": "全部循环", - "RepeatEpisodes": "Repeat episodes", "RepeatMode": "循环模式", "RepeatOne": "单项循环", "ReplaceAllMetadata": "覆盖所有元数据", "ReplaceExistingImages": "替换现有图片", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "恢复播放于{0}", "Retry": "重试", "RunAtStartup": "开机时启动", @@ -555,17 +426,13 @@ "Saturday": "星期六", "Save": "储存", "ScanForNewAndUpdatedFiles": "扫描新的和有修改的文件", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "截图", "Search": "搜索", "SearchForCollectionInternetMetadata": "在互联网上搜索媒体图像和资料", "SearchForMissingMetadata": "搜索缺少的元数据", "SearchForSubtitles": "搜索字幕", "SearchResults": "搜索结果", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "电视剧已取消", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "电视剧录制计划", "SeriesSettings": "系列设定", "SeriesYearToPresent": "{0} - 现在", @@ -575,16 +442,10 @@ "Settings": "设置", "SettingsSaved": "设置已保存。", "Share": "共享", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "显示标题", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "随机播放", "SkipEpisodesAlreadyInMyLibrary": "不录制我的媒体库里已存在的剧集", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "小", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "智能模式", "SmartSubtitlesHelp": "当音频为外语时,将加载与语言偏好匹配的字幕。", "Songs": "歌曲", @@ -593,14 +454,10 @@ "SortChannelsBy": "频道排序方式:", "SortName": "排序名称", "Sports": "体育", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "工作室", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "这些设定也会被应用于任何通过此设备发起的 Chromecast 播放。", "SubtitleAppearanceSettingsDisclaimer": "这些设置将不会应用于图形字幕(如 PGS,DVD 等),或者一些有着自己的内置式样的字幕(ASS/SSA)。", "SubtitleCodecNotSupported": "字幕格式不被支持", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "字幕", "Suggestions": "建议", "Sunday": "星期天", @@ -616,12 +473,8 @@ "SyncJobItemStatusTransferring": "传输中", "SyncUnwatchedVideosOnly": "仅下载未观看的视频", "SyncUnwatchedVideosOnlyHelp": "只有未观看的视频会被下载,并且已经观看过的视频会从该设备上移除。", - "SyncingDots": "Syncing...", "TV": "电视", "Tags": "标签", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", "ThemeSongs": "主题曲", "ThemeVideos": "主题视频", "TheseSettingsAffectSubtitlesOnThisDevice": "这些设置仅影响该设备的字幕显示", @@ -631,10 +484,7 @@ "Trailer": "预告片", "Trailers": "预告片", "Transcoding": "转码", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", "UnlockGuide": "解锁指南", "Unplayed": "未播放", "Unrated": "未分级", @@ -652,23 +502,14 @@ "ValueOneAlbum": "1张专辑", "ValueOneEpisode": "1 集", "ValueOneGame": "1 个游戏", - "ValueOneItem": "1 item", "ValueOneMovie": "1 个电影", "ValueOneMusicVideo": "1个音乐视频", "ValueOneSeries": "1 个系列", "ValueOneSong": "1首歌", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 个系列", "ValueSongCount": "{0} 首歌", "ValueSpecialEpisodeName": "特典 - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "视频编码不受支持", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "查看专辑", "ViewArtist": "查看艺术家", "VoiceInput": "语音输入", diff --git a/src/bower_components/emby-webcomponents/strings/zh-hk.json b/src/bower_components/emby-webcomponents/strings/zh-hk.json index 8cd9950b82..8de9a6ce13 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-hk.json +++ b/src/bower_components/emby-webcomponents/strings/zh-hk.json @@ -1,680 +1,50 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "新增", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "重新啟動", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "繼續", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "錄影日", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "删除", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "編輯", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", "EditSubtitles": "編輯字幕", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "完成", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "添加到收藏庫", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "選擇日期", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "幫助", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", "LabelAirsAfterSeason": "已播放劇集季度:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelAirsBeforeSeason": "尚未播放劇集季度:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "藝人:", "LabelArtistsHelp": "分開多重使用", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "討論區評分", "LabelContentType": "內容類型:", - "LabelConvertTo": "Convert to:", "LabelCountry": "國家:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "語言:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "偏好下載語言:", "LabelName": "名稱:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "路徑:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "狀態:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "您確定希望刪除此字幕文件?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "星期一", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "新收藏庫", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "例如:星球大戰收藏庫", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "錄影", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "重新整理", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "星期六", "Save": "儲存", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "從互聯網搜尋相關圖片和資料屬性", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "字幕搜索", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "星期日", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "星期四", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} 劇集", "ValueGameCount": "{0} 遊戲", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} 個 MV", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1個 MV", "ValueOneSeries": "1 劇集", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 劇集", "ValueSongCount": "{0} 首歌", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "星期三", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/zh-tw.json b/src/bower_components/emby-webcomponents/strings/zh-tw.json index 41a83e0908..adaaa52f76 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-tw.json +++ b/src/bower_components/emby-webcomponents/strings/zh-tw.json @@ -1,680 +1,79 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "添加", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", "Advanced": "進階", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", "ButtonGotIt": "我知道了", "ButtonOk": "確定", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "重試", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "刪除此項目時,也會一併從檔案系統及媒體櫃中刪除。確定要刪除嗎?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeletion": "確定刪除", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "持續", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "錄影日", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "刪除", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "不喜歡", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "下載", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "編輯", "EditImages": "編輯圖片", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "完結", "EndsAtValue": "完結於{0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "加到最愛", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "此功能需要有效的Jellyfin豪華版訂閱", - "Features": "Features", "File": "檔案", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "立即取得", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "刪除項目", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "新錄製", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "說點東西,像是...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "選擇日期", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "您是指...", "Help": "說明", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0}個項目", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "收藏櫃:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "國家:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "語言:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "名字:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "播放清單:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", "LabelRefreshMode": "更新模式:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "喜歡", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "要使用自動錄製系列的功能,需要有效的Jellyfin豪華版訂閱", "MessageAreYouSureDeleteSubtitles": "您真的要刪除這個字幕檔嗎?", - "MessageConfirmRecordingCancellation": "Cancel recording?", "MessageDownloadQueued": "需要下載", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "如果您拒絕程式使用語音辨識,您將需要在重試之前再次設定", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", "MessageItemsAdded": "已新增項目", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", "MessageWeDidntRecognizeCommand": "很抱歉,我們無法辨識此指令", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "星期一", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", "MySubtitles": "我的字幕", - "Name": "Name", "NewCollection": "新合集", "NewCollectionHelp": "收藏櫃讓您能夠建立個人化的影音及其他媒體的分類", "NewCollectionNameExample": "例子:星球大戰合集", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "無項目", "NoSubtitleSearchResultsFound": "無結果", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", "OptionNew": "新增...", - "Original": "Original", "OriginalAirDateValue": "原始播出日期:{0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "開始錄影", "RecordSeries": "錄製整個系列", "RecordingCancelled": "已取消排程錄製", "RecordingScheduled": "已排程錄製", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "重新整理", "RefreshDialogHelp": "詳細資料的更新方式會依據Jellyfin的設定及已經啟用的網路服務來進行", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "取代所有詳細資料", "ReplaceExistingImages": "取代現有圖片", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "星期六", "Save": "保存", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "搜尋", "SearchForCollectionInternetMetadata": "在互聯網上搜索媒體圖像和資料", "SearchForMissingMetadata": "搜尋遺失的詳細資料", "SearchForSubtitles": "搜尋字幕", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "已排程錄製整個系列", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "此Jellyfin伺服器需要更新,請至{0}取得最新版本", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", "Share": "分享", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "字幕", - "Suggestions": "Suggestions", "Sunday": "星期天", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "星期四", "TrackCount": "{0}個曲目", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", "UnlockGuide": "解鎖方式", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "星期三", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } From 8580ac39e3b8252363142815628628bbb4329f7f Mon Sep 17 00:00:00 2001 From: Tthecreator Date: Tue, 22 Jan 2019 15:08:02 +0100 Subject: [PATCH 04/16] Fixed slider issues on all major and minor browsers. --- CONTRIBUTORS.md | 1 + .../emby-slider/emby-slider.css | 24 ++++++++++++++----- .../emby-slider/emby-slider.js | 2 ++ 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 3773562e54..4cadf33ac4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Drago96](https://github.com/drago-96) - [ViXXoR](https://github.com/ViXXoR) - [nkmerrill] (https://github.com/nkmerrill) + - [TtheCreator] (https://github.com/Tthecreator) # Emby Contributors diff --git a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css index 9617c6be49..179270e22f 100644 --- a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css +++ b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css @@ -10,7 +10,7 @@ _:-ms-input-placeholder { -moz-appearance: none; -ms-appearance: none; appearance: none; - height: .2em; + height: 150%;/*150% is needed, else ie and edge won't display the thumb properly*/ background: transparent; -webkit-user-select: none; -moz-user-select: none; @@ -49,10 +49,12 @@ _:-ms-input-placeholder { .mdl-slider::-moz-range-track { background: #444; border: none; + width: calc(100% - 20px); } .mdl-slider::-moz-range-progress { background: #00a4dc; + width: calc(100% - 20px); } .mdl-slider::-ms-track { @@ -83,7 +85,6 @@ _:-ms-input-placeholder { } .mdl-slider-hoverthumb::-webkit-slider-thumb { - margin-left: -.12em; transform: scale(.7, .7); } @@ -97,13 +98,14 @@ _:-ms-input-placeholder { .mdl-slider::-moz-range-thumb { -moz-appearance: none; - width: 1.8em; - height: 1.8em; + width: 0.9em; + height: 0.9em; box-sizing: border-box; border-radius: 50%; background-image: none; background: #00a4dc; border: none; + transform: Scale(1.4, 1.4); } .mdl-slider::-ms-thumb { @@ -114,6 +116,7 @@ _:-ms-input-placeholder { border-radius: 50%; background: #00a4dc; border: none; + transform: scale(.9, .9); transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1); } @@ -154,11 +157,20 @@ _:-ms-input-placeholder { flex-direction: row; } +.mdl-slider-background-flex-container { + padding-left: 10px; + padding-right: 10px; + width: 100%; + box-sizing: border-box; + margin-top: -.05em; + top: 50%; + position: absolute; +} + .mdl-slider-background-flex { background: #333; - position: absolute; height: .2em; - margin-top: -.1em; + margin-top: -.08em; width: 100%; top: 50%; left: 0; diff --git a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js index 06fcdcfea1..44fbd7f16c 100644 --- a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js +++ b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js @@ -89,6 +89,7 @@ var htmlToInsert = ''; if (!supportsNativeProgressStyle) { + htmlToInsert += '
'; htmlToInsert += '
'; htmlToInsert += '
'; @@ -103,6 +104,7 @@ htmlToInsert += '
'; htmlToInsert += '
'; + htmlToInsert += '
'; } htmlToInsert += '
'; From 8a59ae79dcc6d77027de45291904654b6eec2db3 Mon Sep 17 00:00:00 2001 From: dkanada Date: Wed, 23 Jan 2019 01:52:20 +0900 Subject: [PATCH 05/16] remove duplicates from british language and add todo --- .../emby-webcomponents/globalize.js | 3 +- .../emby-webcomponents/strings/en-gb.json | 632 ------- src/strings/en-GB.json | 1602 ----------------- 3 files changed, 2 insertions(+), 2235 deletions(-) diff --git a/src/bower_components/emby-webcomponents/globalize.js b/src/bower_components/emby-webcomponents/globalize.js index 665578a523..206113c761 100644 --- a/src/bower_components/emby-webcomponents/globalize.js +++ b/src/bower_components/emby-webcomponents/globalize.js @@ -75,6 +75,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function normalizeLocaleName(culture) { + // TODO remove normalizations culture = culture.replace('_', '-'); // convert de-DE to de @@ -259,4 +260,4 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana getCurrentDateTimeLocale: getCurrentDateTimeLocale, register: register }; -}); \ No newline at end of file +}); diff --git a/src/bower_components/emby-webcomponents/strings/en-gb.json b/src/bower_components/emby-webcomponents/strings/en-gb.json index 7100ecf6e5..43bbaac677 100644 --- a/src/bower_components/emby-webcomponents/strings/en-gb.json +++ b/src/bower_components/emby-webcomponents/strings/en-gb.json @@ -1,220 +1,19 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active Internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", "CinemaModeConfigurationHelp": "Cinema mode brings the theatre experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", "ColorPrimaries": "Colour primaries", "ColorSpace": "Colour space", "ColorTransfer": "Colour transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "ConfirmDeleteItem": "Deleting this item will delete it 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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Enable colour-coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", "ErrorAddingGuestAccount2": "If you're still having an issue, please send an e-mail to {0}, and include your e-mail address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an e-mail to {0} from the e-mail address used with the Jellyfin account.", "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active Internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active Internet connection and try again.", "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active Internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favourite", "Favorites": "Favourites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", "GuestUserNotFound": "User not found. Please ensure the name is correct and try again. Alternatively, try entering their e-mail address.", - "Guide": "Guide", "HDPrograms": "HD programmes", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", "HeaderEnabledFieldsHelp": "Untick a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "External IDs:", "HeaderFavoriteAlbums": "Favourite Albums", @@ -227,454 +26,23 @@ "HeaderFavoriteShows": "Favourite Shows", "HeaderFavoriteSongs": "Favourite Songs", "HeaderFavoriteVideos": "Favourite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wi-Fi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", "LabelDateTimeLocale": "Date/time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", "LabelSelectFolderGroupsHelp": "Folders that are unticked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Text background colour:", "LabelTextColor": "Text colour:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Text background colour:", "LabelYear": "Year", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "An email has been sent to {0}, inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An e-mail will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the e-mail.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognise that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", "NewCollectionHelp": "Collections allow you to create personalised groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", - "ParentalRating": "Parental rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Place favourite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", "PlaybackErrorNotAllowed": "You're currently not authorised to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Please enter a name or an external ID.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", "Programs": "Programmes", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", "SeriesDisplayOrderHelp": "Order episodes by air date, DVD order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc.) or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wi-Fi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/strings/en-GB.json b/src/strings/en-GB.json index 66c3dfebc4..ac8a0354d6 100644 --- a/src/strings/en-GB.json +++ b/src/strings/en-GB.json @@ -1,354 +1,25 @@ { - "AddGuideProviderHelp": "Add a source for TV Guide information", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "AddUser": "Add User", - "AddUserByManually": "Add a local user by manually entering user information.", "AdditionalNotificationServices": "Browse the plugin catalogue to install additional notification services.", - "Advanced": "Advanced", - "Alerts": "Alerts", - "All": "All", - "AllLibraries": "All libraries", - "AllowDeletionFromAll": "Allow media deletion from all libraries", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Jellyfin Server.", - "AllowMediaConversion": "Allow media conversion", - "AllowMediaConversionHelp": "Grant or deny access to the convert media feature.", - "AllowOnTheFlySubtitleExtraction": "Allow subtitle extraction on the fly", "AllowOnTheFlySubtitleExtractionHelp": "Embedded subtitles can be extracted from videos and delivered to Jellyfin apps in plain text in order to help prevent video transcoding. On some systems, this can take a long time and cause video playback to stall during the extraction process. Disable this to have embedded subtitles burned in with video transcoding when they are not natively supported by the client device.", - "AllowRemoteAccess": "Allow remote connections to this Jellyfin Server.", "AllowRemoteAccessHelp": "If unticked, all remote connections will be blocked.", - "AllowedRemoteAddressesHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely. If left blank, all remote addresses will be allowed.", - "Audio": "Audio", - "BirthDateValue": "Born: {0}", - "BirthPlaceValue": "Birth place: {0}", - "Blacklist": "Blacklist", - "BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)", - "BookLibraryHelp": "Audio and text books are supported. Review the {0}Jellyfin Book naming guide{1}.", - "Browse": "Browse", "BrowsePluginCatalogMessage": "Browse our plugin catalogue to view available plugins.", - "ButtonAccept": "Accept", - "ButtonAdd": "Add", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "ButtonAddServer": "Add Server", - "ButtonAddUser": "Add User", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonArrowUp": "Up", - "ButtonAudioTracks": "Audio Tracks", - "ButtonBack": "Back", - "ButtonCancel": "Cancel", - "ButtonCancelSeries": "Cancel Series", - "ButtonChangeContentType": "Change content type", - "ButtonChangeServer": "Change Server", - "ButtonClear": "Clear", - "ButtonClose": "Close", - "ButtonConfigurePassword": "Configure Password", "ButtonConfigurePinCode": "Configure PIN code", - "ButtonConnect": "Connect", - "ButtonConvertMedia": "Convert media", - "ButtonCreate": "Create", - "ButtonDelete": "Delete", - "ButtonDeleteImage": "Delete Image", - "ButtonDown": "Down", - "ButtonDownload": "Download", - "ButtonEdit": "Edit", - "ButtonEditImages": "Edit images", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "ButtonExit": "Exit", - "ButtonFilter": "Filter", - "ButtonForgotPassword": "Forgot password", - "ButtonFullscreen": "Fullscreen", - "ButtonGuide": "Guide", - "ButtonHelp": "Help", - "ButtonHide": "Hide", - "ButtonHome": "Home", - "ButtonInfo": "Info", - "ButtonInviteUser": "Invite User", - "ButtonLearnMore": "Learn more", - "ButtonLibraryAccess": "Library access", - "ButtonManageFolders": "Manage folders", - "ButtonManageServer": "Manage Server", - "ButtonManualLogin": "Manual Login", - "ButtonMenu": "Menu", - "ButtonMore": "More", - "ButtonMoreInformation": "More Information", - "ButtonMute": "Mute", - "ButtonNetwork": "Network", - "ButtonNew": "New", - "ButtonNewServer": "New Server", - "ButtonNext": "Next", - "ButtonNextPage": "Next Page", - "ButtonNextTrack": "Next track", - "ButtonNo": "No", - "ButtonNowPlaying": "Now Playing", - "ButtonOff": "Off", - "ButtonOk": "Ok", - "ButtonOpen": "Open", - "ButtonOther": "Other", - "ButtonParentalControl": "Parental control", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonPlayTrailer": "Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreferences": "Preferences", - "ButtonPrevious": "Previous", - "ButtonPreviousPage": "Previous Page", - "ButtonPreviousTrack": "Previous track", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "ButtonPurchase": "Purchase", - "ButtonQuality": "Quality", - "ButtonQuickStartGuide": "Quick Start Guide", - "ButtonRecord": "Record", - "ButtonReenable": "Re-enable", - "ButtonRefresh": "Refresh", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonReject": "Reject", - "ButtonRemote": "Remote", - "ButtonRemoteControl": "Remote Control", - "ButtonRemove": "Remove", - "ButtonRename": "Rename", - "ButtonRepeat": "Repeat", - "ButtonReports": "Reports", - "ButtonReset": "Reset", "ButtonResetEasyPassword": "Reset easy PIN code", - "ButtonResetPassword": "Reset Password", - "ButtonResetTuner": "Reset tuner", - "ButtonRestart": "Restart", - "ButtonRestartNow": "Restart Now", - "ButtonResume": "Resume", - "ButtonRevoke": "Revoke", - "ButtonSave": "Save", - "ButtonScanAllLibraries": "Scan All Libraries", - "ButtonScanLibrary": "Scan Library", - "ButtonScheduledTasks": "Scheduled tasks", - "ButtonSearch": "Search", - "ButtonSelect": "Select", - "ButtonSelectDirectory": "Select Directory", - "ButtonSelectServer": "Select Server", - "ButtonSelectView": "Select view", - "ButtonSend": "Send", - "ButtonSendInvitation": "Send Invitation", - "ButtonServer": "Server", - "ButtonServerDashboard": "Server Dashboard", - "ButtonSettings": "Settings", - "ButtonShare": "Share", - "ButtonShuffle": "Shuffle", - "ButtonShutdown": "Shutdown", - "ButtonSignIn": "Sign In", "ButtonSignOut": "Sign out", - "ButtonSignUp": "Sign up", - "ButtonSkip": "Skip", - "ButtonSort": "Sort", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonStart": "Start", - "ButtonStop": "Stop", - "ButtonStopRecording": "Stop Recording", - "ButtonSubmit": "Submit", - "ButtonSubtitles": "Subtitles", - "ButtonSync": "Sync", - "ButtonTrailer": "Trailer", - "ButtonUninstall": "Uninstall", - "ButtonUnmute": "Unmute", - "ButtonUp": "Up", - "ButtonUpdateNow": "Update Now", - "ButtonUpload": "Upload", - "ButtonView": "View", - "ButtonViewAlbum": "View album", - "ButtonViewArtist": "View artist", - "ButtonViewWebsite": "View website", - "ButtonWebsite": "Website", - "ButtonYes": "Yes", - "CancelSeries": "Cancel series", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "CategorySync": "Sync", - "CategorySystem": "System", - "CategoryUser": "User", - "ChangingMetadataImageSettingsNewContent": "Changes to metadata or artwork downloading settings will only apply to new content added to your library. To apply the changes to existing titles, you'll need to refresh their metadata manually.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "Channels": "Channels", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeConfigurationHelp2": "Jellyfin apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "CoverArt": "Cover Art", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "DeathDateValue": "Died: {0}", "DefaultCameraUploadPathHelp": "Select a custom upload path. If left blank, a default folder will be used. If using a custom path, it will also need to be added as a library in Jellyfin library setup.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", "DefaultMetadataLangaugeDescription": "These are your defaults and can be customised on a per-library basis.", - "Delete": "Delete", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "DeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "DeleteMedia": "Delete media", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "DetectingDevices": "Detecting devices", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "DeviceLastUsedByUserName": "Last used by {0}", - "Disabled": "Disabled", - "Downloading": "Downloading", - "Downloads": "Downloads", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", "EasyPasswordHelp": "Your easy PIN code is used for offline access with supported Jellyfin apps, and can also be used for easy in-network sign in.", - "EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.", - "EnableHardwareEncoding": "Enable hardware encoding", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "EnableStreamLooping": "Auto-loop live streams", - "EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested. Enabling this when not needed may cause problems.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? You can sign up at {0}.", "ErrorAddingJellyfinConnectAccount2": "If you're still having a problem, please send an e-mail to {0}.", - "ErrorAddingJellyfinConnectAccount3": "The Jellyfin account is already linked to an existing local user. An Jellyfin account can only be linked to one local user at a time.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Jellyfin Server process has access to that location.", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", "ErrorGettingTvLineups": "There was an error downloading TV lineups. Please ensure your information is correct 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.", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorValidatingSupporterInfo": "There was an error validating your Jellyfin Premiere information. Please try again later.", - "EveryNDays": "Every {0} days", - "ExitFullscreen": "Exit full screen", "ExtractChapterImagesHelp": "Extracting chapter images will allow Jellyfin apps 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.", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "FastForward": "Fast-forward", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "FileNotFound": "File not found.", "FileReadCancelled": "The file read has been cancelled.", - "FileReadError": "An error occurred while reading the file.", - "FolderTypeBooks": "Books", - "FolderTypeGames": "Games", - "FolderTypeInherit": "Inherit", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeMusicVideos": "Music videos", - "FolderTypePhotos": "Photos", - "FolderTypeTvShows": "TV Shows", - "FolderTypeUnset": "Mixed content", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the Services tab to see the available options.", - "Fullscreen": "Full screen", - "General": "General", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "GuideProviderLogin": "Login", - "GuideProviderSelectListings": "Select Listings", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "HandledByProxy": "Handled by reverse proxy", - "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.", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "HeaderActiveDevices": "Active Devices", - "HeaderActiveRecordings": "Active Recordings", - "HeaderActivity": "Activity", - "HeaderAddDevice": "Add Device", - "HeaderAddLocalUser": "Add Local User", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddTag": "Add Tag", - "HeaderAddTitles": "Add Titles", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAddUser": "Add User", - "HeaderAdditionalParts": "Additional Parts", - "HeaderAdmin": "Admin", - "HeaderAdvanced": "Advanced", - "HeaderAirDays": "Air Days", - "HeaderAlbums": "Albums", - "HeaderAlert": "Alert", - "HeaderAllRecordings": "All Recordings", - "HeaderAllowMediaDeletionFrom": "Allow Media Deletion From", "HeaderApiKey": "API Key", "HeaderApiKeys": "API Keys", "HeaderApiKeysHelp": "External applications are required to have an API key in order to communicate with Jellyfin Server. Keys are issued by logging in with an Jellyfin account, or by manually granting the application a key.", - "HeaderApp": "App", - "HeaderAudio": "Audio", - "HeaderAudioSettings": "Audio Settings", - "HeaderAudioTracks": "Audio Tracks", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderAvailableServices": "Available Services", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderBackdrops": "Backdrops", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", "HeaderBlockItemsWithNoRating": "Block items with no or unrecognised rating information:", - "HeaderBooks": "Books", - "HeaderBranding": "Branding", "HeaderBrandingHelp": "Customise the appearance of Jellyfin to fit the needs of your group or organisation.", - "HeaderCameraUpload": "Camera Upload", - "HeaderCameraUploadHelp": "Jellyfin apps can automatically upload photos taken from your mobile devices into Jellyfin Server.", - "HeaderCancelSyncJob": "Cancel Sync", - "HeaderCastAndCrew": "Cast & Crew", - "HeaderCastCrew": "Cast & Crew", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderChannelAccess": "Channel Access", - "HeaderChannels": "Channels", - "HeaderChapterImages": "Chapter Images", - "HeaderChapters": "Chapters", - "HeaderCinemaMode": "Cinema Mode", - "HeaderClients": "Clients", - "HeaderCloudSync": "Cloud Sync", - "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderCollections": "Collections", - "HeaderColumns": "Columns", - "HeaderConfigureRemoteAccess": "Configure Remote Access", - "HeaderConfirm": "Confirm", - "HeaderConfirmDeletion": "Confirm Deletion", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRevokeApiKey": "Revoke API Key", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "HeaderConfirmation": "Confirmation", - "HeaderConnectToServer": "Connect to Server", - "HeaderConnectionFailure": "Connection Failure", - "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderContinueWatching": "Continue Watching", - "HeaderCreatePassword": "Create Password", - "HeaderCredits": "Credits", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderDate": "Date", - "HeaderDateIssued": "Date Issued", - "HeaderDays": "Days", - "HeaderDefaultRecordingSettings": "Default Recording Settings", - "HeaderDeleteDevice": "Delete Device", - "HeaderDeleteImage": "Delete Image", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteProvider": "Delete Provider", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderDestination": "Destination", - "HeaderDetails": "Details", - "HeaderDetectMyDevices": "Detect My Devices", - "HeaderDeveloperInfo": "Developer Info", - "HeaderDevice": "Device", - "HeaderDeviceAccess": "Device Access", - "HeaderDevices": "Devices", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderDisplay": "Display", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "HeaderDownloadSync": "Download & Sync", "HeaderEasyPinCode": "Easy PIN Code", - "HeaderEmbeddedImage": "Embedded image", - "HeaderEpisodes": "Episodes", - "HeaderError": "Error", - "HeaderExport": "Export", - "HeaderExternalPlayerPlayback": "External Player Playback", - "HeaderExternalServices": "External Services", "HeaderFavoriteAlbums": "Favourite Albums", "HeaderFavoriteArtists": "Favourite Artists", "HeaderFavoriteEpisodes": "Favourite Episodes", @@ -357,1372 +28,99 @@ "HeaderFavoriteShows": "Favourite Shows", "HeaderFavoriteSongs": "Favourite Songs", "HeaderFavoriteVideos": "Favourite Videos", - "HeaderFeatureAccess": "Feature Access", - "HeaderFeatures": "Features", - "HeaderFetchImages": "Fetch Images:", - "HeaderFetcherSettings": "Fetcher Settings", - "HeaderFilters": "Filters", - "HeaderForKids": "For Kids", - "HeaderForgotKey": "Forgot Key", - "HeaderForgotPassword": "Forgot Password", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderFrequentlyPlayed": "Frequently Played", - "HeaderGames": "Games", - "HeaderGenres": "Genres", - "HeaderGuests": "Guests", - "HeaderGuideProviders": "TV Guide Data Providers", - "HeaderHomePage": "Home Page", - "HeaderHomeScreenSettings": "Home Screen settings", "HeaderHttpHeaders": "HTTP Headers", - "HeaderIdentification": "Identification", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderIdentificationHeader": "Identification Header", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderImageOptions": "Image Options", - "HeaderImagePrimary": "Primary", - "HeaderImageSettings": "Image Settings", - "HeaderImages": "Images", - "HeaderInstall": "Install", - "HeaderInstalledServices": "Installed Services", - "HeaderInstantMix": "Instant Mix", - "HeaderInvitationSent": "Invitation Sent", - "HeaderInvitations": "Invitations", - "HeaderInviteUser": "Invite User", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Jellyfin Connect.", - "HeaderInviteWithJellyfinConnect": "Invite with Jellyfin Connect", - "HeaderItems": "Items", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderJellyfinServer": "Jellyfin Server", - "HeaderKodiMetadataHelp": "To enable or disable Nfo metadata, edit a library in Jellyfin library setup and locate the metadata savers section.", - "HeaderLanguage": "Language", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestDownloadedVideos": "Latest Downloaded Videos", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderLatestItems": "Latest Items", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestMusic": "Latest Music", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLatestSongs": "Latest Songs", - "HeaderLatestTrailers": "Latest Trailers", - "HeaderLatestTvRecordings": "Latest Recordings", - "HeaderLibraries": "Libraries", - "HeaderLibrary": "Library", - "HeaderLibraryAccess": "Library Access", - "HeaderLibraryFolders": "Media Folders", - "HeaderLibrarySettings": "Library Settings", - "HeaderLinks": "Links", - "HeaderLiveTV": "Live TV", - "HeaderLiveTv": "Live TV", - "HeaderLiveTvTunerSetup": "Live TV Tuner Setup", - "HeaderLoginFailure": "Login Failure", - "HeaderManagement": "Management", - "HeaderMedia": "Media", - "HeaderMediaFolders": "Media Folders", - "HeaderMediaInfo": "Media Info", - "HeaderMediaLocations": "Media Locations", - "HeaderMenu": "Menu", - "HeaderMissing": "Missing", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderMusicVideos": "Music Videos", - "HeaderMyMedia": "My Media", - "HeaderMyViews": "My Views", - "HeaderName": "Name", - "HeaderNavigation": "Navigation", - "HeaderNetwork": "Network", "HeaderNewApiKey": "New API Key", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Jellyfin Server.", - "HeaderNewDevices": "New Devices", - "HeaderNewServer": "New Server", - "HeaderNewUsers": "New Users", - "HeaderNextUp": "Next Up", - "HeaderNotifications": "Notifications", - "HeaderNowPlaying": "Now Playing", - "HeaderNumberOfPlayers": "Players", - "HeaderOffline": "Offline", - "HeaderOfflineSync": "Offline Sync", - "HeaderOnNow": "On Now", - "HeaderOptions": "Options", - "HeaderOtherDisplaySettings": "Display Settings", - "HeaderOtherItems": "Other Items", - "HeaderOverview": "Overview", - "HeaderParentalRating": "Parental rating", - "HeaderParentalRatings": "Parental Ratings", - "HeaderPassword": "Password", - "HeaderPasswordReset": "Password Reset", - "HeaderPaths": "Paths", - "HeaderPendingInstallations": "Pending Installations", - "HeaderPendingInvitations": "Pending Invitations", - "HeaderPeople": "People", - "HeaderPersonInfo": "Person Info", - "HeaderPersonTypes": "Person Types:", - "HeaderPhotoInfo": "Photo Info", "HeaderPinCodeReset": "Reset PIN Code", - "HeaderPlayAll": "Play All", - "HeaderPlayback": "Media Playback", - "HeaderPlaybackSettings": "Playback Settings", - "HeaderPlaylists": "Playlists", - "HeaderPleaseSignIn": "Please sign in", - "HeaderPluginInstallation": "Plugin Installation", - "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", - "HeaderProfile": "Profile", - "HeaderProfileInformation": "Profile Information", - "HeaderProfileServerSettingsHelp": "These values control how Jellyfin Server will present itself to the device.", - "HeaderProgram": "Program", - "HeaderRecentActivity": "Recent Activity", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderRecordingGroups": "Recording Groups", - "HeaderRecordingPostProcessing": "Recording Post Processing", - "HeaderReleaseDate": "Release date", - "HeaderRemoteControl": "Remote Control", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "HeaderRemoveMediaLocation": "Remove Media Location", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Jellyfin apps may present a login screen with a visual selection of users.", - "HeaderResetTuner": "Reset Tuner", - "HeaderResolution": "Resolution", - "HeaderResponseProfile": "Response Profile", "HeaderResponseProfileHelp": "Response profiles provide a way to customise information sent to the device when playing certain kinds of media.", - "HeaderRestart": "Restart", - "HeaderResult": "Result", - "HeaderResume": "Resume", - "HeaderResumeSettings": "Resume Settings", - "HeaderReviews": "Reviews", - "HeaderRevisionHistory": "Revision History", - "HeaderRunningTasks": "Running Tasks", - "HeaderRuntime": "Runtime", - "HeaderScenes": "Scenes", - "HeaderSchedule": "Schedule", - "HeaderScreenSavers": "Screen Savers", - "HeaderSearch": "Search", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderSeasons": "Seasons", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectCertificatePath": "Select Certificate Path", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderSelectDate": "Select Date", - "HeaderSelectDevices": "Select Devices", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectPath": "Select Path", - "HeaderSelectPlayer": "Select Player", - "HeaderSelectServer": "Select Server", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectSubtitles": "Select Subtitles", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectUploadPath": "Select Upload Path", - "HeaderSendMessage": "Send Message", - "HeaderSeries": "Series", - "HeaderSeriesRecordings": "Series Recordings", - "HeaderServerSettings": "Server Settings", - "HeaderServices": "Services", - "HeaderSettings": "Settings", - "HeaderSetupLibrary": "Setup your media libraries", - "HeaderSetupTVGuide": "Setup TV Guide", - "HeaderShareMediaFolders": "Share Media Folders", - "HeaderShutdown": "Shutdown", - "HeaderSignUp": "Sign Up", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "HeaderSource": "Source", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderSpecialFeatures": "Special Features", - "HeaderSpecials": "Specials", - "HeaderSplitMedia": "Split Media Apart", - "HeaderStatus": "Status", - "HeaderStudios": "Studios", - "HeaderSubtitleDownloads": "Subtitle Downloads", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSubtitles": "Subtitles", - "HeaderSupportTheTeam": "Support the Jellyfin Team", - "HeaderSync": "Sync", - "HeaderSyncJobInfo": "Sync Job", - "HeaderSystemDlnaProfiles": "System Profiles", - "HeaderTV": "TV", - "HeaderTags": "Tags", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTermsOfService": "Jellyfin Terms of Service", - "HeaderThemeSongs": "Theme Songs", - "HeaderThemeVideos": "Theme Videos", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "HeaderTime": "Time", "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy PIN code", - "HeaderTopPlugins": "Top Plugins", - "HeaderTrack": "Track", - "HeaderTracks": "Tracks", - "HeaderTrailers": "Trailers", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderTunerDevices": "Tuner Devices", - "HeaderTuners": "Tuners", - "HeaderTvTuners": "Tuners", - "HeaderType": "Type", - "HeaderTypeImageFetchers": "{0} Image Fetchers", - "HeaderTypeText": "Enter Text", - "HeaderUnaired": "Unaired", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "HeaderUnrated": "Unrated", - "HeaderUpcomingEpisodes": "Upcoming Episodes", - "HeaderUpcomingNews": "Upcoming News", - "HeaderUpcomingOnTV": "Upcoming On TV", - "HeaderUploadImage": "Upload Image", - "HeaderUploadNewImage": "Upload New Image", - "HeaderUser": "User", - "HeaderUserPrimaryImage": "User Image", - "HeaderUsers": "Users", - "HeaderVideo": "Video", - "HeaderVideoTypes": "Video Types", - "HeaderVideos": "Videos", - "HeaderViewOrder": "View Order", - "HeaderViewStyles": "View Styles", - "HeaderWelcomeToJellyfin": "Welcome to Jellyfin", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlSettings": "Xml Settings", - "HeaderYear": "Year", - "HeaderYears": "Years", - "HeadersFolders": "Folders", - "HowToConnectFromJellyfinApps": "How to Connect from Jellyfin apps", - "HowWouldYouLikeToAddUser": "How would you like to add a user?", "HttpsRequiresCert": "To enable HTTPS for external connections, you will need to supply a trusted SSL certificate, such as Let's Encrypt.", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favourite on the tuner device will be imported.", - "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", - "Invitations": "Invitations", "InviteAnJellyfinConnectUser": "Add a user by sending an e-mail invitation.", "JellyfinIntroDownloadMessage": "To download and install the free Jellyfin Server, visit {0}.", "JellyfinIntroDownloadMessageWithoutLink": "To download and install the free Jellyfin Server, visit the Jellyfin website.", - "JellyfinIntroMessage": "With Jellyfin you can easily stream videos, music and photos to smart phones, tablets and other devices from your Jellyfin Server.", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelAccessDay": "Day of week:", - "LabelAccessEnd": "End time:", - "LabelAccessStart": "Start time:", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Jellyfin Connect from their user profile page.", - "LabelAddedOnDate": "Added {0}", - "LabelAirDate": "Air days:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirTime:": "Air time:", - "LabelAlbum": "Album:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAll": "All", - "LabelAllLanguages": "All languages", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelAllowedRemoteAddresses": "Remote IP address filter:", - "LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:", - "LabelAnytime": "Any time", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "LabelArtist": "Artist", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudioCodec": "Audio: {0}", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelAutomaticallyRefreshInternetMetadataEvery": "Automatically refresh metadata from the internet:", - "LabelAvailableTokens": "Available tokens:", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the HTTP server to. If left empty, the server will bind to all available addresses. Changing this value requires restarting Jellyfin Server.", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelBlockContentWithTags": "Block items with tags:", - "LabelCache": "Cache:", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelCameraUploadPath": "Camera upload path:", "LabelCameraUploadPathHelp": "Select a custom upload path. This will override any default settings set in the Camera Upload section. If left blank, a default folder will be used. If using a custom path, it will also need to be added as a library in Jellyfin library setup.", - "LabelCancelled": "Cancelled", - "LabelCertificatePassword": "Certificate password:", - "LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "LabelCollection": "Collection", - "LabelCommunityRating": "Community rating:", - "LabelCompleted": "Completed", - "LabelComponentsUpdated": "The following components have been installed or updated:", - "LabelConfigureSettings": "Configure settings", "LabelConnectGuestUserName": "Their Jellyfin Connect e-mail address or user name:", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Jellyfin website, or their email address.", - "LabelContentType": "Content type:", - "LabelContentTypeValue": "Content type: {0}", - "LabelContext": "Context:", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "LabelConvertRecordingsTo": "Convert recordings to:", - "LabelCountry": "Country:", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCurrentPassword": "Current password:", - "LabelCurrentPath": "Current path:", "LabelCustomCertificatePath": "Custom SSL certificate path:", - "LabelCustomCertificatePathHelp": "Path to a PKCS #12 file containing a certificate and private key to enable TLS support on a custom domain.", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomizeOptionsPerMediaType": "Customise for media type:", - "LabelDataProvider": "Data provider:", "LabelDateAddedBehavior": "Date added behaviour for new content:", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelDateOfBirth": "Date of birth:", - "LabelDay": "Day:", - "LabelDeathDate": "Death date:", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelDefaultStream": "(Default)", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "LabelDeinterlacingMethod": "Deinterlacing method:", - "LabelDeviceDescription": "Device description", - "LabelDidlMode": "Didl mode:", - "LabelDisabled": "Disabled", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within series", - "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "LabelDisplayName": "Display name:", - "LabelDisplayPluginsFor": "Show plugins for:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Jellyfin Server can download information about your media to enable rich presentations.", - "LabelDownloadLanguages": "Download languages:", - "LabelDropImageHere": "Drop image here.", - "LabelDynamicExternalId": "{0} Id:", "LabelEasyPinCode": "Easy PIN code:", - "LabelEmail": "Email:", - "LabelEmailAddress": "Email address", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "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.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelEnableCinemaMode": "Enable cinema mode", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "LabelEnableDebugLogging": "Enable debug logging", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Jellyfin can detect devices within your network and offer the ability to remote control them.", "LabelEnableDlnaServer": "Enable DLNA server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Jellyfin content.", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEnableHardwareDecodingFor": "Enable hardware decoding for:", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes to files will be processed immediately, on supported file systems.", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Untick to prevent importing channels from this tuner.", - "LabelEnabled": "Enabled", - "LabelEndDate": "End date:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelEpisode": "Episode", - "LabelEpisodeNumber": "Episode number:", - "LabelEvent": "Event:", - "LabelEveryXMinutes": "Every:", - "LabelExternalDDNS": "External domain:", "LabelExternalDDNSHelp": "If you have a dynamic DNS, enter it here. Jellyfin apps will use it when connecting remotely. This field is required when used with a custom SSL certificate. Example: mydomain.com.", - "LabelExternalPlayers": "External players:", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelFailed": "Failed", "LabelFanartApiKey": "Personal API key:", - "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.", "LabelFileOrUrl": "File or URL:", - "LabelFinish": "Finish", - "LabelFolder": "Folder:", - "LabelFolderType": "Folder type:", - "LabelForcedStream": "(Forced)", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "LabelFormat": "Format:", - "LabelFree": "Free", - "LabelFriendlyName": "Friendly name:", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelFromHelp": "Example: {0} (on the server)", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", "LabelH264Crf": "H.264 encoding CRF:", "LabelH264EncodingPreset": "H.264 encoding preset:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHttpsPort": "Local HTTPS port number:", "LabelHttpsPortHelp": "The TCP port number that Jellyfin's HTTPS server should bind to.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "LabelImage": "Image:", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelImageType": "Image type:", "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favourite", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy PIN code", "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy PIN code to sign in to Jellyfin apps from inside your home network. Your regular password will only be needed away from home. If the PIN code is left blank, you won't need a password within your home network.", "LabelIpAddressValue": "IP address: {0}", - "LabelJpgPngOnly": "JPG/PNG only", - "LabelKidsCategories": "Children's categories:", - "LabelKodiMetadataDateFormat": "Release date format:", "LabelKodiMetadataDateFormatHelp": "All dates within nfos will be read and written to using this format.", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataUser": "Save user watch data to nfo's for:", "LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilise.", - "LabelLanNetworks": "LAN networks:", - "LabelLanguage": "Language:", - "LabelLastResult": "Last result:", - "LabelLimit": "Limit:", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelLineup": "Lineup:", - "LabelLocalAccessUrl": "LAN address: {0}", "LabelLocalHttpServerPortNumber": "Local HTTP port number:", "LabelLocalHttpServerPortNumberHelp": "The TCP port number that Jellyfin's HTTP server should bind to.", - "LabelLocalSyncStatusValue": "Status: {0}", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "LabelLogs": "Logs:", - "LabelManufacturer": "Manufacturer", "LabelManufacturerUrl": "Manufacturer URL", - "LabelMarkAs": "Mark as:", - "LabelMatchType": "Match type:", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Jellyfin Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxBitrate": "Max bitrate:", "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes its own limit.", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMaxStreamingBitrate": "Max streaming quality:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "LabelMetadata": "Metadata:", - "LabelMetadataDownloadLanguage": "Preferred metadata language:", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelMethod": "Method:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "LabelMissing": "Missing", - "LabelModelDescription": "Model description", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", "LabelModelUrl": "Model URL", - "LabelMonitorUsers": "Monitor activity from:", - "LabelMovie": "Movie", - "LabelMovieCategories": "Movie categories:", - "LabelMoviePrefix": "Movie prefix:", - "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Jellyfin can handle it properly.", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "LabelMusicVideo": "Music Video", - "LabelName": "Name:", - "LabelNativeExternalPlayersHelp": "Play videos using external players.", - "LabelNewName": "New name:", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and full stops (.)", - "LabelNewsCategories": "News categories:", - "LabelNext": "Next", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelNotificationEnabled": "Enable this notification", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "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.", - "LabelNumberReviews": "{0} Reviews", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", "LabelOptionalM3uUrl": "M3U URL (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Jellyfin apps on other devices to access media files directly.", - "LabelPassword": "Password:", - "LabelPasswordConfirm": "Password (confirm):", "LabelPasswordRecoveryPinCode": "PIN code:", - "LabelPath": "Path:", "LabelPinCode": "PIN code:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPostProcessor": "Post-processing application:", - "LabelPostProcessorArguments": "Post-processor command line arguments:", - "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelPrevious": "Previous", - "LabelProfile": "Profile:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainer": "Container:", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProtocol": "Protocol:", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", "LabelPublicHttpPort": "Public HTTP port number:", "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local HTTP port.", "LabelPublicHttpsPort": "Public HTTPS port number:", "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local HTTPS port.", - "LabelQuality": "Quality:", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "LabelRecordingPath": "Default recording path:", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelReleaseDate": "Release date:", - "LabelRemoteAccessUrl": "WAN address: {0}", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", "LabelRemoteClientBitrateLimitHelp": "An optional per-stream bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your Internet connection can handle. This may result in increased CPU load on your server in order to transcode videos on the fly to a lower bitrate.", - "LabelReport": "Report:", - "LabelResumePoint": "Resume point:", "LabelRunningOnPort": "Running on HTTP port {0}.", "LabelRunningOnPorts": "Running on HTTP port {0}, and HTTPS port {1}.", - "LabelRunningTimeValue": "Running time: {0}", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelSaveLocalMetadata": "Save artwork into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork into media folders will put them in a place where they can be easily edited.", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonNumber": "Season number:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "LabelSecureConnectionsMode": "Secure connection mode:", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "LabelSelectUsers": "Select users:", - "LabelSelectVersionToInstall": "Select version to install:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelSerialNumber": "Serial number", - "LabelSeries": "Series:", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", - "LabelServerPort": "Port:", - "LabelSimultaneousConnectionLimit": "Simultaneous stream limit:", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", "LabelSkipIfAudioTrackPresentHelp": "Untick this to ensure all videos have subtitles, regardless of audio language.", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "LabelSkipped": "Skipped", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelSource": "Source:", - "LabelSpecialSeasonsDisplayName": "Special season display name:", - "LabelSportsCategories": "Sports categories:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelStopping": "Stopping", - "LabelSubtitleDownloaders": "Subtitle downloaders:", - "LabelSubtitleFormatHelp": "Example: srt", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSupportedMediaTypes": "Supported Media Types:", - "LabelSyncPath": "Synced content path:", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelTag": "Tag:", - "LabelTheme": "Theme:", - "LabelTime": "Time:", - "LabelTimeLimitHours": "Time limit (hours):", - "LabelTranscodingAudioCodec": "Audio codec:", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "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.", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTransferMethod": "Transfer method", - "LabelTriggerType": "Trigger Type:", - "LabelTunerIpAddress": "Tuner IP Address:", - "LabelTunerType": "Tuner type:", - "LabelType": "Type:", - "LabelTypeMetadataDownloaders": "{0} metadata downloaders:", - "LabelTypeText": "Text", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within series", - "LabelUnknownLanguage": "Unknown language", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", "LabelUrl": "URL:", - "LabelUseNotificationServices": "Use the following services:", - "LabelUser": "User:", - "LabelUserAgent": "User agent:", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "LabelUserRemoteClientBitrateLimitHelp": "This will override the default global value set in server playback settings.", - "LabelUsername": "Username:", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "LabelValue": "Value:", - "LabelVersionInstalled": "{0} installed", - "LabelVersionNumber": "Version {0}", - "LabelVersionUpToDate": "Up to date!", - "LabelVideoCodec": "Video: {0}", - "LabelVideoType": "Video Type:", - "LabelView": "View:", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelYourFirstName": "Your first name:", - "LabelYoureDone": "You're Done!", "LabelZipCode": "Post Code:", - "LabelffmpegPath": "FFmpeg path:", "LabelffmpegPathHelp": "The path to the ffmpeg application file or folder containing ffmpeg.", - "LabelffmpegVersion": "FFmpeg version:", - "LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.", - "LatestFromLibrary": "Latest {0}", - "LearnHowToCreateSynologyShares": "Learn how to share folders in Synology.", - "LetterButtonAbbreviation": "A", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", "LinkApi": "API", - "LinkCommunity": "Community", - "LinkGithub": "Github", - "LinkLearnMoreAboutSubscription": "Learn about Jellyfin Premiere", - "LiveTvUpdateAvailable": "(Update available)", - "LoginDisclaimer": "Jellyfin is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Jellyfin software constitutes acceptance of these terms.", - "ManageLibrary": "Manage library", - "ManageOfflineDownloads": "Manage offline downloads", - "MapChannels": "Map Channels", - "MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Jellyfin permission to execute them.", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "MediaInfoAltitude": "Altitude", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoAperture": "Aperture", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoBitrate": "Bitrate", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoChannels": "Channels", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoExternal": "External", - "MediaInfoFile": "File", - "MediaInfoFocalLength": "Focal length", - "MediaInfoForced": "Forced", - "MediaInfoFormat": "Format", - "MediaInfoFramerate": "Framerate", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLanguage": "Language", - "MediaInfoLatitude": "Latitude", - "MediaInfoLayout": "Layout", - "MediaInfoLevel": "Level", - "MediaInfoLongitude": "Longitude", - "MediaInfoOrientation": "Orientation", - "MediaInfoPath": "Path", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoProfile": "Profile", - "MediaInfoRefFrames": "Ref frames", - "MediaInfoResolution": "Resolution", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSize": "Size", - "MediaInfoSoftware": "Software", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoTimestamp": "Timestamp", - "MessageAlreadyInstalled": "This version is already installed.", - "MessageApplicationUpdated": "Jellyfin Server has been updated", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "MessageConfirmRestart": "Are you sure you wish to restart Jellyfin Server?", "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this API key? The application's connection to Jellyfin Server will be abruptly terminated.", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Jellyfin Server?", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Jellyfin Premiere!", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Jellyfin account to this server.", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageCreateAccountAt": "Create an account at {0}", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageDestinationTo": "to:", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Jellyfin to access it.", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Jellyfin system user at least read access to your storage locations.", - "MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Jellyfin Premiere information. Please try again later.", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Jellyfin Premiere subscription.", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", "MessageForgotPasswordFileExpiration": "The reset PIN will expire at {0}.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInvalidForgotPasswordPin": "An invalid or expired PIN was entered. Please try again.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageNoAvailablePlugins": "No available plugins.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalised groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Jellyfin web app.", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "MessageNoServicesInstalled": "No services are currently installed.", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "MessageNothingHere": "Nothing here.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "MessagePleaseRestart": "Please restart to finish updating.", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "MessagePleaseWait": "Please wait. This may take a minute.", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", "MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing and decreased system stability.", - "MessagePluginRequiresSubscription": "This plugin will require an active Jellyfin Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Jellyfin Premiere subscription in order to purchase after the 14 day free trial.", - "MessageReenableUser": "See below to reenable", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageSettingsSaved": "Settings saved.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Jellyfin 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.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Jellyfin Connect! You will now be asked to login with your Jellyfin Connect information.", - "MessageThankYouForSupporting": "Thank you for supporting Jellyfin.", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Jellyfin library:", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "Metadata": "Metadata", - "MetadataManager": "Metadata Manager", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "MissingBackdropImage": "Missing backdrop image.", - "MissingEpisode": "Missing episode.", - "MissingLogoImage": "Missing logo image.", - "MissingPrimaryImage": "Missing primary image.", - "MoreFromValue": "More from {0}", - "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", - "MovieLibraryHelp": "Review the {0}Jellyfin movie naming guide{1}.", - "Mute": "Mute", - "Never": "Never", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "News": "News", - "NextUp": "Next Up", "NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialogue and enter the device information manually.", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "NoPluginConfigurationMessage": "This plugin has no settings to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "NoResultsFound": "No results found.", - "Notifications": "Notifications", - "NumLocationsValue": "{0} folders", - "OpenSubtitleInstructions": "You'll need to configure Open Subtitles account information on the Open Subtitles configuration screen in the Jellyfin Server dashboard.", - "Option2Player": "2+", - "Option3D": "3D", - "Option3Player": "3+", - "Option4Player": "4+", - "OptionActor": "Actor", - "OptionActors": "Actors", - "OptionAdminUsers": "Administrators", - "OptionAfterSystemEvent": "After a system event", - "OptionAlbum": "Album", - "OptionAlbumArtist": "Album Artist", - "OptionAll": "All", - "OptionAllUsers": "All users", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowContentDownloading": "Allow media downloading and syncing", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowMediaPlaybackTranscodingHelp": "Restricting access to transcoding may cause playback failures in Jellyfin apps due to unsupported media formats.", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", "OptionAllowRemoteSharedDevicesHelp": "DLNA devices are considered shared until a user begins controlling it.", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowSyncTranscoding": "Allow media downloading and syncing that requires transcoding", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAnyNumberOfPlayers": "Any", - "OptionArt": "Art", - "OptionArtist": "Artist", - "OptionAscending": "Ascending", - "OptionAuto": "Auto", - "OptionAutomatic": "Auto", - "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", - "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", - "OptionBackdrop": "Backdrop", - "OptionBackdropSlideshow": "Backdrop slideshow", - "OptionBackdrops": "Backdrops", - "OptionBanner": "Banner", - "OptionBestAvailableStreamQuality": "Best available", - "OptionBeta": "Beta", - "OptionBirthLocation": "Birth Location", - "OptionBlockBooks": "Books", - "OptionBlockChannelContent": "Internet Channel Content", - "OptionBlockGames": "Games", - "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockLiveTvPrograms": "Live TV Programmes", - "OptionBlockMovies": "Movies", - "OptionBlockMusic": "Music", - "OptionBlockOthers": "Others", - "OptionBlockTrailers": "Trailers", - "OptionBlockTvShows": "TV Shows", - "OptionBluray": "Bluray", - "OptionBooks": "Books", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionCollections": "Collections", - "OptionCommunityRating": "Community Rating", - "OptionComposer": "Composer", - "OptionComposers": "Composers", - "OptionContinuing": "Continuing", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.", - "OptionCriticRating": "Critic Rating", - "OptionCustomUsers": "Custom", - "OptionDaily": "Daily", - "OptionDateAdded": "Date Added", - "OptionDateAddedFileTime": "Use file creation date", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDatePlayed": "Date Played", - "OptionDefaultSort": "Default", - "OptionDescending": "Descending", - "OptionDev": "Dev", - "OptionDirector": "Director", - "OptionDirectors": "Directors", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "OptionDisc": "Disc", - "OptionDislikes": "Dislikes", - "OptionDisplayAdultContent": "Display adult content", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Jellyfin apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "OptionDownloadArtImage": "Art", - "OptionDownloadBackImage": "Back", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadImagesInAdvance": "Download images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Jellyfin app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadPrimaryImage": "Primary", - "OptionDownloadThumbImage": "Thumb", - "OptionDvd": "Dvd", - "OptionEmbedSubtitles": "Embed within container", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live TV programmes to be included within suggested content.", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimise resource consumption.", - "OptionEnableFullscreen": "Enable Fullscreen", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimise server CPU utilisation during playback.", - "OptionEnded": "Ended", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionEpisodes": "Episodes", - "OptionEquals": "Equals", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionEveryday": "Every day", - "OptionExternallyDownloaded": "External download", - "OptionExtractChapterImage": "Enable chapter image extraction", "OptionFavorite": "Favourites", - "OptionFolderSort": "Folders", - "OptionFriday": "Friday", - "OptionFridayShort": "Fri", - "OptionGameSystems": "Game systems", - "OptionGames": "Games", - "OptionGenres": "Genres", - "OptionGuestStars": "Guest Stars", - "OptionHasSpecialFeatures": "Special Features", - "OptionHasSubtitles": "Subtitles", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "OptionHasTrailer": "Trailer", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "OptionHomeVideos": "Home videos & photos", - "OptionIcon": "Icon", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honoured but will ignore the byte range header.", - "OptionImages": "Images", - "OptionImdbRating": "IMDb Rating", - "OptionInProgress": "In-Progress", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionIso": "Iso", - "OptionKeywords": "Keywords", - "OptionLatestChannelMedia": "Latest channel items", - "OptionLatestMedia": "Latest media", - "OptionLatestTvRecordings": "Latest recordings", - "OptionLibraryFolders": "Media folders", - "OptionLikes": "Likes", - "OptionList": "List", - "OptionLocked": "Locked", - "OptionLogo": "Logo", - "OptionMax": "Max", - "OptionMenu": "Menu", - "OptionMissingEpisode": "Missing Episodes", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingOverview": "Missing Overview", - "OptionMissingParentalRating": "Missing parental rating", - "OptionMissingTmdbId": "Missing Tmdb Id", "OptionMissingTvdbId": "Missing TheTVDB ID", - "OptionMobileApps": "Mobile apps", - "OptionMonday": "Monday", - "OptionMondayShort": "Mon", - "OptionMovies": "Movies", - "OptionMusicAlbums": "Music albums", - "OptionMusicArtists": "Music artists", - "OptionMusicVideos": "Music videos", - "OptionName": "Name", - "OptionNameSort": "Name", - "OptionNo": "No", - "OptionNoTrailer": "No Trailer", - "OptionNone": "None", - "OptionOff": "Off", - "OptionOn": "On", - "OptionOnAppStartup": "On application startup", - "OptionOnInterval": "On an interval", - "OptionOtherApps": "Other apps", - "OptionOtherTrailers": "Include trailers from older movies", - "OptionOtherVideos": "Other Videos", - "OptionOthers": "Others", - "OptionOverview": "Overview", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "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\".", - "OptionPlayCount": "Play Count", - "OptionPlayed": "Played", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionPremiereDate": "Premiere Date", - "OptionPrimary": "Primary", - "OptionPriority": "Priority", - "OptionProducer": "Producer", - "OptionProducers": "Producers", - "OptionProfileAudio": "Audio", - "OptionProfilePhoto": "Photo", - "OptionProfileVideo": "Video", - "OptionProfileVideoAudio": "Video Audio", "OptionProtocolHls": "HTTP Live Streaming", "OptionProtocolHttp": "HTTP", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "OptionRecordSeries": "Record Series", - "OptionRegex": "Regex", - "OptionRelease": "Official Release", - "OptionReleaseDate": "Release Date", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", "OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unticking this will increase the likelihood of subtitles being downloaded and will increase the chances of mistimed or incorrect subtitle text.", - "OptionResElement": "res element", - "OptionResumable": "Resumable", - "OptionResumablemedia": "Resume", - "OptionRuntime": "Runtime", - "OptionSaturday": "Saturday", - "OptionSaturdayShort": "Sat", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Jellyfin Server.", - "OptionScreenshot": "Screenshot", - "OptionSeason0": "Season 0", - "OptionSeasons": "Seasons", - "OptionSeries": "Series", - "OptionSongs": "Songs", - "OptionSortName": "Sort name", - "OptionSpecialEpisode": "Specials", - "OptionStudios": "Studios", - "OptionSubstring": "Substring", - "OptionSunday": "Sunday", - "OptionSundayShort": "Sun", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionTags": "Tags", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionThursday": "Thursday", - "OptionThursdayShort": "Thu", - "OptionTimeline": "Timeline", - "OptionTrackName": "Track Name", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "OptionTuesday": "Tuesday", - "OptionTuesdayShort": "Tue", - "OptionTvdbRating": "Tvdb Rating", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionUnidentified": "Unidentified", - "OptionUnplayed": "Unplayed", - "OptionUnwatched": "Unwatched", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "OptionVideoBitrate": "Video Bitrate", - "OptionWakeFromSleep": "Wake from sleep", - "OptionWatched": "Watched", - "OptionWednesday": "Wednesday", - "OptionWednesdayShort": "Wed", - "OptionWeekday": "Weekdays", - "OptionWeekdays": "Weekdays", - "OptionWeekend": "Weekends", - "OptionWeekends": "Weekends", - "OptionWeekly": "Weekly", - "OptionWriters": "Writers", - "OptionYes": "Yes", - "OriginalAirDateValue": "Original air date: {0}", - "Password": "Password", - "PasswordMatchError": "Password and password confirmation must match.", - "PasswordResetComplete": "The password has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PasswordResetHeader": "Reset Password", - "PasswordSaved": "Password saved.", - "PersonTypePerson": "Person", - "PictureInPicture": "Picture in picture", "PinCodeResetComplete": "The PIN code has been reset.", "PinCodeResetConfirmation": "Are you sure you wish to reset the PIN code?", - "PlayOnAnotherDevice": "Play on another device", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "PleaseUpdateManually": "Please shutdown Jellyfin Server and install the latest version.", "PluginInstalledMessage": "The plug-in has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.", - "PluginInstalledWithName": "{0} was installed", "PluginTabAppClassic": "Jellyfin for Windows Media Centre", - "PluginUninstalledWithName": "{0} was uninstalled", - "PluginUpdatedWithName": "{0} was updated", - "PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames", - "PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.", - "PreferredNotRequired": "Preferred, but not required", "Programs": "Programmes", - "ProviderValue": "Provider: {0}", - "Rate": "Rate", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "RegisterWithPayPal": "Register with PayPal", - "ReleaseYearValue": "Release year: {0}", - "RememberMe": "Remember me", - "Reporting": "Reporting", "RequireHttps": "Require HTTPS for external connections", "RequireHttpsHelp": "If enabled, connections over HTTP will be redirected to HTTPS.", - "RequiredForAllRemoteConnections": "Required for all remote connections", - "Rewind": "Rewind", - "SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders", - "SaveSubtitlesIntoMediaFoldersHelp": "Storing subtitles next to video files will allow them to be more easily managed.", - "ScanLibrary": "Scan library", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "SendMessage": "Send message", - "Series": "Series", "ServerRestartNeededAfterPluginInstall": "Jellyfin Server will need to be restarted after installing a plug-in.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "SetupFFmpeg": "Setup FFmpeg", "SetupFFmpegHelp": "Jellyfin may require a library or application to convert certain media types. There are many different applications available, however, Jellyfin has been tested to work with FFmpeg. Jellyfin is in no way affiliated with FFmpeg, its ownership, code or distribution.", - "ShowAdvancedSettings": "Show advanced settings", - "SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit.", - "Sports": "Sports", - "Standard": "Standard", - "StatusRecording": "Recording", - "StatusRecordingProgram": "Recording {0}", - "StatusWatching": "Watching", - "StatusWatchingProgram": "Watching {0}", - "StopRecording": "Stop recording", - "Subscriptions": "Subscriptions", "SubtitleDownloadInstructions": "To manage subtitle downloading, click on a library in Jellyfin library setup and edit the subtitle downloading settings.", - "SubtitleDownloadersHelp": "Enable and rank your preferred subtitle downloaders in order of priority.", - "Subtitles": "Subtitles", - "Sync": "Sync", - "SyncMedia": "Sync Media", - "SyncToOtherDevices": "Sync to other devices", "SynologyUpdateInstructions": "Please login to DSM and go to Package Centre to update.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TabAbout": "About", - "TabAccess": "Access", - "TabActivity": "Activity", - "TabAdvanced": "Advanced", - "TabAlbumArtists": "Album Artists", - "TabAlbums": "Albums", - "TabAppSettings": "App Settings", - "TabArtists": "Artists", - "TabBasic": "Basic", - "TabBasics": "Basics", - "TabCameraUpload": "Camera Upload", - "TabCast": "Cast", "TabCatalog": "Catalogue", - "TabChannels": "Channels", - "TabChapters": "Chapters", - "TabCinemaMode": "Cinema Mode", - "TabCodecs": "Codecs", - "TabCollectionTitles": "Titles", - "TabCollections": "Collections", - "TabContainers": "Containers", - "TabControls": "Controls", - "TabDLNA": "DLNA", - "TabDashboard": "Dashboard", - "TabDevices": "Devices", - "TabDirectPlay": "Direct Play", - "TabDisplay": "Display", - "TabEpisodes": "Episodes", - "TabExpert": "Expert", - "TabExtras": "Extras", "TabFavorites": "Favourites", - "TabFilter": "Filter", - "TabFolders": "Folders", - "TabGames": "Games", - "TabGeneral": "General", - "TabGenres": "Genres", - "TabGuide": "Guide", - "TabHelp": "Help", - "TabHome": "Home", - "TabHomeScreen": "Home Screen", - "TabHosting": "Hosting", - "TabImage": "Image", - "TabImages": "Images", - "TabInfo": "Info", - "TabLanguages": "Languages", - "TabLatest": "Latest", - "TabLibrary": "Library", - "TabLibraryAccess": "Library Access", - "TabLiveTV": "Live TV", - "TabLogs": "Logs", - "TabMetadata": "Metadata", - "TabMovies": "Movies", - "TabMusic": "Music", - "TabMusicVideos": "Music Videos", - "TabMyLibrary": "My Library", - "TabMyPlugins": "My Plugins", - "TabNavigation": "Navigation", - "TabNetworks": "Networks", - "TabNextUp": "Next Up", - "TabNfoSettings": "Nfo Settings", - "TabNotifications": "Notifications", - "TabNowPlaying": "Now Playing", - "TabOther": "Other", - "TabOthers": "Others", - "TabParentalControl": "Parental Control", - "TabPassword": "Password", - "TabPaths": "Paths", - "TabPhotos": "Photos", - "TabPlayback": "Playback", - "TabPlaylist": "Playlist", - "TabPlaylists": "Playlists", - "TabPlugins": "Plugins", - "TabProfile": "Profile", - "TabProfiles": "Profiles", - "TabRecordings": "Recordings", - "TabResponses": "Responses", - "TabResumeSettings": "Resume Settings", - "TabScenes": "Scenes", - "TabScheduledTasks": "Scheduled Tasks", - "TabSecurity": "Security", - "TabSeries": "Series", - "TabServer": "Server", - "TabServices": "Services", - "TabSettings": "Settings", - "TabShows": "Shows", - "TabSongs": "Songs", - "TabStreaming": "Streaming", - "TabStudios": "Studios", - "TabSubtitles": "Subtitles", - "TabSuggestions": "Suggestions", - "TabSync": "Sync", - "TabSyncJobs": "Sync Jobs", - "TabTV": "TV", - "TabTrailers": "Trailers", - "TabTranscoding": "Transcoding", - "TabUpcoming": "Upcoming", - "TabUsers": "Users", - "TabView": "View", - "TellUsAboutYourself": "Tell us about yourself", - "TermsOfUse": "Terms of use", - "TextConnectToServerManually": "Connect to server manually", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "Themes": "Themes", - "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.", - "TitleDevices": "Devices", - "TitleHardwareAcceleration": "Hardware Acceleration", - "TitleHostingSettings": "Hosting Settings", - "TitleLiveTV": "Live TV", - "TitleNewUser": "New User", - "TitleNotifications": "Notifications", - "TitlePasswordReset": "Password Reset", - "TitlePlayback": "Playback", - "TitlePlugins": "Plugins", - "TitleRemoteControl": "Remote Control", - "TitleScheduledTasks": "Scheduled Tasks", - "TitleServer": "Server", - "TitleSignIn": "Sign In", - "TitleSupport": "Support", - "TitleSync": "Sync", - "TitleUsers": "Users", - "TvLibraryHelp": "Review the {0}Jellyfin TV naming guide{1}.", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "UninstallPluginHeader": "Uninstall Plugin", - "Unmute": "Unmute", "UserAgentHelp": "Supply a custom user-agent HTTP header, if necessary.", - "UserProfilesIntro": "Jellyfin includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "Users": "Users", - "ValueAlbumCount": "{0} albums", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "ValueAsRole": "as {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueAwards": "Awards: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "ValueContainer": "Container: {0}", - "ValueDateCreated": "Date created: {0}", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueExample": "Example: {0}", - "ValueGameCount": "{0} games", - "ValueGuestStar": "Guest star", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "ValueLinks": "Links: {0}", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueOneTrailer": "1 trailer", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValuePriceUSD": "Price: {0} (USD)", - "ValueSeriesCount": "{0} series", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueSongCount": "{0} songs", - "ValueStatus": "Status: {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTrailerCount": "{0} trailers", - "ValueVideoCodec": "Video Codec: {0}", - "VersionNumber": "Version {0}", - "ViewPlaybackInfo": "View playback info", - "ViewTypeFolders": "Folders", - "ViewTypeGames": "Games", - "ViewTypeLiveTvChannels": "Channels", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeMovies": "Movies", - "ViewTypeMusic": "Music", "ViewTypeMusicFavoriteAlbums": "Favourite Albums", "ViewTypeMusicFavoriteArtists": "Favourite Artists", "ViewTypeMusicFavoriteSongs": "Favourite Songs", "ViewTypeMusicFavorites": "Favourites", - "ViewTypeMusicSongs": "Songs", - "ViewTypeTvShows": "TV", - "WelcomeToProject": "Welcome to Jellyfin!", - "Whitelist": "Whitelist", - "WizardCompleted": "That's all we need for now. Jellyfin has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", "XmlTvKidsCategoriesHelp": "Programmes with these categories will be displayed as programmes for children. Separate multiple with '|'.", "XmlTvMovieCategoriesHelp": "Programmes with these categories will be displayed as movies. Separate multiple with '|'.", "XmlTvNewsCategoriesHelp": "Programmes with these categories will be displayed as news programmes. Separate multiple with '|'.", "XmlTvPathHelp": "A path to an XML TV file. Jellyfin will read this file and periodically check it for updates. You are responsible for creating and updating the file.", "XmlTvSportsCategoriesHelp": "Programmes with these categories will be displayed as sports programmes. Separate multiple with '|'.", - "Yesterday": "Yesterday" } From 71c2f1f33dc8a3dc5e8244da53e7f84699c507a8 Mon Sep 17 00:00:00 2001 From: hawken Date: Wed, 23 Jan 2019 11:33:34 +0000 Subject: [PATCH 06/16] remove BOM --- src/addplugin.html | 2 +- src/appservices.html | 2 +- .../emby-webcomponents/actionsheet/actionsheet.js | 2 +- .../alphanumericshortcuts/alphanumericshortcuts.js | 2 +- src/bower_components/emby-webcomponents/appfooter/appfooter.css | 2 +- src/bower_components/emby-webcomponents/appfooter/appfooter.js | 2 +- src/bower_components/emby-webcomponents/backdrop/backdrop.js | 2 +- src/bower_components/emby-webcomponents/browser.js | 2 +- .../emby-webcomponents/chromecast/chromecasthelpers.js | 2 +- .../emby-webcomponents/chromecast/chromecastplayer.js | 2 +- .../emby-webcomponents/collectioneditor/collectioneditor.js | 2 +- src/bower_components/emby-webcomponents/datetime.js | 2 +- .../emby-webcomponents/dialog/dialog.template.html | 2 +- .../emby-webcomponents/dialoghelper/dialoghelper.js | 2 +- .../displaysettings/displaysettings.template.html | 2 +- .../emby-webcomponents/emby-button/emby-button.js | 2 +- .../emby-webcomponents/emby-button/paper-icon-button-light.js | 2 +- .../emby-webcomponents/emby-checkbox/emby-checkbox.js | 2 +- .../emby-webcomponents/emby-collapse/emby-collapse.js | 2 +- .../emby-webcomponents/emby-input/emby-input.js | 2 +- .../emby-itemrefreshindicator/emby-itemrefreshindicator.js | 2 +- .../emby-itemscontainer/emby-itemscontainer.js | 2 +- .../emby-webcomponents/emby-progressring/emby-progressring.css | 2 +- .../emby-webcomponents/emby-progressring/emby-progressring.js | 2 +- .../emby-webcomponents/emby-radio/emby-radio.js | 2 +- .../emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js | 2 +- .../emby-webcomponents/emby-scroller/emby-scroller.js | 2 +- .../emby-webcomponents/emby-select/emby-select.js | 2 +- .../emby-webcomponents/emby-slider/emby-slider.js | 2 +- src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css | 2 +- src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js | 2 +- .../emby-webcomponents/emby-textarea/emby-textarea.js | 2 +- .../emby-webcomponents/emby-toggle/emby-toggle.js | 2 +- src/bower_components/emby-webcomponents/fetchhelper.js | 2 +- src/bower_components/emby-webcomponents/filedownloader.js | 2 +- .../emby-webcomponents/filtermenu/filtermenu.js | 2 +- src/bower_components/emby-webcomponents/guide/guide-settings.js | 2 +- .../emby-webcomponents/guide/guide-settings.template.html | 2 +- src/bower_components/emby-webcomponents/guide/guide.js | 2 +- .../emby-webcomponents/guide/tvguide.template.html | 2 +- .../homescreensettings/homescreensettings.template.html | 2 +- .../homescreensettings/homescreensettingsdialog.js | 2 +- .../homescreensettings/homescreensettingsdialog.template.html | 2 +- .../emby-webcomponents/homesections/homesections.css | 2 +- .../emby-webcomponents/homesections/homesections.js | 2 +- .../emby-webcomponents/htmlvideoplayer/plugin.js | 2 +- .../emby-webcomponents/imagedownloader/imagedownloader.js | 2 +- .../imagedownloader/imagedownloader.template.html | 2 +- .../emby-webcomponents/imageeditor/imageeditor.css | 2 +- .../emby-webcomponents/imageeditor/imageeditor.js | 2 +- .../emby-webcomponents/imageeditor/imageeditor.template.html | 2 +- .../emby-webcomponents/imageuploader/imageuploader.js | 2 +- .../imageuploader/imageuploader.template.html | 2 +- src/bower_components/emby-webcomponents/imageuploader/style.css | 2 +- src/bower_components/emby-webcomponents/input/gamepadtokey.js | 2 +- .../emby-webcomponents/itemidentifier/itemidentifier.js | 2 +- .../itemidentifier/itemidentifier.template.html | 2 +- src/bower_components/emby-webcomponents/itemsrefresher.js | 2 +- .../emby-webcomponents/loadingdialog/loadingdialog.js | 2 +- src/bower_components/emby-webcomponents/maintabsmanager.js | 2 +- .../emby-webcomponents/metadataeditor/metadataeditor.js | 2 +- .../metadataeditor/metadataeditor.template.html | 2 +- .../emby-webcomponents/metadataeditor/personeditor.js | 2 +- .../metadataeditor/personeditor.template.html | 2 +- .../emby-webcomponents/multiselect/multiselect.css | 2 +- .../emby-webcomponents/multiselect/multiselect.js | 2 +- .../emby-webcomponents/nowplayingbar/nowplayingbar.css | 2 +- .../emby-webcomponents/nowplayingbar/nowplayingbar.js | 2 +- .../emby-webcomponents/playback/brightnessosd.js | 2 +- src/bower_components/emby-webcomponents/playback/iconosd.css | 2 +- .../emby-webcomponents/playback/mediasession.js | 2 +- .../emby-webcomponents/playback/playbackmanager.js | 2 +- .../emby-webcomponents/playback/playbackorientation.js | 2 +- .../emby-webcomponents/playback/playerselection.js | 2 +- .../emby-webcomponents/playback/playmethodhelper.js | 2 +- .../emby-webcomponents/playback/playqueuemanager.js | 2 +- .../emby-webcomponents/playback/remotecontrolautoplay.js | 2 +- src/bower_components/emby-webcomponents/playback/volumeosd.js | 2 +- .../playbacksettings/playbacksettings.template.html | 2 +- .../emby-webcomponents/playlisteditor/playlisteditor.js | 2 +- .../emby-webcomponents/polyfills/objectassign.js | 2 +- src/bower_components/emby-webcomponents/polyfills/raf.js | 2 +- .../emby-webcomponents/prompt/prompt.template.html | 2 +- src/bower_components/emby-webcomponents/qualityoptions.js | 2 +- .../emby-webcomponents/recordingcreator/recordingbutton.js | 2 +- .../emby-webcomponents/recordingcreator/recordingcreator.js | 2 +- .../recordingcreator/recordingcreator.template.html | 2 +- .../emby-webcomponents/recordingcreator/recordingeditor.js | 2 +- .../recordingcreator/recordingeditor.template.html | 2 +- .../emby-webcomponents/recordingcreator/recordingfields.js | 2 +- .../recordingcreator/recordingfields.template.html | 2 +- .../emby-webcomponents/recordingcreator/recordinghelper.js | 2 +- .../recordingcreator/seriesrecordingeditor.js | 2 +- .../recordingcreator/seriesrecordingeditor.template.html | 2 +- .../emby-webcomponents/refreshdialog/refreshdialog.js | 2 +- .../registrationservices/registrationservices.js | 2 +- src/bower_components/emby-webcomponents/sanitizefilename.js | 2 +- src/bower_components/emby-webcomponents/search/searchfields.css | 2 +- src/bower_components/emby-webcomponents/search/searchfields.js | 2 +- src/bower_components/emby-webcomponents/search/searchresults.js | 2 +- .../serverrestartdialog/serverrestartdialog.js | 2 +- src/bower_components/emby-webcomponents/sessionplayer.js | 2 +- src/bower_components/emby-webcomponents/sortmenu/sortmenu.js | 2 +- .../emby-webcomponents/subtitleeditor/subtitleeditor.css | 2 +- .../emby-webcomponents/subtitleeditor/subtitleeditor.js | 2 +- .../subtitleeditor/subtitleeditor.template.html | 2 +- .../subtitlesettings/subtitlesettings.template.html | 2 +- src/bower_components/emby-webcomponents/sync/sync.js | 2 +- src/bower_components/emby-webcomponents/sync/syncjobeditor.js | 2 +- src/bower_components/emby-webcomponents/sync/syncjoblist.js | 2 +- src/bower_components/emby-webcomponents/tabbedview/itemstab.js | 2 +- .../emby-webcomponents/upnextdialog/upnextdialog.css | 2 +- .../emby-webcomponents/upnextdialog/upnextdialog.js | 2 +- .../emby-webcomponents/viewsettings/viewsettings.js | 2 +- src/bower_components/emby-webcomponents/visibleinviewport.js | 2 +- src/components/accessschedule/accessschedule.template.html | 2 +- src/components/guestinviter/guestinviter.template.html | 2 +- .../imageoptionseditor/imageoptionseditor.template.html | 2 +- .../libraryoptionseditor/libraryoptionseditor.template.html | 2 +- .../medialibrarycreator/medialibrarycreator.template.html | 2 +- .../medialibraryeditor/medialibraryeditor.template.html | 2 +- src/components/tvproviders/schedulesdirect.template.html | 2 +- src/components/tvproviders/xmltv.template.html | 2 +- src/dashboard.html | 2 +- src/dashboardgeneral.html | 2 +- src/dashboardhosting.html | 2 +- src/devices/device.html | 2 +- src/devices/devices.html | 2 +- src/devicesupload.html | 2 +- src/dlnaprofile.html | 2 +- src/dlnaprofiles.html | 2 +- src/dlnasettings.html | 2 +- src/edititemmetadata.html | 2 +- src/encodingsettings.html | 2 +- src/forgotpassword.html | 2 +- src/forgotpasswordpin.html | 2 +- src/home.html | 2 +- src/itemdetails.html | 2 +- src/library.html | 2 +- src/librarydisplay.html | 2 +- src/librarysettings.html | 2 +- src/livetv.html | 2 +- src/livetvguideprovider.html | 2 +- src/livetvsettings.html | 2 +- src/livetvstatus.html | 2 +- src/livetvtuner.html | 2 +- src/log.html | 2 +- src/login.html | 2 +- src/metadataimages.html | 2 +- src/metadatanfo.html | 2 +- src/movies.html | 2 +- src/music.html | 2 +- src/mypreferencesdisplay.html | 2 +- src/mypreferenceshome.html | 2 +- src/mypreferenceslanguages.html | 2 +- src/mypreferencesmenu.html | 2 +- src/mypreferencessubtitles.html | 2 +- src/myprofile.html | 2 +- src/mysyncjob.html | 2 +- src/notificationsetting.html | 2 +- src/notificationsettings.html | 2 +- src/nowplaying.html | 2 +- src/playbackconfiguration.html | 2 +- src/plugincatalog.html | 2 +- src/plugins.html | 2 +- src/scheduledtask.html | 2 +- src/scheduledtasks.html | 2 +- src/search.html | 2 +- src/selectserver.html | 2 +- src/serveractivity.html | 2 +- src/serversecurity.html | 2 +- src/streamingsettings.html | 2 +- src/syncactivity.html | 2 +- src/tv.html | 2 +- src/useredit.html | 2 +- src/userlibraryaccess.html | 2 +- src/usernew.html | 2 +- src/userparentalcontrol.html | 2 +- src/userpassword.html | 2 +- src/userprofiles.html | 2 +- src/videoosd.html | 2 +- src/wizardfinish.html | 2 +- src/wizardlibrary.html | 2 +- src/wizardremoteaccess.html | 2 +- src/wizardsettings.html | 2 +- src/wizardstart.html | 2 +- src/wizarduser.html | 2 +- 187 files changed, 187 insertions(+), 187 deletions(-) diff --git a/src/addplugin.html b/src/addplugin.html index c8b1d4ecff..efdfbcc3d3 100644 --- a/src/addplugin.html +++ b/src/addplugin.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/appservices.html b/src/appservices.html index c473911ffa..43f37a0980 100644 --- a/src/appservices.html +++ b/src/appservices.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js b/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js index 067d427aef..87ee6e35fa 100644 --- a/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js +++ b/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-button', 'css!./actionsheet', 'material-icons', 'scrollStyles', 'listViewStyle'], function (dialogHelper, layoutManager, globalize, browser, dom) { +define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-button', 'css!./actionsheet', 'material-icons', 'scrollStyles', 'listViewStyle'], function (dialogHelper, layoutManager, globalize, browser, dom) { 'use strict'; function getOffsets(elems) { diff --git a/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js b/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js index 8517d1c3df..03d0118cbe 100644 --- a/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js +++ b/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js @@ -1,4 +1,4 @@ -define(['dom', 'focusManager'], function (dom, focusManager) { +define(['dom', 'focusManager'], function (dom, focusManager) { 'use strict'; var inputDisplayElement; diff --git a/src/bower_components/emby-webcomponents/appfooter/appfooter.css b/src/bower_components/emby-webcomponents/appfooter/appfooter.css index 320d34a4a9..789bc1db20 100644 --- a/src/bower_components/emby-webcomponents/appfooter/appfooter.css +++ b/src/bower_components/emby-webcomponents/appfooter/appfooter.css @@ -1,4 +1,4 @@ -.appfooter { +.appfooter { position: fixed; left: 0; right: 0; diff --git a/src/bower_components/emby-webcomponents/appfooter/appfooter.js b/src/bower_components/emby-webcomponents/appfooter/appfooter.js index 3f69efc573..4387ca8b77 100644 --- a/src/bower_components/emby-webcomponents/appfooter/appfooter.js +++ b/src/bower_components/emby-webcomponents/appfooter/appfooter.js @@ -1,4 +1,4 @@ -define(['browser', 'css!./appfooter'], function (browser) { +define(['browser', 'css!./appfooter'], function (browser) { 'use strict'; function render(options) { diff --git a/src/bower_components/emby-webcomponents/backdrop/backdrop.js b/src/bower_components/emby-webcomponents/backdrop/backdrop.js index 12a077c68c..2187daac85 100644 --- a/src/bower_components/emby-webcomponents/backdrop/backdrop.js +++ b/src/bower_components/emby-webcomponents/backdrop/backdrop.js @@ -1,4 +1,4 @@ -define(['browser', 'connectionManager', 'playbackManager', 'dom', 'css!./style'], function (browser, connectionManager, playbackManager, dom) { +define(['browser', 'connectionManager', 'playbackManager', 'dom', 'css!./style'], function (browser, connectionManager, playbackManager, dom) { 'use strict'; function enableAnimation(elem) { diff --git a/src/bower_components/emby-webcomponents/browser.js b/src/bower_components/emby-webcomponents/browser.js index cace0cb891..6329bbbd13 100644 --- a/src/bower_components/emby-webcomponents/browser.js +++ b/src/bower_components/emby-webcomponents/browser.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function isTv() { diff --git a/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js b/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js index 4950f6540e..c86233207d 100644 --- a/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js +++ b/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js @@ -1,4 +1,4 @@ -define(['events'], function (events) { +define(['events'], function (events) { 'use strict'; // LinkParser diff --git a/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js b/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js index 4f8b4cf952..d276bb4de2 100644 --- a/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js +++ b/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js @@ -1,4 +1,4 @@ -define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', 'globalize', 'events', 'require', 'castSenderApiLoader'], function (appSettings, userSettings, playbackManager, connectionManager, globalize, events, require, castSenderApiLoader) { +define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', 'globalize', 'events', 'require', 'castSenderApiLoader'], function (appSettings, userSettings, playbackManager, connectionManager, globalize, events, require, castSenderApiLoader) { 'use strict'; // Based on https://github.com/googlecast/CastVideos-chrome/blob/master/CastVideos.js diff --git a/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js b/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js index 8e526fa114..e2381e6914 100644 --- a/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js +++ b/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize) { +define(['dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize) { 'use strict'; var currentServerId; diff --git a/src/bower_components/emby-webcomponents/datetime.js b/src/bower_components/emby-webcomponents/datetime.js index 15d0c64865..a7ee1d946a 100644 --- a/src/bower_components/emby-webcomponents/datetime.js +++ b/src/bower_components/emby-webcomponents/datetime.js @@ -1,4 +1,4 @@ -define(['globalize'], function (globalize) { +define(['globalize'], function (globalize) { 'use strict'; function parseISO8601Date(s, toLocal) { diff --git a/src/bower_components/emby-webcomponents/dialog/dialog.template.html b/src/bower_components/emby-webcomponents/dialog/dialog.template.html index cc1843fde4..eae210d14e 100644 --- a/src/bower_components/emby-webcomponents/dialog/dialog.template.html +++ b/src/bower_components/emby-webcomponents/dialog/dialog.template.html @@ -1,4 +1,4 @@ -
+

diff --git a/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js b/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js index 48aa006215..36bb23bfd7 100644 --- a/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js +++ b/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js @@ -1,4 +1,4 @@ -define(['appRouter', 'focusManager', 'browser', 'layoutManager', 'inputManager', 'dom', 'css!./dialoghelper.css', 'scrollStyles'], function (appRouter, focusManager, browser, layoutManager, inputManager, dom) { +define(['appRouter', 'focusManager', 'browser', 'layoutManager', 'inputManager', 'dom', 'css!./dialoghelper.css', 'scrollStyles'], function (appRouter, focusManager, browser, layoutManager, inputManager, dom) { 'use strict'; var globalOnOpenCallback; diff --git a/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html b/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html index ad82c07edb..987a54b4d7 100644 --- a/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html +++ b/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html @@ -1,4 +1,4 @@ -
+

${Display} diff --git a/src/bower_components/emby-webcomponents/emby-button/emby-button.js b/src/bower_components/emby-webcomponents/emby-button/emby-button.js index 173d21b9bd..99a6aea925 100644 --- a/src/bower_components/emby-webcomponents/emby-button/emby-button.js +++ b/src/bower_components/emby-webcomponents/emby-button/emby-button.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager, shell, appRouter, appHost) { +define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager, shell, appRouter, appHost) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js b/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js index b3b5c5aee3..70304ffc24 100644 --- a/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js +++ b/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'css!./emby-button', 'registerElement'], function (layoutManager) { +define(['layoutManager', 'css!./emby-button', 'registerElement'], function (layoutManager) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js b/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js index 5d350612a4..9afb67bc02 100644 --- a/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js +++ b/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'css!./emby-checkbox', 'registerElement'], function (browser, dom) { +define(['browser', 'dom', 'css!./emby-checkbox', 'registerElement'], function (browser, dom) { 'use strict'; var EmbyCheckboxPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js b/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js index 198278e1d7..09b8c70d8f 100644 --- a/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js +++ b/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js @@ -1,4 +1,4 @@ -define(['browser', 'css!./emby-collapse', 'registerElement', 'emby-button'], function (browser) { +define(['browser', 'css!./emby-collapse', 'registerElement', 'emby-button'], function (browser) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-input/emby-input.js b/src/bower_components/emby-webcomponents/emby-input/emby-input.js index 9481b89225..acc9154318 100644 --- a/src/bower_components/emby-webcomponents/emby-input/emby-input.js +++ b/src/bower_components/emby-webcomponents/emby-input/emby-input.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'dom', 'css!./emby-input', 'registerElement'], function (layoutManager, browser, dom) { +define(['layoutManager', 'browser', 'dom', 'css!./emby-input', 'registerElement'], function (layoutManager, browser, dom) { 'use strict'; var EmbyInputPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js b/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js index 502af23542..be50abeb87 100644 --- a/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js +++ b/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js @@ -1,4 +1,4 @@ -define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerElement'], function (EmbyProgressRing, dom, serverNotifications, events) { +define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerElement'], function (EmbyProgressRing, dom, serverNotifications, events) { 'use strict'; function addNotificationEvent(instance, name, handler) { diff --git a/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js b/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js index cd2cab827b..2b002c70e8 100644 --- a/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js +++ b/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js @@ -1,4 +1,4 @@ -define(['itemShortcuts', 'inputManager', 'connectionManager', 'playbackManager', 'imageLoader', 'layoutManager', 'browser', 'dom', 'loading', 'focusManager', 'serverNotifications', 'events', 'registerElement'], function (itemShortcuts, inputManager, connectionManager, playbackManager, imageLoader, layoutManager, browser, dom, loading, focusManager, serverNotifications, events) { +define(['itemShortcuts', 'inputManager', 'connectionManager', 'playbackManager', 'imageLoader', 'layoutManager', 'browser', 'dom', 'loading', 'focusManager', 'serverNotifications', 'events', 'registerElement'], function (itemShortcuts, inputManager, connectionManager, playbackManager, imageLoader, layoutManager, browser, dom, loading, focusManager, serverNotifications, events) { 'use strict'; var ItemsContainerProtoType = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css index 11c05ab518..7bef7c35f7 100644 --- a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css +++ b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css @@ -1,4 +1,4 @@ -.progressring { +.progressring { position: relative; width: 2.6em; height: 2.6em; diff --git a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js index feb4ddb20d..7148079a19 100644 --- a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js +++ b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js @@ -1,4 +1,4 @@ -define(['require', 'css!./emby-progressring', 'registerElement'], function (require) { +define(['require', 'css!./emby-progressring', 'registerElement'], function (require) { 'use strict'; var EmbyProgressRing = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js b/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js index 6e3b6b9bf4..3c72f91521 100644 --- a/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js +++ b/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js @@ -1,4 +1,4 @@ -define(['css!./emby-radio', 'registerElement'], function () { +define(['css!./emby-radio', 'registerElement'], function () { 'use strict'; var EmbyRadioPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js b/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js index cd285a8769..c325ad9fd5 100644 --- a/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js +++ b/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'dom', 'css!./emby-scrollbuttons', 'registerElement', 'paper-icon-button-light'], function (layoutManager, dom) { +define(['layoutManager', 'dom', 'css!./emby-scrollbuttons', 'registerElement', 'paper-icon-button-light'], function (layoutManager, dom) { 'use strict'; var EmbyScrollButtonsPrototype = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js b/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js index 6237fd99f6..d3718cedf3 100644 --- a/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js +++ b/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js @@ -1,4 +1,4 @@ -define(['scroller', 'dom', 'layoutManager', 'inputManager', 'focusManager', 'browser', 'registerElement'], function (scroller, dom, layoutManager, inputManager, focusManager, browser) { +define(['scroller', 'dom', 'layoutManager', 'inputManager', 'focusManager', 'browser', 'registerElement'], function (scroller, dom, layoutManager, inputManager, focusManager, browser) { 'use strict'; var ScrollerProtoType = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-select/emby-select.js b/src/bower_components/emby-webcomponents/emby-select/emby-select.js index 6783f2f48c..80e34677f7 100644 --- a/src/bower_components/emby-webcomponents/emby-select/emby-select.js +++ b/src/bower_components/emby-webcomponents/emby-select/emby-select.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registerElement'], function (layoutManager, browser, actionsheet) { +define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registerElement'], function (layoutManager, browser, actionsheet) { 'use strict'; var EmbySelectPrototype = Object.create(HTMLSelectElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js index 06fcdcfea1..5538d0fcdf 100644 --- a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js +++ b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom, layoutManager) { +define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom, layoutManager) { 'use strict'; var EmbySliderPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css index 49881994bd..3a542ee7e6 100644 --- a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css +++ b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css @@ -1,4 +1,4 @@ -.emby-tab-button { +.emby-tab-button { background: transparent; box-shadow: none; cursor: pointer; diff --git a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js index 3642facd2a..d88b111060 100644 --- a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js +++ b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js @@ -1,4 +1,4 @@ -define(['dom', 'scroller', 'browser', 'layoutManager', 'focusManager', 'registerElement', 'css!./emby-tabs', 'scrollStyles'], function (dom, scroller, browser, layoutManager, focusManager) { +define(['dom', 'scroller', 'browser', 'layoutManager', 'focusManager', 'registerElement', 'css!./emby-tabs', 'scrollStyles'], function (dom, scroller, browser, layoutManager, focusManager) { 'use strict'; var EmbyTabs = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js b/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js index 130d6c3980..7dec1f0955 100644 --- a/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js +++ b/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'css!./emby-textarea', 'registerElement', 'emby-input'], function (layoutManager, browser) { +define(['layoutManager', 'browser', 'css!./emby-textarea', 'registerElement', 'emby-input'], function (layoutManager, browser) { 'use strict'; function autoGrow(textarea, maxLines) { diff --git a/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js b/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js index d6d31957b2..08597164b2 100644 --- a/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js +++ b/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js @@ -1,4 +1,4 @@ -define(['css!./emby-toggle', 'registerElement'], function () { +define(['css!./emby-toggle', 'registerElement'], function () { 'use strict'; var EmbyTogglePrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/fetchhelper.js b/src/bower_components/emby-webcomponents/fetchhelper.js index 64bd5159a5..bb7f21e75e 100644 --- a/src/bower_components/emby-webcomponents/fetchhelper.js +++ b/src/bower_components/emby-webcomponents/fetchhelper.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function getFetchPromise(request) { diff --git a/src/bower_components/emby-webcomponents/filedownloader.js b/src/bower_components/emby-webcomponents/filedownloader.js index ebd004da68..c8e3011be2 100644 --- a/src/bower_components/emby-webcomponents/filedownloader.js +++ b/src/bower_components/emby-webcomponents/filedownloader.js @@ -1,4 +1,4 @@ -define(['multi-download'], function (multiDownload) { +define(['multi-download'], function (multiDownload) { 'use strict'; return { diff --git a/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js b/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js index e405cc0943..4495e07c86 100644 --- a/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js +++ b/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js @@ -1,4 +1,4 @@ -define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'apphost', 'inputManager', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, appHost, inputManager, layoutManager, connectionManager, appRouter, globalize, userSettings) { +define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'apphost', 'inputManager', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, appHost, inputManager, layoutManager, connectionManager, appRouter, globalize, userSettings) { 'use strict'; function onSubmit(e) { diff --git a/src/bower_components/emby-webcomponents/guide/guide-settings.js b/src/bower_components/emby-webcomponents/guide/guide-settings.js index e95d750c9a..8de0edba95 100644 --- a/src/bower_components/emby-webcomponents/guide/guide-settings.js +++ b/src/bower_components/emby-webcomponents/guide/guide-settings.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'userSettings', 'layoutManager', 'connectionManager', 'require', 'loading', 'scrollHelper', 'emby-checkbox', 'emby-radio', 'css!./../formdialog', 'material-icons'], function (dialogHelper, globalize, userSettings, layoutManager, connectionManager, require, loading, scrollHelper) { +define(['dialogHelper', 'globalize', 'userSettings', 'layoutManager', 'connectionManager', 'require', 'loading', 'scrollHelper', 'emby-checkbox', 'emby-radio', 'css!./../formdialog', 'material-icons'], function (dialogHelper, globalize, userSettings, layoutManager, connectionManager, require, loading, scrollHelper) { 'use strict'; function saveCategories(context, options) { diff --git a/src/bower_components/emby-webcomponents/guide/guide-settings.template.html b/src/bower_components/emby-webcomponents/guide/guide-settings.template.html index d3395992d4..605c408a85 100644 --- a/src/bower_components/emby-webcomponents/guide/guide-settings.template.html +++ b/src/bower_components/emby-webcomponents/guide/guide-settings.template.html @@ -1,4 +1,4 @@ -
+

${Settings} diff --git a/src/bower_components/emby-webcomponents/guide/guide.js b/src/bower_components/emby-webcomponents/guide/guide.js index 0924339ff2..ebbdddc805 100644 --- a/src/bower_components/emby-webcomponents/guide/guide.js +++ b/src/bower_components/emby-webcomponents/guide/guide.js @@ -1,4 +1,4 @@ -define(['require', 'inputManager', 'browser', 'globalize', 'connectionManager', 'scrollHelper', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'playbackManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'dom', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-tabs', 'emby-scroller', 'flexStyles', 'registerElement'], function (require, inputManager, browser, globalize, connectionManager, scrollHelper, serverNotifications, loading, datetime, focusManager, playbackManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, dom) { +define(['require', 'inputManager', 'browser', 'globalize', 'connectionManager', 'scrollHelper', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'playbackManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'dom', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-tabs', 'emby-scroller', 'flexStyles', 'registerElement'], function (require, inputManager, browser, globalize, connectionManager, scrollHelper, serverNotifications, loading, datetime, focusManager, playbackManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, dom) { 'use strict'; function showViewSettings(instance) { diff --git a/src/bower_components/emby-webcomponents/guide/tvguide.template.html b/src/bower_components/emby-webcomponents/guide/tvguide.template.html index d6416facf7..c5f76696c5 100644 --- a/src/bower_components/emby-webcomponents/guide/tvguide.template.html +++ b/src/bower_components/emby-webcomponents/guide/tvguide.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html index b8c1e6cde6..6295af0dfa 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html @@ -1,4 +1,4 @@ - +
diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js index 3962ccf239..ce1e06faa4 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'events', 'homescreenSettings', 'paper-icon-button-light', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require, events, HomescreenSettings) { +define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'events', 'homescreenSettings', 'paper-icon-button-light', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require, events, HomescreenSettings) { 'use strict'; function centerFocus(elem, horiz, on) { diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html index ccb383b1e4..d707fcdfb4 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html @@ -1,4 +1,4 @@ -
+

${HeaderDisplaySettings} diff --git a/src/bower_components/emby-webcomponents/homesections/homesections.css b/src/bower_components/emby-webcomponents/homesections/homesections.css index 7bb561ee01..647a9500d4 100644 --- a/src/bower_components/emby-webcomponents/homesections/homesections.css +++ b/src/bower_components/emby-webcomponents/homesections/homesections.css @@ -1,4 +1,4 @@ -.homeLibraryButton { +.homeLibraryButton { min-width: 18%; margin: .5em !important; } diff --git a/src/bower_components/emby-webcomponents/homesections/homesections.js b/src/bower_components/emby-webcomponents/homesections/homesections.js index a92fa975ed..4807fd5151 100644 --- a/src/bower_components/emby-webcomponents/homesections/homesections.js +++ b/src/bower_components/emby-webcomponents/homesections/homesections.js @@ -1,4 +1,4 @@ -define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings', 'dom', 'apphost', 'layoutManager', 'imageLoader', 'globalize', 'itemShortcuts', 'itemHelper', 'appRouter', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer', 'emby-scroller', 'emby-linkbutton', 'css!./homesections'], function (connectionManager, cardBuilder, registrationServices, appSettings, dom, appHost, layoutManager, imageLoader, globalize, itemShortcuts, itemHelper, appRouter) { +define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings', 'dom', 'apphost', 'layoutManager', 'imageLoader', 'globalize', 'itemShortcuts', 'itemHelper', 'appRouter', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer', 'emby-scroller', 'emby-linkbutton', 'css!./homesections'], function (connectionManager, cardBuilder, registrationServices, appSettings, dom, appHost, layoutManager, imageLoader, globalize, itemShortcuts, itemHelper, appRouter) { 'use strict'; function getDefaultSection(index) { diff --git a/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js b/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js index 16381d4462..10d32bc9bd 100644 --- a/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js +++ b/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js @@ -1,4 +1,4 @@ -define(['browser', 'require', 'events', 'apphost', 'loading', 'dom', 'playbackManager', 'appRouter', 'appSettings', 'connectionManager', 'htmlMediaHelper', 'itemHelper'], function (browser, require, events, appHost, loading, dom, playbackManager, appRouter, appSettings, connectionManager, htmlMediaHelper, itemHelper) { +define(['browser', 'require', 'events', 'apphost', 'loading', 'dom', 'playbackManager', 'appRouter', 'appSettings', 'connectionManager', 'htmlMediaHelper', 'itemHelper'], function (browser, require, events, appHost, loading, dom, playbackManager, appRouter, appSettings, connectionManager, htmlMediaHelper, itemHelper) { "use strict"; var mediaManager; diff --git a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js index d6df237273..56636ef19c 100644 --- a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js +++ b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js @@ -1,4 +1,4 @@ -define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader', 'browser', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'emby-checkbox', 'emby-button', 'paper-icon-button-light', 'emby-linkbutton', 'formDialogStyle', 'cardStyle'], function (loading, appHost, dialogHelper, connectionManager, imageLoader, browser, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader', 'browser', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'emby-checkbox', 'emby-button', 'paper-icon-button-light', 'emby-linkbutton', 'formDialogStyle', 'cardStyle'], function (loading, appHost, dialogHelper, connectionManager, imageLoader, browser, layoutManager, scrollHelper, globalize, require) { 'use strict'; var currentItemId; diff --git a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html index 3d3ae67144..831e882ed9 100644 --- a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html +++ b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html @@ -1,4 +1,4 @@ -
+

${Search} diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css index 724b9ffb0f..d45400cac9 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css @@ -1,4 +1,4 @@ -.imageEditor-buttons { +.imageEditor-buttons { display: flex; align-items: center; margin: 1em 0 1em; diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js index 339e7a0f32..45124cf3a1 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'connectionManager', 'loading', 'dom', 'layoutManager', 'focusManager', 'globalize', 'scrollHelper', 'imageLoader', 'require', 'browser', 'apphost', 'cardStyle', 'formDialogStyle', 'emby-button', 'paper-icon-button-light', 'css!./imageeditor'], function (dialogHelper, connectionManager, loading, dom, layoutManager, focusManager, globalize, scrollHelper, imageLoader, require, browser, appHost) { +define(['dialogHelper', 'connectionManager', 'loading', 'dom', 'layoutManager', 'focusManager', 'globalize', 'scrollHelper', 'imageLoader', 'require', 'browser', 'apphost', 'cardStyle', 'formDialogStyle', 'emby-button', 'paper-icon-button-light', 'css!./imageeditor'], function (dialogHelper, connectionManager, loading, dom, layoutManager, focusManager, globalize, scrollHelper, imageLoader, require, browser, appHost) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html index 0c9ba9b5d1..e25dc8789b 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderEditImages} diff --git a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js index eb68505118..d679530a82 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js +++ b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'connectionManager', 'dom', 'loading', 'scrollHelper', 'layoutManager', 'globalize', 'require', 'emby-button', 'emby-select', 'formDialogStyle', 'css!./style'], function (dialogHelper, connectionManager, dom, loading, scrollHelper, layoutManager, globalize, require) { +define(['dialogHelper', 'connectionManager', 'dom', 'loading', 'scrollHelper', 'layoutManager', 'globalize', 'require', 'emby-button', 'emby-select', 'formDialogStyle', 'css!./style'], function (dialogHelper, connectionManager, dom, loading, scrollHelper, layoutManager, globalize, require) { 'use strict'; var currentItemId; diff --git a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html index 19edc80cc2..f01dd90433 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html +++ b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html @@ -1,4 +1,4 @@ -
+

${HeaderUploadImage} diff --git a/src/bower_components/emby-webcomponents/imageuploader/style.css b/src/bower_components/emby-webcomponents/imageuploader/style.css index e259b4b7dc..bd86d8bff3 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/style.css +++ b/src/bower_components/emby-webcomponents/imageuploader/style.css @@ -1,4 +1,4 @@ -.imageEditor-dropZone { +.imageEditor-dropZone { border: .2em dashed currentcolor; border-radius: .25em; /* padding: 1.6em; */ diff --git a/src/bower_components/emby-webcomponents/input/gamepadtokey.js b/src/bower_components/emby-webcomponents/input/gamepadtokey.js index e8667bef27..5dafb2828b 100644 --- a/src/bower_components/emby-webcomponents/input/gamepadtokey.js +++ b/src/bower_components/emby-webcomponents/input/gamepadtokey.js @@ -1,4 +1,4 @@ -// # The MIT License (MIT) +// # The MIT License (MIT) // # // # Copyright (c) 2016 Microsoft. All rights reserved. // # diff --git a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js index 0107ca4097..78a7a9a1fe 100644 --- a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js +++ b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize', 'scrollHelper', 'layoutManager', 'focusManager', 'browser', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'cardStyle'], function (dialogHelper, loading, connectionManager, require, globalize, scrollHelper, layoutManager, focusManager, browser) { +define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize', 'scrollHelper', 'layoutManager', 'focusManager', 'browser', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'cardStyle'], function (dialogHelper, loading, connectionManager, require, globalize, scrollHelper, layoutManager, focusManager, browser) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html index d5a7f7585b..e9ba163a02 100644 --- a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html +++ b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html @@ -1,4 +1,4 @@ -
+

${Identify} diff --git a/src/bower_components/emby-webcomponents/itemsrefresher.js b/src/bower_components/emby-webcomponents/itemsrefresher.js index 3bdd61236d..d9bef95b4b 100644 --- a/src/bower_components/emby-webcomponents/itemsrefresher.js +++ b/src/bower_components/emby-webcomponents/itemsrefresher.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'serverNotifications', 'events'], function (playbackManager, serverNotifications, events) { +define(['playbackManager', 'serverNotifications', 'events'], function (playbackManager, serverNotifications, events) { 'use strict'; function onUserDataChanged(e, apiClient, userData) { diff --git a/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js b/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js index 5f176399db..2c4d5d345f 100644 --- a/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js +++ b/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js @@ -1,4 +1,4 @@ -define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { 'use strict'; function showDialog(instance, options, template) { diff --git a/src/bower_components/emby-webcomponents/maintabsmanager.js b/src/bower_components/emby-webcomponents/maintabsmanager.js index 07f575c11c..b8da631df9 100644 --- a/src/bower_components/emby-webcomponents/maintabsmanager.js +++ b/src/bower_components/emby-webcomponents/maintabsmanager.js @@ -1,4 +1,4 @@ -define(['dom', 'browser', 'events', 'emby-tabs', 'emby-button', 'emby-linkbutton'], function (dom, browser, events) { +define(['dom', 'browser', 'events', 'emby-tabs', 'emby-button', 'emby-linkbutton'], function (dom, browser, events) { 'use strict'; var tabOwnerView; diff --git a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js index 5ba7689ceb..d08796dcf7 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js +++ b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js @@ -1,4 +1,4 @@ -define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loading', 'focusManager', 'connectionManager', 'globalize', 'require', 'shell', 'emby-checkbox', 'emby-input', 'emby-select', 'listViewStyle', 'emby-textarea', 'emby-button', 'paper-icon-button-light', 'css!./../formdialog', 'clearButtonStyle', 'flexStyles'], function (itemHelper, dom, layoutManager, dialogHelper, datetime, loading, focusManager, connectionManager, globalize, require, shell) { +define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loading', 'focusManager', 'connectionManager', 'globalize', 'require', 'shell', 'emby-checkbox', 'emby-input', 'emby-select', 'listViewStyle', 'emby-textarea', 'emby-button', 'paper-icon-button-light', 'css!./../formdialog', 'clearButtonStyle', 'flexStyles'], function (itemHelper, dom, layoutManager, dialogHelper, datetime, loading, focusManager, connectionManager, globalize, require, shell) { 'use strict'; var currentContext; diff --git a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html index ed1bb2100e..bb6e0bbcbd 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html +++ b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html @@ -1,4 +1,4 @@ -
+

${Edit} diff --git a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js index 7cfee43005..838abc379b 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js +++ b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'paper-icon-button-light', 'emby-input', 'emby-select', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require) { +define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'paper-icon-button-light', 'emby-input', 'emby-select', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require) { 'use strict'; function centerFocus(elem, horiz, on) { diff --git a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html index 6c5c8e0d8d..6a808db1f4 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html +++ b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html @@ -1,4 +1,4 @@ -
+

${Edit} diff --git a/src/bower_components/emby-webcomponents/multiselect/multiselect.css b/src/bower_components/emby-webcomponents/multiselect/multiselect.css index 2026f8aa8b..9c2a58cd20 100644 --- a/src/bower_components/emby-webcomponents/multiselect/multiselect.css +++ b/src/bower_components/emby-webcomponents/multiselect/multiselect.css @@ -1,4 +1,4 @@ -.itemSelectionPanel { +.itemSelectionPanel { position: absolute; bottom: 0; left: 0; diff --git a/src/bower_components/emby-webcomponents/multiselect/multiselect.js b/src/bower_components/emby-webcomponents/multiselect/multiselect.js index e720a005ae..764247c50c 100644 --- a/src/bower_components/emby-webcomponents/multiselect/multiselect.js +++ b/src/bower_components/emby-webcomponents/multiselect/multiselect.js @@ -1,4 +1,4 @@ -define(['browser', 'appStorage', 'apphost', 'loading', 'connectionManager', 'globalize', 'appRouter', 'dom', 'css!./multiselect'], function (browser, appStorage, appHost, loading, connectionManager, globalize, appRouter, dom) { +define(['browser', 'appStorage', 'apphost', 'loading', 'connectionManager', 'globalize', 'appRouter', 'dom', 'css!./multiselect'], function (browser, appStorage, appHost, loading, connectionManager, globalize, appRouter, dom) { 'use strict'; var selectedItems = []; diff --git a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css index 1a6972e049..1392541e16 100644 --- a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css +++ b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css @@ -1,4 +1,4 @@ -.nowPlayingBarInfoContainer { +.nowPlayingBarInfoContainer { display: flex; align-items: center; height: 100%; diff --git a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js index 3d55a342e5..8ac00f13d7 100644 --- a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js +++ b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js @@ -1,4 +1,4 @@ -define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader', 'layoutManager', 'playbackManager', 'nowPlayingHelper', 'apphost', 'dom', 'connectionManager', 'paper-icon-button-light', 'emby-ratingbutton'], function (require, datetime, itemHelper, events, browser, imageLoader, layoutManager, playbackManager, nowPlayingHelper, appHost, dom, connectionManager) { +define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader', 'layoutManager', 'playbackManager', 'nowPlayingHelper', 'apphost', 'dom', 'connectionManager', 'paper-icon-button-light', 'emby-ratingbutton'], function (require, datetime, itemHelper, events, browser, imageLoader, layoutManager, playbackManager, nowPlayingHelper, appHost, dom, connectionManager) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playback/brightnessosd.js b/src/bower_components/emby-webcomponents/playback/brightnessosd.js index 4885d2e4e1..1797463f29 100644 --- a/src/bower_components/emby-webcomponents/playback/brightnessosd.js +++ b/src/bower_components/emby-webcomponents/playback/brightnessosd.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { +define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playback/iconosd.css b/src/bower_components/emby-webcomponents/playback/iconosd.css index 3d0c8e5805..b2c4fca91a 100644 --- a/src/bower_components/emby-webcomponents/playback/iconosd.css +++ b/src/bower_components/emby-webcomponents/playback/iconosd.css @@ -1,4 +1,4 @@ -.iconOsd { +.iconOsd { position: fixed; top: 7%; right: 3%; diff --git a/src/bower_components/emby-webcomponents/playback/mediasession.js b/src/bower_components/emby-webcomponents/playback/mediasession.js index 8198a95520..8e2f7d0c01 100644 --- a/src/bower_components/emby-webcomponents/playback/mediasession.js +++ b/src/bower_components/emby-webcomponents/playback/mediasession.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], function (playbackManager, nowPlayingHelper, events, connectionManager) { +define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], function (playbackManager, nowPlayingHelper, events, connectionManager) { "use strict"; // Reports media playback to the device for lock screen control diff --git a/src/bower_components/emby-webcomponents/playback/playbackmanager.js b/src/bower_components/emby-webcomponents/playback/playbackmanager.js index db70313ca0..5521b06452 100644 --- a/src/bower_components/emby-webcomponents/playback/playbackmanager.js +++ b/src/bower_components/emby-webcomponents/playback/playbackmanager.js @@ -1,4 +1,4 @@ -define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'playQueueManager', 'userSettings', 'globalize', 'connectionManager', 'loading', 'apphost', 'fullscreenManager'], function (events, datetime, appSettings, itemHelper, pluginManager, PlayQueueManager, userSettings, globalize, connectionManager, loading, apphost, fullscreenManager) { +define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'playQueueManager', 'userSettings', 'globalize', 'connectionManager', 'loading', 'apphost', 'fullscreenManager'], function (events, datetime, appSettings, itemHelper, pluginManager, PlayQueueManager, userSettings, globalize, connectionManager, loading, apphost, fullscreenManager) { 'use strict'; function enableLocalPlaylistManagement(player) { diff --git a/src/bower_components/emby-webcomponents/playback/playbackorientation.js b/src/bower_components/emby-webcomponents/playback/playbackorientation.js index 30997dbdac..731d9c3c42 100644 --- a/src/bower_components/emby-webcomponents/playback/playbackorientation.js +++ b/src/bower_components/emby-webcomponents/playback/playbackorientation.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'layoutManager', 'events'], function (playbackManager, layoutManager, events) { +define(['playbackManager', 'layoutManager', 'events'], function (playbackManager, layoutManager, events) { "use strict"; var orientationLocked; diff --git a/src/bower_components/emby-webcomponents/playback/playerselection.js b/src/bower_components/emby-webcomponents/playback/playerselection.js index 86a0b9daab..ef7332d04b 100644 --- a/src/bower_components/emby-webcomponents/playback/playerselection.js +++ b/src/bower_components/emby-webcomponents/playback/playerselection.js @@ -1,4 +1,4 @@ -define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRouter', 'globalize', 'apphost'], function (appSettings, events, browser, loading, playbackManager, appRouter, globalize, appHost) { +define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRouter', 'globalize', 'apphost'], function (appSettings, events, browser, loading, playbackManager, appRouter, globalize, appHost) { 'use strict'; function mirrorItem(info, player) { diff --git a/src/bower_components/emby-webcomponents/playback/playmethodhelper.js b/src/bower_components/emby-webcomponents/playback/playmethodhelper.js index 2caae0d4cc..58458aa399 100644 --- a/src/bower_components/emby-webcomponents/playback/playmethodhelper.js +++ b/src/bower_components/emby-webcomponents/playback/playmethodhelper.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function getDisplayPlayMethod(session) { diff --git a/src/bower_components/emby-webcomponents/playback/playqueuemanager.js b/src/bower_components/emby-webcomponents/playback/playqueuemanager.js index a804af0ec5..2cbaf1d9f4 100644 --- a/src/bower_components/emby-webcomponents/playback/playqueuemanager.js +++ b/src/bower_components/emby-webcomponents/playback/playqueuemanager.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; var currentId = 0; diff --git a/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js b/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js index 5fecf48537..d8316b87ef 100644 --- a/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js +++ b/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager'], function (events, playbackManager) { +define(['events', 'playbackManager'], function (events, playbackManager) { 'use strict'; function transferPlayback(oldPlayer, newPlayer) { diff --git a/src/bower_components/emby-webcomponents/playback/volumeosd.js b/src/bower_components/emby-webcomponents/playback/volumeosd.js index c967a34fe2..c7a3438d54 100644 --- a/src/bower_components/emby-webcomponents/playback/volumeosd.js +++ b/src/bower_components/emby-webcomponents/playback/volumeosd.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { +define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html b/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html index b0e716358f..046c9da5d1 100644 --- a/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html +++ b/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html @@ -1,4 +1,4 @@ - +

diff --git a/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js b/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js index a2fd9a1a33..9d89dc7f40 100644 --- a/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js +++ b/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js @@ -1,4 +1,4 @@ -define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager', 'connectionManager', 'userSettings', 'appRouter', 'globalize', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, playbackManager, connectionManager, userSettings, appRouter, globalize) { +define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager', 'connectionManager', 'userSettings', 'appRouter', 'globalize', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, playbackManager, connectionManager, userSettings, appRouter, globalize) { 'use strict'; var currentServerId; diff --git a/src/bower_components/emby-webcomponents/polyfills/objectassign.js b/src/bower_components/emby-webcomponents/polyfills/objectassign.js index 79568f8cba..2ea96b188d 100644 --- a/src/bower_components/emby-webcomponents/polyfills/objectassign.js +++ b/src/bower_components/emby-webcomponents/polyfills/objectassign.js @@ -1,4 +1,4 @@ -if (typeof Object.assign != 'function') { +if (typeof Object.assign != 'function') { (function () { Object.assign = function (target) { 'use strict'; diff --git a/src/bower_components/emby-webcomponents/polyfills/raf.js b/src/bower_components/emby-webcomponents/polyfills/raf.js index a856f6a76a..2c7c433329 100644 --- a/src/bower_components/emby-webcomponents/polyfills/raf.js +++ b/src/bower_components/emby-webcomponents/polyfills/raf.js @@ -1,4 +1,4 @@ -// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel diff --git a/src/bower_components/emby-webcomponents/prompt/prompt.template.html b/src/bower_components/emby-webcomponents/prompt/prompt.template.html index 0438381c30..200c98b116 100644 --- a/src/bower_components/emby-webcomponents/prompt/prompt.template.html +++ b/src/bower_components/emby-webcomponents/prompt/prompt.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-webcomponents/qualityoptions.js b/src/bower_components/emby-webcomponents/qualityoptions.js index df88f0fac8..1cc215ef8a 100644 --- a/src/bower_components/emby-webcomponents/qualityoptions.js +++ b/src/bower_components/emby-webcomponents/qualityoptions.js @@ -1,4 +1,4 @@ -define(['globalize'], function (globalize) { +define(['globalize'], function (globalize) { 'use strict'; function getVideoQualityOptions(options) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js index 93c4c13abc..ef4645e6bb 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js @@ -1,4 +1,4 @@ -define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper, events, registrationServices) { +define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper, events, registrationServices) { 'use strict'; function onRecordingButtonClick(e) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js index 2821946b6a..550f0240c9 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'events', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields, events) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'events', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields, events) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html index de1f2f35ce..386aa149cc 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html @@ -1,4 +1,4 @@ -
+

diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js index 4082e56d27..2da8b3389e 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'scrollStyles', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'scrollStyles', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html index 6e36de2e49..e36dda3f57 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderRecordingOptions} diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js index fd4b2c288a..48d725b09e 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js @@ -1,4 +1,4 @@ -define(['globalize', 'connectionManager', 'serverNotifications', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields', 'flexStyles'], function (globalize, connectionManager, serverNotifications, require, loading, appHost, dom, recordingHelper, events, registrationServices) { +define(['globalize', 'connectionManager', 'serverNotifications', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields', 'flexStyles'], function (globalize, connectionManager, serverNotifications, require, loading, appHost, dom, recordingHelper, events, registrationServices) { 'use strict'; function getRegistration(apiClient, feature) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html index f07db7294b..4e4fb4878b 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html @@ -1,4 +1,4 @@ -
+

${HeaderConvertYourRecordings}

${PromoConvertRecordingsToStreamingFormat}

diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js b/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js index 363111a9a9..67bb503c47 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js @@ -1,4 +1,4 @@ -define(['globalize', 'loading', 'connectionManager', 'registrationServices'], function (globalize, loading, connectionManager, registrationServices) { +define(['globalize', 'loading', 'connectionManager', 'registrationServices'], function (globalize, loading, connectionManager, registrationServices) { 'use strict'; function changeRecordingToSeries(apiClient, timerId, programId, confirmTimerCancellation) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js index bb92877fc4..c037d20f51 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-checkbox', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-checkbox', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html index 0460546a76..54133ebbbb 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderSeriesOptions} diff --git a/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js b/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js index 2165960d78..caa56d043a 100644 --- a/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js +++ b/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js @@ -1,4 +1,4 @@ -define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, connectionManager, appRouter, globalize) { +define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, connectionManager, appRouter, globalize) { 'use strict'; function parentWithClass(elem, className) { diff --git a/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js b/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js index e753054a16..f5b4094213 100644 --- a/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js +++ b/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js @@ -1,4 +1,4 @@ -define(['appSettings', 'loading', 'apphost', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, events, shell, globalize, dialogHelper, connectionManager, layoutManager) { +define(['appSettings', 'loading', 'apphost', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, events, shell, globalize, dialogHelper, connectionManager, layoutManager) { 'use strict'; function validateFeature(feature, options) { diff --git a/src/bower_components/emby-webcomponents/sanitizefilename.js b/src/bower_components/emby-webcomponents/sanitizefilename.js index fbc387836b..843ab31f04 100644 --- a/src/bower_components/emby-webcomponents/sanitizefilename.js +++ b/src/bower_components/emby-webcomponents/sanitizefilename.js @@ -1,4 +1,4 @@ -// From https://github.com/parshap/node-sanitize-filename +// From https://github.com/parshap/node-sanitize-filename define([], function () { 'use strict'; diff --git a/src/bower_components/emby-webcomponents/search/searchfields.css b/src/bower_components/emby-webcomponents/search/searchfields.css index 4dea76771b..01981ed998 100644 --- a/src/bower_components/emby-webcomponents/search/searchfields.css +++ b/src/bower_components/emby-webcomponents/search/searchfields.css @@ -1,4 +1,4 @@ -.searchFieldsInner { +.searchFieldsInner { max-width: 60em; margin: 0 auto; } diff --git a/src/bower_components/emby-webcomponents/search/searchfields.js b/src/bower_components/emby-webcomponents/search/searchfields.js index 7468dffbd9..dc6af32ffe 100644 --- a/src/bower_components/emby-webcomponents/search/searchfields.js +++ b/src/bower_components/emby-webcomponents/search/searchfields.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'globalize', 'require', 'events', 'browser', 'alphaPicker', 'emby-input', 'flexStyles', 'material-icons', 'css!./searchfields'], function (layoutManager, globalize, require, events, browser, AlphaPicker) { +define(['layoutManager', 'globalize', 'require', 'events', 'browser', 'alphaPicker', 'emby-input', 'flexStyles', 'material-icons', 'css!./searchfields'], function (layoutManager, globalize, require, events, browser, AlphaPicker) { 'use strict'; function onSearchTimeout() { diff --git a/src/bower_components/emby-webcomponents/search/searchresults.js b/src/bower_components/emby-webcomponents/search/searchresults.js index f27c44bcd9..bac783918e 100644 --- a/src/bower_components/emby-webcomponents/search/searchresults.js +++ b/src/bower_components/emby-webcomponents/search/searchresults.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'globalize', 'require', 'events', 'connectionManager', 'cardBuilder', 'appRouter', 'emby-scroller', 'emby-itemscontainer', 'emby-linkbutton'], function (layoutManager, globalize, require, events, connectionManager, cardBuilder, appRouter) { +define(['layoutManager', 'globalize', 'require', 'events', 'connectionManager', 'cardBuilder', 'appRouter', 'emby-scroller', 'emby-itemscontainer', 'emby-linkbutton'], function (layoutManager, globalize, require, events, connectionManager, cardBuilder, appRouter) { 'use strict'; function loadSuggestions(instance, context, apiClient) { diff --git a/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js b/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js index 70747ee804..9f08d4a43c 100644 --- a/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js +++ b/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js @@ -1,4 +1,4 @@ -define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { 'use strict'; var currentApiClient; diff --git a/src/bower_components/emby-webcomponents/sessionplayer.js b/src/bower_components/emby-webcomponents/sessionplayer.js index 0b6aa0e54d..adcaab2674 100644 --- a/src/bower_components/emby-webcomponents/sessionplayer.js +++ b/src/bower_components/emby-webcomponents/sessionplayer.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'events', 'serverNotifications', 'connectionManager'], function (playbackManager, events, serverNotifications, connectionManager) { +define(['playbackManager', 'events', 'serverNotifications', 'connectionManager'], function (playbackManager, events, serverNotifications, connectionManager) { 'use strict'; function getActivePlayerId() { diff --git a/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js b/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js index 2dd08cf481..95a0b85761 100644 --- a/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js +++ b/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js @@ -1,4 +1,4 @@ -define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'globalize', 'userSettings', 'emby-select', 'paper-icon-button-light', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, layoutManager, connectionManager, globalize, userSettings) { +define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'globalize', 'userSettings', 'emby-select', 'paper-icon-button-light', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, layoutManager, connectionManager, globalize, userSettings) { 'use strict'; function onSubmit(e) { diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css index c805f54a2c..a97b20b38a 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css @@ -1,3 +1,3 @@ -.originalSubtitleFileLabel { +.originalSubtitleFileLabel { margin-right: 1em; } \ No newline at end of file diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js index 4f5047989d..14cb58a80f 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'require', 'layoutManager', 'globalize', 'userSettings', 'connectionManager', 'loading', 'focusManager', 'dom', 'apphost', 'emby-select', 'listViewStyle', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'css!./subtitleeditor', 'emby-button', 'flexStyles'], function (dialogHelper, require, layoutManager, globalize, userSettings, connectionManager, loading, focusManager, dom, appHost) { +define(['dialogHelper', 'require', 'layoutManager', 'globalize', 'userSettings', 'connectionManager', 'loading', 'focusManager', 'dom', 'apphost', 'emby-select', 'listViewStyle', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'css!./subtitleeditor', 'emby-button', 'flexStyles'], function (dialogHelper, require, layoutManager, globalize, userSettings, connectionManager, loading, focusManager, dom, appHost) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html index b975f059b7..9338a3823a 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html @@ -1,4 +1,4 @@ -
+

${Subtitles}

diff --git a/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html b/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html index f6d01c8252..f6fae59ecf 100644 --- a/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html +++ b/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html @@ -1,4 +1,4 @@ - +
diff --git a/src/bower_components/emby-webcomponents/sync/sync.js b/src/bower_components/emby-webcomponents/sync/sync.js index c57fc5255a..0271775ec8 100644 --- a/src/bower_components/emby-webcomponents/sync/sync.js +++ b/src/bower_components/emby-webcomponents/sync/sync.js @@ -1,4 +1,4 @@ -define(['apphost', 'globalize', 'connectionManager', 'layoutManager', 'focusManager', 'scrollHelper', 'appSettings', 'registrationServices', 'dialogHelper', 'paper-icon-button-light', 'formDialogStyle'], function (appHost, globalize, connectionManager, layoutManager, focusManager, scrollHelper, appSettings, registrationServices, dialogHelper) { +define(['apphost', 'globalize', 'connectionManager', 'layoutManager', 'focusManager', 'scrollHelper', 'appSettings', 'registrationServices', 'dialogHelper', 'paper-icon-button-light', 'formDialogStyle'], function (appHost, globalize, connectionManager, layoutManager, focusManager, scrollHelper, appSettings, registrationServices, dialogHelper) { 'use strict'; var currentDialogOptions; diff --git a/src/bower_components/emby-webcomponents/sync/syncjobeditor.js b/src/bower_components/emby-webcomponents/sync/syncjobeditor.js index 7a23490ce2..a4666bab72 100644 --- a/src/bower_components/emby-webcomponents/sync/syncjobeditor.js +++ b/src/bower_components/emby-webcomponents/sync/syncjobeditor.js @@ -1,4 +1,4 @@ -define(['connectionManager', 'serverNotifications', 'events', 'datetime', 'dom', 'imageLoader', 'loading', 'globalize', 'apphost', 'layoutManager', 'scrollHelper', 'dialogHelper', 'listViewStyle', 'paper-icon-button-light', 'emby-button', 'formDialogStyle', 'emby-linkbutton'], function (connectionManager, serverNotifications, events, datetime, dom, imageLoader, loading, globalize, appHost, layoutManager, scrollHelper, dialogHelper) { +define(['connectionManager', 'serverNotifications', 'events', 'datetime', 'dom', 'imageLoader', 'loading', 'globalize', 'apphost', 'layoutManager', 'scrollHelper', 'dialogHelper', 'listViewStyle', 'paper-icon-button-light', 'emby-button', 'formDialogStyle', 'emby-linkbutton'], function (connectionManager, serverNotifications, events, datetime, dom, imageLoader, loading, globalize, appHost, layoutManager, scrollHelper, dialogHelper) { 'use strict'; function syncNow() { diff --git a/src/bower_components/emby-webcomponents/sync/syncjoblist.js b/src/bower_components/emby-webcomponents/sync/syncjoblist.js index 5deaf6ddb9..9ae477fb50 100644 --- a/src/bower_components/emby-webcomponents/sync/syncjoblist.js +++ b/src/bower_components/emby-webcomponents/sync/syncjoblist.js @@ -1,4 +1,4 @@ -define(['serverNotifications', 'events', 'loading', 'connectionManager', 'imageLoader', 'dom', 'globalize', 'registrationServices', 'layoutManager', 'listViewStyle'], function (serverNotifications, events, loading, connectionManager, imageLoader, dom, globalize, registrationServices, layoutManager) { +define(['serverNotifications', 'events', 'loading', 'connectionManager', 'imageLoader', 'dom', 'globalize', 'registrationServices', 'layoutManager', 'listViewStyle'], function (serverNotifications, events, loading, connectionManager, imageLoader, dom, globalize, registrationServices, layoutManager) { 'use strict'; function onSyncJobCreated(e, apiClient, data) { diff --git a/src/bower_components/emby-webcomponents/tabbedview/itemstab.js b/src/bower_components/emby-webcomponents/tabbedview/itemstab.js index ff394a17c7..395853bbd9 100644 --- a/src/bower_components/emby-webcomponents/tabbedview/itemstab.js +++ b/src/bower_components/emby-webcomponents/tabbedview/itemstab.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'userSettings', 'alphaPicker', 'alphaNumericShortcuts', 'connectionManager', 'focusManager', 'loading', 'globalize'], function (playbackManager, userSettings, AlphaPicker, AlphaNumericShortcuts, connectionManager, focusManager, loading, globalize) { +define(['playbackManager', 'userSettings', 'alphaPicker', 'alphaNumericShortcuts', 'connectionManager', 'focusManager', 'loading', 'globalize'], function (playbackManager, userSettings, AlphaPicker, AlphaNumericShortcuts, connectionManager, focusManager, loading, globalize) { 'use strict'; function trySelectValue(instance, scroller, view, value) { diff --git a/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.css b/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.css index a2aec60650..548eca9804 100644 --- a/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.css +++ b/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.css @@ -1,4 +1,4 @@ -.upNextDialog { +.upNextDialog { position: fixed; left: 0; bottom: 0; diff --git a/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.js b/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.js index 4791ab179f..5aef5dbfc4 100644 --- a/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.js +++ b/src/bower_components/emby-webcomponents/upnextdialog/upnextdialog.js @@ -1,4 +1,4 @@ -define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'layoutManager', 'focusManager', 'globalize', 'itemHelper', 'css!./upnextdialog', 'emby-button', 'flexStyles'], function (dom, playbackManager, connectionManager, events, mediaInfo, layoutManager, focusManager, globalize, itemHelper) { +define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'layoutManager', 'focusManager', 'globalize', 'itemHelper', 'css!./upnextdialog', 'emby-button', 'flexStyles'], function (dom, playbackManager, connectionManager, events, mediaInfo, layoutManager, focusManager, globalize, itemHelper) { 'use strict'; var transitionEndEventName = dom.whichTransitionEvent(); diff --git a/src/bower_components/emby-webcomponents/viewsettings/viewsettings.js b/src/bower_components/emby-webcomponents/viewsettings/viewsettings.js index 7600932036..c19c635135 100644 --- a/src/bower_components/emby-webcomponents/viewsettings/viewsettings.js +++ b/src/bower_components/emby-webcomponents/viewsettings/viewsettings.js @@ -1,4 +1,4 @@ -define(['require', 'dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize, userSettings) { +define(['require', 'dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize, userSettings) { 'use strict'; function onSubmit(e) { diff --git a/src/bower_components/emby-webcomponents/visibleinviewport.js b/src/bower_components/emby-webcomponents/visibleinviewport.js index 5f6064ff96..23a2a9d73c 100644 --- a/src/bower_components/emby-webcomponents/visibleinviewport.js +++ b/src/bower_components/emby-webcomponents/visibleinviewport.js @@ -1,4 +1,4 @@ -define(['dom'], function (dom) { +define(['dom'], function (dom) { 'use strict'; /** diff --git a/src/components/accessschedule/accessschedule.template.html b/src/components/accessschedule/accessschedule.template.html index 5abdc0f24b..8c01d35962 100644 --- a/src/components/accessschedule/accessschedule.template.html +++ b/src/components/accessschedule/accessschedule.template.html @@ -1,4 +1,4 @@ -
+

${HeaderAccessSchedule} diff --git a/src/components/guestinviter/guestinviter.template.html b/src/components/guestinviter/guestinviter.template.html index b5f30e1474..0c4ea3914f 100644 --- a/src/components/guestinviter/guestinviter.template.html +++ b/src/components/guestinviter/guestinviter.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/components/imageoptionseditor/imageoptionseditor.template.html b/src/components/imageoptionseditor/imageoptionseditor.template.html index 165539af94..a247c773e7 100644 --- a/src/components/imageoptionseditor/imageoptionseditor.template.html +++ b/src/components/imageoptionseditor/imageoptionseditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderImageOptions} diff --git a/src/components/libraryoptionseditor/libraryoptionseditor.template.html b/src/components/libraryoptionseditor/libraryoptionseditor.template.html index 72506a7579..8a53ee556b 100644 --- a/src/components/libraryoptionseditor/libraryoptionseditor.template.html +++ b/src/components/libraryoptionseditor/libraryoptionseditor.template.html @@ -1,4 +1,4 @@ -