From 3df668718f7bb27a2997f0bf8860c288ebd4cf3c Mon Sep 17 00:00:00 2001 From: GabrielDuf Date: Fri, 22 May 2026 09:57:38 -0400 Subject: [PATCH 1/3] add missing translation in the context menu --- .../SoftwarePages/DiscoverSoftwarePage.cs | 14 +++++------ .../SoftwarePages/InstalledPackagesPage.cs | 22 ++++++++--------- .../Views/SoftwarePages/PackageBundlesPage.cs | 16 ++++++------- .../SoftwarePages/SoftwareUpdatesPage.cs | 24 +++++++++---------- 4 files changed, 38 insertions(+), 38 deletions(-) diff --git a/src/UniGetUI.Avalonia/Views/SoftwarePages/DiscoverSoftwarePage.cs b/src/UniGetUI.Avalonia/Views/SoftwarePages/DiscoverSoftwarePage.cs index 87e0285c2e..538d8f2c38 100644 --- a/src/UniGetUI.Avalonia/Views/SoftwarePages/DiscoverSoftwarePage.cs +++ b/src/UniGetUI.Avalonia/Views/SoftwarePages/DiscoverSoftwarePage.cs @@ -85,7 +85,7 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) { _menuAsAdmin = new MenuItem { - Header = CoreTools.AutoTranslated("Install as administrator"), + Header = CoreTools.Translate("Install as administrator"), Icon = LoadMenuIcon("uac"), IsVisible = OperatingSystem.IsWindows(), }; @@ -93,33 +93,33 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) _menuInteractive = new MenuItem { - Header = CoreTools.AutoTranslated("Interactive installation"), + Header = CoreTools.Translate("Interactive installation"), Icon = LoadMenuIcon("interactive"), }; _menuInteractive.Click += (_, _) => _ = LaunchInstall([SelectedItem!], interactive: true); _menuSkipHash = new MenuItem { - Header = CoreTools.AutoTranslated("Skip hash check"), + Header = CoreTools.Translate("Skip hash check"), Icon = LoadMenuIcon("checksum"), }; _menuSkipHash.Click += (_, _) => _ = LaunchInstall([SelectedItem!], no_integrity: true); _menuDownloadInstaller = new MenuItem { - Header = CoreTools.AutoTranslated("Download installer"), + Header = CoreTools.Translate("Download installer"), Icon = LoadMenuIcon("download"), }; _menuDownloadInstaller.Click += (_, _) => _ = AvaloniaPackageOperationHelper.AskLocationAndDownloadAsync( SelectedItem, TEL_InstallReferral.DIRECT_SEARCH); - var menuInstall = new MenuItem { Header = CoreTools.AutoTranslated("Install"), Icon = LoadMenuIcon("download") }; + var menuInstall = new MenuItem { Header = CoreTools.Translate("Install"), Icon = LoadMenuIcon("download") }; menuInstall.Click += (_, _) => _ = LaunchInstall([SelectedItem!]); - var menuInstallOptions = new MenuItem { Header = CoreTools.AutoTranslated("Install options"), Icon = LoadMenuIcon("options") }; + var menuInstallOptions = new MenuItem { Header = CoreTools.Translate("Install options"), Icon = LoadMenuIcon("options") }; menuInstallOptions.Click += (_, _) => _ = ShowInstallationOptionsForPackage(SelectedItem); - var menuDetails = new MenuItem { Header = CoreTools.AutoTranslated("Package details"), Icon = LoadMenuIcon("info_round") }; + var menuDetails = new MenuItem { Header = CoreTools.Translate("Package details"), Icon = LoadMenuIcon("info_round") }; menuDetails.Click += (_, _) => _ = ShowDetailsForPackage(SelectedItem); var menu = new ContextMenu(); diff --git a/src/UniGetUI.Avalonia/Views/SoftwarePages/InstalledPackagesPage.cs b/src/UniGetUI.Avalonia/Views/SoftwarePages/InstalledPackagesPage.cs index 72198f1b1d..e1d378c413 100644 --- a/src/UniGetUI.Avalonia/Views/SoftwarePages/InstalledPackagesPage.cs +++ b/src/UniGetUI.Avalonia/Views/SoftwarePages/InstalledPackagesPage.cs @@ -131,28 +131,28 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) { var menuUninstall = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall"), + Header = CoreTools.Translate("Uninstall"), Icon = LoadMenuIcon("delete"), }; menuUninstall.Click += (_, _) => _ = LaunchUninstall([SelectedItem!]); _menuInstallationOptions = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall options"), + Header = CoreTools.Translate("Uninstall options"), Icon = LoadMenuIcon("options"), }; _menuInstallationOptions.Click += (_, _) => _ = ShowInstallationOptionsForPackage(SelectedItem); _menuOpenInstallLocation = new MenuItem { - Header = CoreTools.AutoTranslated("Open install location"), + Header = CoreTools.Translate("Open install location"), Icon = LoadMenuIcon("launch"), }; _menuOpenInstallLocation.Click += (_, _) => OpenInstallLocation(SelectedItem); _menuAsAdmin = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall as administrator"), + Header = CoreTools.Translate("Uninstall as administrator"), Icon = LoadMenuIcon("uac"), IsVisible = OperatingSystem.IsWindows(), }; @@ -160,21 +160,21 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) _menuInteractive = new MenuItem { - Header = CoreTools.AutoTranslated("Interactive uninstall"), + Header = CoreTools.Translate("Interactive uninstall"), Icon = LoadMenuIcon("interactive"), }; _menuInteractive.Click += (_, _) => _ = LaunchUninstall([SelectedItem!], interactive: true); _menuRemoveData = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall and remove data"), + Header = CoreTools.Translate("Uninstall and remove data"), Icon = LoadMenuIcon("close_round"), }; _menuRemoveData.Click += (_, _) => _ = LaunchUninstall([SelectedItem!], remove_data: true); _menuDownloadInstaller = new MenuItem { - Header = CoreTools.AutoTranslated("Download installer"), + Header = CoreTools.Translate("Download installer"), Icon = LoadMenuIcon("download"), }; _menuDownloadInstaller.Click += (_, _) => _ = AvaloniaPackageOperationHelper.AskLocationAndDownloadAsync( @@ -182,28 +182,28 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) _menuReinstall = new MenuItem { - Header = CoreTools.AutoTranslated("Reinstall package"), + Header = CoreTools.Translate("Reinstall package"), Icon = LoadMenuIcon("download"), }; _menuReinstall.Click += (_, _) => _ = LaunchReinstall(SelectedItem); _menuUninstallThenReinstall = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall package, then reinstall it"), + Header = CoreTools.Translate("Uninstall package, then reinstall it"), Icon = LoadMenuIcon("undelete"), }; _menuUninstallThenReinstall.Click += (_, _) => _ = LaunchUninstallThenReinstall(SelectedItem); _menuIgnoreUpdates = new MenuItem { - Header = CoreTools.AutoTranslated("Ignore updates for this package"), + Header = CoreTools.Translate("Ignore updates for this package"), Icon = LoadMenuIcon("pin"), }; _menuIgnoreUpdates.Click += (_, _) => _ = ToggleIgnoreUpdatesAsync(SelectedItem); _menuDetails = new MenuItem { - Header = CoreTools.AutoTranslated("Package details"), + Header = CoreTools.Translate("Package details"), Icon = LoadMenuIcon("info_round"), }; _menuDetails.Click += (_, _) => _ = ShowDetailsForPackage(SelectedItem); diff --git a/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs b/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs index 18a2f2860c..c7c6b17619 100644 --- a/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs +++ b/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs @@ -127,10 +127,10 @@ private static IReadOnlyList GetCheckedNonInstalledPackages(PackagesPa // ─── Context menu ───────────────────────────────────────────────────────── protected override ContextMenu? GenerateContextMenu() { - _menuInstall = new MenuItem { Header = CoreTools.AutoTranslated("Install"), Icon = LoadMenuIcon("download") }; + _menuInstall = new MenuItem { Header = CoreTools.Translate("Install"), Icon = LoadMenuIcon("download") }; _menuInstall.Click += (_, _) => _ = ImportAndInstallPackage(SelectedItem is { } p ? [p] : []); - _menuInstallOptions = new MenuItem { Header = CoreTools.AutoTranslated("Install options"), Icon = LoadMenuIcon("options") }; + _menuInstallOptions = new MenuItem { Header = CoreTools.Translate("Install options"), Icon = LoadMenuIcon("options") }; _menuInstallOptions.Click += (_, _) => { if (SelectedItem is ImportedPackage imported) @@ -140,20 +140,20 @@ private static IReadOnlyList GetCheckedNonInstalledPackages(PackagesPa } }; - _menuAsAdmin = new MenuItem { Header = CoreTools.AutoTranslated("Install as administrator"), Icon = LoadMenuIcon("uac"), IsVisible = OperatingSystem.IsWindows() }; + _menuAsAdmin = new MenuItem { Header = CoreTools.Translate("Install as administrator"), Icon = LoadMenuIcon("uac"), IsVisible = OperatingSystem.IsWindows() }; _menuAsAdmin.Click += (_, _) => _ = ImportAndInstallPackage(SelectedItem is { } p ? [p] : [], elevated: true); - _menuInteractive = new MenuItem { Header = CoreTools.AutoTranslated("Interactive installation"), Icon = LoadMenuIcon("interactive") }; + _menuInteractive = new MenuItem { Header = CoreTools.Translate("Interactive installation"), Icon = LoadMenuIcon("interactive") }; _menuInteractive.Click += (_, _) => _ = ImportAndInstallPackage(SelectedItem is { } p ? [p] : [], interactive: true); - _menuSkipHash = new MenuItem { Header = CoreTools.AutoTranslated("Skip hash checks"), Icon = LoadMenuIcon("checksum") }; + _menuSkipHash = new MenuItem { Header = CoreTools.Translate("Skip hash checks"), Icon = LoadMenuIcon("checksum") }; _menuSkipHash.Click += (_, _) => _ = ImportAndInstallPackage(SelectedItem is { } p ? [p] : [], skiphash: true); - _menuDownloadInstaller = new MenuItem { Header = CoreTools.AutoTranslated("Download installer"), Icon = LoadMenuIcon("download") }; + _menuDownloadInstaller = new MenuItem { Header = CoreTools.Translate("Download installer"), Icon = LoadMenuIcon("download") }; _menuDownloadInstaller.Click += (_, _) => _ = AvaloniaPackageOperationHelper.AskLocationAndDownloadAsync( SelectedItem, TEL_InstallReferral.FROM_BUNDLE); - var menuRemoveFromList = new MenuItem { Header = CoreTools.AutoTranslated("Remove from list"), Icon = LoadMenuIcon("delete") }; + var menuRemoveFromList = new MenuItem { Header = CoreTools.Translate("Remove from list"), Icon = LoadMenuIcon("delete") }; menuRemoveFromList.Click += (_, _) => { if (SelectedItem is { } pkg) @@ -163,7 +163,7 @@ private static IReadOnlyList GetCheckedNonInstalledPackages(PackagesPa } }; - _menuDetails = new MenuItem { Header = CoreTools.AutoTranslated("Package details"), Icon = LoadMenuIcon("info_round") }; + _menuDetails = new MenuItem { Header = CoreTools.Translate("Package details"), Icon = LoadMenuIcon("info_round") }; _menuDetails.Click += (_, _) => _ = ShowDetailsForPackage(SelectedItem); var menu = new ContextMenu(); diff --git a/src/UniGetUI.Avalonia/Views/SoftwarePages/SoftwareUpdatesPage.cs b/src/UniGetUI.Avalonia/Views/SoftwarePages/SoftwareUpdatesPage.cs index 0ac268ae08..7bc6994c00 100644 --- a/src/UniGetUI.Avalonia/Views/SoftwarePages/SoftwareUpdatesPage.cs +++ b/src/UniGetUI.Avalonia/Views/SoftwarePages/SoftwareUpdatesPage.cs @@ -109,28 +109,28 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) { var menuUpdate = new MenuItem { - Header = CoreTools.AutoTranslated("Update"), + Header = CoreTools.Translate("Update"), Icon = LoadMenuIcon("update"), }; menuUpdate.Click += (_, _) => _ = LaunchUpdate([SelectedItem!]); var menuUpdateOptions = new MenuItem { - Header = CoreTools.AutoTranslated("Update options"), + Header = CoreTools.Translate("Update options"), Icon = LoadMenuIcon("options"), }; menuUpdateOptions.Click += (_, _) => _ = ShowInstallationOptionsForPackage(SelectedItem); _menuOpenInstallLocation = new MenuItem { - Header = CoreTools.AutoTranslated("Open install location"), + Header = CoreTools.Translate("Open install location"), Icon = LoadMenuIcon("launch"), }; _menuOpenInstallLocation.Click += (_, _) => OpenInstallLocation(SelectedItem); _menuAsAdmin = new MenuItem { - Header = CoreTools.AutoTranslated("Update as administrator"), + Header = CoreTools.Translate("Update as administrator"), Icon = LoadMenuIcon("uac"), IsVisible = OperatingSystem.IsWindows(), }; @@ -138,21 +138,21 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) _menuInteractive = new MenuItem { - Header = CoreTools.AutoTranslated("Interactive update"), + Header = CoreTools.Translate("Interactive update"), Icon = LoadMenuIcon("interactive"), }; _menuInteractive.Click += (_, _) => _ = LaunchUpdate([SelectedItem!], interactive: true); _menuSkipHash = new MenuItem { - Header = CoreTools.AutoTranslated("Skip hash check"), + Header = CoreTools.Translate("Skip hash check"), Icon = LoadMenuIcon("checksum"), }; _menuSkipHash.Click += (_, _) => _ = LaunchUpdate([SelectedItem!], no_integrity: true); _menuDownloadInstaller = new MenuItem { - Header = CoreTools.AutoTranslated("Download installer"), + Header = CoreTools.Translate("Download installer"), Icon = LoadMenuIcon("download"), }; _menuDownloadInstaller.Click += (_, _) => _ = AvaloniaPackageOperationHelper.AskLocationAndDownloadAsync( @@ -160,21 +160,21 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) var menuUninstallThenUpdate = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall package, then update it"), + Header = CoreTools.Translate("Uninstall package, then update it"), Icon = LoadMenuIcon("undelete"), }; menuUninstallThenUpdate.Click += (_, _) => _ = LaunchUninstallThenUpdate(SelectedItem); var menuUninstall = new MenuItem { - Header = CoreTools.AutoTranslated("Uninstall package"), + Header = CoreTools.Translate("Uninstall package"), Icon = LoadMenuIcon("delete"), }; menuUninstall.Click += (_, _) => _ = LaunchUninstallFromUpdates([SelectedItem!]); var menuIgnore = new MenuItem { - Header = CoreTools.AutoTranslated("Ignore updates for this package"), + Header = CoreTools.Translate("Ignore updates for this package"), Icon = LoadMenuIcon("pin"), }; menuIgnore.Click += (_, _) => @@ -188,7 +188,7 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) var menuSkipVersion = new MenuItem { - Header = CoreTools.AutoTranslated("Skip this version"), + Header = CoreTools.Translate("Skip this version"), Icon = LoadMenuIcon("skip"), }; menuSkipVersion.Click += (_, _) => @@ -233,7 +233,7 @@ protected override void GenerateToolBar(PackagesPageViewModel vm) var menuDetails = new MenuItem { - Header = CoreTools.AutoTranslated("Package details"), + Header = CoreTools.Translate("Package details"), Icon = LoadMenuIcon("info_round"), }; menuDetails.Click += (_, _) => _ = ShowDetailsForPackage(SelectedItem); From 5017965ec39402eba2dc3881cfa7eb58630b63fa Mon Sep 17 00:00:00 2001 From: GabrielDuf Date: Fri, 22 May 2026 10:56:01 -0400 Subject: [PATCH 2/3] add missing translations for Partial release-date support --- src/Languages/lang_af.json | 2 ++ src/Languages/lang_ar.json | 2 ++ src/Languages/lang_be.json | 2 ++ src/Languages/lang_bg.json | 2 ++ src/Languages/lang_bn.json | 2 ++ src/Languages/lang_ca.json | 2 ++ src/Languages/lang_cs.json | 2 ++ src/Languages/lang_da.json | 2 ++ src/Languages/lang_de.json | 2 ++ src/Languages/lang_el.json | 2 ++ src/Languages/lang_eo.json | 2 ++ src/Languages/lang_es-MX.json | 2 ++ src/Languages/lang_es.json | 2 ++ src/Languages/lang_et.json | 2 ++ src/Languages/lang_fa.json | 2 ++ src/Languages/lang_fi.json | 2 ++ src/Languages/lang_fil.json | 2 ++ src/Languages/lang_fr.json | 2 ++ src/Languages/lang_gl.json | 2 ++ src/Languages/lang_gu.json | 2 ++ src/Languages/lang_he.json | 2 ++ src/Languages/lang_hi.json | 2 ++ src/Languages/lang_hr.json | 2 ++ src/Languages/lang_hu.json | 2 ++ src/Languages/lang_id.json | 2 ++ src/Languages/lang_it.json | 2 ++ src/Languages/lang_ja.json | 2 ++ src/Languages/lang_ka.json | 2 ++ src/Languages/lang_kn.json | 2 ++ src/Languages/lang_ko.json | 2 ++ src/Languages/lang_ku.json | 2 ++ src/Languages/lang_lt.json | 2 ++ src/Languages/lang_mk.json | 2 ++ src/Languages/lang_mr.json | 2 ++ src/Languages/lang_nb.json | 2 ++ src/Languages/lang_nl.json | 2 ++ src/Languages/lang_nn.json | 2 ++ src/Languages/lang_pl.json | 2 ++ src/Languages/lang_pt_BR.json | 2 ++ src/Languages/lang_pt_PT.json | 2 ++ src/Languages/lang_ro.json | 2 ++ src/Languages/lang_ru.json | 2 ++ src/Languages/lang_sa.json | 2 ++ src/Languages/lang_si.json | 2 ++ src/Languages/lang_sk.json | 2 ++ src/Languages/lang_sl.json | 2 ++ src/Languages/lang_sq.json | 2 ++ src/Languages/lang_sr.json | 2 ++ src/Languages/lang_sv.json | 2 ++ src/Languages/lang_ta.json | 2 ++ src/Languages/lang_th.json | 2 ++ src/Languages/lang_tl.json | 2 ++ src/Languages/lang_tr.json | 2 ++ src/Languages/lang_uk.json | 2 ++ src/Languages/lang_ur.json | 2 ++ src/Languages/lang_vi.json | 2 ++ src/Languages/lang_zh_CN.json | 2 ++ src/Languages/lang_zh_TW.json | 2 ++ 58 files changed, 116 insertions(+) diff --git a/src/Languages/lang_af.json b/src/Languages/lang_af.json index 06dadde745..28bf9a7751 100644 --- a/src/Languages/lang_af.json +++ b/src/Languages/lang_af.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Wil u die volgende {0} pakkette regtig deïnstalleer?", "No": "Nee", "Yes": "Ja", + "Partial": "Gedeeltelik", "View on UniGetUI": "Kyk op UniGetUI", "Update": "Opdatering", "Open UniGetUI": "Maak UniGetUI oop", @@ -524,6 +525,7 @@ "e.g. 10": "bv. 10", "Custom minimum age (days)": "Pasgemaakte minimum ouderdom (dae)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} verskaf nie vrystellingsdatums vir sy pakkette nie, dus sal hierdie instelling geen effek hê nie", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} verskaf slegs vrystellingdatums vir sommige van sy pakkette, dus sal hierdie instelling slegs op daardie pakkette van toepassing wees", "Override the global minimum update age for this package manager": "Oorskryf die globale minimum opdateringsouderdom vir hierdie pakketbestuurder", "View {0} logs": "Bekyk {0} logs", "If Python cannot be found or is not listing packages but is installed on the system, ": "As Python nie gevind kan word nie of nie pakkette lys nie maar wel op die stelsel geïnstalleer is, ", diff --git a/src/Languages/lang_ar.json b/src/Languages/lang_ar.json index 2b14254255..f319eeadd3 100644 --- a/src/Languages/lang_ar.json +++ b/src/Languages/lang_ar.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "هل ترغب حقاً بإزالة تثبيت المصادر {0}؟ ", "No": "لا", "Yes": "نعم", + "Partial": "جزئي", "View on UniGetUI": "اعرض على UniGetUI", "Update": "تحديث", "Open UniGetUI": "فتح UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "مثلًا 10", "Custom minimum age (days)": "عمر أدنى مخصص (بالأيام)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "لا يوفّر {pm} تواريخ إصدار لحزمه، لذا لن يكون لهذا الإعداد أي تأثير", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "يقدّم {pm} تواريخ إصدار لبعض حِزَمه فقط، لذا سيُطبَّق هذا الإعداد على تلك الحِزَم فحسب", "Override the global minimum update age for this package manager": "تجاوز الحد الأدنى العام لعمر التحديثات لهذا مدير الحزم", "View {0} logs": "إظهار {0} سجل", "If Python cannot be found or is not listing packages but is installed on the system, ": "إذا تعذر العثور على Python أو لم يكن يعرض الحزم رغم أنه مثبت على النظام، ", diff --git a/src/Languages/lang_be.json b/src/Languages/lang_be.json index 1144cec429..dbd32d6794 100644 --- a/src/Languages/lang_be.json +++ b/src/Languages/lang_be.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Выдаліць наступныя {0} пакетаў?", "No": "Не", "Yes": "Так", + "Partial": "Часткова", "View on UniGetUI": "Прагляд у UniGetUI", "Update": "Абнавіць", "Open UniGetUI": "Адкрыць UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "напрыклад, 10", "Custom minimum age (days)": "Уласны мінімальны ўзрост (у днях)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не падае даты выпуску для сваіх пакетаў, таму гэты параметр не будзе мець эфекту", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} падае даты выпуску толькі для некаторых сваіх пакетаў, таму гэтыя налады будуць ужытыя толькі да тых пакетаў", "Override the global minimum update age for this package manager": "Перавызначыць глабальны мінімальны ўзрост абнаўленняў для гэтага мэнэджара пакетаў", "View {0} logs": "Прагляд логаў {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Калі Python не ўдаецца знайсці або ён не паказвае пакеты, але ўсталяваны ў сістэме, ", diff --git a/src/Languages/lang_bg.json b/src/Languages/lang_bg.json index 371a1cd26d..0910f56d6a 100644 --- a/src/Languages/lang_bg.json +++ b/src/Languages/lang_bg.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Наистина ли искате да деинсталирате следните {0} пакети?", "No": "Не", "Yes": "Да", + "Partial": "Частично", "View on UniGetUI": "Преглед в UniGetUI", "Update": "Актуализиране", "Open UniGetUI": "Отвори UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "напр. 10", "Custom minimum age (days)": "Персонализиран минимален срок (дни)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не предоставя дати на издаване за пакетите си, така че тази настройка няма да има ефект", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} предоставя дати на издаване само за някои от пакетите си, така че тази настройка ще се прилага само за тях", "Override the global minimum update age for this package manager": "Замяна на глобалния минимален срок за актуализации за този мениджър на пакети", "View {0} logs": "Преглед на {0} лог файлове", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може да бъде намерен или не показва пакети, но е инсталиран на системата, ", diff --git a/src/Languages/lang_bn.json b/src/Languages/lang_bn.json index b369cd465a..fd63c807cc 100644 --- a/src/Languages/lang_bn.json +++ b/src/Languages/lang_bn.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "আপনি কি সত্যিই নিম্নলিখিত {0} প্যাকেজগুলি আনইনস্টল করতে চান?", "No": "না", "Yes": "হ্যাঁ", + "Partial": "আংশিক", "View on UniGetUI": "UniGetUI-তে দেখুন", "Update": "হালনাগাদ", "Open UniGetUI": "UniGetUI খুলুন", @@ -524,6 +525,7 @@ "e.g. 10": "যেমন 10", "Custom minimum age (days)": "কাস্টম ন্যূনতম বয়স (দিন)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} তার প্যাকেজগুলোর জন্য রিলিজ তারিখ দেয় না, তাই এই সেটিংটির কোনো প্রভাব হবে না", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} শুধুমাত্র এর কিছু প্যাকেজের জন্য রিলিজের তারিখ প্রদান করে, তাই এই সেটিং কেবল সেই প্যাকেজগুলোর জন্যই প্রযোজ্য হবে", "Override the global minimum update age for this package manager": "এই প্যাকেজ ম্যানেজারের জন্য গ্লোবাল ন্যূনতম আপডেট-বয়স ওভাররাইড করুন", "View {0} logs": "{0} লগ দেখুন", "If Python cannot be found or is not listing packages but is installed on the system, ": "যদি Python খুঁজে না পাওয়া যায় অথবা প্যাকেজ তালিকা না দেখায় কিন্তু সিস্টেমে ইনস্টল থাকে, ", diff --git a/src/Languages/lang_ca.json b/src/Languages/lang_ca.json index e50a0a1d51..93e5de8fb6 100644 --- a/src/Languages/lang_ca.json +++ b/src/Languages/lang_ca.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Voleu desinstal·lar els següents {0} paquets?", "No": "No", "Yes": "Sí", + "Partial": "Parcial", "View on UniGetUI": "Mostra a l'UniGetUI", "Update": "Actualitza", "Open UniGetUI": "Obre l'UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ex. 10", "Custom minimum age (days)": "Antiguitat mínima personalitzada (dies)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} no proporciona dates de llançament per als seus paquets, de manera que aquesta configuració no tindrà cap efecte", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} només proporciona dates de publicació per a alguns dels seus paquets, així que aquesta opció només s'aplicarà a aquells paquets", "Override the global minimum update age for this package manager": "Substitueix l'antiguitat mínima global de les actualitzacions per a aquest gestor de paquets", "View {0} logs": "Mostra el registre del {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Si no es troba Python o no llista paquets però està instal·lat al sistema, ", diff --git a/src/Languages/lang_cs.json b/src/Languages/lang_cs.json index ebdfb08a5c..833240a38a 100644 --- a/src/Languages/lang_cs.json +++ b/src/Languages/lang_cs.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Opravdu chceš odinstalovat následujících {0} balíčků?", "No": "Ne", "Yes": "Ano", + "Partial": "Částečně", "View on UniGetUI": "Zobrazit v UniGetUI", "Update": "Aktualizovat", "Open UniGetUI": "Otevřít UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "např. 10", "Custom minimum age (days)": "Vlastní minimální stáří (dny)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} neposkytuje data vydání svých balíčků, takže toto nastavení nebude mít žádný vliv", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} poskytuje data vydání pouze pro některé své balíčky, takže toto nastavení se bude týkat pouze těchto balíčků", "Override the global minimum update age for this package manager": "Přepsat globální minimální stáří aktualizací pro tohoto správce balíčků", "View {0} logs": "Zobrazit {0} protokoly", "If Python cannot be found or is not listing packages but is installed on the system, ": "Pokud nelze Python najít nebo nezobrazuje balíčky, ale je v systému nainstalován, ", diff --git a/src/Languages/lang_da.json b/src/Languages/lang_da.json index ee21de399a..15cdbb824b 100644 --- a/src/Languages/lang_da.json +++ b/src/Languages/lang_da.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Ønsker du virkelig at afinstallere følgende {0} pakker?", "No": "Nej", "Yes": "Ja", + "Partial": "Delvis", "View on UniGetUI": "Se på UniGetUI", "Update": "Opdatér", "Open UniGetUI": "Åbn UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "f.eks. 10", "Custom minimum age (days)": "Brugerdefineret minimumsalder (dage)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} angiver ikke udgivelsesdatoer for sine pakker, så denne indstilling har ingen effekt", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} angiver kun udgivelsesdatoer for nogle af sine pakker, så denne indstilling gælder kun for disse pakker", "Override the global minimum update age for this package manager": "Tilsidesæt den globale minimumsalder for opdateringer for denne pakkemanager", "View {0} logs": "Vis {0} logfiler", "If Python cannot be found or is not listing packages but is installed on the system, ": "Hvis Python ikke kan findes eller ikke viser pakker, men er installeret på systemet, ", diff --git a/src/Languages/lang_de.json b/src/Languages/lang_de.json index fc87af642c..4a0eef4dcd 100644 --- a/src/Languages/lang_de.json +++ b/src/Languages/lang_de.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Möchten Sie wirklich die folgenden {0} Pakete deinstallieren?", "No": "Nein", "Yes": "Ja", + "Partial": "Teilweise", "View on UniGetUI": "Auf UniGetUI ansehen", "Update": "Aktualisieren", "Open UniGetUI": "UniGetUI öffnen", @@ -524,6 +525,7 @@ "e.g. 10": "z. B. 10", "Custom minimum age (days)": "Benutzerdefiniertes Mindestalter (Tage)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} stellt keine Veröffentlichungsdaten für seine Pakete bereit, daher hat diese Einstellung keine Wirkung", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} stellt nur für einige seiner Pakete Veröffentlichungsdaten bereit, daher gilt diese Einstellung nur für diese Pakete", "Override the global minimum update age for this package manager": "Das globale Mindestalter für Updates für diesen Paketmanager überschreiben", "View {0} logs": "{0}-Protokolle anzeigen", "If Python cannot be found or is not listing packages but is installed on the system, ": "Wenn Python nicht gefunden werden kann oder keine Pakete auflistet, aber auf dem System installiert ist, ", diff --git a/src/Languages/lang_el.json b/src/Languages/lang_el.json index fa8e8cb366..0297722043 100644 --- a/src/Languages/lang_el.json +++ b/src/Languages/lang_el.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Θέλετε πραγματικά να απεγκαταστήσετε τα ακόλουθα {0} πακέτα;", "No": "Όχι", "Yes": "Ναι", + "Partial": "Μερικά", "View on UniGetUI": "Δείτε το στο UniGetUI", "Update": "Ενημέρωση", "Open UniGetUI": "Άνοιγμα UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "π.χ. 10", "Custom minimum age (days)": "Προσαρμοσμένη ελάχιστη ηλικία (ημέρες)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "Το {pm} δεν παρέχει ημερομηνίες έκδοσης για τα πακέτα του, επομένως αυτή η ρύθμιση δεν θα έχει κανένα αποτέλεσμα", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "Το {pm} παρέχει ημερομηνίες κυκλοφορίας μόνο για ορισμένα από τα πακέτα του, οπότε αυτή η ρύθμιση θα εφαρμοστεί μόνο σε αυτά τα πακέτα", "Override the global minimum update age for this package manager": "Παράκαμψη της καθολικής ελάχιστης ηλικίας ενημέρωσης για αυτόν τον διαχειριστή πακέτων", "View {0} logs": "Δείτε {0} καταγραφές", "If Python cannot be found or is not listing packages but is installed on the system, ": "Αν δεν είναι δυνατός ο εντοπισμός του Python ή δεν εμφανίζει πακέτα αλλά είναι εγκατεστημένο στο σύστημα, ", diff --git a/src/Languages/lang_eo.json b/src/Languages/lang_eo.json index bd42f0d34a..346f078f6d 100644 --- a/src/Languages/lang_eo.json +++ b/src/Languages/lang_eo.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Ĉu vi vere volas malinstali la jenajn {0} pakaĵojn?", "No": "Ne", "Yes": "Jes", + "Partial": "Parta", "View on UniGetUI": "Vidi en UniGetUI", "Update": "Ĝisdatigi", "Open UniGetUI": "Malfermi UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "ekz. 10", "Custom minimum age (days)": "Propra minimuma aĝo (tagoj)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ne provizas eldondatojn por siaj pakaĵoj, do ĉi tiu agordo ne havos efikon", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} provizas eldondatojn nur por kelkaj el siaj pakaĵoj, do ĉi tiu agordo aplikiĝos nur al tiuj pakaĵoj", "Override the global minimum update age for this package manager": "Superregi la ĝeneralan minimuman aĝon de ĝisdatigoj por ĉi tiu pakaĵadministrilo", "View {0} logs": "Vidi la protokolojn de {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Se Python ne troveblas aŭ ne listigas pakaĵojn sed estas instalita en la sistemo, ", diff --git a/src/Languages/lang_es-MX.json b/src/Languages/lang_es-MX.json index b57b99362f..7b3bc03650 100644 --- a/src/Languages/lang_es-MX.json +++ b/src/Languages/lang_es-MX.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "¿Realmente quiere desinstalar los siguientes {0} paquetes?", "No": "No", "Yes": "Sí", + "Partial": "Parcial", "View on UniGetUI": "Ver en UniGetUI", "Update": "Actualizar", "Open UniGetUI": "Abrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ej., 10", "Custom minimum age (days)": "Antigüedad mínima personalizada (días)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} no proporciona fechas de lanzamiento para sus paquetes, por lo que esta configuración no tendrá efecto", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} solo proporciona fechas de publicación para algunos de sus paquetes, por lo que esta opción solo se aplicará a esos paquetes", "Override the global minimum update age for this package manager": "Anular la antigüedad mínima global de actualización para este gestor de paquetes", "View {0} logs": "Ver registros de {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Si no se encuentra Python o no muestra paquetes, pero está instalado en el sistema, ", diff --git a/src/Languages/lang_es.json b/src/Languages/lang_es.json index 6cba634aab..c887bc8985 100644 --- a/src/Languages/lang_es.json +++ b/src/Languages/lang_es.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "¿Realmente quiere desinstalar los siguientes {0} paquetes?", "No": "No", "Yes": "Sí", + "Partial": "Parcial", "View on UniGetUI": "Ver en UniGetUI", "Update": "Actualizar", "Open UniGetUI": "Abrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ej., 10", "Custom minimum age (days)": "Antigüedad mínima personalizada (días)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} no proporciona fechas de lanzamiento para sus paquetes, por lo que esta configuración no tendrá efecto", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} solo proporciona fechas de publicación para algunos de sus paquetes, por lo que esta opción solo se aplicará a esos paquetes", "Override the global minimum update age for this package manager": "Anular la antigüedad mínima global de actualización para este gestor de paquetes", "View {0} logs": "Ver registros de {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Si no se encuentra Python o no muestra paquetes, pero está instalado en el sistema, ", diff --git a/src/Languages/lang_et.json b/src/Languages/lang_et.json index 57215b8abd..aa73d170db 100644 --- a/src/Languages/lang_et.json +++ b/src/Languages/lang_et.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Kas te tõesti soovite eemaldada {0, plural, one {järgmine pakett} few {järgmised {0} paketid} other {järgmised {0} paketid}}?", "No": "Ei", "Yes": "Jah", + "Partial": "Osaline", "View on UniGetUI": "Vaata UniGetUI-l", "Update": "Uuenda", "Open UniGetUI": "Ava UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "nt 10", "Custom minimum age (days)": "Kohandatud minimaalne vanus (päevades)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ei paku oma pakettidele väljalaskekuupäevi, seega see säte ei avalda mõju.", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} pakub väljaandekuupäevi ainult mõnele oma paketile, seega rakendub see säte ainult nendele pakettidele", "Override the global minimum update age for this package manager": "Alista selle paketihalduri jaoks globaalne uuenduste minimaalne vanus", "View {0} logs": "Kuva {0} logid", "If Python cannot be found or is not listing packages but is installed on the system, ": "Kui Pythonit ei leita või see ei kuva pakette, kuid on süsteemi paigaldatud, ", diff --git a/src/Languages/lang_fa.json b/src/Languages/lang_fa.json index c8507e2b26..3f710578f7 100644 --- a/src/Languages/lang_fa.json +++ b/src/Languages/lang_fa.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "آیا واقعا می خواهید تا این {0} بسته ها را حذف کنید؟", "No": "خیر", "Yes": "بله", + "Partial": "جزئی", "View on UniGetUI": "مشاهده در UniGetUI", "Update": "به روز رسانی", "Open UniGetUI": "باز کردن UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "مثلاً 10", "Custom minimum age (days)": "حداقل عمر سفارشی (روز)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} برای بسته‌های خود تاریخ انتشار ارائه نمی‌کند، بنابراین این تنظیم اثری نخواهد داشت", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} تنها برای برخی از بسته\bهای خود تاریخ انتشار را ارائه می\bدهد، بنابراین این تنظیم فقط برای آن بسته\bها اعمال خواهد شد", "Override the global minimum update age for this package manager": "برای این مدیر بسته، حداقل عمر سراسری به‌روزرسانی را بازنویسی کن", "View {0} logs": "مشاهده لاگ‌های {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "اگر Python پیدا نمی‌شود یا با اینکه روی سیستم نصب است بسته‌ها را فهرست نمی‌کند، ", diff --git a/src/Languages/lang_fi.json b/src/Languages/lang_fi.json index b843fee2f3..68d0a24ecb 100644 --- a/src/Languages/lang_fi.json +++ b/src/Languages/lang_fi.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Haluatko todella poistaa seuraavat {0} paketit?", "No": "Ei", "Yes": "Kyllä", + "Partial": "Osittainen", "View on UniGetUI": "Näytä UniGetUI:ssa", "Update": "Päivitä", "Open UniGetUI": "Avaa UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "esim. 10", "Custom minimum age (days)": "Mukautettu vähimmäisikä (päivää)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ei tarjoa paketeilleen julkaisupäiviä, joten tällä asetuksella ei ole vaikutusta", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} antaa julkaisupäivämäärät vain joillekin paketeilleen, joten tämä asetus koskee vain niitä paketteja", "Override the global minimum update age for this package manager": "Ohita tämän pakettienhallinnan yleinen päivitysten vähimmäisikä", "View {0} logs": "Näytä {0} lokit", "If Python cannot be found or is not listing packages but is installed on the system, ": "Jos Pythonia ei löydy tai se ei listaa paketteja, vaikka se on asennettu järjestelmään, ", diff --git a/src/Languages/lang_fil.json b/src/Languages/lang_fil.json index 74a82ab3b7..f5dda18716 100644 --- a/src/Languages/lang_fil.json +++ b/src/Languages/lang_fil.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Gusto mo ba talagang i-uninstall ang mga sumusunod na {0} na package?", "No": "Hindi", "Yes": "Oo", + "Partial": "Bahagya", "View on UniGetUI": "Tignan sa UniGetUI", "Update": "I-update", "Open UniGetUI": "Buksan ang UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "hal. 10", "Custom minimum age (days)": "Custom na minimum na tagal (araw)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "Hindi nagbibigay ang {pm} ng mga petsa ng release para sa mga package nito, kaya walang epekto ang setting na ito", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "Ang {pm} ay nagbibigay lamang ng petsa ng paglabas para sa ilan sa mga pakete nito, kaya ang setting na ito ay mailalapat lamang sa mga pakete na iyon", "Override the global minimum update age for this package manager": "I-override ang global na minimum na tagal ng update para sa package manager na ito", "View {0} logs": "Tingnan ang {0} (na) log", "If Python cannot be found or is not listing packages but is installed on the system, ": "Kung hindi mahanap ang Python o hindi nito naililista ang mga package ngunit naka-install ito sa system, ", diff --git a/src/Languages/lang_fr.json b/src/Languages/lang_fr.json index 0d98210477..6f27693dc5 100644 --- a/src/Languages/lang_fr.json +++ b/src/Languages/lang_fr.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Voulez-vous vraiment désinstaller les {0} paquets suivants ?", "No": "Non", "Yes": "Oui", + "Partial": "Partiel", "View on UniGetUI": "Voir sur UniGetUI", "Update": "Mettre à jour", "Open UniGetUI": "Ouvrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ex. 10", "Custom minimum age (days)": "Âge minimum personnalisé (jours)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ne fournit pas de dates de publication pour ses paquets, cette option n'aura donc aucun effet", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} ne fournit des dates de publication que pour certains de ses paquets, cette option ne s'appliquera donc qu'à ces paquets", "Override the global minimum update age for this package manager": "Remplacer l'âge minimum global des mises à jour pour ce gestionnaire de paquets", "View {0} logs": "Voir les journaux de {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Si Python est introuvable ou n'affiche pas les paquets alors qu'il est installé sur le système, ", diff --git a/src/Languages/lang_gl.json b/src/Languages/lang_gl.json index 98e92eb172..9adbfe2278 100644 --- a/src/Languages/lang_gl.json +++ b/src/Languages/lang_gl.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Realmente quere desinstalar os seguintes {0} paquetes?", "No": "Non", "Yes": "Si", + "Partial": "Parcial", "View on UniGetUI": "Ver en UniGetUI", "Update": "Actualizar", "Open UniGetUI": "Abrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ex. 10", "Custom minimum age (days)": "Antigüidade mínima personalizada (días)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} non fornece datas de lanzamento para os seus paquetes, polo que esta configuración non terá efecto", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} só proporciona datas de publicación para algúns dos seus paquetes, polo que esta opción só se aplicará a eses paquetes", "Override the global minimum update age for this package manager": "Substituír a antigüidade mínima global das actualizacións para este xestor de paquetes", "View {0} logs": "Ver os rexistros de {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Se non se atopa Python ou non está a listar paquetes pero está instalado no sistema, ", diff --git a/src/Languages/lang_gu.json b/src/Languages/lang_gu.json index 4567b8c5b2..d70aff86ba 100644 --- a/src/Languages/lang_gu.json +++ b/src/Languages/lang_gu.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "શું તમે ખરેખર નીચેના {0} packages uninstall કરવા માંગો છો?", "No": "ના", "Yes": "હા", + "Partial": "આંશિક", "View on UniGetUI": "UniGetUI પર જુઓ", "Update": "અપડેટ", "Open UniGetUI": "UniGetUI ખોલો", @@ -524,6 +525,7 @@ "e.g. 10": "દા.ત. 10", "Custom minimum age (days)": "કસ્ટમ ન્યૂનતમ અવધિ (દિવસ)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} તેના packages માટે release dates આપતું નથી, તેથી આ setting નો કોઈ પ્રભાવ નહીં થાય", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} તેના કેટલાક પેકેજો માટે જ રિલીઝ તારીખો પ્રદાન કરે છે, તેથી આ સેટિંગ ફક્ત તે પેકેજો પર જ લાગુ થશે", "Override the global minimum update age for this package manager": "આ package manager માટે global minimum update age override કરો", "View {0} logs": "{0} logs જુઓ", "If Python cannot be found or is not listing packages but is installed on the system, ": "જો Python મળી ન આવે અથવા packages સૂચિબદ્ધ ન કરતું હોય છતાં system પર installed હોય, ", diff --git a/src/Languages/lang_he.json b/src/Languages/lang_he.json index f3748c821b..d0c84c6165 100644 --- a/src/Languages/lang_he.json +++ b/src/Languages/lang_he.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "האם אתה באמת רוצה להסיר את ההתקנה של {0} החבילות הבאות?", "No": "לא", "Yes": "כן", + "Partial": "חלקי", "View on UniGetUI": "הצג ב-UniGetUI", "Update": "עדכון", "Open UniGetUI": "פתח את UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "למשל 10", "Custom minimum age (days)": "גיל מינימלי מותאם אישית (בימים)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} אינו מספק תאריכי שחרור עבור החבילות שלו, לכן להגדרה זו לא תהיה השפעה", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} מספק תאריכי שחרור רק לחלק מהחבילות שלו, ולכן הגדרה זו תחול רק על אותן חבילות", "Override the global minimum update age for this package manager": "עקוף את גיל העדכון המינימלי הגלובלי עבור מנהל חבילות זה", "View {0} logs": "הצג לוגים של {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "אם לא ניתן למצוא את Python או שהוא אינו מציג חבילות למרות שהוא מותקן במערכת, ", diff --git a/src/Languages/lang_hi.json b/src/Languages/lang_hi.json index 4c2c3390ae..176bc32260 100644 --- a/src/Languages/lang_hi.json +++ b/src/Languages/lang_hi.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "क्या आप सच में नीचे दिए गए {0} पैकेज को अनइंस्टॉल करना चाहते हैं?", "No": "नहीं", "Yes": "हाँ", + "Partial": "आंशिक", "View on UniGetUI": "यूनीगेटयूआई पर देखें", "Update": "अपडेट", "Open UniGetUI": "यूनीगेटयूआई खोलें", @@ -524,6 +525,7 @@ "e.g. 10": "उदा. 10", "Custom minimum age (days)": "कस्टम न्यूनतम आयु (दिन)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} अपने पैकेजों के लिए रिलीज़ तिथियाँ प्रदान नहीं करता, इसलिए इस सेटिंग का कोई प्रभाव नहीं होगा", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} केवल अपने कुछ पैकेजों के लिए रिलीज़ की तारीखें प्रदान करता है, इसलिए यह सेटिंग केवल उन्हीं पैकेजों पर लागू होगी", "Override the global minimum update age for this package manager": "इस पैकेज प्रबंधक के लिए वैश्विक न्यूनतम अपडेट आयु को ओवरराइड करें", "View {0} logs": "लॉग {0} देखें", "If Python cannot be found or is not listing packages but is installed on the system, ": "यदि Python नहीं मिल रहा है या पैकेज सूचीबद्ध नहीं कर रहा है लेकिन सिस्टम पर स्थापित है, ", diff --git a/src/Languages/lang_hr.json b/src/Languages/lang_hr.json index 9c323e9da1..b75e1bf048 100644 --- a/src/Languages/lang_hr.json +++ b/src/Languages/lang_hr.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Želite li zaista deinstalirati sljedeće pakete {0}?", "No": "Ne", "Yes": "Da", + "Partial": "Djelomično", "View on UniGetUI": "Pogledajte na UniGetUI-ju", "Update": "Ažuriraj", "Open UniGetUI": "Otvori UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "npr. 10", "Custom minimum age (days)": "Prilagođena minimalna starost (dani)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ne pruža datume izdanja za svoje pakete pa ova postavka neće imati učinka", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} pruža datume izdanja samo za neke od svojih paketa, pa će se ova postavka primijeniti samo na te pakete", "Override the global minimum update age for this package manager": "Zamijeni globalnu minimalnu starost ažuriranja za ovog upravitelja paketa", "View {0} logs": "Pregledaj {0} zapisnike", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ako Python nije moguće pronaći ili ne prikazuje pakete, ali je instaliran na sustavu, ", diff --git a/src/Languages/lang_hu.json b/src/Languages/lang_hu.json index 00ed7c990c..2c29ea7568 100644 --- a/src/Languages/lang_hu.json +++ b/src/Languages/lang_hu.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Tényleg szeretné eltávolítani a következő {0} csomagot?", "No": "Nem", "Yes": "Igen", + "Partial": "Részleges", "View on UniGetUI": "Megtekintés az Unigetui-n", "Update": "Frissítés", "Open UniGetUI": "Az UniGetUI megnyitása", @@ -524,6 +525,7 @@ "e.g. 10": "pl. 10", "Custom minimum age (days)": "Egyéni minimális életkor (nap)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} nem biztosít kiadási dátumot a csomagjaihoz, ezért ennek a beállításnak nem lesz hatása", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "A(z) {pm} csak néhány csomagjához ad meg kiadási dátumot, ezért ez a beállítás csak ezekre a csomagokra lesz érvényes", "Override the global minimum update age for this package manager": "A globális minimális frissítési életkor felülbírálása ennél a csomagkezelőnél", "View {0} logs": "{0} naplók megtekintése", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ha a Python nem található, vagy nem listáz csomagokat, de telepítve van a rendszeren, ", diff --git a/src/Languages/lang_id.json b/src/Languages/lang_id.json index 26fa0492ff..6bb92daf4d 100644 --- a/src/Languages/lang_id.json +++ b/src/Languages/lang_id.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Yakin ingin mencopot {0} paket berikut?", "No": "Tidak", "Yes": "Ya", + "Partial": "Sebagian", "View on UniGetUI": "Lihat di UniGetUI", "Update": "Perbarui", "Open UniGetUI": "Buka UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "mis. 10", "Custom minimum age (days)": "Usia minimum kustom (hari)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} tidak menyediakan tanggal rilis untuk paketnya, jadi pengaturan ini tidak akan berpengaruh", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} hanya menyediakan tanggal rilis untuk beberapa paketnya, jadi pengaturan ini hanya akan berlaku untuk paket tersebut", "Override the global minimum update age for this package manager": "Ganti usia minimum pembaruan global untuk manajer paket ini", "View {0} logs": "Lihat {0} log", "If Python cannot be found or is not listing packages but is installed on the system, ": "Jika Python tidak dapat ditemukan atau tidak menampilkan daftar paket tetapi terinstal di sistem, ", diff --git a/src/Languages/lang_it.json b/src/Languages/lang_it.json index b2f9e64f7d..3b6a60bdb5 100644 --- a/src/Languages/lang_it.json +++ b/src/Languages/lang_it.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Vuoi davvero disinstallare i seguenti {0} pacchetti?", "No": "No", "Yes": "Sì", + "Partial": "Parziale", "View on UniGetUI": "Visualizza su UniGetUI", "Update": "Aggiorna", "Open UniGetUI": "Apri UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "ad es. 10", "Custom minimum age (days)": "Età minima personalizzata (giorni)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} non fornisce date di rilascio per i suoi pacchetti, quindi questa impostazione non avrà alcun effetto", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} fornisce le date di rilascio solo per alcuni dei suoi pacchetti, quindi questa impostazione si applicherà solo a quei pacchetti", "Override the global minimum update age for this package manager": "Sostituisci l'età minima globale degli aggiornamenti per questo gestore di pacchetti", "View {0} logs": "Visualizza {0} log", "If Python cannot be found or is not listing packages but is installed on the system, ": "Se Python non viene trovato o non elenca i pacchetti ma è installato nel sistema, ", diff --git a/src/Languages/lang_ja.json b/src/Languages/lang_ja.json index 7c38e81eda..4d4f43c967 100644 --- a/src/Languages/lang_ja.json +++ b/src/Languages/lang_ja.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "以下の {0} 個のパッケージを本当にアンインストールしますか?", "No": "いいえ", "Yes": "はい", + "Partial": "一部対応", "View on UniGetUI": "UniGetUI で見る", "Update": "アップデート", "Open UniGetUI": "UniGetUI を開く", @@ -524,6 +525,7 @@ "e.g. 10": "例: 10", "Custom minimum age (days)": "カスタム最小経過日数(日)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} はパッケージのリリース日を提供していないため、この設定は効果がありません", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} は一部のパッケージにのみリリース日を提供するため、この設定は該当パッケージにのみ適用されます", "Override the global minimum update age for this package manager": "このパッケージ マネージャーについてグローバルの最小更新日数設定を上書きする", "View {0} logs": "{0} 個のログを表示 ", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python が見つからない、またはパッケージを一覧表示できないものの、システムにインストールされている場合は、 ", diff --git a/src/Languages/lang_ka.json b/src/Languages/lang_ka.json index 9892bc94bb..88bd9e0f29 100644 --- a/src/Languages/lang_ka.json +++ b/src/Languages/lang_ka.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "ნამდვილად გსურთ წაშალოთ შემდეგი პაკეტები {0} ?", "No": "არა", "Yes": "კი", + "Partial": "ნაწილობრივ", "View on UniGetUI": "UniGetUI-ში ნახვა", "Update": "განახლება", "Open UniGetUI": "UniGetUI-ის გახსნა", @@ -524,6 +525,7 @@ "e.g. 10": "მაგ. 10", "Custom minimum age (days)": "მორგებული მინიმალური ასაკი (დღეებში)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} არ აწვდის თავისი პაკეტებისთვის რელიზის თარიღებს, ამიტომ ამ პარამეტრს ეფექტი არ ექნება", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} გამოშვების თარიღებს მხოლოდ ზოგიერთი თავისი პაკეტისთვის გვაწვდის, ამიტომ ეს პარამეტრი მხოლოდ ამ პაკეტებზე გავრცელდება", "Override the global minimum update age for this package manager": "ამ პაკეტების მენეჯერისთვის გლობალური მინიმალური განახლების ასაკის გადაფარვა", "View {0} logs": "{0} ჟურნალის ნახვა", "If Python cannot be found or is not listing packages but is installed on the system, ": "თუ Python ვერ მოიძებნა ან არ აჩვენებს პაკეტებს, თუმცა სისტემაში დაყენებულია, ", diff --git a/src/Languages/lang_kn.json b/src/Languages/lang_kn.json index e99adcf0e7..5bfe85b71f 100644 --- a/src/Languages/lang_kn.json +++ b/src/Languages/lang_kn.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "ಕೆಳಗಿನ {0} ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ನಿಜವಾಗಿಯೂ ಅನ್‌ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ಬಯಸುವಿರಾ?", "No": "ಇಲ್ಲ", "Yes": "ಹೌದು", + "Partial": "ಭಾಗಶಃ", "View on UniGetUI": "UniGetUI ನಲ್ಲಿ ನೋಡಿ", "Update": "ನವೀಕರಿಸಿ", "Open UniGetUI": "UniGetUI ತೆರೆಯಿರಿ", @@ -524,6 +525,7 @@ "e.g. 10": "ಉದಾ. 10", "Custom minimum age (days)": "custom ಕನಿಷ್ಠ ವಯಸ್ಸು (ದಿನಗಳು)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ತನ್ನ packages ಗಳಿಗೆ ಬಿಡುಗಡೆ ದಿನಾಂಕಗಳನ್ನು ಒದಗಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಈ setting ಗೆ ಯಾವುದೇ ಪರಿಣಾಮ ಇರುವುದಿಲ್ಲ", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} ತನ್ನ ಕೆಲವು ಪ್ಯಾಕೇಜ್\bಗಳಿಗೆ ಮಾತ್ರ ಬಿಡುಗಡೆಯ ದಿನಾಂಕಗಳನ್ನು ಒದಗಿಸುತ್ತದೆ, ಆದ್ದರಿಂದ ಈ ಸೆಟ್ಟಿಂಗ್ ಆ ಪ್ಯಾಕೇಜ್\bಗಳಿಗೆ ಮಾತ್ರ ಅನ್ವಯವಾಗುತ್ತದೆ", "Override the global minimum update age for this package manager": "ಈ package manager ಗಾಗಿ global minimum update age ಅನ್ನು override ಮಾಡಿ", "View {0} logs": "{0} logs ನೋಡಿ", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python ಕಂಡುಬರದಿದ್ದರೆ ಅಥವಾ packages ಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡದಿದ್ದರೂ ಅದು system ನಲ್ಲಿ ಸ್ಥಾಪಿತವಾಗಿದ್ದರೆ, ", diff --git a/src/Languages/lang_ko.json b/src/Languages/lang_ko.json index fc2108a4ef..9fa4153e36 100644 --- a/src/Languages/lang_ko.json +++ b/src/Languages/lang_ko.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "다음 {0} 패키지를 정말로 제거하시겠습니까?", "No": "아니요", "Yes": "예", + "Partial": "부분 지원", "View on UniGetUI": "UniGetUI에서 보기", "Update": "업데이트", "Open UniGetUI": "UniGetUI 열기", @@ -524,6 +525,7 @@ "e.g. 10": "예시: 10", "Custom minimum age (days)": "사용자 지정 최소 기간(일)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm}은(는) 패키지의 릴리스 날짜를 제공하지 않으므로 이 설정은 적용되지 않습니다", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm}은(는) 일부 패키지에 대해서만 출시일을 제공하므로 이 설정은 해당 패키지에만 적용됩니다", "Override the global minimum update age for this package manager": "이 패키지 관리자에 대해 전역 최소 업데이트 기간 설정 재정의", "View {0} logs": "{0} 로그 보기", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python을 찾을 수 없거나 시스템에 설치되어 있는데도 패키지 목록이 표시되지 않는 경우, ", diff --git a/src/Languages/lang_ku.json b/src/Languages/lang_ku.json index 78b6e2c34a..5171cbd009 100644 --- a/src/Languages/lang_ku.json +++ b/src/Languages/lang_ku.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "بەڕاستی دەتەوێت ئەم {0} پاکێجەی خوارەوە بسڕیتەوە؟", "No": "نەخێر", "Yes": "بەڵێ", + "Partial": "پارچەیی", "View on UniGetUI": "لە UniGetUI بیبینە", "Update": "نوێی بکەرەوە", "Open UniGetUI": "UniGetUI بکەرەوە", @@ -524,6 +525,7 @@ "e.g. 10": "وەک 10", "Custom minimum age (days)": "کەمترین تەمەنی تایبەت (ڕۆژ)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} بەرواری بڵاوکردنەوە بۆ پاکێجەکانی دابین ناکات، بۆیە ئەم ڕێکخستنە هیچ کاریگەرییەکی نابێت", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} تەنها بۆ هەندێک لە پاکێجەکانی خۆی بەرواری بڵاوکردنەوە پێشکەش دەکات، بۆیە ئەم ڕێکخستنە تەنها بۆ ئەو پاکێجانە جێبەجێ دەبێت", "Override the global minimum update age for this package manager": "کەمترین تەمەنی گشتیی نوێکردنەوە بۆ ئەم بەڕێوەبەری پاکێجە بگۆڕە", "View {0} logs": "{0} تۆمار ببینە", "If Python cannot be found or is not listing packages but is installed on the system, ": "ئەگەر Python نەدۆزرێتەوە یان پاکێجەکان لیست ناکات بەڵام لەسەر سیستەم دامەزراوە، ", diff --git a/src/Languages/lang_lt.json b/src/Languages/lang_lt.json index 73d3f4f97b..4472cee087 100644 --- a/src/Languages/lang_lt.json +++ b/src/Languages/lang_lt.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Ar Jūs tikrai norite išdiegti nurodomą/-us – {0} paketą/-us?", "No": "Ne", "Yes": "Taip", + "Partial": "Dalinai", "View on UniGetUI": "Peržiūrėti per „UniGetUI“", "Update": "Atnaujinti", "Open UniGetUI": "Atidaryti „UniGetUI“", @@ -524,6 +525,7 @@ "e.g. 10": "pvz., 10", "Custom minimum age (days)": "Pasirinktinis minimalus senumas (dienomis)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} nepateikia savo paketų išleidimo datų, todėl šis nustatymas neturės jokio poveikio", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "„{pm}“ pateikia leidimo datas tik kai kuriems savo paketams, todėl šis nustatymas bus taikomas tik jiems", "Override the global minimum update age for this package manager": "Nepaisyti bendro minimalaus naujinimų senumo šiai paketų tvarkytuvei", "View {0} logs": "Peržiūrėti {0} žurnalus", "If Python cannot be found or is not listing packages but is installed on the system, ": "Jei „Python“ nepavyksta rasti arba ji nerodo paketų, nors sistemoje yra įdiegta, ", diff --git a/src/Languages/lang_mk.json b/src/Languages/lang_mk.json index 0711bfb4c0..86d1982dfe 100644 --- a/src/Languages/lang_mk.json +++ b/src/Languages/lang_mk.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Дали навистина сакате да ги деинсталирате следниве {0} пакети?", "No": "Не", "Yes": "Да", + "Partial": "Делумно", "View on UniGetUI": "Прикажи во UniGetUI", "Update": "Ажурирај", "Open UniGetUI": "Отвори UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "на пр. 10", "Custom minimum age (days)": "Прилагодена минимална старост (денови)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не обезбедува датуми на издавање за своите пакети, па оваа поставка нема да има ефект", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} обезбедува датуми на издавање само за некои од своите пакети, така што оваа поставка ќе важи само за тие пакети", "Override the global minimum update age for this package manager": "Препокриј ја глобалната минимална старост на ажурирањата за овој менаџер на пакети", "View {0} logs": "Погледни ги дневниците за {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може да се пронајде или не прикажува пакети, а е инсталиран на системот, ", diff --git a/src/Languages/lang_mr.json b/src/Languages/lang_mr.json index 99b0fd101f..a84f96bc11 100644 --- a/src/Languages/lang_mr.json +++ b/src/Languages/lang_mr.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "तुम्हाला खरोखर खालील {0} पॅकेजेस विस्थापित करायची आहेत का?", "No": "नाही", "Yes": "होय", + "Partial": "अंशतः", "View on UniGetUI": "UniGetUI वर पहा", "Update": "अद्यतनित करा", "Open UniGetUI": "UniGetUI उघडा", @@ -524,6 +525,7 @@ "e.g. 10": "उदा. 10", "Custom minimum age (days)": "सानुकूल किमान वय (दिवस)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} त्याच्या पॅकेजेससाठी प्रकाशन दिनांक देत नाही, त्यामुळे या सेटिंगचा काही परिणाम होणार नाही", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} फक्त त्याच्या काही पॅकेजेसाठीच प्रकाशन तारखा प्रदान करतो, त्यामुळे ही सेटिंग केवळ त्या पॅकेजेसवरच लागू होईल", "Override the global minimum update age for this package manager": "या पॅकेज व्यवस्थापकासाठी जागतिक किमान अद्यतन-वय सेटिंग ओव्हरराइड करा", "View {0} logs": "{0} लॉग पहा", "If Python cannot be found or is not listing packages but is installed on the system, ": "जर Python सापडत नसेल किंवा तो पॅकेजेस दाखवत नसेल पण सिस्टमवर स्थापित असेल, ", diff --git a/src/Languages/lang_nb.json b/src/Languages/lang_nb.json index 5671c7a3b4..b68fd99a0a 100644 --- a/src/Languages/lang_nb.json +++ b/src/Languages/lang_nb.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Vil du virkelig avinstallere følgende {0} pakker?", "No": "Nei", "Yes": "Ja", + "Partial": "Delvis", "View on UniGetUI": "Vis i UniGetUI", "Update": "Oppdater", "Open UniGetUI": "Åpne UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "f.eks. 10", "Custom minimum age (days)": "Egendefinert minimumsalder (dager)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} oppgir ikke utgivelsesdatoer for pakkene sine, så denne innstillingen vil ikke ha noen effekt", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} oppgir bare utgivelsesdatoer for noen av pakkene sine, så denne innstillingen gjelder bare for de pakkene", "Override the global minimum update age for this package manager": "Overstyr den globale minimumsalderen for oppdateringer for denne pakkebehandleren", "View {0} logs": "Vis {0} logger", "If Python cannot be found or is not listing packages but is installed on the system, ": "Hvis Python ikke kan finnes eller ikke viser pakker selv om det er installert på systemet, ", diff --git a/src/Languages/lang_nl.json b/src/Languages/lang_nl.json index fc67d33d24..64ad138b43 100644 --- a/src/Languages/lang_nl.json +++ b/src/Languages/lang_nl.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Wil je de volgende {0} pakketten verwijderen?", "No": "Nee", "Yes": "Ja", + "Partial": "Gedeeltelijk", "View on UniGetUI": "Weergeven op UniGetUI", "Update": "Bijwerken", "Open UniGetUI": "UniGetUI openen", @@ -524,6 +525,7 @@ "e.g. 10": "bijv. 10", "Custom minimum age (days)": "Aangepaste minimale leeftijd (dagen)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} levert geen releasedatums voor zijn pakketten, dus deze instelling heeft geen effect", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} biedt alleen voor sommige van zijn pakketten releasedatums, dus deze instelling is alleen van toepassing op die pakketten", "Override the global minimum update age for this package manager": "Overschrijf de globale minimale updateleeftijd voor deze pakketbeheerder", "View {0} logs": "{0} logboeken bekijken", "If Python cannot be found or is not listing packages but is installed on the system, ": "Als Python niet kan worden gevonden of geen pakketten weergeeft terwijl het wel op het systeem is geïnstalleerd, ", diff --git a/src/Languages/lang_nn.json b/src/Languages/lang_nn.json index 1501f02ae0..b12f338e13 100644 --- a/src/Languages/lang_nn.json +++ b/src/Languages/lang_nn.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Vil du verkeleg avinstallere føljande {0} pakkar?", "No": "Nei", "Yes": "Ja", + "Partial": "Delvis", "View on UniGetUI": "Sjå på UniGetUI", "Update": "Uppdater", "Open UniGetUI": "Opne UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "t.d. 10", "Custom minimum age (days)": "Tilpassa minimumsalder (dagar)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} oppgir ikkje utgivingsdatoar for pakkane sine, så denne innstillinga vil ikkje ha nokon effekt", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} oppgjev berre utgjevingsdatoar for nokre av pakkane sine, så denne innstillinga gjeld berre for desse pakkane", "Override the global minimum update age for this package manager": "Overstyr den globale minimumsalderen for oppdateringar for denne pakkehandteraren", "View {0} logs": "Sjå {0}-logger", "If Python cannot be found or is not listing packages but is installed on the system, ": "Viss Python ikkje kan finnast eller ikkje listar pakkar, men er installert på systemet, ", diff --git a/src/Languages/lang_pl.json b/src/Languages/lang_pl.json index bb356c4cc3..fd3477cefa 100644 --- a/src/Languages/lang_pl.json +++ b/src/Languages/lang_pl.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Na pewno chcesz usunąć {0} pakietów?", "No": "Nie", "Yes": "Tak", + "Partial": "Częściowo", "View on UniGetUI": "Zobacz w UniGetUI", "Update": "Zaktualizuj", "Open UniGetUI": "Otwórz UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "np. 10", "Custom minimum age (days)": "Niestandardowy minimalny wiek (dni)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} nie udostępnia dat wydań swoich pakietów, więc to ustawienie nie będzie miało żadnego efektu", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} udostępnia daty wydania tylko dla niektórych swoich pakietów, dlatego to ustawienie będzie obowiązywać wyłącznie dla tych pakietów", "Override the global minimum update age for this package manager": "Zastąp globalny minimalny wiek aktualizacji dla tego menedżera pakietów", "View {0} logs": "Zobacz logi {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Jeśli nie można znaleźć Pythona albo nie wyświetla pakietów, mimo że jest zainstalowany w systemie, ", diff --git a/src/Languages/lang_pt_BR.json b/src/Languages/lang_pt_BR.json index 4c411287b9..b383992bf0 100644 --- a/src/Languages/lang_pt_BR.json +++ b/src/Languages/lang_pt_BR.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Você tem certeza de que deseja desinstalar os {0} pacotes seguintes?", "No": "Não", "Yes": "Sim", + "Partial": "Parcial", "View on UniGetUI": "Ver no UniGetUI", "Update": "Atualizar", "Open UniGetUI": "Abrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "ex.: 10", "Custom minimum age (days)": "Idade mínima personalizada (dias)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} não fornece datas de lançamento para seus pacotes, portanto esta configuração não terá efeito", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "O {pm} só fornece datas de lançamento para alguns de seus pacotes, então essa configuração só será aplicada a esses pacotes", "Override the global minimum update age for this package manager": "Substituir a idade mínima global de atualização para este gerenciador de pacotes", "View {0} logs": "Visualizar registros do {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Se o Python não puder ser encontrado ou não estiver listando pacotes, mas estiver instalado no sistema, ", diff --git a/src/Languages/lang_pt_PT.json b/src/Languages/lang_pt_PT.json index 6deeccded2..ef93dcaae1 100644 --- a/src/Languages/lang_pt_PT.json +++ b/src/Languages/lang_pt_PT.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Deseja realmente desinstalar os seguintes {0} pacotes?", "No": "Não", "Yes": "Sim", + "Partial": "Parcial", "View on UniGetUI": "Ver no UniGetUI", "Update": "Atualizar", "Open UniGetUI": "Abrir UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p. ex., 10", "Custom minimum age (days)": "Idade mínima personalizada (dias)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} não fornece datas de lançamento para os seus pacotes, pelo que esta definição não terá qualquer efeito", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "O {pm} só fornece datas de lançamento para alguns dos seus pacotes, pelo que esta definição só será aplicada a esses pacotes", "Override the global minimum update age for this package manager": "Substituir a idade mínima global das atualizações para este gestor de pacotes", "View {0} logs": "Ver {0} registos", "If Python cannot be found or is not listing packages but is installed on the system, ": "Se o Python não puder ser encontrado ou não estiver a listar pacotes, mas estiver instalado no sistema, ", diff --git a/src/Languages/lang_ro.json b/src/Languages/lang_ro.json index b786b4fc5b..a3936a677d 100644 --- a/src/Languages/lang_ro.json +++ b/src/Languages/lang_ro.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Sigur dorești să dezinstalezi următoarele {0} pachete?", "No": "Nu", "Yes": "Da", + "Partial": "Parțial", "View on UniGetUI": "Vezi în UniGetUI", "Update": "Actualizează", "Open UniGetUI": "Deschide UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "ex. 10", "Custom minimum age (days)": "Vechime minimă personalizată (zile)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} nu furnizează date de lansare pentru pachetele sale, așa că această setare nu va avea niciun efect", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} furnizează date de lansare doar pentru unele dintre pachetele sale, așa că această setare se va aplica doar acelor pachete", "Override the global minimum update age for this package manager": "Suprascrie vechimea minimă globală a actualizărilor pentru acest manager de pachete", "View {0} logs": "Vezi jurnale {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Dacă Python nu poate fi găsit sau nu listează pachetele, dar este instalat pe sistem, ", diff --git a/src/Languages/lang_ru.json b/src/Languages/lang_ru.json index d7312932f7..0abb2888f6 100644 --- a/src/Languages/lang_ru.json +++ b/src/Languages/lang_ru.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Вы действительно хотите удалить следующие {0} пакетов?", "No": "Нет", "Yes": "Да", + "Partial": "Частично", "View on UniGetUI": "Смотреть на сайте UniGetUI", "Update": "Обновить", "Open UniGetUI": "Открыть UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "например, 10", "Custom minimum age (days)": "Пользовательский минимальный возраст (дни)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не предоставляет даты выпуска для своих пакетов, поэтому этот параметр не будет иметь эффекта", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} предоставляет даты выпуска только для некоторых своих пакетов, поэтому этот параметр будет применяться только к этим пакетам", "Override the global minimum update age for this package manager": "Переопределить глобальный минимальный возраст обновлений для этого менеджера пакетов", "View {0} logs": "Посмотреть журналы {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Если Python не удаётся найти или он не отображает пакеты, хотя установлен в системе, ", diff --git a/src/Languages/lang_sa.json b/src/Languages/lang_sa.json index 7223ff3a34..563b329612 100644 --- a/src/Languages/lang_sa.json +++ b/src/Languages/lang_sa.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "निम्नलिखित {0} packages uninstall कर्तुम् एव इच्छसि किम्?", "No": "न", "Yes": "आम्", + "Partial": "आंशिकम्", "View on UniGetUI": "UniGetUI मध्ये पश्य", "Update": "अद्यतय", "Open UniGetUI": "UniGetUI उद्घाटय", @@ -524,6 +525,7 @@ "e.g. 10": "यथा 10", "Custom minimum age (days)": "स्वनिर्धारितः न्यूनतम-कालः (दिवसाः)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} स्वेषां packages कृते प्रकाशन-तिथीः न ददाति, अतः अस्य विन्यासस्य प्रभावो न भविष्यति", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} स्वस्य केषाञ्चित् एव संवेष्टनानां प्रकाशनतिथिं ददाति, अतः इयं समायोजना तेषु एव संवेष्टनेषु प्रवर्तते", "Override the global minimum update age for this package manager": "अस्य package manager कृते वैश्विकं न्यूनतम-अद्यतन-कालम् अधिलिख्य स्थापय", "View {0} logs": "{0} logs पश्य", "If Python cannot be found or is not listing packages but is installed on the system, ": "यदि Python न लभ्यते अथवा packages न सूचयति किन्तु प्रणालीषु स्थापितम् अस्ति, ", diff --git a/src/Languages/lang_si.json b/src/Languages/lang_si.json index 0b9c1d9f85..5e9711f2d7 100644 --- a/src/Languages/lang_si.json +++ b/src/Languages/lang_si.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "පහත {0} පැකේජ අස්ථාපනය කිරීමට ඔබට ඇත්තටම අවශ්‍යද?", "No": "නැහැ", "Yes": "ඔව්", + "Partial": "අර්ධව", "View on UniGetUI": "UniGetUI තුළ බලන්න", "Update": "යාවත්කාලීන කරන්න", "Open UniGetUI": "UniGetUI විවෘත කරන්න", @@ -524,6 +525,7 @@ "e.g. 10": "උදා. 10", "Custom minimum age (days)": "අභිරුචි අවම වයස (දින)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} එහි පැකේජ සඳහා නිකුතු දින ලබා නොදෙන බැවින්, මෙම සැකසුමට කිසිදු බලපෑමක් නොමැත", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} එහි සමහර පැකේජ සඳහා පමණක් නිකුත් කිරීමේ දින සපයයි, එබැවින් මෙම සැකසුම අදාළ පැකේජ සඳහා පමණක් යෙදෙයි", "Override the global minimum update age for this package manager": "මෙම පැකේජ කළමනාකරු සඳහා ගෝලීය අවම යාවත්කාලීන වයස් සීමාව අභිබවා සකසන්න", "View {0} logs": "{0} logs බලන්න", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python හමු නොවන්නේ නම් හෝ පද්ධතියේ ස්ථාපිතව තිබුණත් පැකේජ ලැයිස්තුගත නොකරන්නේ නම්, ", diff --git a/src/Languages/lang_sk.json b/src/Languages/lang_sk.json index 39fcdd93f9..6c66693ac2 100644 --- a/src/Languages/lang_sk.json +++ b/src/Languages/lang_sk.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Naozaj chcete odinštalovať nasledovných {0} balíčkov?", "No": "Nie", "Yes": "Áno", + "Partial": "Čiastočne", "View on UniGetUI": "Zobraziť v UniGetUI", "Update": "Aktualizovať", "Open UniGetUI": "Otvoriť UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "napr. 10", "Custom minimum age (days)": "Vlastný minimálny vek (dni)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} neposkytuje dátumy vydania svojich balíčkov, takže toto nastavenie nebude mať žiadny účinok", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} poskytuje dátumy vydania len pre niektoré svoje balíky, preto sa toto nastavenie použije len pre tieto balíky", "Override the global minimum update age for this package manager": "Prepísať globálny minimálny vek aktualizácií pre tohto správcu balíčkov", "View {0} logs": "Zobraziť {0} protokolov", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ak sa Python nepodarí nájsť alebo nezobrazuje balíčky, ale je v systéme nainštalovaný, ", diff --git a/src/Languages/lang_sl.json b/src/Languages/lang_sl.json index 3d02de3b49..ac7df163bb 100644 --- a/src/Languages/lang_sl.json +++ b/src/Languages/lang_sl.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Ali res želite odstraniti naslednje pakete {0}?", "No": "Ne", "Yes": "Da", + "Partial": "Delno", "View on UniGetUI": "Ogled v UniGetUI", "Update": "Posodobi", "Open UniGetUI": "Odprite UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "npr. 10", "Custom minimum age (days)": "Minimalna starost po meri (dni)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ne navaja datumov izdaje za svoje pakete, zato ta nastavitev ne bo imela učinka", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} ponuja datume izdaje samo za nekatere svoje pakete, zato bo ta nastavitev veljala le za te pakete", "Override the global minimum update age for this package manager": "Preglasi globalno minimalno starost posodobitev za tega upravitelja paketov", "View {0} logs": "Ogled dnevnikov za {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Če Pythona ni mogoče najti ali ne navaja paketov, čeprav je nameščen v sistemu, ", diff --git a/src/Languages/lang_sq.json b/src/Languages/lang_sq.json index 95563093ad..aaaf3093c3 100644 --- a/src/Languages/lang_sq.json +++ b/src/Languages/lang_sq.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Dëshiron vërtet të çinstalosh {0, plural, one {paketën} other {{0} paketat}} në vijim?", "No": "Jo", "Yes": "Po", + "Partial": "Pjesërisht", "View on UniGetUI": "Shiko në UniGetUI", "Update": "Përditeso", "Open UniGetUI": "Hap UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "p.sh. 10", "Custom minimum age (days)": "Moshë minimale e personalizuar (ditë)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} nuk jep data publikimi për paketat e veta, ndaj ky cilësim nuk do të ketë asnjë efekt", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} jep data publikimi vetëm për disa nga paketat e tij, prandaj ky cilësim do të zbatohet vetëm për ato paketa", "Override the global minimum update age for this package manager": "Anashkalo moshën minimale globale të përditësimeve për këtë menaxher paketash", "View {0} logs": "Shfaq ditarin e {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Nëse Python nuk gjendet ose nuk i liston paketat, por është i instaluar në sistem, ", diff --git a/src/Languages/lang_sr.json b/src/Languages/lang_sr.json index f35b18d4d9..2fef08302f 100644 --- a/src/Languages/lang_sr.json +++ b/src/Languages/lang_sr.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Да ли заиста желиш да деинсталираш следећих {0} пакета?", "No": "Не", "Yes": "Да", + "Partial": "Делимично", "View on UniGetUI": "Прикажи у UniGetUI", "Update": "Ажурирај", "Open UniGetUI": "Отвори UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "нпр. 10", "Custom minimum age (days)": "Прилагођена минимална старост (у данима)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не пружа датуме издања за своје пакете, па ово подешавање неће имати ефекта", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} пружа датуме издавања само за неке од својих пакета, тако да ће се ово подешавање применити само на те пакете", "Override the global minimum update age for this package manager": "Замени глобално подешавање минималне старости ажурирања за овај менаџер пакета", "View {0} logs": "Прикажи {0} дневника", "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може бити пронађен или не приказује пакете али је инсталиран на систему, ", diff --git a/src/Languages/lang_sv.json b/src/Languages/lang_sv.json index 1663638a49..b6ae1d39dd 100644 --- a/src/Languages/lang_sv.json +++ b/src/Languages/lang_sv.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Vill du verkligen avinstallera följande {0}-paket?", "No": "Nej", "Yes": "Ja", + "Partial": "Delvis", "View on UniGetUI": "Visa i UniGetUI", "Update": "Uppdatera", "Open UniGetUI": "Öppna UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "t.ex. 10", "Custom minimum age (days)": "Anpassad minimiålder (dagar)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} tillhandahåller inte utgivningsdatum för sina paket, så den här inställningen har ingen effekt", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} anger endast utgivningsdatum för vissa av sina paket, så den här inställningen gäller endast för de paketen", "Override the global minimum update age for this package manager": "Åsidosätt den globala minimiåldern för uppdateringar för den här pakethanteraren", "View {0} logs": "Se {0} loggar", "If Python cannot be found or is not listing packages but is installed on the system, ": "Om Python inte kan hittas eller inte listar paket men är installerat på systemet, ", diff --git a/src/Languages/lang_ta.json b/src/Languages/lang_ta.json index e8a4c95efa..47ca8e852b 100644 --- a/src/Languages/lang_ta.json +++ b/src/Languages/lang_ta.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "கீழ்க்கண்ட {0} தொகுப்புகளை அகற்ற உண்மையில் விரும்புகிறீர்களா?", "No": "இல்லை", "Yes": "ஆம்", + "Partial": "பகுதியளவில்", "View on UniGetUI": "UniGetUI இல் பார்", "Update": "புதுப்பி", "Open UniGetUI": "UniGetUI ஐத் திற", @@ -524,6 +525,7 @@ "e.g. 10": "எடுத்துக்காட்டு: 10", "Custom minimum age (days)": "தனிப்பயன் குறைந்தபட்ச வயது (நாட்கள்)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} அதன் packages க்கான release dates ஐ வழங்காது; ஆகவே இந்த அமைப்பு எந்த விளைவையும் ஏற்படுத்தாது", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} அதன் சில தொகுப்புகளுக்கு மட்டுமே வெளியீட்டுத் தேதிகளை வழங்குகிறது, எனவே இந்த அமைப்பு அந்தத் தொகுப்புகளுக்கு மட்டுமே பொருந்தும்", "Override the global minimum update age for this package manager": "இந்த package manager க்கான பொது குறைந்தபட்ச update வயதை மாற்றி அமை", "View {0} logs": "{0} logs ஐப் பார்", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python கண்டுபிடிக்கப்படவில்லை அல்லது packages பட்டியலிடப்படவில்லை, ஆனால் அது கணினியில் நிறுவப்பட்டிருந்தால், ", diff --git a/src/Languages/lang_th.json b/src/Languages/lang_th.json index e8c24921a6..0fca7d8f38 100644 --- a/src/Languages/lang_th.json +++ b/src/Languages/lang_th.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "คุณต้องการถอนการติดตั้ง {0} แพ็กเกจต่อไปนี้หรือไม่", "No": "ไม่", "Yes": "ใช่", + "Partial": "บางส่วน", "View on UniGetUI": "ดูบน UnigetUI", "Update": "อัปเดต", "Open UniGetUI": "เปิด UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "เช่น 10", "Custom minimum age (days)": "อายุขั้นต่ำแบบกำหนดเอง (วัน)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ไม่มีวันที่เผยแพร่สำหรับแพ็กเกจของตน ดังนั้นการตั้งค่านี้จะไม่มีผล", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} ระบุวันที่เผยแพร่ให้กับแพ็กเกจบางรายการเท่านั้น ดังนั้นการตั้งค่านี้จะมีผลเฉพาะกับแพ็กเกจเหล่านั้น", "Override the global minimum update age for this package manager": "แทนที่อายุขั้นต่ำของการอัปเดตส่วนกลางสำหรับตัวจัดการแพ็กเกจนี้", "View {0} logs": "ดูบันทึกของ {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "หากไม่พบ Python หรือ Python ไม่แสดงรายการแพ็กเกจทั้งที่ติดตั้งอยู่ในระบบแล้ว ", diff --git a/src/Languages/lang_tl.json b/src/Languages/lang_tl.json index 8d9ae4cba7..46379638fe 100644 --- a/src/Languages/lang_tl.json +++ b/src/Languages/lang_tl.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Sigurado ka bang gusto mong i-uninstall ang sumusunod na {0} package?", "No": "Hindi", "Yes": "Oo", + "Partial": "Bahagya", "View on UniGetUI": "Tingnan sa UniGetUI", "Update": "I-update", "Open UniGetUI": "Buksan ang UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "hal. 10", "Custom minimum age (days)": "Custom na minimum na tagal (araw)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "Hindi nagbibigay ang {pm} ng mga petsa ng release para sa mga package nito, kaya walang epekto ang setting na ito", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "Ang {pm} ay nagbibigay lamang ng petsa ng paglabas para sa ilan sa mga pakete nito, kaya ang setting na ito ay aaplay lamang sa mga pakete na iyon", "Override the global minimum update age for this package manager": "I-override ang global na minimum na tagal ng update para sa package manager na ito", "View {0} logs": "Tingnan ang mga log ng {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Kung hindi mahanap ang Python o hindi nito naililista ang mga package ngunit naka-install ito sa system, ", diff --git a/src/Languages/lang_tr.json b/src/Languages/lang_tr.json index 39d77e5519..563e1c0d73 100644 --- a/src/Languages/lang_tr.json +++ b/src/Languages/lang_tr.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Aşağıdaki {0} paketleri gerçekten kaldırmak istiyor musunuz?", "No": "Hayır", "Yes": "Evet", + "Partial": "Kısmi", "View on UniGetUI": "UniGetUI'de göster", "Update": "Güncelleme", "Open UniGetUI": "UniGetUI'yi aç", @@ -524,6 +525,7 @@ "e.g. 10": "ör. 10", "Custom minimum age (days)": "Özel minimum süre (gün)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} paketleri için yayın tarihi sağlamıyor, bu nedenle bu ayarın etkisi olmayacaktır", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} yalnızca bazı paketleri için yayın tarihi sağlar, bu nedenle bu ayar yalnızca o paketler için geçerli olur", "Override the global minimum update age for this package manager": "Bu paket yöneticisi için genel minimum güncelleme süresini geçersiz kıl", "View {0} logs": "{0} günlükleri görüntüle", "If Python cannot be found or is not listing packages but is installed on the system, ": "Python bulunamıyorsa veya sistemde kurulu olmasına rağmen paketleri listelemiyorsa, ", diff --git a/src/Languages/lang_uk.json b/src/Languages/lang_uk.json index 32284f0fd1..cca8151354 100644 --- a/src/Languages/lang_uk.json +++ b/src/Languages/lang_uk.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Ви дійсно хочете видалити наступні {0} пакетів?", "No": "Ні", "Yes": "Так", + "Partial": "Частково", "View on UniGetUI": "Відкрити у UniGetUI", "Update": "Оновити", "Open UniGetUI": "Відкрити UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "напр. 10", "Custom minimum age (days)": "Власний мінімальний вік (днів)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не надає дати випуску для своїх пакетів, тому це налаштування не матиме жодного ефекту", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} надає дати випуску лише для частини своїх пакетів, тож цей параметр застосовуватиметься лише до них", "Override the global minimum update age for this package manager": "Перевизначити глобальний мінімальний вік оновлень для цього менеджера пакетів", "View {0} logs": "Переглянути журнали {0}", "If Python cannot be found or is not listing packages but is installed on the system, ": "Якщо Python не вдається знайти або він не показує пакети, хоча встановлений у системі, ", diff --git a/src/Languages/lang_ur.json b/src/Languages/lang_ur.json index ce130916ce..c9febb6a7e 100644 --- a/src/Languages/lang_ur.json +++ b/src/Languages/lang_ur.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "کیا آپ واقعی درج ذیل {0} پیکجوں کو اَن انسٹال کرنا چاہتے ہیں؟", "No": "نہیں", "Yes": "جی ہاں", + "Partial": "جزوی", "View on UniGetUI": "UniGetUI پر دیکھیں", "Update": "اپ ڈیٹ", "Open UniGetUI": "UniGetUI کھولیں۔", @@ -524,6 +525,7 @@ "e.g. 10": "مثلاً 10", "Custom minimum age (days)": "حسب ضرورت کم از کم مدت (دن)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} اپنے پیکجز کے لیے ریلیز کی تاریخیں فراہم نہیں کرتا، اس لیے اس ترتیب کا کوئی اثر نہیں ہوگا", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} اپنے کچھ پیکجز کے لیے ہی ریلیز کی تاریخیں فراہم کرتا ہے، لہٰذا یہ ترتیب صرف انہی پیکجز پر لاگو ہوگی", "Override the global minimum update age for this package manager": "اس پیکیج مینیجر کے لیے اپ ڈیٹ کی عالمی کم از کم مدت کو اووررائیڈ کریں", "View {0} logs": "{0} لاگز دیکھیں", "If Python cannot be found or is not listing packages but is installed on the system, ": "اگر Python نہیں مل رہا یا پیکجز کی فہرست نہیں دکھا رہا لیکن سسٹم پر انسٹال ہے، ", diff --git a/src/Languages/lang_vi.json b/src/Languages/lang_vi.json index d45e695004..f7fc038bd0 100644 --- a/src/Languages/lang_vi.json +++ b/src/Languages/lang_vi.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "Bạn có thực sự muốn gỡ cài đặt các gói {0} sau không?", "No": "Không", "Yes": "Có", + "Partial": "Một phần", "View on UniGetUI": "Xem trên UniGetUI", "Update": "Cập nhật", "Open UniGetUI": "Mở UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "ví dụ: 10", "Custom minimum age (days)": "Tuổi tối thiểu tùy chỉnh (ngày)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} không cung cấp ngày phát hành cho các gói của nó, vì vậy cài đặt này sẽ không có tác dụng", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} chỉ cung cấp ngày phát hành cho một số gói của nó, vì vậy thiết lập này sẽ chỉ áp dụng cho các gói đó", "Override the global minimum update age for this package manager": "Ghi đè tuổi cập nhật tối thiểu toàn cục cho trình quản lý gói này", "View {0} logs": "Xem {0} nhật ký", "If Python cannot be found or is not listing packages but is installed on the system, ": "Nếu không tìm thấy Python hoặc Python không liệt kê gói dù đã được cài đặt trên hệ thống, ", diff --git a/src/Languages/lang_zh_CN.json b/src/Languages/lang_zh_CN.json index 486d8a8e62..c170d43e19 100644 --- a/src/Languages/lang_zh_CN.json +++ b/src/Languages/lang_zh_CN.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "您确定要卸载以下 {0} 个软件包吗?", "No": "否", "Yes": "是", + "Partial": "部分", "View on UniGetUI": "在 UniGetUI 中查看", "Update": "更新", "Open UniGetUI": "打开 UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "例如 10", "Custom minimum age (days)": "自定义最短时长(天)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} 不为其软件包提供发布日期,因此此设置不会生效", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} 仅为部分软件包提供发布日期,因此此设置将只对那些软件包生效", "Override the global minimum update age for this package manager": "为此软件包管理器覆盖全局最短更新时间", "View {0} logs": "查看 {0} 日志", "If Python cannot be found or is not listing packages but is installed on the system, ": "如果找不到 Python,或者系统中已安装 Python 但无法列出软件包, ", diff --git a/src/Languages/lang_zh_TW.json b/src/Languages/lang_zh_TW.json index 377b9699b5..5f82ff3270 100644 --- a/src/Languages/lang_zh_TW.json +++ b/src/Languages/lang_zh_TW.json @@ -80,6 +80,7 @@ "Do you really want to uninstall the following {0} packages?": "您確定要解除安裝以下 {0} 套件嗎?", "No": "否", "Yes": "是", + "Partial": "部分", "View on UniGetUI": "在 UniGetUI 上檢視", "Update": "更新", "Open UniGetUI": "啟動 UniGetUI", @@ -524,6 +525,7 @@ "e.g. 10": "例如:10", "Custom minimum age (days)": "自訂最短天數(天)", "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} 不提供其套件的發行日期,因此此設定不會生效", + "{pm} only provides release dates for some of its packages, so this setting will only apply to those packages": "{pm} 僅為部分套件提供發行日期,因此此設定僅會套用至這些套件", "Override the global minimum update age for this package manager": "覆寫此套件管理器的全域最短更新天數", "View {0} logs": "檢視 {0} 記錄", "If Python cannot be found or is not listing packages but is installed on the system, ": "如果找不到 Python,或系統中已安裝 Python 但未列出任何套件, ", From 8a5a28713ada38ca46dd65face650030d99f8eab Mon Sep 17 00:00:00 2001 From: GabrielDuf Date: Fri, 22 May 2026 10:59:48 -0400 Subject: [PATCH 3/3] fix Russian translation of "Reload" button (#4812) --- src/Languages/lang_ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Languages/lang_ru.json b/src/Languages/lang_ru.json index 0abb2888f6..7a10cc23de 100644 --- a/src/Languages/lang_ru.json +++ b/src/Languages/lang_ru.json @@ -592,7 +592,7 @@ "Ascendant": "По возрастанию", "Descendant": "По убыванию", "View modes": "Режимы просмотра", - "Reload": "Обновить", + "Reload": "Проверить", "Closed": "Закрыто", "Ascending": "По возрастанию", "Descending": "По убыванию",