diff --git a/.agents/skills/translation-diff-export/SKILL.md b/.agents/skills/translation-diff-export/SKILL.md index 640a8eee91..a25ba13470 100644 --- a/.agents/skills/translation-diff-export/SKILL.md +++ b/.agents/skills/translation-diff-export/SKILL.md @@ -45,9 +45,20 @@ pwsh ./.agents/skills/translation-diff-export/scripts/export-translation-diff.ps -BaseRef origin/main ``` +Export only the active section above the legacy boundary marker: + +```powershell +pwsh ./.agents/skills/translation-diff-export/scripts/export-translation-diff.ps1 \ + -NeutralJson ./src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json \ + -TargetJson ./src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json \ + -Language fr \ + -ActiveOnly +``` + Optional parameters: - `-OutputDir` (default: `generated/translation-diff-export`) +- `-ActiveOnly` (limits `.source.json` and `.reference.json` to keys above `__LEGACY_TRANSLATION_KEYS_BELOW__`) - `-KeepIntermediate` Run the built-in smoke test: diff --git a/.agents/skills/translation-diff-export/scripts/export-translation-diff.ps1 b/.agents/skills/translation-diff-export/scripts/export-translation-diff.ps1 index 5737dac6e8..e10146ba17 100644 --- a/.agents/skills/translation-diff-export/scripts/export-translation-diff.ps1 +++ b/.agents/skills/translation-diff-export/scripts/export-translation-diff.ps1 @@ -12,6 +12,8 @@ param( [string]$OutputDir = 'generated/translation-diff-export', + [switch]$ActiveOnly, + [switch]$KeepIntermediate ) @@ -326,6 +328,34 @@ function Sync-TranslatedWorkingCopy { Write-OrderedJsonMap -Path $TranslatedPatchPath -Map $syncedMap } +function Get-FilteredPatchMap { + param( + [Parameter(Mandatory = $true)] + [System.Collections.IDictionary]$Map, + + [Parameter(Mandatory = $true)] + [System.Collections.IDictionary]$NeutralMap, + + [Parameter(Mandatory = $true)] + [switch]$ActiveOnly + ) + + if (-not $ActiveOnly.IsPresent) { + return $Map + } + + $activeKeys = Split-TranslationMapAtBoundary -Map $NeutralMap + $filteredMap = New-OrderedStringMap + foreach ($entry in $activeKeys.ActiveMap.GetEnumerator()) { + $key = [string]$entry.Key + if ($Map.Contains($key)) { + $filteredMap[$key] = [string]$Map[$key] + } + } + + return $filteredMap +} + Assert-Command -Name 'git' Assert-Command -Name 'cirup' @@ -431,6 +461,9 @@ foreach ($entry in $neutralMap.GetEnumerator()) { } } +$sourcePatchMap = Get-FilteredPatchMap -Map $sourcePatchMap -NeutralMap $neutralMap -ActiveOnly:$ActiveOnly +$referencePatchMap = Get-FilteredPatchMap -Map $referencePatchMap -NeutralMap $neutralMap -ActiveOnly:$ActiveOnly + if (Test-Path -Path $sourcePatchPath -PathType Leaf) { $previousSourceMap = Read-OrderedJsonMap -Path $sourcePatchPath } @@ -460,6 +493,9 @@ Write-Output "Created source patch: $sourcePatchPath" Write-Output "Refreshed translated working copy: $translatedPatchPath" Write-Output "Created reference patch: $referencePatchPath" Write-Output "Created translation handoff prompt: $promptPath" +if ($ActiveOnly.IsPresent) { + Write-Output 'Patch scope: active translation keys only' +} if ($KeepIntermediate.IsPresent) { Write-Output "Kept intermediate files under: $tmpRoot" } \ No newline at end of file diff --git a/.github/workflows/translation-validation.yml b/.github/workflows/translation-validation.yml new file mode 100644 index 0000000000..8b151efe3d --- /dev/null +++ b/.github/workflows/translation-validation.yml @@ -0,0 +1,48 @@ +name: Translation Validation + +on: + push: + branches: [ "main" ] + paths: + - 'scripts/translation/**' + - '.agents/skills/translation-*/scripts/**' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Languages/**' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json' + - 'src/UniGetUI.Core.Data/Assets/Data/Contributors.list' + - '.github/workflows/translation-validation.yml' + + pull_request: + branches: [ "main" ] + paths: + - 'scripts/translation/**' + - '.agents/skills/translation-*/scripts/**' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Languages/**' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json' + - 'src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json' + - 'src/UniGetUI.Core.Data/Assets/Data/Contributors.list' + - '.github/workflows/translation-validation.yml' + + workflow_dispatch: + +jobs: + validate-translations: + runs-on: windows-latest + + steps: + - name: Checkout the repository + uses: actions/checkout@v6 + + - name: Validate translation file structure + shell: pwsh + run: pwsh ./scripts/translation/Verify-Translations.ps1 + + - name: Validate boundary alignment + shell: pwsh + run: pwsh ./scripts/translation/Set-TranslationBoundaryOrder.ps1 -CheckOnly + + - name: Validate translation metadata drift + shell: pwsh + run: pwsh ./scripts/translation/Sync-TranslationMetadata.ps1 -AllLanguages -CheckOnly \ No newline at end of file diff --git a/README.md b/README.md index fd44d2d037..4148372742 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ With UniGetUI, you can discover, install, update, and uninstall software from mu ![image](https://github.com/user-attachments/assets/7cb447ca-ee8b-4bce-8561-b9332fb0139a) View more screenshots [here](#screenshots) -Check out the [Supported Package Managers Table](#supported-package-managers) for more details! +Check out the [Package Managers](#package-managers) section for more details! **Disclaimer:** UniGetUI is not affiliated with the package managers it integrates with. Packages are provided by third parties, so review sources and publishers before installation. @@ -44,8 +44,8 @@ Read more in the [Devolutions announcement](https://devolutions.net/blog/2026/03 - [Update UniGetUI](#update-unigetui) - [Project stewardship](#project-stewardship) - [Features](#features) - - [Supported Package Managers](#supported-package-managers) - - [Translations](#translations) + - [Package Managers](#package-managers) + - [Translations](TRANSLATION.md) - [Contributors](#contributors) - [Screenshots](#screenshots) - [Frequently Asked Questions](#frequently-asked-questions) @@ -102,7 +102,7 @@ UniGetUI has a built-in autoupdater. However, it can also be updated like any ot - Export custom lists of packages to then import them to another machine and install those packages with previously specified, custom installation parameters. Setting up machines or configuring a specific software setup has never been easier. - Backup your packages to a local file to easily recover your setup in a matter of seconds when migrating to a new machine* -## Supported Package Managers +## Package Managers **NOTE:** All package managers do support basic install, update, and uninstall processes, as well as checking for updates, finding new packages, and retrieving details from a package. @@ -114,74 +114,11 @@ UniGetUI has a built-in autoupdater. However, it can also be updated like any ot ❌: Not supported by the Package Manager

-# Translations - -UniGetUI translations are maintained directly in this repository. All supported languages are kept at 100% completion with AI instead of shipping partial translations. If you spot a mistake or want to improve a translation, please open a GitHub issue or submit a pull request. - -- [Afrikaans](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json) -- [Albanian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json) -- [Arabic](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json) -- [Bangla](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json) -- [Belarusian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json) -- [Bulgarian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json) -- [Catalan](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json) -- [Croatian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json) -- [Czech](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json) -- [Danish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json) -- [Dutch](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json) -- [English](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json) -- [Estonian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json) -- [Filipino](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json) -- [Finnish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json) -- [French](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json) -- [Georgian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json) -- [German](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json) -- [Greek](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json) -- [Gujarati](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json) -- [Hebrew](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json) -- [Hindi](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json) -- [Hungarian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json) -- [Indonesian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json) -- [Italian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json) -- [Japanese](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json) -- [Kannada](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json) -- [Korean](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json) -- [Lithuanian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json) -- [Macedonian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json) -- [Norwegian (bokmal)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json) -- [Norwegian (nynorsk)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json) -- [Persian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json) -- [Polish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json) -- [Portuguese (Brazil)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json) -- [Portuguese (Portugal)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json) -- [Romanian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json) -- [Russian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json) -- [Sanskrit](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json) -- [Serbian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json) -- [Sinhala](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json) -- [Simplified Chinese (China)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json) -- [Slovak](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json) -- [Slovene](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json) -- [Spanish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json) -- [Swedish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json) -- [Tagalog](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tg.json) -- [Tamil](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json) -- [Thai](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json) -- [Traditional Chinese (Taiwan)](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json) -- [Turkish](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json) -- [Ukrainian](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ua.json) -- [Urdu](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json) -- [Vietnamese](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json) - - -# Contributions - UniGetUI wouldn't have been possible without the help of our dear contributors. From the person who fixed a typo to the person who improved half of the code, UniGetUI wouldn't be possible without them! :smile:

- -## Contributors: - [![My dear contributors](https://contrib.rocks/image?repo=Devolutions/UniGetUI)](https://github.com/Devolutions/UniGetUI/graphs/contributors)

- +## Translations + +UniGetUI translations are maintained directly in this repository. For the current language list, completion status, and per-language contributor attributions, see [TRANSLATION.md](TRANSLATION.md). If you spot a translation issue or want to improve a locale, please open an issue or submit a pull request. -# Screenshots +## Screenshots ![image](media/UniGetUI_1.png) @@ -204,7 +141,13 @@ UniGetUI translations are maintained directly in this repository. All supported ![image](media/UniGetUI_10.png) -# Frequently asked questions +## Contributions +UniGetUI continues to grow thanks to its community of contributors. Devolutions is grateful to everyone who contributes code, translations, documentation, testing, and feedback to the project.

+ +[![Contributors](https://contrib.rocks/image?repo=Devolutions/UniGetUI)](https://github.com/Devolutions/UniGetUI/graphs/contributors)

+ + +## Frequently asked questions **Q: I am unable to install or upgrade a specific Winget package! What should I do?**
diff --git a/TRANSLATION.md b/TRANSLATION.md new file mode 100644 index 0000000000..47393abb4a --- /dev/null +++ b/TRANSLATION.md @@ -0,0 +1,140 @@ +# Translations + +UniGetUI includes translations for the languages listed below. + +This page lists the supported languages, each locale file, current completion status, and the credited contributors for each translation. + +If you would like to help improve a translation or report an issue, please open an issue or submit a pull request. + +Translation discussion and coordination also happens in [GitHub discussion #4510](https://github.com/Devolutions/UniGetUI/discussions/4510). + +## Language Coverage + +| Language | Code | Translated | File | +| :-- | :-- | :-- | :-- | +|   Afrikaans - Afrikaans | `af` | 100% | [lang_af.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json) | +|   Arabic - عربي‎ | `ar` | 100% | [lang_ar.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json) | +|   Belarusian - беларуская | `be` | 100% | [lang_be.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json) | +|   Bulgarian - български | `bg` | 100% | [lang_bg.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json) | +|   Bangla - বাংলা | `bn` | 100% | [lang_bn.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json) | +|   Catalan - Català | `ca` | 100% | [lang_ca.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json) | +|   Czech - Čeština | `cs` | 100% | [lang_cs.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json) | +|   Danish - Dansk | `da` | 100% | [lang_da.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json) | +|   German - Deutsch | `de` | 100% | [lang_de.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json) | +|   Greek - Ελληνικά | `el` | 100% | [lang_el.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json) | +|   Estonian - Eesti | `et` | 100% | [lang_et.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json) | +|   English - English | `en` | 100% | [lang_en.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json) | +|   Esperanto - Esperanto | `eo` | 100% | [lang_eo.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_eo.json) | +|   Spanish - Castellano | `es` | 100% | [lang_es.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json) | +|   Spanish (Mexico) | `es-MX` | 100% | [lang_es-MX.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es-MX.json) | +|   Persian - فارسی‎ | `fa` | 100% | [lang_fa.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json) | +|   Finnish - Suomi | `fi` | 100% | [lang_fi.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json) | +|   Filipino - Filipino | `fil` | 100% | [lang_fil.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json) | +|   French - Français | `fr` | 100% | [lang_fr.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json) | +|   Galician - Galego | `gl` | 100% | [lang_gl.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gl.json) | +|   Gujarati - ગુજરાતી | `gu` | 100% | [lang_gu.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json) | +|   Hindi - हिंदी | `hi` | 100% | [lang_hi.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json) | +|   Croatian - Hrvatski | `hr` | 100% | [lang_hr.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json) | +|   Hebrew - עִבְרִית‎ | `he` | 100% | [lang_he.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json) | +|   Hungarian - Magyar | `hu` | 100% | [lang_hu.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json) | +|   Italian - Italiano | `it` | 100% | [lang_it.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json) | +|   Indonesian - Bahasa Indonesia | `id` | 100% | [lang_id.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json) | +|   Japanese - 日本語 | `ja` | 100% | [lang_ja.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json) | +|   Georgian - ქართული | `ka` | 100% | [lang_ka.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json) | +|   Kannada - ಕನ್ನಡ | `kn` | 100% | [lang_kn.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json) | +|   Korean - 한국어 | `ko` | 100% | [lang_ko.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json) | +|   Kurdish - کوردی | `ku` | 100% | [lang_ku.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ku.json) | +|   Lithuanian - Lietuvių | `lt` | 100% | [lang_lt.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json) | +|   Macedonian - Македонски | `mk` | 100% | [lang_mk.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json) | +|   Marathi - मराठी | `mr` | 100% | [lang_mr.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mr.json) | +|   Norwegian (bokmål) | `nb` | 100% | [lang_nb.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json) | +|   Norwegian (nynorsk) | `nn` | 100% | [lang_nn.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json) | +|   Dutch - Nederlands | `nl` | 100% | [lang_nl.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json) | +|   Polish - Polski | `pl` | 100% | [lang_pl.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json) | +|   Portuguese (Brazil) | `pt_BR` | 100% | [lang_pt_BR.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json) | +|   Portuguese (Portugal) | `pt_PT` | 100% | [lang_pt_PT.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json) | +|   Romanian - Română | `ro` | 100% | [lang_ro.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json) | +|   Russian - Русский | `ru` | 100% | [lang_ru.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json) | +|   Sanskrit - संस्कृत भाषा | `sa` | 100% | [lang_sa.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json) | +|   Slovak - Slovenčina | `sk` | 100% | [lang_sk.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json) | +|   Serbian - Srpski | `sr` | 100% | [lang_sr.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json) | +|   Albanian - Shqip | `sq` | 100% | [lang_sq.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json) | +|   Sinhala - සිංහල | `si` | 100% | [lang_si.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json) | +|   Slovene - Slovenščina | `sl` | 100% | [lang_sl.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json) | +|   Swedish - Svenska | `sv` | 100% | [lang_sv.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json) | +|   Tamil - தமிழ் | `ta` | 100% | [lang_ta.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json) | +|   Tagalog - Tagalog | `tl` | 100% | [lang_tl.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tl.json) | +|   Thai - ภาษาไทย | `th` | 100% | [lang_th.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json) | +|   Turkish - Türkçe | `tr` | 100% | [lang_tr.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json) | +|   Ukrainian - Українська | `uk` | 100% | [lang_uk.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_uk.json) | +|   Urdu - اردو | `ur` | 100% | [lang_ur.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json) | +|   Vietnamese - Tiếng Việt | `vi` | 100% | [lang_vi.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json) | +|   Simplified Chinese (China) | `zh_CN` | 100% | [lang_zh_CN.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json) | +|   Traditional Chinese (Taiwan) | `zh_TW` | 100% | [lang_zh_TW.json](src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json) | + +## Contributors + +We are grateful to everyone who contributes translations to UniGetUI. Contributor credits are sourced from [Translators.json](src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json). If you would like to be added to or removed from the list for a particular language, please open a pull request. + +| Language | Code | Contributor(s) | +| :-- | :-- | --- | +|   Afrikaans - Afrikaans | `af` | Hendrik Bezuidenhout | +|   Arabic - عربي‎ | `ar` | [Abdu11ahAS](https://github.com/Abdu11ahAS), [Abdullah-Dev115](https://github.com/Abdullah-Dev115), [AbdullahAlousi](https://github.com/AbdullahAlousi), [bassuny3003](https://github.com/bassuny3003), [DaRandomCube](https://github.com/DaRandomCube), [FancyCookin](https://github.com/FancyCookin), [IFrxo](https://github.com/IFrxo), [mo9a7i](https://github.com/mo9a7i) | +|   Belarusian - беларуская | `be` | [bthos](https://github.com/bthos) | +|   Bulgarian - български | `bg` | Nikolay Naydenov, Vasil Kolev | +|   Bangla - বাংলা | `bn` | [fluentmoheshwar](https://github.com/fluentmoheshwar), [itz-rj-here](https://github.com/itz-rj-here), Mushfiq Iqbal Rayon, Nilavra Bhattacharya, [samiulislamsharan](https://github.com/samiulislamsharan) | +|   Catalan - Català | `ca` | [marticliment](https://github.com/marticliment) | +|   Czech - Čeština | `cs` | [mlisko](https://github.com/mlisko), [panther7](https://github.com/panther7), [xtorlukas](https://github.com/xtorlukas) | +|   Danish - Dansk | `da` | [AAUCrisp](https://github.com/AAUCrisp), [bstordrup](https://github.com/bstordrup), [mikkolukas](https://github.com/mikkolukas), [siewers](https://github.com/siewers), [yrjarv](https://github.com/yrjarv) | +|   German - Deutsch | `de` | [1270o1](https://github.com/1270o1), [AbsolutLeon](https://github.com/AbsolutLeon), [alxhu-dev](https://github.com/alxhu-dev), [Araxxas](https://github.com/Araxxas), [arnowelzel](https://github.com/arnowelzel), [CanePlayz](https://github.com/CanePlayz), [Datacra5H](https://github.com/Datacra5H), [ebnater](https://github.com/ebnater), [lucadsign](https://github.com/lucadsign), [martinwilco](https://github.com/martinwilco), [michaelmairegger](https://github.com/michaelmairegger), [Seeloewen](https://github.com/Seeloewen), [TheScarfix](https://github.com/TheScarfix), [tkohlmeier](https://github.com/tkohlmeier), [VfBFan](https://github.com/VfBFan), [Xeraox3335](https://github.com/Xeraox3335), [yrjarv](https://github.com/yrjarv) | +|   Greek - Ελληνικά | `el` | [antwnhsx](https://github.com/antwnhsx), [panos78](https://github.com/panos78), [seijind](https://github.com/seijind), [thunderstrike116](https://github.com/thunderstrike116), [wobblerrrgg](https://github.com/wobblerrrgg) | +|   Estonian - Eesti | `et` | [artjom3729](https://github.com/artjom3729) | +|   English - English | `en` | [lucadsign](https://github.com/lucadsign), [marticliment](https://github.com/marticliment), [ppvnf](https://github.com/ppvnf) | +|   Esperanto - Esperanto | `eo` | | +|   Spanish - Castellano | `es` | [apazga](https://github.com/apazga), [dalbitresb12](https://github.com/dalbitresb12), [evaneliasyoung](https://github.com/evaneliasyoung), [guplem](https://github.com/guplem), [JMoreno97](https://github.com/JMoreno97), [marticliment](https://github.com/marticliment), [P10Designs](https://github.com/P10Designs), [rubnium](https://github.com/rubnium), [uKER](https://github.com/uKER) | +|   Spanish (Mexico) | `es-MX` | [apazga](https://github.com/apazga), [dalbitresb12](https://github.com/dalbitresb12), [evaneliasyoung](https://github.com/evaneliasyoung), [guplem](https://github.com/guplem), [JMoreno97](https://github.com/JMoreno97), [marticliment](https://github.com/marticliment), [P10Designs](https://github.com/P10Designs), [rubnium](https://github.com/rubnium), [uKER](https://github.com/uKER) | +|   Persian - فارسی‎ | `fa` | [ehinium](https://github.com/ehinium), [MobinMardi](https://github.com/MobinMardi) | +|   Finnish - Suomi | `fi` | [simakuutio](https://github.com/simakuutio) | +|   Filipino - Filipino | `fil` | [infyProductions](https://github.com/infyProductions) | +|   French - Français | `fr` | BreatFR, [Entropiness](https://github.com/Entropiness), Evans Costa, [PikPakPik](https://github.com/PikPakPik), Rémi Guerrero, [W1L7dev](https://github.com/W1L7dev) | +|   Galician - Galego | `gl` | | +|   Gujarati - ગુજરાતી | `gu` | | +|   Hindi - हिंदी | `hi` | [Ashu-r](https://github.com/Ashu-r), [atharva_xoxo](https://github.com/atharva_xoxo), [satanarious](https://github.com/satanarious) | +|   Croatian - Hrvatski | `hr` | [AndrejFeher](https://github.com/AndrejFeher), Ivan Nuić, Stjepan Treger | +|   Hebrew - עִבְרִית‎ | `he` | [maximunited](https://github.com/maximunited), Oryan Hassidim | +|   Hungarian - Magyar | `hu` | [gidano](https://github.com/gidano) | +|   Italian - Italiano | `it` | David Senoner, [giacobot](https://github.com/giacobot), [maicol07](https://github.com/maicol07), [mapi68](https://github.com/mapi68), [mrfranza](https://github.com/mrfranza), Rosario Di Mauro | +|   Indonesian - Bahasa Indonesia | `id` | [agrinfauzi](https://github.com/agrinfauzi), [arthackrc](https://github.com/arthackrc), [joenior](https://github.com/joenior), [nrarfn](https://github.com/nrarfn) | +|   Japanese - 日本語 | `ja` | [anmoti](https://github.com/anmoti), [BHCrusher1](https://github.com/BHCrusher1), [nob-swik](https://github.com/nob-swik), Nobuhiro Shintaku, sho9029, [tacostea](https://github.com/tacostea), Yuki Takase | +|   Georgian - ქართული | `ka` | [marticliment](https://github.com/marticliment), [ppvnf](https://github.com/ppvnf) | +|   Kannada - ಕನ್ನಡ | `kn` | [skanda890](https://github.com/skanda890) | +|   Korean - 한국어 | `ko` | [jihoon416](https://github.com/jihoon416), [minbert](https://github.com/minbert), [MuscularPuky](https://github.com/MuscularPuky), [shblue21](https://github.com/shblue21), [thejjw](https://github.com/thejjw), [VenusGirl](https://github.com/VenusGirl) | +|   Kurdish - کوردی | `ku` | | +|   Lithuanian - Lietuvių | `lt` | Džiugas Januševičius, [dziugas1959](https://github.com/dziugas1959), [martyn3z](https://github.com/martyn3z) | +|   Macedonian - Македонски | `mk` | LordDeatHunter | +|   Marathi - मराठी | `mr` | | +|   Norwegian (bokmål) | `nb` | [DandelionSprout](https://github.com/DandelionSprout), [mikaelkw](https://github.com/mikaelkw), [yrjarv](https://github.com/yrjarv) | +|   Norwegian (nynorsk) | `nn` | [yrjarv](https://github.com/yrjarv) | +|   Dutch - Nederlands | `nl` | [abbydiode](https://github.com/abbydiode), [CateyeNL](https://github.com/CateyeNL), [mia-riezebos](https://github.com/mia-riezebos), [Stephan-P](https://github.com/Stephan-P) | +|   Polish - Polski | `pl` | [AdiMajsterek](https://github.com/AdiMajsterek), [GrzegorzKi](https://github.com/GrzegorzKi), [H4qu3r](https://github.com/H4qu3r), [ikarmus2001](https://github.com/ikarmus2001), [juliazero](https://github.com/juliazero), [KamilZielinski](https://github.com/KamilZielinski), [kwiateusz](https://github.com/kwiateusz), [RegularGvy13](https://github.com/RegularGvy13), [szumsky](https://github.com/szumsky), [ThePhaseless](https://github.com/ThePhaseless) | +|   Portuguese (Brazil) | `pt_BR` | [maisondasilva](https://github.com/maisondasilva), [ppvnf](https://github.com/ppvnf), [renanalencar](https://github.com/renanalencar), [Rodrigo-Matsuura](https://github.com/Rodrigo-Matsuura), [thiagojramos](https://github.com/thiagojramos), [wanderleihuttel](https://github.com/wanderleihuttel) | +|   Portuguese (Portugal) | `pt_PT` | [100Nome](https://github.com/100Nome), [NimiGames68](https://github.com/NimiGames68), [PoetaGA](https://github.com/PoetaGA), [Putocoroa](https://github.com/Putocoroa), [Tiago_Ferreira](https://github.com/Tiago_Ferreira) | +|   Romanian - Română | `ro` | [David735453](https://github.com/David735453), [lucadsign](https://github.com/lucadsign), [SilverGreen93](https://github.com/SilverGreen93), TZACANEL | +|   Russian - Русский | `ru` | Alexander, [bropines](https://github.com/bropines), [Denisskas](https://github.com/Denisskas), [DvladikD](https://github.com/DvladikD), [flatron4eg](https://github.com/flatron4eg), Gleb Saygin, [katrovsky](https://github.com/katrovsky), Sergey, [sklart](https://github.com/sklart), [solarscream](https://github.com/solarscream), [tapnisu](https://github.com/tapnisu), [Vertuhai](https://github.com/Vertuhai) | +|   Sanskrit - संस्कृत भाषा | `sa` | [skanda890](https://github.com/skanda890) | +|   Slovak - Slovenčina | `sk` | [david-kucera](https://github.com/david-kucera), [Luk164](https://github.com/Luk164) | +|   Serbian - Srpski | `sr` | [daVinci13](https://github.com/daVinci13), [momcilovicluka](https://github.com/momcilovicluka) | +|   Albanian - Shqip | `sq` | [RDN000](https://github.com/RDN000) | +|   Sinhala - සිංහල | `si` | [SashikaSandeepa](https://github.com/SashikaSandeepa), [Savithu-s3](https://github.com/Savithu-s3), [ttheek](https://github.com/ttheek) | +|   Slovene - Slovenščina | `sl` | [rumplin](https://github.com/rumplin) | +|   Swedish - Svenska | `sv` | [curudel](https://github.com/curudel), [Hi-there-how-are-u](https://github.com/Hi-there-how-are-u), [kakmonster](https://github.com/kakmonster), [umeaboy](https://github.com/umeaboy) | +|   Tamil - தமிழ் | `ta` | [nochilli](https://github.com/nochilli) | +|   Tagalog - Tagalog | `tl` | lasersPew, [znarfm](https://github.com/znarfm) | +|   Thai - ภาษาไทย | `th` | [apaeisara](https://github.com/apaeisara), [dulapahv](https://github.com/dulapahv), [hanchain](https://github.com/hanchain), [rikoprushka](https://github.com/rikoprushka), [vestearth](https://github.com/vestearth) | +|   Turkish - Türkçe | `tr` | [ahmetozmtn](https://github.com/ahmetozmtn), [anzeralp](https://github.com/anzeralp), [BerkeA111](https://github.com/BerkeA111), [dogancanyr](https://github.com/dogancanyr), [gokberkgs](https://github.com/gokberkgs) | +|   Ukrainian - Українська | `uk` | Alex Logvin, Artem Moldovanenko, Operator404, [Taron-art](https://github.com/Taron-art), [Vertuhai](https://github.com/Vertuhai) | +|   Urdu - اردو | `ur` | [digitio](https://github.com/digitio), [digitpk](https://github.com/digitpk), [hamzaharoon1314](https://github.com/hamzaharoon1314) | +|   Vietnamese - Tiếng Việt | `vi` | [aethervn2309](https://github.com/aethervn2309), [legendsjoon](https://github.com/legendsjoon), [txavlog](https://github.com/txavlog), [vanlongluuly](https://github.com/vanlongluuly) | +|   Simplified Chinese (China) | `zh_CN` | Aaron Liu, [adfnekc](https://github.com/adfnekc), [Ardenet](https://github.com/Ardenet), [arthurfsy2](https://github.com/arthurfsy2), [bai0012](https://github.com/bai0012), BUGP Association, ciaran, CnYeSheng, Cololi, [dongfengweixiao](https://github.com/dongfengweixiao), [enKl03B](https://github.com/enKl03B), [seanyu0](https://github.com/seanyu0), [Sigechaishijie](https://github.com/Sigechaishijie), [SpaceTimee](https://github.com/SpaceTimee), [xiaopangju](https://github.com/xiaopangju), Yisme | +|   Traditional Chinese (Taiwan) | `zh_TW` | Aaron Liu, [CnYeSheng](https://github.com/CnYeSheng), Cololi, [enKl03B](https://github.com/enKl03B), [Henryliu880922](https://github.com/Henryliu880922), [MINAX2U](https://github.com/MINAX2U), [StarsShine11904](https://github.com/StarsShine11904), [yrctw](https://github.com/yrctw) | + diff --git a/scripts/translation/Get-TranslationStatus.ps1 b/scripts/translation/Get-TranslationStatus.ps1 index edc7ef21a0..d3f4581a0c 100644 --- a/scripts/translation/Get-TranslationStatus.ps1 +++ b/scripts/translation/Get-TranslationStatus.ps1 @@ -87,6 +87,15 @@ function Get-CompletionPercentage { return [int][Math]::Round(($Completed / $Total) * 100, 0, [MidpointRounding]::AwayFromZero) } +function Test-KnownPlaceholderLocale { + param( + [Parameter(Mandatory = $true)] + [string]$LanguageCode + ) + + return $false +} + function Test-IntentionalSourceEqualValue { param( [Parameter(Mandatory = $true)] @@ -152,6 +161,17 @@ function Test-IntentionalSourceEqualValue { return $true } + if ($LanguageCode -ceq 'es-MX' -and $SourceValue -ceq $TargetValue -and $SourceValue -in @( + 'Error', + 'Global', + 'Local', + 'No', + 'URL', + 'Url' + )) { + return $true + } + if ($LanguageCode -ceq 'fr' -and $SourceValue -ceq $TargetValue -and $SourceValue -in @( 'Ascendant', 'Descendant', @@ -355,6 +375,19 @@ function Get-TranslationStatusRow { } } + $isKnownPlaceholder = Test-KnownPlaceholderLocale -LanguageCode $LanguageCode + $sourceEqualThreshold = if ($totalKeys -le 0) { + 0 + } + else { + [int][Math]::Max( + [double]($totalKeys - 5), + [Math]::Ceiling($totalKeys * 0.98) + ) + } + + $potentialFallbackRegression = $HasFile -and -not $isKnownPlaceholder -and $sourceEqualKeys -ge $sourceEqualThreshold -and $translatedKeys -le 5 + $completion = Get-CompletionPercentage -Completed $translatedKeys -Total $totalKeys $storedText = if ($null -eq $StoredPercentage) { '' } else { '{0}%' -f $StoredPercentage } $delta = if ($null -eq $StoredPercentage) { $null } else { $completion - $StoredPercentage } @@ -378,6 +411,8 @@ function Get-TranslationStatusRow { Stored = $storedText StoredValue = $StoredPercentage Delta = $delta + KnownPlaceholder = $isKnownPlaceholder + PotentialFallbackRegression = $potentialFallbackRegression } } @@ -403,6 +438,7 @@ function Convert-RowsToMarkdown { function Write-OutputContent { param( [Parameter(Mandatory = $true)] + [AllowEmptyString()] [string]$Content ) @@ -438,13 +474,24 @@ function Get-OverviewLines { $totalMissing = ($Rows | Measure-Object -Property Missing -Sum).Sum $totalEmpty = ($Rows | Measure-Object -Property Empty -Sum).Sum $totalSourceEqual = ($Rows | Measure-Object -Property SourceEqual -Sum).Sum + $placeholderRows = @($Rows | Where-Object { $_.KnownPlaceholder }) + $potentialRegressionRows = @($Rows | Where-Object { $_.PotentialFallbackRegression }) - return @( - ('Languages: {0}' -f $Rows.Count), - ('Incomplete: {0}' -f $incompleteCount), - ('Fully translated: {0}' -f $completeCount), - ('Outstanding entries: {0} (missing {1}, empty {2}, source-equal {3})' -f $totalUntranslated, $totalMissing, $totalEmpty, $totalSourceEqual) - ) + $lines = New-Object System.Collections.Generic.List[string] + $lines.Add(('Languages: {0}' -f $Rows.Count)) + $lines.Add(('Incomplete: {0}' -f $incompleteCount)) + $lines.Add(('Fully translated: {0}' -f $completeCount)) + $lines.Add(('Outstanding entries: {0} (missing {1}, empty {2}, source-equal {3})' -f $totalUntranslated, $totalMissing, $totalEmpty, $totalSourceEqual)) + + if ($placeholderRows.Count -gt 0) { + $lines.Add(('Known placeholders: {0}' -f (($placeholderRows | ForEach-Object { $_.Code }) -join ', '))) + } + + if ($potentialRegressionRows.Count -gt 0) { + $lines.Add(('Potential fallback regressions: {0}' -f (($potentialRegressionRows | ForEach-Object { $_.Code }) -join ', '))) + } + + return $lines.ToArray() } $languagesDirectory = Get-LanguagesDirectoryPath @@ -490,7 +537,13 @@ $orderedRows = @( switch ($OutputFormat) { 'Json' { - $json = $orderedRows | ConvertTo-Json -Depth 5 + $json = if ($orderedRows.Count -eq 0) { + '[]' + } + else { + $orderedRows | ConvertTo-Json -Depth 5 + } + Write-OutputContent -Content $json } 'Markdown' { diff --git a/scripts/translation/Languages/LanguageData.psm1 b/scripts/translation/Languages/LanguageData.psm1 index 647dca1a8d..064b0a9ee8 100644 --- a/scripts/translation/Languages/LanguageData.psm1 +++ b/scripts/translation/Languages/LanguageData.psm1 @@ -12,6 +12,7 @@ $script:LanguageRemap = [ordered]@{ } $script:LanguageFlagsRemap = [ordered]@{ + 'af' = 'za' 'ar' = 'sa' 'bs' = 'ba' 'ca' = 'ad' @@ -19,12 +20,19 @@ $script:LanguageFlagsRemap = [ordered]@{ 'da' = 'dk' 'el' = 'gr' 'en' = 'gb' + 'eo' = 'https://upload.wikimedia.org/wikipedia/commons/f/f5/Flag_of_Esperanto.svg' + 'es-MX' = 'mx' 'et' = 'ee' 'fa' = 'ir' + 'fil' = 'ph' + 'gl' = 'es' 'he' = 'il' 'hi' = 'in' 'ja' = 'jp' + 'ka' = 'ge' 'ko' = 'kr' + 'ku' = 'iq' + 'mr' = 'in' 'nb' = 'no' 'nn' = 'no' 'pt_BR' = 'br' @@ -33,6 +41,7 @@ $script:LanguageFlagsRemap = [ordered]@{ 'sr' = 'rs' 'sv' = 'se' 'sl' = 'si' + 'ta' = 'in' 'vi' = 'vn' 'zh_CN' = 'cn' 'zh_TW' = 'tw' @@ -227,6 +236,24 @@ function Get-LanguageFilePathMap { } function Get-MarkdownSupportLangs { + return Get-MarkdownTranslationsTable +} + +function Get-MarkdownTranslationsTable { + param( + [switch]$IncludeZeroPercent, + + [switch]$IncludeLanguageCode, + + [switch]$IncludeFileColumn, + + [bool]$IncludeTranslatedColumn = $true, + + [bool]$IncludeCreditsColumn = $true, + + [string]$MissingCreditsText = '' + ) + $languageReference = Get-LanguageReference $translationPercentages = Get-TranslatedPercentages $languageCredits = Get-LanguageCredits @@ -234,8 +261,31 @@ function Get-MarkdownSupportLangs { $languagesDirectory = Get-LanguagesDirectoryPath $lines = New-Object System.Collections.Generic.List[string] - $lines.Add('| Language | Translated | Translator(s) |') - $lines.Add('| :-- | :-- | --- |') + $headers = @('Language') + $alignments = @(':--') + + if ($IncludeLanguageCode.IsPresent) { + $headers += 'Code' + $alignments += ':--' + } + + if ($IncludeTranslatedColumn) { + $headers += 'Translated' + $alignments += ':--' + } + + if ($IncludeFileColumn.IsPresent) { + $headers += 'File' + $alignments += ':--' + } + + if ($IncludeCreditsColumn) { + $headers += 'Contributor(s)' + $alignments += '---' + } + + $lines.Add('| ' + ($headers -join ' | ') + ' |') + $lines.Add('| ' + ($alignments -join ' | ') + ' |') foreach ($entry in $languageReference.GetEnumerator()) { $languageCode = [string]$entry.Key @@ -249,26 +299,85 @@ function Get-MarkdownSupportLangs { } $percentage = if ($translationPercentages.Contains($languageCode)) { [string]$translationPercentages[$languageCode] } else { '100%' } - if ($percentage -eq '0%') { + if ($percentage -eq '0%' -and -not $IncludeZeroPercent.IsPresent) { continue } $languageName = [string]$entry.Value $flag = if ($flagRemap.Contains($languageCode)) { [string]$flagRemap[$languageCode] } else { $languageCode } - $credits = if ($languageCredits.Contains($languageCode)) { - ConvertTo-TranslatorMarkdown -Translators $languageCredits[$languageCode] + $credits = '' + if ($IncludeCreditsColumn) { + $credits = if ($languageCredits.Contains($languageCode)) { + ConvertTo-TranslatorMarkdown -Translators $languageCredits[$languageCode] + } + else { + '' + } + + if ([string]::IsNullOrWhiteSpace($credits) -and -not [string]::IsNullOrWhiteSpace($MissingCreditsText)) { + $credits = $MissingCreditsText + } } - else { - '' + + $flagImageSource = if ([string]$flag -match '^[a-z]+://') { [string]$flag } else { "https://flagcdn.com/$flag.svg" } + + $row = New-Object System.Collections.Generic.List[string] + $row.Add("   $languageName") + + if ($IncludeLanguageCode.IsPresent) { + $row.Add(('`{0}`' -f $languageCode)) + } + + if ($IncludeTranslatedColumn) { + $row.Add($percentage) } - $lines.Add("|   $languageName | $percentage | $credits |") + if ($IncludeFileColumn.IsPresent) { + $relativeLanguageFilePath = (Join-Path 'src/UniGetUI.Core.LanguageEngine/Assets/Languages' ("lang_{0}.json" -f $languageCode)) -replace '\\', '/' + $row.Add("[lang_$languageCode.json]($relativeLanguageFilePath)") + } + + if ($IncludeCreditsColumn) { + $row.Add($credits) + } + + $lines.Add('| ' + ($row -join ' | ') + ' |') } $lines.Add('') return ($lines -join [Environment]::NewLine) } +function Get-TranslationDocumentationMarkdown { + $coverageTable = Get-MarkdownTranslationsTable -IncludeZeroPercent -IncludeLanguageCode -IncludeFileColumn -IncludeCreditsColumn:$false + $contributorsTable = Get-MarkdownTranslationsTable -IncludeZeroPercent -IncludeLanguageCode -IncludeTranslatedColumn:$false + + $sections = @( + '# Translations', + '', + 'UniGetUI includes translations for the languages listed below.', + '', + 'This page lists the supported languages, each locale file, current completion status, and the credited contributors for each translation.', + '', + 'If you would like to help improve a translation or report an issue, please open an issue or submit a pull request.', + '', + 'Translation discussion and coordination also happens in [GitHub discussion #4510](https://github.com/Devolutions/UniGetUI/discussions/4510).', + '', + '## Language Coverage', + '', + $coverageTable.TrimEnd(), + '', + '## Contributors', + '', + 'We are grateful to everyone who contributes translations to UniGetUI. Contributor credits are sourced from [Translators.json](src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json). If you would like to be added to or removed from the list for a particular language, please open a pull request.', + '', + $contributorsTable.TrimEnd(), + '' + ) + + return (($sections -join [Environment]::NewLine) + [Environment]::NewLine) +} + Export-ModuleMember -Function @( 'Get-ProjectRoot', 'Get-ContributorsListPath', @@ -285,5 +394,7 @@ Export-ModuleMember -Function @( 'Get-TranslatorsFromCredits', 'ConvertTo-TranslatorMarkdown', 'Get-MarkdownSupportLangs', + 'Get-MarkdownTranslationsTable', + 'Get-TranslationDocumentationMarkdown', 'Get-LanguageFilePathMap' ) \ No newline at end of file diff --git a/scripts/translation/Merge-TranslationDiffBatches.ps1 b/scripts/translation/Merge-TranslationDiffBatches.ps1 new file mode 100644 index 0000000000..888eeb56b4 --- /dev/null +++ b/scripts/translation/Merge-TranslationDiffBatches.ps1 @@ -0,0 +1,39 @@ +[CmdletBinding()] +param( + [Parameter(Mandatory = $true)] + [string]$BatchDir, + + [Parameter(Mandatory = $true)] + [string]$OutputTranslatedPatch +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +. (Join-Path $PSScriptRoot 'Languages\TranslationJsonTools.ps1') + +$batchRoot = Get-FullPath -Path $BatchDir +$outputPath = Get-FullPath -Path $OutputTranslatedPatch +$manifestPath = Join-Path $batchRoot 'manifest.json' + +if (-not (Test-Path -Path $manifestPath -PathType Leaf)) { + throw "Batch manifest not found: $manifestPath" +} + +$manifest = Get-Content -Path $manifestPath -Raw | ConvertFrom-Json +$mergedMap = New-OrderedStringMap + +foreach ($batch in @($manifest.batches | Sort-Object batchNumber)) { + $translatedPath = Join-Path $batchRoot ([string]$batch.translated) + if (-not (Test-Path -Path $translatedPath -PathType Leaf)) { + throw "Translated batch file not found: $translatedPath" + } + + $translatedMap = Read-OrderedJsonMap -Path $translatedPath + foreach ($entry in $translatedMap.GetEnumerator()) { + $mergedMap[[string]$entry.Key] = [string]$entry.Value + } +} + +Write-OrderedJsonMap -Path $outputPath -Map $mergedMap +Write-Output "Merged $($manifest.batchCount) translation batch(es) into $outputPath" \ No newline at end of file diff --git a/scripts/translation/Split-TranslationDiffBatches.ps1 b/scripts/translation/Split-TranslationDiffBatches.ps1 new file mode 100644 index 0000000000..55efefc7ed --- /dev/null +++ b/scripts/translation/Split-TranslationDiffBatches.ps1 @@ -0,0 +1,126 @@ +[CmdletBinding()] +param( + [Parameter(Mandatory = $true)] + [string]$SourcePatch, + + [Parameter(Mandatory = $true)] + [string]$OutputDir, + + [string]$TranslatedPatch, + + [string]$ReferencePatch, + + [ValidateRange(1, 100)] + [int]$BatchSize = 100, + + [switch]$Clean +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +. (Join-Path $PSScriptRoot 'Languages\TranslationJsonTools.ps1') + +function New-BatchFileName { + param( + [Parameter(Mandatory = $true)] + [int]$BatchNumber, + + [Parameter(Mandatory = $true)] + [string]$Kind + ) + + return ('batch.{0:D2}.{1}.json' -f $BatchNumber, $Kind) +} + +$sourcePatchPath = Get-FullPath -Path $SourcePatch +$outputRoot = Get-FullPath -Path $OutputDir +$translatedPatchPath = if ([string]::IsNullOrWhiteSpace($TranslatedPatch)) { $null } else { Get-FullPath -Path $TranslatedPatch } +$referencePatchPath = if ([string]::IsNullOrWhiteSpace($ReferencePatch)) { $null } else { Get-FullPath -Path $ReferencePatch } + +if (-not (Test-Path -Path $sourcePatchPath -PathType Leaf)) { + throw "Source patch not found: $sourcePatchPath" +} + +if ($null -ne $translatedPatchPath -and -not (Test-Path -Path $translatedPatchPath -PathType Leaf)) { + throw "Translated patch not found: $translatedPatchPath" +} + +if ($null -ne $referencePatchPath -and -not (Test-Path -Path $referencePatchPath -PathType Leaf)) { + throw "Reference patch not found: $referencePatchPath" +} + +if ($Clean -and (Test-Path -Path $outputRoot)) { + Remove-Item -Path $outputRoot -Recurse -Force +} + +New-Item -Path $outputRoot -ItemType Directory -Force | Out-Null + +$sourceMap = Read-OrderedJsonMap -Path $sourcePatchPath +$translatedMap = if ($null -eq $translatedPatchPath) { New-OrderedStringMap } else { Read-OrderedJsonMap -Path $translatedPatchPath } +$referenceMap = if ($null -eq $referencePatchPath) { New-OrderedStringMap } else { Read-OrderedJsonMap -Path $referencePatchPath } + +$entries = @($sourceMap.GetEnumerator()) +$batchCount = if ($entries.Count -eq 0) { 0 } else { [int][Math]::Ceiling($entries.Count / $BatchSize) } +$manifestBatches = New-Object System.Collections.Generic.List[object] + +for ($batchIndex = 0; $batchIndex -lt $batchCount; $batchIndex += 1) { + $batchNumber = $batchIndex + 1 + $startIndex = $batchIndex * $BatchSize + $endIndexExclusive = [Math]::Min($startIndex + $BatchSize, $entries.Count) + + $batchSourceMap = New-OrderedStringMap + $batchTranslatedMap = New-OrderedStringMap + $batchReferenceMap = New-OrderedStringMap + $batchKeys = New-Object System.Collections.Generic.List[string] + + for ($entryIndex = $startIndex; $entryIndex -lt $endIndexExclusive; $entryIndex += 1) { + $entry = $entries[$entryIndex] + $key = [string]$entry.Key + $value = [string]$entry.Value + + $batchSourceMap[$key] = $value + $batchKeys.Add($key) + + if ($translatedMap.Contains($key)) { + $batchTranslatedMap[$key] = [string]$translatedMap[$key] + } + + if ($referenceMap.Contains($key)) { + $batchReferenceMap[$key] = [string]$referenceMap[$key] + } + } + + $sourceFileName = New-BatchFileName -BatchNumber $batchNumber -Kind 'source' + $translatedFileName = New-BatchFileName -BatchNumber $batchNumber -Kind 'translated' + $referenceFileName = New-BatchFileName -BatchNumber $batchNumber -Kind 'reference' + + Write-OrderedJsonMap -Path (Join-Path $outputRoot $sourceFileName) -Map $batchSourceMap + Write-OrderedJsonMap -Path (Join-Path $outputRoot $translatedFileName) -Map $batchTranslatedMap + Write-OrderedJsonMap -Path (Join-Path $outputRoot $referenceFileName) -Map $batchReferenceMap + + $manifestBatches.Add([pscustomobject]@{ + batchNumber = $batchNumber + keyCount = $batchSourceMap.Count + source = $sourceFileName + translated = $translatedFileName + reference = $referenceFileName + firstKey = if ($batchKeys.Count -gt 0) { $batchKeys[0] } else { $null } + lastKey = if ($batchKeys.Count -gt 0) { $batchKeys[$batchKeys.Count - 1] } else { $null } + }) | Out-Null +} + +$manifest = [pscustomobject]@{ + generatedAt = (Get-Date).ToString('o') + sourcePatch = $sourcePatchPath + translatedPatch = $translatedPatchPath + referencePatch = $referencePatchPath + batchSize = $BatchSize + totalKeys = $sourceMap.Count + batchCount = $batchCount + batches = $manifestBatches.ToArray() +} + +New-Utf8File -Path (Join-Path $outputRoot 'manifest.json') -Content (($manifest | ConvertTo-Json -Depth 6) + "`r`n") + +Write-Output "Created $batchCount translation batch(es) in $outputRoot" diff --git a/scripts/translation/Sync-TranslationMetadata.ps1 b/scripts/translation/Sync-TranslationMetadata.ps1 new file mode 100644 index 0000000000..a9b7bb2435 --- /dev/null +++ b/scripts/translation/Sync-TranslationMetadata.ps1 @@ -0,0 +1,346 @@ +[CmdletBinding(DefaultParameterSetName = 'Selected', SupportsShouldProcess = $true)] +param( + [Parameter(ParameterSetName = 'Selected', Mandatory = $true)] + [string[]]$LanguageCodes, + + [Parameter(ParameterSetName = 'All')] + [switch]$AllLanguages, + + [switch]$CheckOnly, + + [switch]$UpdateTranslationDoc, + + [switch]$UpdateReadme, + + [string]$ReadmePath = (Join-Path $PSScriptRoot '..\..\README.md'), + + [string]$TranslationDocPath = (Join-Path $PSScriptRoot '..\..\TRANSLATION.md'), + + [string]$TranslatorsPath = (Join-Path $PSScriptRoot '..\..\src\UniGetUI.Core.LanguageEngine\Assets\Data\Translators.json'), + + [string]$TranslatedPercentagesPath = (Join-Path $PSScriptRoot '..\..\src\UniGetUI.Core.LanguageEngine\Assets\Data\TranslatedPercentages.json') +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +Import-Module (Join-Path $PSScriptRoot 'Languages\LanguageData.psm1') -Force +. (Join-Path $PSScriptRoot 'Languages\TranslationJsonTools.ps1') + +$script:TranslatorCreditsKey = '0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry' + +function Read-JsonObject { + param( + [Parameter(Mandatory = $true)] + [string]$Path + ) + + if (-not (Test-Path -Path $Path -PathType Leaf)) { + return [ordered]@{} + } + + $content = [System.IO.File]::ReadAllText($Path) + if ([string]::IsNullOrWhiteSpace($content)) { + return [ordered]@{} + } + + $parsed = $content | ConvertFrom-Json -AsHashtable + if ($null -eq $parsed) { + return [ordered]@{} + } + + if (-not ($parsed -is [System.Collections.IDictionary])) { + throw "JSON root must be an object: $Path" + } + + return $parsed +} + +function ConvertTo-NormalizedJson { + param( + [Parameter(Mandatory = $true)] + [AllowNull()] + [object]$Value + ) + + return ($Value | ConvertTo-Json -Depth 10) +} + +function ConvertTo-TranslatorMetadataJson { + param( + [Parameter(Mandatory = $true)] + [System.Collections.IDictionary]$Map + ) + + $lines = New-Object System.Collections.Generic.List[string] + $lines.Add('{') + + $rootEntries = @($Map.GetEnumerator()) + for ($index = 0; $index -lt $rootEntries.Count; $index++) { + $entry = $rootEntries[$index] + $key = ConvertTo-JsonStringLiteral -Value ([string]$entry.Key) + $translators = @($entry.Value) + $isLastRootEntry = $index -eq ($rootEntries.Count - 1) + + if ($translators.Count -eq 0) { + $line = ' {0}: []' -f $key + if (-not $isLastRootEntry) { + $line += ',' + } + + $lines.Add($line) + continue + } + + $lines.Add(' {0}: [' -f $key) + for ($translatorIndex = 0; $translatorIndex -lt $translators.Count; $translatorIndex++) { + $translator = $translators[$translatorIndex] + $isLastTranslator = $translatorIndex -eq ($translators.Count - 1) + $name = ConvertTo-JsonStringLiteral -Value ([string]$translator['name']) + $link = ConvertTo-JsonStringLiteral -Value ([string]$translator['link']) + + $lines.Add(' {') + $lines.Add(' "name": {0},' -f $name) + $lines.Add(' "link": {0}' -f $link) + + $translatorClosing = ' }' + if (-not $isLastTranslator) { + $translatorClosing += ',' + } + + $lines.Add($translatorClosing) + } + + $rootClosing = ' ]' + if (-not $isLastRootEntry) { + $rootClosing += ',' + } + + $lines.Add($rootClosing) + } + + $lines.Add('}') + return (($lines -join "`r`n") + "`r`n") +} + +function Get-RequestedLanguageCodes { + $languageReference = Get-LanguageReference + $codesToUpdate = @() + + if ($AllLanguages.IsPresent) { + $codesToUpdate = @( + $languageReference.Keys | + Where-Object { $_ -ne 'default' } | + Sort-Object + ) + } + else { + $codesToUpdate = @( + $LanguageCodes | + ForEach-Object { $_.Trim() } | + Where-Object { -not [string]::IsNullOrWhiteSpace($_) } | + Sort-Object -Unique + ) + } + + if ($codesToUpdate.Count -eq 0) { + throw 'No language codes were provided.' + } + + foreach ($code in $codesToUpdate) { + if (-not $languageReference.Contains($code)) { + throw "Unknown language code '$code'." + } + } + + return $codesToUpdate +} + +function Get-ExpectedTranslationPercentages { + param( + [Parameter(Mandatory = $true)] + [string[]]$CodesToUpdate, + + [Parameter(Mandatory = $true)] + [string]$Path + ) + + $includeEnglish = $AllLanguages.IsPresent -or ($CodesToUpdate -contains 'en') + $statusJson = & (Join-Path $PSScriptRoot 'Get-TranslationStatus.ps1') -OutputFormat Json -IncludeEnglish:$includeEnglish + $statusRows = $statusJson | ConvertFrom-Json -AsHashtable + if ($null -eq $statusRows) { + throw 'Could not load translation status data.' + } + + $statusByCode = @{} + foreach ($row in $statusRows) { + $statusByCode[[string]$row.Code] = $row + } + + $storedPercentages = Read-JsonObject -Path $Path + $updatedPercentages = [ordered]@{} + foreach ($entry in $storedPercentages.GetEnumerator()) { + $updatedPercentages[[string]$entry.Key] = [string]$entry.Value + } + + foreach ($code in $CodesToUpdate) { + if (-not $statusByCode.ContainsKey($code)) { + throw "Language code '$code' was not found in the computed translation status." + } + + $updatedPercentages[$code] = [string]$statusByCode[$code].Completion + } + + return $updatedPercentages +} + +function Get-ExpectedTranslatorMetadata { + param( + [Parameter(Mandatory = $true)] + [string[]]$CodesToUpdate, + + [Parameter(Mandatory = $true)] + [string]$Path + ) + + $languagesDirectory = Get-LanguagesDirectoryPath + $englishLanguageFilePath = Join-Path $languagesDirectory 'lang_en.json' + $storedTranslators = Read-JsonObject -Path $Path + $updatedTranslators = [ordered]@{} + foreach ($entry in $storedTranslators.GetEnumerator()) { + $updatedTranslators[[string]$entry.Key] = @($entry.Value) + } + + $englishLanguageMap = Read-OrderedJsonMap -Path $englishLanguageFilePath + if (-not $englishLanguageMap.Contains($script:TranslatorCreditsKey)) { + throw "Translator credits entry was not found in $englishLanguageFilePath" + } + + $englishCreditsSignature = Get-TranslatorCreditsSignature -Credits ([string]$englishLanguageMap[$script:TranslatorCreditsKey]) + + foreach ($code in $CodesToUpdate) { + $languageFilePath = Join-Path $languagesDirectory ("lang_{0}.json" -f $code) + if (-not (Test-Path -Path $languageFilePath -PathType Leaf)) { + throw "Language file not found: $languageFilePath" + } + + $languageMap = Read-OrderedJsonMap -Path $languageFilePath + if (-not $languageMap.Contains($script:TranslatorCreditsKey)) { + throw "Translator credits entry was not found in $languageFilePath" + } + + $credits = [string]$languageMap[$script:TranslatorCreditsKey] + $creditsSignature = Get-TranslatorCreditsSignature -Credits $credits + $shouldPreserveExisting = $code -ne 'en' -and $creditsSignature -eq $englishCreditsSignature + + if ($shouldPreserveExisting) { + if (-not $updatedTranslators.Contains($code)) { + $updatedTranslators[$code] = @() + } + + Write-Warning "Preserving existing translator metadata for '$code' because its locale credits currently match the English fallback credits." + continue + } + + $updatedTranslators[$code] = @(ConvertTo-TranslatorMetadataEntries -Credits $credits) + } + + return $updatedTranslators +} + +function Get-TranslatorCreditsSignature { + param( + [AllowNull()] + [string]$Credits + ) + + $entries = @(Get-TranslatorsFromCredits -Credits $Credits) + if ($entries.Count -eq 0) { + return '' + } + + return @( + $entries | + ForEach-Object { ([string]$_.name).Trim().ToLowerInvariant() } + ) -join "`n" +} + +function ConvertTo-TranslatorMetadataEntries { + param( + [AllowNull()] + [string]$Credits + ) + + return @( + Get-TranslatorsFromCredits -Credits $Credits | + ForEach-Object { + [ordered]@{ + name = [string]$_.name + link = [string]$_.link + } + } + ) +} + +function Write-TranslationDocumentation { + param( + [Parameter(Mandatory = $true)] + [string]$Path + ) + + New-Utf8File -Path $Path -Content (Get-TranslationDocumentationMarkdown) +} + +$shouldUpdateTranslationDoc = $UpdateTranslationDoc.IsPresent +if ($UpdateReadme.IsPresent) { + Write-Warning 'The -UpdateReadme switch is deprecated. Updating TRANSLATION.md instead.' + $shouldUpdateTranslationDoc = $true +} + +$codesToUpdate = Get-RequestedLanguageCodes +$expectedPercentages = Get-ExpectedTranslationPercentages -CodesToUpdate $codesToUpdate -Path $TranslatedPercentagesPath +$expectedTranslators = Get-ExpectedTranslatorMetadata -CodesToUpdate $codesToUpdate -Path $TranslatorsPath + +$actualPercentages = Read-JsonObject -Path $TranslatedPercentagesPath +$actualTranslators = Read-JsonObject -Path $TranslatorsPath + +$driftedFiles = New-Object System.Collections.Generic.List[string] +if ((ConvertTo-NormalizedJson -Value $actualPercentages) -ne (ConvertTo-NormalizedJson -Value $expectedPercentages)) { + $driftedFiles.Add((Get-TranslatedPercentagesJsonPath)) +} + +if ((ConvertTo-NormalizedJson -Value $actualTranslators) -ne (ConvertTo-NormalizedJson -Value $expectedTranslators)) { + $driftedFiles.Add((Get-TranslatorsJsonPath)) +} + +Write-Output ('Translation metadata scope: ' + ($codesToUpdate -join ', ')) +Write-Output ('Metadata drift detected: ' + $driftedFiles.Count) + +if ($driftedFiles.Count -gt 0) { + foreach ($path in $driftedFiles) { + Write-Output (' * ' + $path) + } +} + +if ($CheckOnly.IsPresent) { + if ($driftedFiles.Count -gt 0) { + throw 'Translation metadata is out of date. Run scripts/translation/Sync-TranslationMetadata.ps1 to refresh it.' + } + + Write-Output 'Translation metadata is up to date.' + return +} + +if ($driftedFiles.Contains((Get-TranslatedPercentagesJsonPath)) -and $PSCmdlet.ShouldProcess($TranslatedPercentagesPath, 'Update translated percentages metadata')) { + New-Utf8File -Path $TranslatedPercentagesPath -Content ((ConvertTo-NormalizedJson -Value $expectedPercentages) + "`r`n") +} + +if ($driftedFiles.Contains((Get-TranslatorsJsonPath)) -and $PSCmdlet.ShouldProcess($TranslatorsPath, 'Update translator metadata')) { + New-Utf8File -Path $TranslatorsPath -Content (ConvertTo-TranslatorMetadataJson -Map $expectedTranslators) +} + +if ($shouldUpdateTranslationDoc -and $PSCmdlet.ShouldProcess($TranslationDocPath, 'Update translation documentation')) { + Write-TranslationDocumentation -Path $TranslationDocPath +} + +Write-Output 'Translation metadata sync completed.' \ No newline at end of file diff --git a/scripts/translation/Sync-TranslationStatus.ps1 b/scripts/translation/Sync-TranslationStatus.ps1 index 5e9e202b7c..23876b8b04 100644 --- a/scripts/translation/Sync-TranslationStatus.ps1 +++ b/scripts/translation/Sync-TranslationStatus.ps1 @@ -6,10 +6,14 @@ param( [Parameter(ParameterSetName = 'All')] [switch]$AllLanguages, + [switch]$UpdateTranslationDoc, + [switch]$UpdateReadme, [string]$ReadmePath = (Join-Path $PSScriptRoot '..\..\README.md'), + [string]$TranslationDocPath = (Join-Path $PSScriptRoot '..\..\TRANSLATION.md'), + [string]$TranslatedPercentagesPath = (Join-Path $PSScriptRoot '..\..\src\UniGetUI.Core.LanguageEngine\Assets\Data\TranslatedPercentages.json') ) @@ -59,17 +63,20 @@ function Write-Utf8File { [System.IO.File]::WriteAllText($Path, $Content, $encoding) } -function Get-NewLine { +function Write-TranslationDocumentation { param( - [AllowEmptyString()] - [string]$Content + [Parameter(Mandatory = $true)] + [string]$Path ) - if ($Content -match "`r`n") { - return "`r`n" - } + $encoding = [System.Text.UTF8Encoding]::new($false) + [System.IO.File]::WriteAllText($Path, (Get-TranslationDocumentationMarkdown), $encoding) +} - return "`n" +$shouldUpdateTranslationDoc = $UpdateTranslationDoc.IsPresent +if ($UpdateReadme.IsPresent) { + Write-Warning 'The -UpdateReadme switch is deprecated. Updating TRANSLATION.md instead.' + $shouldUpdateTranslationDoc = $true } $statusJson = & (Join-Path $PSScriptRoot 'Get-TranslationStatus.ps1') -OutputFormat Json @@ -112,33 +119,8 @@ foreach ($code in $codesToUpdate) { $percentagesJson = ($updatedPercentages | ConvertTo-Json -Depth 5) Write-Utf8File -Path $TranslatedPercentagesPath -Content $percentagesJson -if ($UpdateReadme.IsPresent) { - $readmeContent = [System.IO.File]::ReadAllText($ReadmePath) - $newLine = Get-NewLine -Content $readmeContent - $generatedTable = Get-MarkdownSupportLangs - $generatedTable = $generatedTable -replace "`r?`n", $newLine - $replacementBlock = @( - '', - $generatedTable.TrimEnd(), - '', - ('Last updated: ' + (Get-Date).ToString('ddd MMM dd HH:mm:ss yyyy')), - '' - ) -join $newLine - - $pattern = '[\s\S]*?' - if ($readmeContent -notmatch $pattern) { - throw 'Could not locate the autogenerated translations block in README.md.' - } - - $updatedReadmeContent = [System.Text.RegularExpressions.Regex]::Replace( - $readmeContent, - $pattern, - [System.Text.RegularExpressions.MatchEvaluator]{ param($match) $replacementBlock }, - [System.Text.RegularExpressions.RegexOptions]::None, - [TimeSpan]::FromSeconds(2) - ) - - Write-Utf8File -Path $ReadmePath -Content $updatedReadmeContent +if ($shouldUpdateTranslationDoc) { + Write-TranslationDocumentation -Path $TranslationDocPath } Write-Output ('Updated translation status metadata for: ' + ($codesToUpdate -join ', ')) \ No newline at end of file diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/AboutPageViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/AboutPageViewModel.cs index 8084396a71..8123de330b 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/AboutPageViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/AboutPageViewModel.cs @@ -7,7 +7,7 @@ namespace UniGetUI.Avalonia.ViewModels.Pages.AboutPages; public partial class AboutPageViewModel : ViewModelBase { public string VersionText { get; } = - CoreTools.Translate("You have installed WingetUI Version {0}", CoreData.VersionName); + CoreTools.Translate("You have installed UniGetUI Version {0}", CoreData.VersionName); public string DisclaimerTitle { get; } = CoreTools.Translate("Disclaimer"); diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ContributorsViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ContributorsViewModel.cs index 4ffb0d9a8a..ec1b244695 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ContributorsViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ContributorsViewModel.cs @@ -40,7 +40,7 @@ public async Task LoadPictureAsync() public class ContributorsViewModel : ViewModelBase { public string ThanksText { get; } = CoreTools.Translate( - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳"); + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳"); public ObservableCollection ContributorList { get; } = []; diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ThirdPartyLicensesViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ThirdPartyLicensesViewModel.cs index de790c76c2..54c620fdd8 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ThirdPartyLicensesViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/ThirdPartyLicensesViewModel.cs @@ -16,7 +16,7 @@ public class LibraryLicense public class ThirdPartyLicensesViewModel : ViewModelBase { public string LicensesIntro { get; } = CoreTools.Translate( - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible."); + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible."); public ObservableCollection Licenses { get; } = []; diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/TranslatorsViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/TranslatorsViewModel.cs index 12d514f3d2..39fcc2079b 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/TranslatorsViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/AboutPages/TranslatorsViewModel.cs @@ -42,7 +42,7 @@ public async Task LoadPictureAsync() public class TranslatorsViewModel : ViewModelBase { public string ThanksText { get; } = CoreTools.Translate( - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝"); + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝"); public ObservableCollection TranslatorList { get; } = []; diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/GeneralViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/GeneralViewModel.cs index a51bcef0a0..7223f7e920 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/GeneralViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/GeneralViewModel.cs @@ -46,7 +46,7 @@ private static async Task ExportSettings(Visual? visual) if (visual is null || TopLevel.GetTopLevel(visual) is not { } topLevel) return; var file = await topLevel.StorageProvider.SaveFilePickerAsync(new FilePickerSaveOptions { - SuggestedFileName = CoreTools.Translate("WingetUI Settings") + ".json", + SuggestedFileName = CoreTools.Translate("UniGetUI Settings") + ".json", FileTypeChoices = [new FilePickerFileType("Settings JSON") { Patterns = ["*.json"] }], }); if (file is null) return; diff --git a/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/PackageManagerViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/PackageManagerViewModel.cs index c698cd539e..f73e66c44e 100644 --- a/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/PackageManagerViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/PackageManagerViewModel.cs @@ -126,7 +126,7 @@ public void RefreshState(bool showVersion = false) { Severity = ManagerStatusSeverity.Error; StatusTitle = CoreTools.Translate("{pm} was not found!").Replace("{pm}", Manager.DisplayName); - StatusMessage = CoreTools.Translate("You may need to install {pm} in order to use it with WingetUI.").Replace("{pm}", Manager.DisplayName); + StatusMessage = CoreTools.Translate("You may need to install {pm} in order to use it with UniGetUI.").Replace("{pm}", Manager.DisplayName); } StatusMessageVisible = !string.IsNullOrEmpty(StatusMessage); @@ -138,7 +138,7 @@ private void ScoopInstall() { _ = CoreTools.LaunchBatchFile( Path.Join(CoreData.UniGetUIExecutableDirectory, "Assets", "Utilities", "install_scoop.cmd"), - CoreTools.Translate("Scoop Installer - WingetUI")); + CoreTools.Translate("Scoop Installer - UniGetUI")); RestartRequired?.Invoke(this, EventArgs.Empty); } @@ -147,7 +147,7 @@ private void ScoopUninstall() { _ = CoreTools.LaunchBatchFile( Path.Join(CoreData.UniGetUIExecutableDirectory, "Assets", "Utilities", "uninstall_scoop.cmd"), - CoreTools.Translate("Scoop Uninstaller - WingetUI")); + CoreTools.Translate("Scoop Uninstaller - UniGetUI")); RestartRequired?.Invoke(this, EventArgs.Empty); } @@ -156,7 +156,7 @@ private void ScoopCleanup() { _ = CoreTools.LaunchBatchFile( Path.Join(CoreData.UniGetUIExecutableDirectory, "Assets", "Utilities", "scoop_cleanup.cmd"), - CoreTools.Translate("Clearing Scoop cache - WingetUI"), + CoreTools.Translate("Clearing Scoop cache - UniGetUI"), RunAsAdmin: true); } diff --git a/src/UniGetUI.Avalonia/ViewModels/SidebarViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/SidebarViewModel.cs index b51b9769e8..5a5136b524 100644 --- a/src/UniGetUI.Avalonia/ViewModels/SidebarViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/SidebarViewModel.cs @@ -73,7 +73,7 @@ partial void OnIsPaneOpenChanged(bool value) // ─── Navigation ────────────────────────────────────────────────────────── public event EventHandler? NavigationRequested; - public string VersionLabel { get; } = CoreTools.Translate("WingetUI Version {0}", CoreData.VersionName); + public string VersionLabel { get; } = CoreTools.Translate("UniGetUI Version {0}", CoreData.VersionName); [RelayCommand] public void RequestNavigation(string? pageName) diff --git a/src/UniGetUI.Avalonia/Views/Pages/AboutPages/AboutPage.axaml b/src/UniGetUI.Avalonia/Views/Pages/AboutPages/AboutPage.axaml index 44ffba3c18..f9b84bc73d 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/AboutPages/AboutPage.axaml +++ b/src/UniGetUI.Avalonia/Views/Pages/AboutPages/AboutPage.axaml @@ -11,11 +11,11 @@ - - - - diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml index 0076b9a61d..e4ae8ce547 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml @@ -24,7 +24,7 @@ Margin="44,32,4,8"/> @@ -62,7 +62,7 @@ CommandParameter="{Binding $self}"/> diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs index cc06613c77..6720a4b5b4 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml.cs @@ -37,7 +37,7 @@ public General() foreach (var entry in langDict) LanguageSelector.AddItem(entry.Value, entry.Key, false); LanguageSelector.SettingName = CoreSettings.K.PreferredLanguage; - LanguageSelector.Text = CoreTools.Translate("WingetUI display language:"); + LanguageSelector.Text = CoreTools.Translate("UniGetUI display language:"); LanguageSelector.ShowAddedItems(); LanguageSelector.ValueChanged += (s, e) => RestartRequired?.Invoke(s, e); LanguageSelector.Description = BuildTranslatorDescription(); diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml index 37b7943c19..6cc7e1249b 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml @@ -35,7 +35,7 @@ diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Notifications.axaml b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Notifications.axaml index 366ad9e23c..b33890c849 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Notifications.axaml +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Notifications.axaml @@ -24,7 +24,7 @@ IsVisible="{Binding IsSystemTrayWarningVisible}"/> diff --git a/src/UniGetUI.Avalonia/Views/SidebarView.axaml b/src/UniGetUI.Avalonia/Views/SidebarView.axaml index 899c1af73c..e30b20a789 100644 --- a/src/UniGetUI.Avalonia/Views/SidebarView.axaml +++ b/src/UniGetUI.Avalonia/Views/SidebarView.axaml @@ -198,7 +198,7 @@ - + diff --git a/src/UniGetUI.Core.Language.Tests/LanguageEngineTests.cs b/src/UniGetUI.Core.Language.Tests/LanguageEngineTests.cs index 62fc687115..e0495247f5 100644 --- a/src/UniGetUI.Core.Language.Tests/LanguageEngineTests.cs +++ b/src/UniGetUI.Core.Language.Tests/LanguageEngineTests.cs @@ -8,7 +8,7 @@ public class LanguageEngineTests [Theory] [InlineData("ca", "Fes una còpia de seguretat dels paquets instal·lats")] [InlineData("es", "Respaldar paquetes instalados")] - [InlineData("ua", "Резервне копіювання встановлених пакетів")] + [InlineData("uk", "Резервне копіювання встановлених пакетів")] public void TestLoadingLanguage(string language, string translation) { LanguageEngine engine = new(); @@ -30,8 +30,8 @@ public void TestLoadingLanguageForNonExistentKey() } [Theory] - [InlineData("en", "UniGetUI Log", "UniGetUI (formerly WingetUI)")] - [InlineData("ca", "Registre de l'UniGetUI", "UniGetUI (abans WingetUI)")] + [InlineData("en", "UniGetUI Log", "UniGetUI")] + [InlineData("ca", "Registre de l'UniGetUI", "UniGetUI")] public void TestUniGetUIRefactoring( string language, string uniGetUILogTranslation, @@ -41,8 +41,8 @@ string uniGetUITranslation LanguageEngine engine = new(); engine.LoadLanguage(language); - Assert.Equal(uniGetUILogTranslation, engine.Translate("WingetUI Log")); - Assert.Equal(uniGetUITranslation, engine.Translate("WingetUI")); + Assert.Equal(uniGetUILogTranslation, engine.Translate("UniGetUI Log")); + Assert.Equal(uniGetUITranslation, engine.Translate("UniGetUI")); } [Fact] @@ -58,10 +58,19 @@ public void TestLoadingUkrainianSpecificTranslation() { LanguageEngine engine = new(); - engine.LoadLanguage("ua"); + engine.LoadLanguage("uk"); Assert.Equal("Підсистема Android", engine.Translate("Android Subsystem")); } + [Fact] + public void TestLoadingLegacyUkrainianAlias() + { + LanguageEngine engine = new(); + + engine.LoadLanguage("ua"); + Assert.Equal("uk", engine.Locale); + } + [Fact] public void TestLoadingLanguageIgnoresCachedOverrides() { diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json b/src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json index dbe5f90cab..df59caf444 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Data/LanguagesReference.json @@ -12,6 +12,7 @@ "el": "Greek - Ελληνικά", "et": "Estonian - Eesti", "en": "English - English", + "eo": "Esperanto - Esperanto", "es": "Spanish - Castellano", "es-MX": "Spanish (Mexico)", "fa": "Persian - فارسی‎", @@ -50,10 +51,10 @@ "sl": "Slovene - Slovenščina", "sv": "Swedish - Svenska", "ta": "Tamil - தமிழ்", - "tg": "Tagalog - Tagalog", + "tl": "Tagalog - Tagalog", "th": "Thai - ภาษาไทย", "tr": "Turkish - Türkçe", - "ua": "Ukrainian - Українська", + "uk": "Ukrainian - Українська", "ur": "Urdu - اردو", "vi": "Vietnamese - Tiếng Việt", "zh_CN": "Simplified Chinese (China)", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json b/src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json index e01b572a20..7101fa3e23 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Data/TranslatedPercentages.json @@ -1,44 +1,61 @@ { - "af": "86%", - "ar": "90%", - "be": "99%", - "bg": "99%", + "af": "100%", + "ar": "100%", + "be": "100%", + "bg": "100%", "bn": "100%", "da": "100%", - "el": "99%", - "es": "99%", - "es-MX": "0%", + "el": "100%", + "eo": "100%", + "es": "100%", + "es-MX": "100%", "et": "100%", - "fa": "98%", + "fa": "100%", "fil": "100%", - "gl": "0%", - "gu": "6%", - "he": "99%", - "hi": "92%", - "hr": "99%", - "hu": "99%", - "id": "99%", - "ja": "99%", - "ka": "98%", - "kn": "8%", - "ko": "99%", - "ku": "0%", - "lt": "92%", - "mk": "40%", - "mr": "0%", + "gl": "100%", + "gu": "100%", + "he": "100%", + "hi": "100%", + "hr": "100%", + "hu": "100%", + "id": "100%", + "ja": "100%", + "ka": "100%", + "kn": "100%", + "ko": "100%", + "ku": "100%", + "lt": "100%", + "mk": "100%", + "mr": "100%", "nb": "100%", "nn": "100%", - "pt_PT": "99%", - "ru": "99%", - "sa": "8%", - "si": "10%", - "sk": "99%", - "sl": "88%", + "pt_PT": "100%", + "ru": "100%", + "sa": "100%", + "si": "100%", + "sk": "100%", + "sl": "100%", "sr": "100%", - "ta": "4%", - "tg": "11%", + "ta": "100%", + "tl": "100%", "th": "100%", - "tr": "99%", - "ua": "99%", - "ur": "100%" -} \ No newline at end of file + "tr": "100%", + "uk": "100%", + "ur": "100%", + "ca": "100%", + "cs": "100%", + "de": "100%", + "fi": "100%", + "fr": "100%", + "it": "100%", + "nl": "100%", + "pl": "100%", + "pt_BR": "100%", + "ro": "100%", + "sq": "100%", + "sv": "100%", + "vi": "100%", + "zh_CN": "100%", + "zh_TW": "100%", + "en": "100%" +} diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json b/src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json index f25ecd9b81..502caf3058 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Data/Translators.json @@ -263,7 +263,44 @@ "link": "https://github.com/uKER" } ], - "es-MX": [], + "es-MX": [ + { + "name": "apazga", + "link": "https://github.com/apazga" + }, + { + "name": "dalbitresb12", + "link": "https://github.com/dalbitresb12" + }, + { + "name": "evaneliasyoung", + "link": "https://github.com/evaneliasyoung" + }, + { + "name": "guplem", + "link": "https://github.com/guplem" + }, + { + "name": "JMoreno97", + "link": "https://github.com/JMoreno97" + }, + { + "name": "marticliment", + "link": "https://github.com/marticliment" + }, + { + "name": "P10Designs", + "link": "https://github.com/P10Designs" + }, + { + "name": "rubnium", + "link": "https://github.com/rubnium" + }, + { + "name": "uKER", + "link": "https://github.com/uKER" + } + ], "et": [ { "name": "artjom3729", @@ -318,7 +355,6 @@ "link": "https://github.com/W1L7dev" } ], - "gl": [], "gu": [], "he": [ { @@ -480,16 +516,15 @@ "link": "https://github.com/VenusGirl" } ], - "ku": [], "lt": [ - { - "name": "dziugas1959", - "link": "https://github.com/dziugas1959" - }, { "name": "Džiugas Januševičius", "link": "" }, + { + "name": "dziugas1959", + "link": "https://github.com/dziugas1959" + }, { "name": "martyn3z", "link": "https://github.com/martyn3z" @@ -501,7 +536,6 @@ "link": "" } ], - "mr": [], "nb": [ { "name": "DandelionSprout", @@ -683,7 +717,7 @@ }, { "name": "sklart", - "link": "" + "link": "https://github.com/sklart" }, { "name": "solarscream", @@ -692,6 +726,10 @@ { "name": "tapnisu", "link": "https://github.com/tapnisu" + }, + { + "name": "Vertuhai", + "link": "https://github.com/Vertuhai" } ], "sa": [ @@ -770,7 +808,7 @@ "link": "https://github.com/nochilli" } ], - "tg": [ + "tl": [ { "name": "lasersPew", "link": "" @@ -807,20 +845,24 @@ "name": "ahmetozmtn", "link": "https://github.com/ahmetozmtn" }, + { + "name": "anzeralp", + "link": "https://github.com/anzeralp" + }, { "name": "BerkeA111", "link": "https://github.com/BerkeA111" }, { - "name": "dogancanyr @anzeralp", - "link": "https://github.com/dogancanyr @anzeralp" + "name": "dogancanyr", + "link": "https://github.com/dogancanyr" }, { "name": "gokberkgs", "link": "https://github.com/gokberkgs" } ], - "ua": [ + "uk": [ { "name": "Alex Logvin", "link": "" @@ -836,6 +878,10 @@ { "name": "Taron-art", "link": "https://github.com/Taron-art" + }, + { + "name": "Vertuhai", + "link": "https://github.com/Vertuhai" } ], "ur": [ @@ -877,7 +923,7 @@ }, { "name": "adfnekc", - "link": "" + "link": "https://github.com/adfnekc" }, { "name": "Ardenet", @@ -969,5 +1015,9 @@ "name": "yrctw", "link": "https://github.com/yrctw" } - ] -} \ No newline at end of file + ], + "eo": [], + "gl": [], + "ku": [], + "mr": [] +} diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json index 5bd1b43079..9a61d7b49e 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_af.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Staak deïnstallering as die voor-deïnstalleer-opdrag misluk", "Command-line to run:": "Opdrag-lyn om te loop:", "Save and close": "Stoor en sluit", + "General": "Algemeen", + "Architecture & Location": "Argitektuur en ligging", + "Command-line": "Opdragreël", + "Pre/Post install": "Voor-/na-installasie", "Run as admin": "Laat loop as admin", "Interactive installation": "Interaktiewe installasie", "Skip hash check": "Slaan huts kontrole oor", @@ -71,6 +75,8 @@ "Manage ignored updates": "Bestuur geïgnoreerde opdaterings", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Die pakkette wat hier gelys word, sal nie in ag geneem word wanneer daar vir opdaterings gekyk word nie. Dubbelklik op hulle of klik op die knoppie aan hul regterkant om op te hou om hul opdaterings te ignoreer.", "Reset list": "Herstel lys", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Wil jy regtig die lys van geïgnoreerde opdaterings terugstel? Hierdie aksie kan nie ongedaan gemaak word nie", + "No ignored updates": "Geen geïgnoreerde opdaterings nie", "Package Name": "Pakket Naam", "Package ID": "Pakket ID", "Ignored version": "Geïgnoreerde weergawe", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Hierdie operasie loop interaktief.", "You will likely need to interact with the installer.": "Jy sal waarskynlik met die installeerder moet kommunikeer.", "Integrity checks skipped": "Integriteits kontroles oorgeslaan", + "Integrity checks will not be performed during this operation.": "Integriteitskontroles sal nie tydens hierdie bewerking uitgevoer word nie.", "Proceed at your own risk.": "Gaan voort op eie risiko.", "Close": "Sluit", "Loading...": "Laai...", @@ -120,16 +127,17 @@ "optional": "opsioneel", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} is gereed om geïnstalleer te word.", "The update process will start after closing UniGetUI": "Die opdatering sproses sal begin nadat UniGetUI toegemaak is", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI is as administrateur uitgevoer, wat nie aanbeveel word nie. Wanneer UniGetUI as administrateur uitgevoer word, sal ELKE bewerking wat vanuit UniGetUI begin word administrateurregte hê. Jy kan steeds die program gebruik, maar ons beveel sterk aan dat jy nie UniGetUI met administrateurregte uitvoer nie.", "Share anonymous usage data": "Deel anonieme gebruiks data", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI versamel anonieme gebruiks data om die gebruikers ervaring te verbeter.", "Accept": "Aanvaar", - "You have installed WingetUI Version {0}": "Jy het UniGetUI weergawe geïnstalleer {0}", + "You have installed UniGetUI Version {0}": "Jy het UniGetUI weergawe geïnstalleer {0}", "Disclaimer": "Vrywaring", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI hou nie verband met enige van die versoenbare pakket bestuurders nie. UniGetUI is 'n onafhanklike projek.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI sou nie moontlik gewees het sonder die hulp van die bydraers nie. Dankie almal 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI gebruik die volgende biblioteke. Sonder hulle sou UniGetUI nie moontlik gewees het nie.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI sou nie moontlik gewees het sonder die hulp van die bydraers nie. Dankie almal 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI gebruik die volgende biblioteke. Sonder hulle sou UniGetUI nie moontlik gewees het nie.", "{0} homepage": "{0} tuisblad", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is in meer as 40 tale vertaal danksy die vrywillige vertalers. Dankie 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is in meer as 40 tale vertaal danksy die vrywillige vertalers. Dankie 🤝", "Verbose": "Omvattend", "1 - Errors": "1 - Foute", "2 - Warnings": "2 - Waarskuwings", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Jy is aangemeld as {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Mooi! Rugsteune sal na 'n private gist in jou rekening opgelaai word", "Select backup": "Kies rugsteun", - "WingetUI Settings": "UniGetUI Instellings", + "UniGetUI Settings": "UniGetUI-instellings", "Allow pre-release versions": "Laat voorvrystelling-weergawes toe", "Apply": "Pas toe", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Om veiligheidsredes is pasgemaakte opdragreëlargumente standaard gedeaktiveer. Gaan na UniGetUI se sekuriteitsinstellings om dit te verander.", "Go to UniGetUI security settings": "Gaan na UniGetUI-sekuriteitsinstellings", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Die volgende opsies sal by verstek toegepas word elke keer wanneer 'n {0}-pakket geïnstalleer, opgegradeer of gedeïnstalleer word.", "Package's default": "Pakket se verstek", @@ -160,6 +169,7 @@ "Username": "Gebruikers naam", "Password": "Wagwoord", "Credentials": "Verwysings", + "It is not guaranteed that the provided credentials will be stored safely": "Daar is geen waarborg dat die verskafte geloofsbriewe veilig gestoor sal word nie", "Partially": "Gedeeltelik", "Package manager": "Pakket bestuurder", "Compatible with proxy": "Versoenbaar met volmag", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} is geaktiveer en gereed om te begin", "{pm} version:": "{pm} weergawe:", "{pm} was not found!": "{pm} is nie gevind nie!", - "You may need to install {pm} in order to use it with WingetUI.": "Miskien moet jy {pm} installeer om dit met UniGetUI te gebruik.", - "Scoop Installer - WingetUI": "Scoop se Installer - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop deïnstalleerder - UniGetUI", - "Clearing Scoop cache - WingetUI": "Skoonmaak van die Scoop se voorlopige geheue - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Miskien moet jy {pm} installeer om dit met UniGetUI te gebruik.", + "Scoop Installer - UniGetUI": "Scoop se Installer - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop deïnstalleerder - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Skoonmaak van die Scoop se voorlopige geheue - UniGetUI", + "Restart UniGetUI to fully apply changes": "Herbegin UniGetUI om veranderinge volledig toe te pas", "Restart UniGetUI": "Herbegin UniGetUI", "Manage {0} sources": "Bestuur {0} bronne", "Add source": "Voeg bron by", "Add": "Voegby", + "Source name": "Bronnaam", + "Source URL": "Bron-URL", "Other": "Ander", + "No minimum age": "Geen minimum ouderdom nie", "1 day": "'n dag", "{0} days": "{0} dae", + "Custom...": "Pasgemaak...", "{0} minutes": "{0} minute", "1 hour": "'n uur", "{0} hours": "{0} ure", "1 week": "'n week", - "WingetUI Version {0}": "UniGetUI Weergawe {0}", + "Supports release dates": "Ondersteun vrystellingsdatums", + "Release date support per package manager": "Ondersteuning vir vrystellingsdatums per pakketbestuurder", + "UniGetUI Version {0}": "UniGetUI Weergawe {0}", "Search for packages": "Soek vir pakkette", "Local": "Plaaslike", "OK": "Goed", @@ -200,11 +217,13 @@ "Enabled": "Geaktiveer", "Disabled": "Gedeaktiveer", "More info": "Meer inligting", + "GitHub account": "GitHub-rekening", "Log in with GitHub to enable cloud package backup.": "Meld met GitHub aan om wolk-pakket-rugsteun te aktiveer.", "More details": "Meer besonderhede", "Log in": "Meld aan", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "As jy wolkrugsteun geaktiveer het, sal dit as 'n GitHub Gist in hierdie rekening gestoor word", "Log out": "Meld af", + "About UniGetUI": "Oor UniGetUI", "About": "Omtrent", "Third-party licenses": "Derde party lisensies", "Contributors": "Bydraers\n", @@ -212,6 +231,7 @@ "Manage shortcuts": "Bestuur kortpaaie", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI het die volgende werkskerm kortpaaie opgespoor wat outomaties verwyder kan word by toekomstige opgraderings", "Do you really want to reset this list? This action cannot be reverted.": "Wil jy definitief hierdie lys terugstel? Hierdie aksie kan nie teruggekeer word nie.", + "Open in explorer": "Maak oop in Verkenner", "Remove from list": "Verwyder van lys", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Wanneer nuwe kortpaaie bespeur word, skrap hulle outomaties in plaas daarvan om hierdie dialoog te vertoon.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI versamel anonieme gebruiks data met die uitsluitlike doel om die gebruikers ervaring te verstaan en te verbeter.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aanvaar jy dat UniGetUI anonieme gebruiks statistieke versamel en stuur, met die uitsluitlike doel om die gebruikers ervaring te verstaan en te verbeter?", "Decline": "Weier", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Geen persoonlike inligting word ingesamel of gestuur nie, en die versamelde data word geanonimiseer, so dit kan nie na jou teruggestuur word nie.", - "About WingetUI": "Omtrent UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is 'n toepassing wat die bestuur van jou sagteware makliker maak deur 'n alles-in-een grafiese koppelvlak vir jou opdrag reël pakket bestuurders te verskaf.", + "Toggle navigation panel": "Wissel navigasiepaneel", + "Minimize": "Minimaliseer", + "Maximize": "Maksimaliseer", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is 'n toepassing wat die bestuur van jou sagteware makliker maak deur 'n alles-in-een grafiese koppelvlak vir jou opdrag reël pakket bestuurders te verskaf.", "Useful links": "Nuttige skakels", + "UniGetUI Homepage": "UniGetUI-tuisblad", "Report an issue or submit a feature request": "Rapporteer 'n probleem of dien 'n funksie versoek in", + "UniGetUI Repository": "UniGetUI-bewaarplek", "View GitHub Profile": "Kyk na GitHub profiel", - "WingetUI License": "UniGetUI Lisensie ", - "Using WingetUI implies the acceptation of the MIT License": "Die gebruik van UniGetUI impliseer die aanvaarding van die MIT-lisensie", + "UniGetUI License": "UniGetUI Lisensie ", + "Using UniGetUI implies the acceptation of the MIT License": "Die gebruik van UniGetUI impliseer die aanvaarding van die MIT-lisensie", "Become a translator": "Word 'n vertaler", "View page on browser": "Bekyk bladsy op blaaier", "Copy to clipboard": "Kopieer na knipbord", "Export to a file": "Voer uit na 'n lêer", "Log level:": "Log vlak: ", "Reload log": "Herlaai log", + "Export log": "Voer logboek uit", + "UniGetUI Log": "UniGetUI-logboek", "Text": "Teks", "Change how operations request administrator rights": "Verander hoe bedryfs versoek administrateur regte raak\n\n", "Restrictions on package operations": "Beperkings op pakketbewerkings", @@ -271,7 +297,7 @@ "Leave empty for default": "Laat leeg vir standaard", "Add a timestamp to the backup file names": "Voeg 'n tyd stempel by die rugsteun lêer name", "Backup and Restore": "Rugsteun en herstel", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiveer agtergrond API (Wingets vir UniGetUI en Deel, Port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktiveer agtergrond API (Wingets vir UniGetUI en Deel, Port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Wag totdat die toestel aan die internet gekoppel is voordat jy probeer om take te verrig wat internet verbinding benodig.", "Disable the 1-minute timeout for package-related operations": "Deaktiveer die 1-minuut spertydperk vir pakketverwante bewerkings", "Use installed GSudo instead of UniGetUI Elevator": "Gebruik geïnstalleerde GSudo in plaas van UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrie", "Manage UniGetUI settings": "Bestuur UniGetUI instellings", "Related settings": "Verwante instellings", - "Update WingetUI automatically": "Dateer UniGetUI outomaties op", + "Update UniGetUI automatically": "Dateer UniGetUI outomaties op", "Check for updates": "Kyk vir opdaterings", "Install prerelease versions of UniGetUI": "Installeer voor vrystel uitgawe van UniGetUI", "Manage telemetry settings": "Bestuur telemetrie-instellings", @@ -295,17 +321,17 @@ "Import": "Voer in", "Export settings to a local file": "Voer instellings uit na 'n plaaslike lêer", "Export": "Uitvoer", - "Reset WingetUI": "Herstel UniGetUI", "Reset UniGetUI": "Herstel UniGetUI", "User interface preferences": "Voorkeure vir gebruiker koppelvlak", "Application theme, startup page, package icons, clear successful installs automatically": "Toepassings tema, begin bladsy, pakket ikone, suksesvolle installasies outomaties skoon gemaak", "General preferences": "Algemene voorkeure", - "WingetUI display language:": "UniGetUI vertoon taal:", + "UniGetUI display language:": "UniGetUI vertoon taal:", "Is your language missing or incomplete?": "Ontbreek jou taal of is dit onvolledig?", "Appearance": "Voorkoms ", "UniGetUI on the background and system tray": "UniGetUI op die agtergrond en stelsel balk", "Package lists": "Pakket lyste", "Close UniGetUI to the system tray": "Maak dat Unigetui na die stelselbakkie toe gaan", + "Manage UniGetUI autostart behaviour": "Bestuur UniGetUI se outostart-gedrag", "Show package icons on package lists": "Wys pakket ikone op pakket lyste", "Clear cache": "Maak voorlopige geheue skoon", "Select upgradable packages by default": "Selekteer standaard opgradeerbare pakkette", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Let asseblief daarop dat nie alle pakket bestuurders hierdie funksie ten volle kan ondersteun nie", "Proxy URL": "Volmag UTL", "Enter proxy URL here": "Voer hier 'n volmag URL in", + "Authenticate to the proxy with a user and a password": "Meld by die instaanbediener aan met 'n gebruiker en wagwoord", + "Internet and proxy settings": "Internet- en instaanbedienerinstellings", "Package manager preferences": "Pakket bestuurders se voorkeure", "Ready": "Gereed", "Not found": "Nie gevind nie", "Notification preferences": "Kennisgewing voorkeure", "Notification types": "Kennisgewing tipes", "The system tray icon must be enabled in order for notifications to work": "Die stelsel bakkie ikoon moet aangeskakel word om kennisgewings te laat werk", - "Enable WingetUI notifications": "Aktiveer UniGetUI kennisgewings", + "Enable UniGetUI notifications": "Aktiveer UniGetUI kennisgewings", "Show a notification when there are available updates": "Wys 'n kennisgewing wanneer daar beskikbare opdaterings is", "Show a silent notification when an operation is running": "Wys 'n stil kennisgewing wanneer 'n opdrag loop", "Show a notification when an operation fails": "Wys 'n kennisgewing aan wanneer 'n opdrag misluk", "Show a notification when an operation finishes successfully": "Wys 'n kennisgewing wanneer 'n opdrag suksesvol voltooi is", "Concurrency and execution": "Gelyktydigheid en uitvoering ", "Automatic desktop shortcut remover": "Outomatiese gebruikskoppelvlak kortpad verwyderaar", + "Choose how many operations should be performed in parallel": "Kies hoeveel bewerkings parallel uitgevoer moet word", "Clear successful operations from the operation list after a 5 second delay": "Maak suksesvolle operasies van die operasie lys na 5 sekondes vertraging skoon", "Download operations are not affected by this setting": "Aflaaibewerkings word nie deur hierdie instelling beïnvloed nie", "Try to kill the processes that refuse to close when requested to": "Probeer die prosesse beëindig wat weier om te sluit wanneer dit versoek word", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Kies die uitvoerbare lêer wat gebruik moet word. Die volgende lys wys die uitvoerbare lêers wat deur UniGetUI gevind is", "Current executable file:": "Huidige uitvoerbare lêer:", "Ignore packages from {pm} when showing a notification about updates": "Ignoreer pakkette van {pm} wanneer jy 'n kennisgewing oor opdaterings toon", + "Update security": "Opdateringsveiligheid", + "Use global setting": "Gebruik globale instelling", + "e.g. 10": "bv. 10", + "{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", + "Override the global minimum update age for this package manager": "Oorskryf die globale minimum opdateringsouderdom vir hierdie pakketbestuurder", + "Minimum age for updates": "Minimum ouderdom vir opdaterings", + "Custom minimum age (days)": "Pasgemaakte minimum ouderdom (dae)", "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, ", "Advanced options": "Gevorderde opsies ", "Reset WinGet": "Herstel WinGet", "This may help if no packages are listed": "Dit kan help as geen pakkette gelys word nie", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktiveer Scoop se opruiming by bekendstelling", "Use system Chocolatey": "Gebruik stelsel Chocolatey", "Default vcpkg triplet": "Standaard vcpkg triplet", + "Change vcpkg root location": "Verander vcpkg se wortelligging", "Language, theme and other miscellaneous preferences": "Taal, tema en ander diverse voorkeure", "Show notifications on different events": "Wys kennisgewings oor verskillende gebeure", "Change how UniGetUI checks and installs available updates for your packages": "Verander hoe UniGetUI kontrol word en installeer die beskikbare updates vir jou pakkette", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Moenie outomaties opdaterings installeer wanneer die netwerkverbinding gemeteerd word nie", "Do not automatically install updates when the device runs on battery": "Moenie opdaterings outomaties installeer wanneer die toestel op battery loop nie", "Do not automatically install updates when the battery saver is on": "Moenie outomaties opdaterings installeer wanneer die batterybesparing aan is nie", + "Only show updates that are at least the specified number of days old": "Wys slegs opdaterings wat minstens die gespesifiseerde aantal dae oud is", "Change how UniGetUI handles install, update and uninstall operations.": "Verander hoe Unigetui installeer en deïnstalleer van bewerkings hanteer.", "Package Managers": "Pakket bestuurders", "More": "Meer", - "WingetUI Log": "UniGetUI-logboek", "Package Manager logs": "Pakket Bestuurder logs", "Operation history": "Opdrag Geskiedenis", "Help": "Hulp", + "Quit UniGetUI": "Sluit UniGetUI af", "Order by:": "Volgorde:", "Name": "Naam", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Beide", "Exact match": "Presiese resultaat", "Show similar packages": "Wys soortgelyke pakkette", + "Nothing to share": "Niks om te deel nie", + "Please select a package first.": "Kies asseblief eers 'n pakket.", + "Share link copied": "Deelskakel gekopieer", + "The share link for {0} has been copied to the clipboard.": "Die deelskakel vir {0} is na die knipbord gekopieer.", "No results were found matching the input criteria": "Geen resultate is gevind wat ooreenstem met die inset kriteria nie", "No packages were found": "Geen pakkette is gevind nie", "Loading packages": "Laai pakkette ", @@ -440,7 +483,11 @@ "Package bundle": "Pakket bundel", "Could not create bundle": "Kon nie bondel skep nie", "The package bundle could not be created due to an error.": "Die pakket bundel kon nie geskep word nie weens 'n fout.", + "Unsaved changes": "Ongebergde veranderinge", + "Discard changes": "Verwerp veranderinge", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Jy het ongebergde veranderinge in die huidige bundel. Wil jy hulle verwerp?", "Bundle security report": "Bondel-sekuriteitsverslag", + "The bundle contained restricted content": "Die bundel het beperkte inhoud bevat", "Hooray! No updates were found.": "Hoera! Geen opdaterings is gevind nie.", "Everything is up to date": "Alles is op datum", "Uninstall selected packages": "Deïnstalleer geselekteerde pakkette", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Die klassieke pakket bestuurder vir windows. Jy sal alles daar vind.
Bevat: Algemene sagteware", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "'n Bewaarplek vol gereedskap en uitvoerbare artikels wat ontwerp is met Microsoft se .NET -ekosisteem in gedagte.
Bevat: .NET -verwante gereedskap en skrifte ", "NuPkg (zipped manifest)": "NuPkg (kompakteer openbaar) ", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Die ontbrekende pakketbestuurder vir macOS (of Linux).
Bevat: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS se pakket bestuurder. Vol biblioteke en ander hulpmiddels wat om die javascript-wêreld wentel
Bevat: Node javascript biblioteke en ander verwante hulpmiddels", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python se biblioteek bestuurder. Vol python biblioteke en ander Python verwante hulpmiddels
bevat: Python biblioteke en verwante hulpmiddels ", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell se pakket bestuurder. Vind biblioteke en skrifte om PowerShell vermoëns uit te brei
bevat: modules, skrifte, Cmdlets ", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Opdrag in wagting (posisie {0})...", "Click here for more details": "Klik hier vir meer besonderhede", "Operation canceled by user": "Opdrag gekanselleer deur gebruiker", + "Running PreOperation ({0}/{1})...": "PreOperation word uitgevoer ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} uit {1} het misluk en is as nodig gemerk. Staak...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} uit {1} het met resultaat {2} voltooi", "Starting operation...": "Begin opdrag...", + "Running PostOperation ({0}/{1})...": "PostOperation word uitgevoer ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} uit {1} het misluk en is as nodig gemerk. Staak...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} uit {1} het met resultaat {2} voltooi", "{package} installer download": "{package} installer word aflaai", "{0} installer is being downloaded": "{0} installeerder is besig om afgelaai te word", "Download succeeded": "Aflaai het geslaag", @@ -556,14 +610,12 @@ "Portable mode": "Draagbare modus", "DEBUG BUILD": "ONTFOUT BOU", "Available Updates": "Beskikbare Opdaterings", - "Show WingetUI": "Wys UniGetUI", + "Show UniGetUI": "Wys UniGetUI", "Quit": "Verlaat", "Attention required": "Aandag vereis ", "Restart required": "Herbegin benodig", "1 update is available": "1 opdatering is beskikbaar", "{0} updates are available": "{0} Opdaterings is beskikbaar", - "WingetUI Homepage": "UniGetUI Tuisblad ", - "WingetUI Repository": "UniGetUI bewaarplek", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Hier kan jy UniGetUI se gedrag ten opsigte van die volgende kortpaaie verander. As u 'n kortpad nagaan, sal UniGetUI dit uitvee as dit op \"n toekomstige opgradering geskep word. As jy dit ontmerk, sal die kortpad ongeskonde bly", "Manual scan": "Handmatige skandering", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Bestaande kortpaaie op jou werkskerm sal geskandeer word, en jy sal nodig het om te kies wat om te hou en wat om te verwyder.", @@ -583,7 +635,6 @@ "Restart later": "Herbegin later", "An error occurred:": "'n Fout het voorgekom:", "I understand": "Ek verstaan", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI het as administrateur geloop, wat nie aanbeveel word nie. As u UniGetUI as administrateur gebruik, sal ELKE bewerking wat vanaf UniGetUI van stapel gestuur word, administrateur regte hê. Jy kan steeds die program gebruik, maar ons beveel sterk aan om nie UniGetUI met administrateurregte te laat loop nie.", "WinGet was repaired successfully": "WinGet is suksesvol herstel", "It is recommended to restart UniGetUI after WinGet has been repaired": "Dit word aanbeveel om UniGetUI weer te begin nadat Winget herstel is", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "LET WEL: Hierdie probleem oplosser kan gedeaktiveer word vanaf UniGetUI instellings, op die WinGet afdeling", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Jou pakkette is bygevoeg tot die bundel. Jy kan voortgaan met die toevoeging van pakkette, of die uitvoer van die bundel.", "Which backup do you want to open?": "Watter rugsteun wil jy oopmaak?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Kies die rugsteun wat jy wil oopmaak. Later sal jy kan nagaan watter pakkette of programme jy wil herstel.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Daar is deurlopende bedrywighede. As jy UniGetUI toemaak, kan dit misluk. Wil jy voortgaan?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Daar is deurlopende bedrywighede. As jy UniGetUI toemaak, kan dit misluk. Wil jy voortgaan?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI of sommige van sy komponente ontbreek of is korrup.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Dit word sterk aanbeveel om UniGetUI weer te installeer om die situasie aan te spreek.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Verwys na die UniGetUI-logboeke vir meer besonderhede oor die betrokke lêer(s)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Skryf hier die prosesname, geskei deur kommas (,)", "Unset or unknown": "Ongeset of onbekend", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Raadpleeg asseblief die opdrag reël uitset of verwys na die operasionele geskiedenis vir verdere inligting oor die kwessie.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Hierdie pakket het geen skermkiekies nie of ontbreek die ikoon? Dra by tot UniGgetUI deur die ontbrekende ikone en skermkiekies by ons oop, openbare databasis te voeg.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Hierdie pakket het geen skermkiekies nie of ontbreek die ikoon? Dra by tot UniGgetUI deur die ontbrekende ikone en skermkiekies by ons oop, openbare databasis te voeg.", "Become a contributor": "Word 'n bydraer", "Save": "Stoor", "Update to {0} available": "Opdatering tot {0} beskikbaar", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktiveer die outomatiese WinGet probleem oplosser", "Enable an [experimental] improved WinGet troubleshooter": "Aktiveer 'n [eksperimentele] verbeterde Winget probleem oplosser", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Voeg opdaterings by wat misluk met 'geen toepaslike opdatering' by die lys wat geïgnoreer word nie.", - "Restart WingetUI to fully apply changes": "Herbegin UniGetUI om veranderinge volledig toe te pas", - "Restart WingetUI": "Herbegin UniGetUI", "Invalid selection": "Ongeldige keuse", "No package was selected": "Geen pakket is gekies nie", "More than 1 package was selected": "Meer as 1 pakket is gekies", @@ -684,6 +733,37 @@ "Log out failed: ": "Afmelding het misluk: ", "Package backup settings": "Pakket-rugsteuninstellings", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Omtrent UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is 'n toepassing wat die bestuur van jou sagteware makliker maak deur 'n alles-in-een grafiese koppelvlak vir jou opdrag reël pakket bestuurders te verskaf.", + "You have installed WingetUI Version {0}": "Jy het UniGetUI weergawe geïnstalleer {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI sou nie moontlik gewees het sonder die hulp van die bydraers nie. Dankie almal 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI gebruik die volgende biblioteke. Sonder hulle sou UniGetUI nie moontlik gewees het nie.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is in meer as 40 tale vertaal danksy die vrywillige vertalers. Dankie 🤝", + "WingetUI Settings": "UniGetUI Instellings", + "You may need to install {pm} in order to use it with WingetUI.": "Miskien moet jy {pm} installeer om dit met UniGetUI te gebruik.", + "Scoop Installer - WingetUI": "Scoop se Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop deïnstalleerder - UniGetUI", + "Clearing Scoop cache - WingetUI": "Skoonmaak van die Scoop se voorlopige geheue - UniGetUI", + "WingetUI Version {0}": "UniGetUI Weergawe {0}", + "WingetUI License": "UniGetUI Lisensie ", + "Using WingetUI implies the acceptation of the MIT License": "Die gebruik van UniGetUI impliseer die aanvaarding van die MIT-lisensie", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiveer agtergrond API (Wingets vir UniGetUI en Deel, Port 7058)", + "Update WingetUI automatically": "Dateer UniGetUI outomaties op", + "Reset WingetUI": "Herstel UniGetUI", + "WingetUI display language:": "UniGetUI vertoon taal:", + "Manage WingetUI autostart behaviour": "Bestuur WingetUI se outostart-gedrag", + "Enable WingetUI notifications": "Aktiveer UniGetUI kennisgewings", + "WingetUI Log": "UniGetUI-logboek", + "Show WingetUI": "Wys UniGetUI", + "WingetUI Homepage": "UniGetUI Tuisblad ", + "WingetUI Repository": "UniGetUI bewaarplek", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI het as administrateur geloop, wat nie aanbeveel word nie. As u UniGetUI as administrateur gebruik, sal ELKE bewerking wat vanaf UniGetUI van stapel gestuur word, administrateur regte hê. Jy kan steeds die program gebruik, maar ons beveel sterk aan om nie UniGetUI met administrateurregte te laat loop nie.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Daar is deurlopende bedrywighede. As jy UniGetUI toemaak, kan dit misluk. Wil jy voortgaan?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Hierdie pakket het geen skermkiekies nie of ontbreek die ikoon? Dra by tot UniGgetUI deur die ontbrekende ikone en skermkiekies by ons oop, openbare databasis te voeg.", + "Restart WingetUI to fully apply changes": "Herbegin UniGetUI om veranderinge volledig toe te pas", + "Restart WingetUI": "Herbegin UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Bestuur UniGetUI outobegin gedrag vanaf die Instellings toep", "(Number {0} in the queue)": "(Nommer {0} in die tou)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": " Hendrik Bezuidenhout", "0 packages found": "0 pakkette gevind", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json index dd10289ec0..47be5e2c65 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ar.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "إلغاء أزالة التثبيت إذا فشل أمر ما قبل الإزالة", "Command-line to run:": "سطر الأوامر للتشغيل:", "Save and close": "حفظ وإغلاق", + "General": "عام", + "Architecture & Location": "البنية والموقع", + "Command-line": "سطر الأوامر", + "Pre/Post install": "ما قبل/ما بعد التثبيت", "Run as admin": "تشغيل كمسؤول", "Interactive installation": "تثبيت تفاعلي", "Skip hash check": "تخطي تحقق hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "إدارة التحديثات المتجاهلة", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "لن يتم أخذ الحزم المدرجة هنا في الاعتبار عند التحقق من وجود تحديثات. انقر نقرًا مزدوجًا فوقهم أو انقر فوق الزر الموجود على يمينهم للتوقف عن تجاهل تحديثاتهم.", "Reset list": "إعادة تعيين القائمة", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "هل تريد حقًا إعادة تعيين قائمة التحديثات المتجاهلة؟ لا يمكن التراجع عن هذا الإجراء.", + "No ignored updates": "لا توجد تحديثات متجاهلة", "Package Name": "اسم الحزمة", "Package ID": "معرف الحزمة", "Ignored version": "الإصدار المتجاهل", @@ -86,6 +92,7 @@ "This operation is running interactively.": "هذه العملية تعمل بشكل تفاعلي.", "You will likely need to interact with the installer.": "ستحتاج غالباً إلى التفاعل مع المثبت.", "Integrity checks skipped": "عمليات التحقق من السلامة تم تخطيها", + "Integrity checks will not be performed during this operation.": "لن يتم إجراء عمليات التحقق من السلامة أثناء هذه العملية.", "Proceed at your own risk.": "التباعة على مسؤوليتك الخاصة.", "Close": "إغلاق", "Loading...": "يتم التحميل...", @@ -120,16 +127,17 @@ "optional": "خياري", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} جاهز للتثبيت.", "The update process will start after closing UniGetUI": "ستبدأ عملية التحديث بعد إغلاق UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "تم تشغيل UniGetUI كمسؤول، وهذا غير مستحسن. عند تشغيل UniGetUI كمسؤول، ستحصل كل عملية يتم تشغيلها من UniGetUI على صلاحيات المسؤول. لا يزال بإمكانك استخدام البرنامج، لكننا نوصي بشدة بعدم تشغيل UniGetUI بصلاحيات المسؤول.", "Share anonymous usage data": "مشاركة بيانات استخدام مجهولة المصدر", "UniGetUI collects anonymous usage data in order to improve the user experience.": "يقوم UniGetUI بجمع بيانات الاستخدام مجهولة المصدر لتطوير تجربة المستخدم.", "Accept": "قبول", - "You have installed WingetUI Version {0}": "لقد قمت بتثبيت UniGetUI الإصدار {0}", + "You have installed UniGetUI Version {0}": "لقد قمت بتثبيت UniGetUI الإصدار {0}", "Disclaimer": "تنصل (للتوضيح)", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ليس مرتبطًا بأي من مديري الحزم المتوافقين. UniGetUI هو مشروع مستقل.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "لم يكن من الممكن إنشاء UniGetUI بدون مساعدة المساهمين. شكرًا لكم جميعًا 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "يستخدم UniGetUI المكتبات التالية. بدونها، لم يكن UniGetUI ممكنًا.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "لم يكن من الممكن إنشاء UniGetUI بدون مساعدة المساهمين. شكرًا لكم جميعًا 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "يستخدم UniGetUI المكتبات التالية. بدونها، لم يكن UniGetUI ممكنًا.", "{0} homepage": "{0} الصفحة الرئيسية", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "لقد تمت ترجمة UniGetUI إلى أكثر من 40 لغة بفضل المترجمين المتطوعين. شكرًا لكم 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "لقد تمت ترجمة UniGetUI إلى أكثر من 40 لغة بفضل المترجمين المتطوعين. شكرًا لكم 🤝", "Verbose": "مطوّل", "1 - Errors": "1- أخطاء", "2 - Warnings": "2- تحذيرات", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "أنت مسجل الدخول باسم {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "رائع! سيتم رفع النسخ الاحتياطية إلى gist خاص في حسابك", "Select backup": "حدد نسخة احتياطية", - "WingetUI Settings": "إعدادات UniGetUI", + "UniGetUI Settings": "إعدادات UniGetUI", "Allow pre-release versions": "السماح بنسخ ماقبل الاصدار", "Apply": "تطبيق", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "لأسباب أمنية، تكون وسائط سطر الأوامر المخصصة معطلة افتراضيًا. انتقل إلى إعدادات أمان UniGetUI لتغيير ذلك.", "Go to UniGetUI security settings": "الانتقال إلى إعدادات أمان UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "سيتم تطبيق الخيارات التالية افتراضيًا في كل مرة يتم فيها تثبيت حزمة {0} أو ترقيتها أو إلغاء تثبيتها.", "Package's default": "الافتراضي للحزمة", @@ -160,6 +169,7 @@ "Username": "اسم المستخدم", "Password": "كلمة المرور", "Credentials": "بيانات الاعتماد", + "It is not guaranteed that the provided credentials will be stored safely": "ليس مضمونًا أن يتم تخزين بيانات الاعتماد المقدمة بأمان", "Partially": "جزئياً", "Package manager": "مدير الحزم", "Compatible with proxy": "متوافق مع الوكيل", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "تم تمكين {pm} وهو جاهز للاستخدام", "{pm} version:": "إصدار {pm}:", "{pm} was not found!": "لم يتم العثور على {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "قد تحتاج إلى تثبيت {pm} حتى تتمكن من استخدامه مع UniGetUI.", - "Scoop Installer - WingetUI": "UniGetUI - مثبت Scoop", - "Scoop Uninstaller - WingetUI": "UniGetUI - إلغاء تثبيت Scoop", - "Clearing Scoop cache - WingetUI": "مسح ذاكرة التخزين المؤقت Scoop لـ UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "قد تحتاج إلى تثبيت {pm} حتى تتمكن من استخدامه مع UniGetUI.", + "Scoop Installer - UniGetUI": "UniGetUI - مثبت Scoop", + "Scoop Uninstaller - UniGetUI": "UniGetUI - إلغاء تثبيت Scoop", + "Clearing Scoop cache - UniGetUI": "مسح ذاكرة التخزين المؤقت Scoop لـ UniGetUI", + "Restart UniGetUI to fully apply changes": "أعد تشغيل UniGetUI لتطبيق التغييرات بالكامل", "Restart UniGetUI": "أعد تشغيل UniGetUI", "Manage {0} sources": "إدارة {0} من المصادر", "Add source": "إضافة مصدر", "Add": "إضافة", + "Source name": "اسم المصدر", + "Source URL": "عنوان URL للمصدر", "Other": "أخرى", + "No minimum age": "بدون عمر أدنى", "1 day": "يوم 1", "{0} days": "{0} أيام", + "Custom...": "مخصص...", "{0} minutes": "{0} دقائق", "1 hour": "ساعة واحدة", "{0} hours": "{0} ساعات", "1 week": "أسبوع واحد", - "WingetUI Version {0}": "إصدار UniGetUI {0}", + "Supports release dates": "يدعم تواريخ الإصدار", + "Release date support per package manager": "دعم تاريخ الإصدار لكل مدير حزم", + "UniGetUI Version {0}": "إصدار UniGetUI {0}", "Search for packages": "البحث عن حزم", "Local": "محلي", "OK": "حسنًا", @@ -200,11 +217,13 @@ "Enabled": "مفعّل", "Disabled": "معطل", "More info": "معلومات أكثر", + "GitHub account": "حساب GitHub", "Log in with GitHub to enable cloud package backup.": "سجّل الدخول باستخدام GitHub لتمكين النسخ الاحتياطي السحابي للحزم.", "More details": "تفاصيل أكثر", "Log in": "تسجيل الدخول", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "إذا كان النسخ الاحتياطي السحابي مفعّلًا، فسيتم حفظه كـ GitHub Gist على هذا الحساب", "Log out": "تسجيل الخروج", + "About UniGetUI": "حول UniGetUI", "About": "عنا", "Third-party licenses": "تراخيص الطرف الثالث", "Contributors": "المساهمون", @@ -212,6 +231,7 @@ "Manage shortcuts": "إدارة الاختصارات", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "اكتشف UniGetUI اختصارات سطح المكتب التالية والتي يمكن إزالتها تلقائيًا في الترقيات المستقبلية", "Do you really want to reset this list? This action cannot be reverted.": "هل ترغب فعلاً بإعادة تعيين هذه القائمة؟ هذا الإجراء لا يمكن التراجع عنه.", + "Open in explorer": "فتح في المستكشف", "Remove from list": "إزالة من القائمة", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "إذا اكتُشِفت اختصارات جديدة، أزلهم تلقائيا بدلا من عرض هذه النافذة", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "يقوم UniGetUI بجمع بيانات استخدام مجهولة المصدر لغاية وحيدة وهي فهم وتطوير تجربة المستخدم.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "هل تقبل أن يقوم UniGetUI بجمع وإرسال إحصائيات استخدام مجهولة الهوية، من أجل فهم وتحسين تجربة المتسخدم فقط؟", "Decline": "رفض", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "لن يتم جمع أو إرسال أية معلومات شخصية، والبيانات التي يتم جمعها ستكون مجهولة المصدر، لذا لا يمكن تتبعها رجوعاً إليك.", - "About WingetUI": "عن UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI هو تطبيق يجعل إدارة البرامج الخاصة بك أسهل، من خلال توفير واجهة رسومية شاملة لمديري حزم سطر الأوامر لديك.", + "Toggle navigation panel": "تبديل لوحة التنقل", + "Minimize": "تصغير", + "Maximize": "تكبير", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI هو تطبيق يجعل إدارة البرامج الخاصة بك أسهل، من خلال توفير واجهة رسومية شاملة لمديري حزم سطر الأوامر لديك.", "Useful links": "روابط مفيدة", + "UniGetUI Homepage": "الصفحة الرئيسية لـ UniGetUI", "Report an issue or submit a feature request": "الإبلاغ عن مشكلة أو تقديم طلب ميزة", + "UniGetUI Repository": "مستودع UniGetUI", "View GitHub Profile": "عرض ملف GitHub الشخصي ", - "WingetUI License": "ترخيص UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "إن استخدام UniGetUI يعني قبول ترخيص MIT", + "UniGetUI License": "ترخيص UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "إن استخدام UniGetUI يعني قبول ترخيص MIT", "Become a translator": "كن مُترجِماً", "View page on browser": "أعرض الصفحة في المتصفح", "Copy to clipboard": "نسخ إلى الحافظة", "Export to a file": "تصدير إلى ملف", "Log level:": "مستوى السجل:", "Reload log": "إعادة تحميل السجل", + "Export log": "تصدير السجل", + "UniGetUI Log": "سجل UniGetUI", "Text": "نص", "Change how operations request administrator rights": "تغيير كيفية طلب العمليات لحقوق المسؤول", "Restrictions on package operations": "قيود على عمليات الحزم", @@ -271,7 +297,7 @@ "Leave empty for default": "اتركه فارغًا للإفتراضي", "Add a timestamp to the backup file names": "إضافة ختم زمني إلى أسماء ملفات النسخ الاحتياطي", "Backup and Restore": "النسخ الاحتياطي والاستعادة", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "تمكين واجهة برمجة التطبيقات الخلفية (أدوات UniGetUI والمشاركة، المنفذ 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "تمكين واجهة برمجة التطبيقات الخلفية (أدوات UniGetUI والمشاركة، المنفذ 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "انتظار اتصال الجهاز بالانترنت قبل محاولة عمل المهام التي تتطلب اتصالاً بالشبكة.", "Disable the 1-minute timeout for package-related operations": "تعطيل مهلة الدقيقة الواحدة للعمليات المتعلقة بالحزمة", "Use installed GSudo instead of UniGetUI Elevator": "استخدم GSudo المثبّت بدلًا من UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "القياس عن بُعد", "Manage UniGetUI settings": "إدارة إعدادات UniGetUI", "Related settings": "إعدادات مرتبطة", - "Update WingetUI automatically": "تحديث UniGetUI تلقائياً", + "Update UniGetUI automatically": "تحديث UniGetUI تلقائياً", "Check for updates": "التحقق من التحديثات", "Install prerelease versions of UniGetUI": "تثبيت الإصدارات التجريبية من UniGetUI", "Manage telemetry settings": "إدارة إعدادات القياس عن بعد", @@ -295,17 +321,17 @@ "Import": "إستيراد", "Export settings to a local file": "تصدير الإعدادات إلى ملف محلي", "Export": "تصدير", - "Reset WingetUI": "إعادة تعيين UniGetUI", "Reset UniGetUI": "إعادة تعيين UniGetUI", "User interface preferences": "تفضيلات واجهة المستخدم", "Application theme, startup page, package icons, clear successful installs automatically": "سمة التطبيق، صفحة بدء التشغيل، أيقونات الحزمة، مسح التثبيتات الناجحة تلقائيًا", "General preferences": "التفضيلات العامة", - "WingetUI display language:": "لغة عرض UniGetUI:", + "UniGetUI display language:": "لغة عرض UniGetUI:", "Is your language missing or incomplete?": "هل لغتك مفقودة أم غير مكتملة؟", "Appearance": "المظهر", "UniGetUI on the background and system tray": "UniGetUI في الخلفية وشريط المهام", "Package lists": "قوائم الحزمة", "Close UniGetUI to the system tray": "إغلاق UniGetUI إلى شريط المهام", + "Manage UniGetUI autostart behaviour": "إدارة سلوك التشغيل التلقائي لـ UniGetUI", "Show package icons on package lists": "إظهار أيقونات الحزمة في قوائم الحزمة", "Clear cache": "مسح ذاكرة التخزين المؤقت", "Select upgradable packages by default": "حدد الحزم التي سيتم ترقيتها بشكل افتراضي", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "يرجى ملاحظة أنه قد لا يمكن لجميع إدارات الحزمة ان تدعم هذه الخاصية", "Proxy URL": "عنوان URL الخاص بالوكيل", "Enter proxy URL here": "أدخل رابط الخادم هنا", + "Authenticate to the proxy with a user and a password": "المصادقة على الوكيل باستخدام اسم مستخدم وكلمة مرور", + "Internet and proxy settings": "إعدادات الإنترنت والوكيل", "Package manager preferences": "تفضيلات مدير الحزم", "Ready": "جاهز", "Not found": "غير موجود", "Notification preferences": "تفضيلات الإشعارات", "Notification types": "أنواع التنبيهات", "The system tray icon must be enabled in order for notifications to work": "يجب تفعيل أيقونة شريط المهام لكي تعمل الإشعارات", - "Enable WingetUI notifications": "تفعيل إشعارات UniGetUI", + "Enable UniGetUI notifications": "تفعيل إشعارات UniGetUI", "Show a notification when there are available updates": "إظهار إشعار عند توفر تحديثات", "Show a silent notification when an operation is running": "إظهار إشعار صامت عند تشغيل عملية ما", "Show a notification when an operation fails": "إظهار إشعار عند فشل العملية", "Show a notification when an operation finishes successfully": "إظهار إشعار عند انتهاء العملية بنجاح", "Concurrency and execution": "التزامن والتنفيذ", "Automatic desktop shortcut remover": "إزالة اختصار سطح المكتب تلقائيًا", + "Choose how many operations should be performed in parallel": "اختر عدد العمليات التي يجب تنفيذها بالتوازي", "Clear successful operations from the operation list after a 5 second delay": "مسح العمليات الناجحة من قائمة العمليات بعد 5 ثوانٍ", "Download operations are not affected by this setting": "عمليات التنزيل لا تتأثر بهذا الإعداد", "Try to kill the processes that refuse to close when requested to": "حاول إنهاء العمليات التي ترفض الإغلاق عند طلب ذلك", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "حدد الملف التنفيذي المراد استخدامه. تعرض القائمة التالية الملفات التنفيذية التي عثر عليها UniGetUI", "Current executable file:": "الملف التنفيذي الحالي:", "Ignore packages from {pm} when showing a notification about updates": "تجاهل الحزم من {pm} عند إظهار إشعار عن التحديث", + "Update security": "أمان التحديثات", + "Use global setting": "استخدام الإعداد العام", + "e.g. 10": "مثلًا 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "لا يوفّر {pm} تواريخ إصدار لحزمه، لذا لن يكون لهذا الإعداد أي تأثير", + "Override the global minimum update age for this package manager": "تجاوز الحد الأدنى العام لعمر التحديثات لهذا مدير الحزم", + "Minimum age for updates": "الحد الأدنى لعمر التحديثات", + "Custom minimum age (days)": "عمر أدنى مخصص (بالأيام)", "View {0} logs": "إظهار {0} سجل", + "If Python cannot be found or is not listing packages but is installed on the system, ": "إذا تعذر العثور على Python أو لم يكن يعرض الحزم رغم أنه مثبت على النظام، ", "Advanced options": "خيارات متقدمة", "Reset WinGet": "إعادة تعيين WinGet", "This may help if no packages are listed": "قد يكون هذا مفيدًا إذا لم يتم إدراج أي حزم", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "تفعيل تنظيف Scoop عند البدأ", "Use system Chocolatey": "استخدم نظام Chocolatey", "Default vcpkg triplet": "ثلاثية vcpkg الافتراضية", + "Change vcpkg root location": "تغيير موقع جذر vcpkg", "Language, theme and other miscellaneous preferences": "اللغة, المظهر و تفضيلات متنوعة أخرى", "Show notifications on different events": "إظهار الإشعارات حول الأحداث المختلفة", "Change how UniGetUI checks and installs available updates for your packages": "تغيير كيفية قيام UniGetUI بالتحقق من التحديثات المتوفرة لحزمك وتثبيتها", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "لا تقم بتثبيت التحديثات تلقائياً عندما يكون اتصال الشبكة محدود", "Do not automatically install updates when the device runs on battery": "عدم تثبيت التحديثات تلقائيًا عندما يعمل الجهاز على البطارية", "Do not automatically install updates when the battery saver is on": "لا تقم بتثبيت التحديثات تلقائياً عند تشغيل وضع توفير الطاقة", + "Only show updates that are at least the specified number of days old": "اعرض فقط التحديثات التي مضى عليها على الأقل عدد الأيام المحدد", "Change how UniGetUI handles install, update and uninstall operations.": "تغيير كيفية تولي UniGetUI لعمليات التثبيت، التحديث، والإزالة.", "Package Managers": "مدراء الحزم", "More": "أكثر", - "WingetUI Log": "سجل UniGetUI", "Package Manager logs": "سجلات نظام إدارة الحزم", "Operation history": "سجل العمليات", "Help": "مساعدة", + "Quit UniGetUI": "إنهاء UniGetUI", "Order by:": "رتب بحسب:", "Name": "الاسم", "Id": "معرّف", @@ -409,6 +448,10 @@ "Both": "كلاهما", "Exact match": "تطابق تام\n", "Show similar packages": "إظهار الحُزم المتشابهة", + "Nothing to share": "لا يوجد ما يمكن مشاركته", + "Please select a package first.": "يرجى تحديد حزمة أولًا.", + "Share link copied": "تم نسخ رابط المشاركة", + "The share link for {0} has been copied to the clipboard.": "تم نسخ رابط المشاركة الخاص بـ {0} إلى الحافظة.", "No results were found matching the input criteria": "لم يتم العثور على نتائج مطابقة لمعايير الإدخال", "No packages were found": "لم يتم العثور على الحُزم", "Loading packages": "تحميل الحزم", @@ -440,7 +483,11 @@ "Package bundle": "حزمة الحزمة", "Could not create bundle": "لم يتمكن من إنشاء الحزمة", "The package bundle could not be created due to an error.": "لم يتم إنشاء حزمة الحزمة بسبب خطأ.", + "Unsaved changes": "تغييرات غير محفوظة", + "Discard changes": "تجاهل التغييرات", + "You have unsaved changes in the current bundle. Do you want to discard them?": "لديك تغييرات غير محفوظة في الحزمة الحالية. هل تريد تجاهلها؟", "Bundle security report": "رزمة تقرير الأمان", + "The bundle contained restricted content": "تحتوي الحزمة على محتوى مقيّد", "Hooray! No updates were found.": "يا للسعادة! لم يتم العثور على أية تحديثات!", "Everything is up to date": "كل شيءٍ مُحدّث", "Uninstall selected packages": "إلغاء تثبيت الحزم المحددة", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "نظام إدارة الحزم الكلاسيكي لويندوز. ستجد كل شيء هناك.
يحتوي على: برامج عامة ", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "مستودع مليء بالأدوات والملفات القابلة للتنفيذ المصممة مع وضع نظام Microsoft البيئي .NET في الاعتبار.
يحتوي على: أدوات وبرامج نصية مرتبطة بـ .NET", "NuPkg (zipped manifest)": "NuPkg (بيان مضغوط)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "مدير الحزم المفقود لنظام macOS (أو Linux).
يحتوي على: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "مدير حزم Node JS. مليئة بالمكتبات والأدوات المساعدة الأخرى التي تدور حول عالم جافا سكريبت
تحتوي على: مكتبات Node javascript والأدوات المساعدة الأخرى ذات الصلة ", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "مدير مكتبة بايثون. مليء بمكتبات بايثون وأدوات مساعدة أخرى متعلقة بالبايثون
يحتوي على: مكتبات بايثون وأدوات مساعدة متعلقة", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "مدير حزم PowerShell. ابحث عن المكتبات والبرامج النصية لتوسيع إمكانيات PowerShell
يحتوي على: وحدات نمطية وبرامج نصية وأدوات أوامر", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "العملية على قائمة الانتظار (الموضع {0})...", "Click here for more details": "اضغط هنا للمزيد من التفاصيل", "Operation canceled by user": "تم إلغاء العملية بواسطة المستخدم", + "Running PreOperation ({0}/{1})...": "جارٍ تشغيل ما قبل العملية ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "فشلت مرحلة ما قبل العملية {0} من أصل {1}، وتم تمييزها على أنها ضرورية. جارٍ الإلغاء...", + "PreOperation {0} out of {1} finished with result {2}": "انتهت مرحلة ما قبل العملية {0} من أصل {1} بالنتيجة {2}", "Starting operation...": "يجري التسغيل...", + "Running PostOperation ({0}/{1})...": "جارٍ تشغيل ما بعد العملية ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "فشلت مرحلة ما بعد العملية {0} من أصل {1}، وتم تمييزها على أنها ضرورية. جارٍ الإلغاء...", + "PostOperation {0} out of {1} finished with result {2}": "انتهت مرحلة ما بعد العملية {0} من أصل {1} بالنتيجة {2}", "{package} installer download": "حمّل مثبّت {package}", "{0} installer is being downloaded": "مثبت {0} قيد التحميل", "Download succeeded": "تم التحميل بنجاح", @@ -556,14 +610,12 @@ "Portable mode": "الوضع المتنقل.", "DEBUG BUILD": "أصدار التصحيح.", "Available Updates": "التحديثات المتاحة", - "Show WingetUI": "إظهار UniGetUI", + "Show UniGetUI": "إظهار UniGetUI", "Quit": "خروج", "Attention required": "مطلوب الانتباه", "Restart required": "إعادة التشغيل مطلوبة", "1 update is available": "يوجد تحديث 1 متوفر", "{0} updates are available": "التحديثات المتاحة: {0}", - "WingetUI Homepage": "الصفحة الرئيسية لـ UniGetUI", - "WingetUI Repository": "مستودع UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "يمكنك هنا تغيير سلوك UniGetUI فيما يتعلق بالاختصارات التالية. سيؤدي تحديد اختصار إلى جعل UniGetUI يحذفه إذا تم إنشاؤه في ترقية مستقبلية. سيؤدي إلغاء تحديده إلى إبقاء الاختصار سليمًا", "Manual scan": "الفحص اليدوي.", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "الاختصارات الموجودة على سطح المكتب سيتم مسحها، وستحتاج إلى اختيار أيٍّ منها لتبقى وأيٍّ منها لتُحذَف.", @@ -583,7 +635,6 @@ "Restart later": "إعادة التشغيل لاحقاً", "An error occurred:": "حدث خطأ:", "I understand": "أنا أتفهم", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "تم تشغيل UniGetUI كمسؤول، وهو أمر غير مستحسن. عند تشغيل UniGetUI كمسؤول، فإن كل عملية يتم إطلاقها من UniGetUI سيكون لها امتيازات المسؤول. لا يزال بإمكانك استخدام البرنامج، لكننا نوصي بشدة بعدم تشغيل UniGetUI بامتيازات المسؤول.", "WinGet was repaired successfully": "تم إصلاح WinGet بنجاح", "It is recommended to restart UniGetUI after WinGet has been repaired": "يوصى بإعادة تشغيل UniGetUI بعد إصلاح WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ملاحظة: يمكن تعطيل أداة استكشاف الأخطاء وإصلاحها هذه من إعدادات UniGetUI، في قسم WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. سيتم إضافة حزمك إلى الباقة. يمكنك مواصلة إضافة الحزم، أو تصدير الباقة.", "Which backup do you want to open?": "أي نسخة احتياطية تريد فتحها؟", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "حدد النسخة الاحتياطية التي تريد فتحها. ستتمكن لاحقًا من مراجعة الحزم أو البرامج التي تريد استعادتها.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "هناك عمليات جارية. قد يؤدي إغلاق UniGetUI إلى فشلها. هل تريد الاستمرار؟", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "هناك عمليات جارية. قد يؤدي إغلاق UniGetUI إلى فشلها. هل تريد الاستمرار؟", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI أو بعض مكوّناته مفقودة أو تالفة.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "يوصى بشدة بإعادة تثبيت UniGetUI لمعالجة هذا الوضع.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "ارجع إلى سجلات UniGetUI للحصول على مزيد من التفاصيل حول الملف أو الملفات المتأثرة", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "اكتب هنا أسماء العمليات، مفصولة بفواصل (,)", "Unset or unknown": "غير معروف أو لم يتم ضبطها", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "يرجى الاطلاع على مخرجات سطر الأوامر أو الرجوع إلى سجل العمليات للحصول على مزيد من المعلومات حول المشكلة.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "هل لا تحتوي هذه الحزمة على لقطات شاشة أو تفتقد الرمز؟ ساهم في UniGetUI عن طريق إضافة الأيقونات ولقطات الشاشة المفقودة إلى قاعدة البيانات العامة المفتوحة لدينا.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "هل لا تحتوي هذه الحزمة على لقطات شاشة أو تفتقد الرمز؟ ساهم في UniGetUI عن طريق إضافة الأيقونات ولقطات الشاشة المفقودة إلى قاعدة البيانات العامة المفتوحة لدينا.", "Become a contributor": "كن مساهاً", "Save": "حفظ", "Update to {0} available": "التحديث إلى {0} متاح", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "تمكين مستكشف أخطاء WinGet التلقائي", "Enable an [experimental] improved WinGet troubleshooter": "تفعيل مستكشف أخطاء WinGet [التجريبي] المحسّن", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "أضف التحديثات التي تفشل بـ \"لا يوجد تحديث قابل للتطبيق\" إلى قائمة التحديثات التي تم تجاهلها", - "Restart WingetUI to fully apply changes": "أعد تشغيل UniGetUI لتطبيق التغييرات بشكل تام", - "Restart WingetUI": "إعادة تشغيل UniGetUI", "Invalid selection": "تحديد غير صالح", "No package was selected": "لم يتم تحديد أي حزمة", "More than 1 package was selected": "تم تحديد أكثر من حزمة واحدة", @@ -684,6 +733,37 @@ "Log out failed: ": "فشل تسجيل الخروج:", "Package backup settings": "إعدادات النسخ الاحتياطي للحزم", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "عن UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI هو تطبيق يجعل إدارة البرامج الخاصة بك أسهل، من خلال توفير واجهة رسومية شاملة لمديري حزم سطر الأوامر لديك.", + "You have installed WingetUI Version {0}": "لقد قمت بتثبيت UniGetUI الإصدار {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "لم يكن من الممكن إنشاء UniGetUI بدون مساعدة المساهمين. شكرًا لكم جميعًا 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "يستخدم UniGetUI المكتبات التالية. بدونها، لم يكن UniGetUI ممكنًا.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "لقد تمت ترجمة UniGetUI إلى أكثر من 40 لغة بفضل المترجمين المتطوعين. شكرًا لكم 🤝", + "WingetUI Settings": "إعدادات UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "قد تحتاج إلى تثبيت {pm} حتى تتمكن من استخدامه مع UniGetUI.", + "Scoop Installer - WingetUI": "UniGetUI - مثبت Scoop", + "Scoop Uninstaller - WingetUI": "UniGetUI - إلغاء تثبيت Scoop", + "Clearing Scoop cache - WingetUI": "مسح ذاكرة التخزين المؤقت Scoop لـ UniGetUI", + "WingetUI Version {0}": "إصدار UniGetUI {0}", + "WingetUI License": "ترخيص UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "إن استخدام UniGetUI يعني قبول ترخيص MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "تمكين واجهة برمجة التطبيقات الخلفية (أدوات UniGetUI والمشاركة، المنفذ 7058)", + "Update WingetUI automatically": "تحديث UniGetUI تلقائياً", + "Reset WingetUI": "إعادة تعيين UniGetUI", + "WingetUI display language:": "لغة عرض UniGetUI:", + "Manage WingetUI autostart behaviour": "إدارة سلوك التشغيل التلقائي لـ UniGetUI", + "Enable WingetUI notifications": "تفعيل إشعارات UniGetUI", + "WingetUI Log": "سجل UniGetUI", + "Show WingetUI": "إظهار UniGetUI", + "WingetUI Homepage": "الصفحة الرئيسية لـ UniGetUI", + "WingetUI Repository": "مستودع UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "تم تشغيل UniGetUI كمسؤول، وهو أمر غير مستحسن. عند تشغيل UniGetUI كمسؤول، فإن كل عملية يتم إطلاقها من UniGetUI سيكون لها امتيازات المسؤول. لا يزال بإمكانك استخدام البرنامج، لكننا نوصي بشدة بعدم تشغيل UniGetUI بامتيازات المسؤول.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "هناك عمليات جارية. قد يؤدي إغلاق UniGetUI إلى فشلها. هل تريد الاستمرار؟", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "هل لا تحتوي هذه الحزمة على لقطات شاشة أو تفتقد الرمز؟ ساهم في UniGetUI عن طريق إضافة الأيقونات ولقطات الشاشة المفقودة إلى قاعدة البيانات العامة المفتوحة لدينا.", + "Restart WingetUI to fully apply changes": "أعد تشغيل UniGetUI لتطبيق التغييرات بشكل تام", + "Restart WingetUI": "إعادة تشغيل UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "إدارة سلوك التشغيل التلقائي لـ UniGetUI من تطبيق الإعدادات", "(Number {0} in the queue)": "(الرقم {0} في الدور)\n", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Abdu11ahAS, @mo9a7i, @FancyCookin, @Abdullah-Dev115, @bassuny3003, @DaRandomCube, @AbdullahAlousi, @IFrxo", "0 packages found": "لم يتم العثور على أية حزمة", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json index 1b086df207..9be625d419 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_be.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Скасаваць выдаленне ў выпадку памылкі ў падрыхтоўчай камандзе", "Command-line to run:": "Каманда для запуску:", "Save and close": "Захаваць і закрыць", + "General": "Агульнае", + "Architecture & Location": "Архітэктура і размяшчэнне", + "Command-line": "Камандны радок", + "Pre/Post install": "Перад/пасля ўсталявання", "Run as admin": "Запусціць як адміністратар", "Interactive installation": "Інтэрактыўнае ўсталяванне", "Skip hash check": "Прапусціць праверку хэша", @@ -71,6 +75,8 @@ "Manage ignored updates": "Рэгуляваць ігнараваныя абнаўленні", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Пакеты ў спісе ігнаруюцца пры праверцы абнаўленняў. Падвойны клік або кнопка справа - спыніць ігнараванне.", "Reset list": "Скінуць спіс", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Вы сапраўды хочаце скінуць спіс ігнараваных абнаўленняў? Гэтае дзеянне нельга будзе скасаваць", + "No ignored updates": "Няма ігнараваных абнаўленняў", "Package Name": "Назва пакета", "Package ID": "ID пакета", "Ignored version": "Ігнараваная версія", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Аперацыя працуе ў інтэрактыўным рэжыме.", "You will likely need to interact with the installer.": "Магчыма спатрэбіцца ўзаемадзеянне з усталёўшчыкам.", "Integrity checks skipped": "Праверкі цэласнасці прапушчаны", + "Integrity checks will not be performed during this operation.": "Праверкі цэласнасці не будуць выконвацца падчас гэтай аперацыі.", "Proceed at your own risk.": "Працягвайце на ўласную рызыку.", "Close": "Закрыць", "Loading...": "Загрузка...", @@ -120,16 +127,17 @@ "optional": "неабавязкова", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} гатовы да ўсталявання.", "The update process will start after closing UniGetUI": "Абнаўленне пачнецца пасля закрыцця UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI быў запушчаны з правамі адміністратара, што не рэкамендуецца. Пры запуску UniGetUI з правамі адміністратара КОЖНАЯ аперацыя, запушчаная з UniGetUI, будзе мець правы адміністратара. Вы ўсё яшчэ можаце карыстацца праграмай, але мы настойліва рэкамендуем не запускаць UniGetUI з правамі адміністратара.", "Share anonymous usage data": "Дзяліцца ананімнымі данымі выкарыстання", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI збірае ананімныя даныя для паляпшэння UX.", "Accept": "Прыняць", - "You have installed WingetUI Version {0}": "Вы ўсталявалі UniGetUI версіі {0}", + "You have installed UniGetUI Version {0}": "Вы ўсталявалі UniGetUI версіі {0}", "Disclaimer": "Адмова ад адказнасці", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не звязаны ні з адным з мэнэджараў - незалежны праект.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI быў бы немагчымы без дапамогі ўсіх удзельнікаў. Дзякуй вам 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI выкарыстоўвае наступныя бібліятэкі - без іх праект немагчымы.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI быў бы немагчымы без дапамогі ўсіх удзельнікаў. Дзякуй вам 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI выкарыстоўвае наступныя бібліятэкі - без іх ён немагчымы.", "{0} homepage": "Сайт {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI перакладзены на больш чым 40 моў дзякуючы валанцёрам. Дзякуй 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI перакладзены на больш чым 40 моў дзякуючы валанцёрам. Дзякуй 🤝", "Verbose": "Падрабязна", "1 - Errors": "1 - Збоі", "2 - Warnings": "2 - Папярэджанні", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Вы ўвайшлі як {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Цудоўна! Рэзервовыя копіі будуць загружаныя ў прыватны gist вашага акаўнта", "Select backup": "Абраць рэзервовую копію", - "WingetUI Settings": "Налады UniGetUI", + "UniGetUI Settings": "Налады UniGetUI", "Allow pre-release versions": "Дазволіць папярэднія версіі", "Apply": "Ужыць", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "З меркаванняў бяспекі карыстальніцкія аргументы каманднага радка па змаўчанні адключаны. Каб змяніць гэта, перайдзіце ў налады бяспекі UniGetUI.", "Go to UniGetUI security settings": "Адкрыць налады бяспекі UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Наступныя параметры па змаўчанні для кожнага ўсталявання/абнаўлення/выдалення пакета {0}.", "Package's default": "Па змаўчанні пакета", @@ -160,6 +169,7 @@ "Username": "Імя карыстальніка", "Password": "Пароль", "Credentials": "Уліковыя даныя", + "It is not guaranteed that the provided credentials will be stored safely": "Няма гарантыі, што прадастаўленыя ўліковыя даныя будуць захоўвацца бяспечна", "Partially": "Часткова", "Package manager": "Мэнэджар пакетаў", "Compatible with proxy": "Сумяшчальна з проксі", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} уключаны і гатовы", "{pm} version:": "Версія {pm}:", "{pm} was not found!": "{pm} не знойдзены!", - "You may need to install {pm} in order to use it with WingetUI.": "Магчыма трэба ўсталяваць {pm} для выкарыстання з UniGetUI.", - "Scoop Installer - WingetUI": "Усталёўшчык Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Выдаленне Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Ачыстка кэша Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Магчыма трэба ўсталяваць {pm} для выкарыстання з UniGetUI.", + "Scoop Installer - UniGetUI": "Усталёўшчык Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Выдаленне Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Ачыстка кэша Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Перазапусціце UniGetUI, каб цалкам прымяніць змены", "Restart UniGetUI": "Перазапусціць UniGetUI", "Manage {0} sources": "Рэгуляваць {0} крыніцы", "Add source": "Дадаць крыніцу", "Add": "Дадаць", + "Source name": "Назва крыніцы", + "Source URL": "URL крыніцы", "Other": "Іншае", + "No minimum age": "Без мінімальнага ўзросту", "1 day": "1 дзень", "{0} days": "{0} дзён", + "Custom...": "Уласны...", "{0} minutes": "{0} хвілін", "1 hour": "1 гадзіна", "{0} hours": "{0} гадзін", "1 week": "1 тыдзень", - "WingetUI Version {0}": "UniGetUI версія {0}", + "Supports release dates": "Падтрымлівае даты выпуску", + "Release date support per package manager": "Падтрымка дат выпуску для кожнага мэнэджара пакетаў", + "UniGetUI Version {0}": "UniGetUI версія {0}", "Search for packages": "Пошук пакетаў", "Local": "Лакальна", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Уключана", "Disabled": "Адключана", "More info": "Больш інфармацыі", + "GitHub account": "Акаўнт GitHub", "Log in with GitHub to enable cloud package backup.": "Увайдзіце праз GitHub, каб уключыць воблачную копію пакетаў.", "More details": "Больш падрабязнасцей", "Log in": "Увайсці", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Калі ўключана воблачная копія, яна захоўваецца як GitHub Gist гэтага акаўнта", "Log out": "Выйсці", + "About UniGetUI": "Аб UniGetUI", "About": "Аб праграме", "Third-party licenses": "Ліцэнзіі трэціх бакоў", "Contributors": "Удзельнікі", @@ -212,6 +231,7 @@ "Manage shortcuts": "Рэгуляваць цэтлікі", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Знойдзены ярлыкі, якія можна аўтаматычна выдаляць у будучыні", "Do you really want to reset this list? This action cannot be reverted.": "Скід спісу незваротны. Працягнуць?", + "Open in explorer": "Адкрыць у Правадніку", "Remove from list": "Выдаліць са спісу", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Пры выяўленні новых ярлыкоў - выдаляць без дыялогу", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI збірае ананімныя даныя толькі дзеля паляпшэння UX.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Пагаджаецеся на збор ананімнай статыстыкі для паляпшэння UX?", "Decline": "Адхіліць", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Асабістыя даныя не збіраюцца; усё ананімізавана і не прывязана да вас", - "About WingetUI": "Аб UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI дазваляе лягчэй кіраваць праграмным забеспячэннем праз адзіны графічны інтэрфейс для каманднага радка менеджараў пакетаў.", + "Toggle navigation panel": "Пераключыць панэль навігацыі", + "Minimize": "Згарнуць", + "Maximize": "Разгарнуць", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI дазваляе лягчэй кіраваць праграмным забеспячэннем праз адзіны графічны інтэрфейс для каманднага радка менеджараў пакетаў.", "Useful links": "Карысныя спасылкі", + "UniGetUI Homepage": "Хатняя старонка UniGetUI", "Report an issue or submit a feature request": "Паведаміць пра памылку або прапанаваць функцыю", + "UniGetUI Repository": "Рэпазіторый UniGetUI", "View GitHub Profile": "Прагляд профілю GitHub", - "WingetUI License": "Ліцэнзія UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Выкарыстанне UniGetUI азначае прыняцце ліцэнзіі MIT", + "UniGetUI License": "Ліцэнзія UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Выкарыстанне UniGetUI азначае прыняцце ліцэнзіі MIT", "Become a translator": "Стаць перакладчыкам", "View page on browser": "Адкрыць у браўзеры", "Copy to clipboard": "Капіяваць у буфер", "Export to a file": "Экспартаваць у файл", "Log level:": "Узровень лагавання:", "Reload log": "Перазагрузіць лог", + "Export log": "Экспартаваць лог", + "UniGetUI Log": "Лог UniGetUI", "Text": "Тэкст", "Change how operations request administrator rights": "Змяніць спосаб запыту правоў адміністратара", "Restrictions on package operations": "Абмежаванні аперацый пакетаў", @@ -271,7 +297,7 @@ "Leave empty for default": "Пакіньце пустым для значэння па змаўчанні", "Add a timestamp to the backup file names": "Дабаўляць адзнаку часу ў назвы файлаў рэзервовай копіі", "Backup and Restore": "Копія і аднаўленне", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Уключыць фонавы API (віджэты і абмен UniGetUI, порт 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Уключыць фонавы API (віджэты і абмен UniGetUI, порт 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Чакаць злучэння з інтэрнэтам перад сеткавымі задачамі", "Disable the 1-minute timeout for package-related operations": "Адключыць 1-хвілінны таймаўт аперацый", "Use installed GSudo instead of UniGetUI Elevator": "Выкарыстоўваць усталяваны GSudo замест Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Тэлеметрыя", "Manage UniGetUI settings": "Рэгуляваць налады UniGetUI", "Related settings": "Звязаныя налады", - "Update WingetUI automatically": "Аўтаабнаўляць UniGetUI", + "Update UniGetUI automatically": "Аўтаабнаўляць UniGetUI", "Check for updates": "Праверыць абнаўленні", "Install prerelease versions of UniGetUI": "Усталёўваць перадрэлізныя версіі UniGetUI", "Manage telemetry settings": "Рэгуляваць тэлеметрыю", @@ -295,17 +321,17 @@ "Import": "Імпарт", "Export settings to a local file": "Экспартаваць налады ў лакальны файл", "Export": "Экспарт", - "Reset WingetUI": "Скінуць UniGetUI", "Reset UniGetUI": "Скінуць UniGetUI", "User interface preferences": "Налады інтэрфейсу", "Application theme, startup page, package icons, clear successful installs automatically": "Тэма, стартавая старонка, іконкі пакетаў, аўтаачыстка ўдалых аперацый", "General preferences": "Агульныя налады", - "WingetUI display language:": "Мова інтэрфейсу UniGetUI:", + "UniGetUI display language:": "Мова інтэрфейсу UniGetUI:", "Is your language missing or incomplete?": "Вашай мовы няма або яна няпоўная?", "Appearance": "Выгляд", "UniGetUI on the background and system tray": "UniGetUI у фоне і трэі", "Package lists": "Спісы пакетаў", "Close UniGetUI to the system tray": "Згарнуць UniGetUI у трэй", + "Manage UniGetUI autostart behaviour": "Кіраванне аўтазапускам UniGetUI", "Show package icons on package lists": "Паказваць іконкі ў спісах", "Clear cache": "Ачысціць кэш", "Select upgradable packages by default": "Абраць абнаўляльныя пакеты па змаўчанні", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Не ўсе мэнэджары пакетаў падтрымліваюць гэтую функцыю", "Proxy URL": "URL проксі", "Enter proxy URL here": "Увядзіце URL проксі тут", + "Authenticate to the proxy with a user and a password": "Аўтэнтыфікавацца на проксі з дапамогай імя карыстальніка і пароля", + "Internet and proxy settings": "Налады інтэрнэту і проксі", "Package manager preferences": "Налады мэнэджара пакетаў", "Ready": "Гатова", "Not found": "Не знойдзена", "Notification preferences": "Налады апавяшчэнняў", "Notification types": "Тыпы апавяшчэнняў", "The system tray icon must be enabled in order for notifications to work": "Для апавяшчэнняў трэба уключыць значок у трэі", - "Enable WingetUI notifications": "Уключыць апавяшчэнні UniGetUI", + "Enable UniGetUI notifications": "Уключыць апавяшчэнні UniGetUI", "Show a notification when there are available updates": "Паказваць апавяшчэнне пра даступныя абнаўленні", "Show a silent notification when an operation is running": "Паказваць ціхае апавяшчэнне падчас аперацыі", "Show a notification when an operation fails": "Паказваць апавяшчэнне пры няўдалай аперацыі", "Show a notification when an operation finishes successfully": "Паказваць апавяшчэнне пра ўдалую аперацыю", "Concurrency and execution": "Паралелізм і выкананне", "Automatic desktop shortcut remover": "Аўтавылучэнне ярлыкоў на працоўным стале", + "Choose how many operations should be performed in parallel": "Выберыце, колькі аперацый трэба выконваць паралельна", "Clear successful operations from the operation list after a 5 second delay": "Выдаляць удалыя аперацыі праз 5 секунд", "Download operations are not affected by this setting": "На спампоўкі гэта не ўплывае", "Try to kill the processes that refuse to close when requested to": "Паспрабаваць забіць працэсы, якія не закрываюцца", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Абярыце выканальны файл. Ніжэй спіс знойдзеных UniGetUI файлаў", "Current executable file:": "Бягучы выканальны файл:", "Ignore packages from {pm} when showing a notification about updates": "Ігнараваць пакеты з {pm} у апавяшчэннях пра абнаўленні", + "Update security": "Бяспека абнаўленняў", + "Use global setting": "Выкарыстоўваць глабальную наладу", + "e.g. 10": "напрыклад, 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не падае даты выпуску для сваіх пакетаў, таму гэты параметр не будзе мець эфекту", + "Override the global minimum update age for this package manager": "Перавызначыць глабальны мінімальны ўзрост абнаўленняў для гэтага мэнэджара пакетаў", + "Minimum age for updates": "Мінімальны ўзрост абнаўленняў", + "Custom minimum age (days)": "Уласны мінімальны ўзрост (у днях)", "View {0} logs": "Прагляд логаў {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Калі Python не ўдаецца знайсці або ён не паказвае пакеты, але ўсталяваны ў сістэме, ", "Advanced options": "Дадатковыя налады", "Reset WinGet": "Скінуць WinGet", "This may help if no packages are listed": "Можа дапамагчы, калі пакеты не адлюстроўваюцца", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Уключыць ачыстку Scoop пры запуску", "Use system Chocolatey": "Выкарыстоўваць сістэмны Chocolatey", "Default vcpkg triplet": "Трыплет vcpkg па змаўчанні", + "Change vcpkg root location": "Змяніць каранёвы каталог vcpkg", "Language, theme and other miscellaneous preferences": "Мова, тэма і іншыя налады", "Show notifications on different events": "Паказваць апавяшчэнні пры розных падзеях", "Change how UniGetUI checks and installs available updates for your packages": "Змяніць як UniGetUI правярае і ўсталёўвае абнаўленні", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Не ўсталёўваць аўтаабнаўленні пры лімітаванавай сетцы", "Do not automatically install updates when the device runs on battery": "Не ўсталёўваць аўтаабнаўленні пры працы ад батарэі", "Do not automatically install updates when the battery saver is on": "Не ўсталёўваць аўтаабнаўленні пры рэжыме эканоміі", + "Only show updates that are at least the specified number of days old": "Паказваць толькі абнаўленні, якім не менш за зададзеную колькасць дзён", "Change how UniGetUI handles install, update and uninstall operations.": "Змяніць як UniGetUI апрацоўвае ўсталяванні, абнаўленні і выдаленні.", "Package Managers": "Мэнэджары пакетаў", "More": "Болей", - "WingetUI Log": "Лог UniGetUI", "Package Manager logs": "Логі мэнэджара пакетаў", "Operation history": "Гісторыя аперацый", "Help": "Дапамога", + "Quit UniGetUI": "Выйсці з UniGetUI", "Order by:": "Упарадкаванне:", "Name": "Назва", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Назва і ID пакета", "Exact match": "Дакладнае супадзенне", "Show similar packages": "Паказаць падобныя пакеты", + "Nothing to share": "Няма чым падзяліцца", + "Please select a package first.": "Спачатку выберыце пакет.", + "Share link copied": "Спасылка для абмену скапіявана", + "The share link for {0} has been copied to the clipboard.": "Спасылка для абмену для {0} была скапіявана ў буфер абмену.", "No results were found matching the input criteria": "Няма вынікаў па крытэрыях", "No packages were found": "Пакеты не былі знойдзены", "Loading packages": "Загрузка пакетаў", @@ -440,7 +483,11 @@ "Package bundle": "Набор пакетаў", "Could not create bundle": "Немагчыма стварыць набор", "The package bundle could not be created due to an error.": "Немагчыма стварыць набор пакетаў з-за памылкі.", + "Unsaved changes": "Незахаваныя змены", + "Discard changes": "Адкінуць змены", + "You have unsaved changes in the current bundle. Do you want to discard them?": "У бягучым наборы ёсць незахаваныя змены. Хочаце іх адкінуць?", "Bundle security report": "Справаздача бяспекі набора", + "The bundle contained restricted content": "Набор утрымліваў абмежаваны змест", "Hooray! No updates were found.": "Нарэшце! Абнаўленняў не знойдзена.", "Everything is up to date": "Усё актуальна", "Uninstall selected packages": "Выдаліць выбраныя пакеты", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Класічны мэнэджар пакетаў для Windows. Тут ёсць усё.
Змяшчае: Праграмы агульнага прызначэння", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Рэпазітарый інструментаў і выканальных файлаў для экасістэмы Microsoft .NET.
Змяшчае: Інструменты і сцэнарыі .NET", "NuPkg (zipped manifest)": "NuPkg (заціснуты маніфест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Мэнэджар пакетаў, якога не хапала для macOS (або Linux).
Змяшчае: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Мэнэджар пакетаў Node JS. Бібліятэкі і ўтыліты JS
Змяшчае: JS бібліятэкі і ўтыліты", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Мэнэджар бібліятэк Python. Бібліятэкі і ўтыліты Python
Змяшчае: Бібліятэкі і ўтыліты Python", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Мэнэджар пакетаў PowerShell. Бібліятэкі і скрыпты для пашырэння
Змяшчае: Модулі, скрыпты, Cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Аперацыя ў чарзе (пазіцыя {0})...", "Click here for more details": "Падрабязнасці тут", "Operation canceled by user": "Аперацыя скасавана карыстальнікам", + "Running PreOperation ({0}/{1})...": "Выконваецца PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} з {1} завяршылася памылкай і была пазначаная як абавязковая. Скасаванне...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} з {1} завершана з вынікам {2}", "Starting operation...": "Запуск аперацыі...", + "Running PostOperation ({0}/{1})...": "Выконваецца PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} з {1} завяршылася памылкай і была пазначаная як абавязковая. Скасаванне...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} з {1} завершана з вынікам {2}", "{package} installer download": "Спампоўка усталёўшчыка {package}", "{0} installer is being downloaded": "Спампоўваецца ўсталёўшчык {0}", "Download succeeded": "Спампоўванне завершана ўдала", @@ -556,14 +610,12 @@ "Portable mode": "Партатыўны рэжым", "DEBUG BUILD": "АДЛАДАЧНАЯ ЗБОРКА", "Available Updates": "Даступныя абнаўленні", - "Show WingetUI": "Паказаць UniGetUI", + "Show UniGetUI": "Паказаць UniGetUI", "Quit": "Выхад", "Attention required": "Патрабуецца ўвага", "Restart required": "Патрабуецца перазапуск", "1 update is available": "Даступнае 1 абнаўленне", "{0} updates are available": "Даступна абнаўленняў: {0}", - "WingetUI Homepage": "Сайт UniGetUI", - "WingetUI Repository": "Рэпазітарый UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Тут можна змяніць паводзіны адносна ярлыкоў. Адзначаныя ярлыкі будуць аўтавыдалены пры будучых абнаўленнях, іншыя будуць захаваны.", "Manual scan": "Ручное сканаванне", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Існыя ярлыкі на працоўным стале будуць прасканіраваны; выберыце, якія пакінуць, а якія выдаліць.", @@ -583,7 +635,6 @@ "Restart later": "Перазапусціць пазней", "An error occurred:": "Адбылася памылка:", "I understand": "Я разумею", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI запушчаны як адміністратар - не рэкамендуецца. Усе аперацыі будуць з правамі. Лепш запускаць без іх.", "WinGet was repaired successfully": "WinGet паспяхова адноўлены", "It is recommended to restart UniGetUI after WinGet has been repaired": "Рэкамендуецца перазапусціць UniGetUI пасля рамонту WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ЗАЎВАГА: гэты сродак можна адключыць у наладах UniGetUI (раздзел WinGet)", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Вашы пакеты будуць дададзены ў набор. Можна працягваць дадаваць пакеты або экспартаваць набор.", "Which backup do you want to open?": "Якую рэзервовую копію загрузіць?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Абярыце копію, якую хочаце загрузіць. Пазней будзе магчымасць вызначыць, якія пакеты аднавіць.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ёсць актыўныя аперацыі. Выхад можа выклікаць іх памылку. Працягнуць?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Ёсць актыўныя аперацыі. Выхад можа выклікаць іх памылку. Працягнуць?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI або яго кампаненты адсутнічаюць/пашкоджаны.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Настойліва раім перавсталяваць UniGetUI для вырашэння праблемы.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Глядзіце логі UniGetUI для падрабязнасцей пра файл(ы)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Упішыце назвы працэсаў праз коску", "Unset or unknown": "Не зададзена / невядома", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Глядзіце вывад каманднага радка або звярніцеся да гісторыі аперацый, каб атрымаць больш звестак пра праблему.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Няма ікон або скрыншотаў? Дадайце іх у публічную базу UniGetUI.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Няма ікон або скрыншотаў? Дадайце іх у публічную базу UniGetUI.", "Become a contributor": "Стаць удзельнікам", "Save": "Захаваць", "Update to {0} available": "Даступна абнаўленне да {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Уключыць аўтаматычны сродак выпраўлення WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Уключыць [эксперыментальны] палепшаны сродак выпраўлення WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Дадаваць абнаўленні з памылкай 'няма адпаведнага абнаўлення' у спіс ігнараваных", - "Restart WingetUI to fully apply changes": "Перазапусціце UniGetUI для прымянення змен", - "Restart WingetUI": "Перазапусціць UniGetUI", "Invalid selection": "Няправільны выбар", "No package was selected": "Не выбрана ніводнага пакета", "More than 1 package was selected": "Выбрана больш за адзін пакет", @@ -684,6 +733,37 @@ "Log out failed: ": "Не ўдалося выйсці: ", "Package backup settings": "Налады рэзервовай копіі пакетаў", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Аб UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI дазваляе лягчэй кіраваць праграмным забеспячэннем праз адзіны графічны інтэрфейс для каманднага радка менеджараў пакетаў.", + "You have installed WingetUI Version {0}": "Вы ўсталявалі UniGetUI версіі {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI быў бы немагчымы без дапамогі ўсіх удзельнікаў. Дзякуй вам 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI выкарыстоўвае наступныя бібліятэкі - без іх праект немагчымы.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI перакладзены на больш чым 40 моў дзякуючы валанцёрам. Дзякуй 🤝", + "WingetUI Settings": "Налады UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Магчыма трэба ўсталяваць {pm} для выкарыстання з UniGetUI.", + "Scoop Installer - WingetUI": "Усталёўшчык Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Выдаленне Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Ачыстка кэша Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI версія {0}", + "WingetUI License": "Ліцэнзія UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Выкарыстанне UniGetUI азначае прыняцце ліцэнзіі MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Уключыць фонавы API (віджэты і абмен UniGetUI, порт 7058)", + "Update WingetUI automatically": "Аўтаабнаўляць UniGetUI", + "Reset WingetUI": "Скінуць UniGetUI", + "WingetUI display language:": "Мова інтэрфейсу UniGetUI:", + "Manage WingetUI autostart behaviour": "Кіраванне аўтазапускам UniGetUI", + "Enable WingetUI notifications": "Уключыць апавяшчэнні UniGetUI", + "WingetUI Log": "Лог UniGetUI", + "Show WingetUI": "Паказаць UniGetUI", + "WingetUI Homepage": "Сайт UniGetUI", + "WingetUI Repository": "Рэпазітарый UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI запушчаны як адміністратар - не рэкамендуецца. Усе аперацыі будуць з правамі. Лепш запускаць без іх.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ёсць актыўныя аперацыі. Выхад можа выклікаць іх памылку. Працягнуць?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Няма ікон або скрыншотаў? Дадайце іх у публічную базу UniGetUI.", + "Restart WingetUI to fully apply changes": "Перазапусціце UniGetUI для прымянення змен", + "Restart WingetUI": "Перазапусціць UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Рэгуляваць аўтазапуск UniGetUI у наладах сістэмы", "(Number {0} in the queue)": "(Нумар {0} у чарзе)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@bthos", "0 packages found": "Пакеты не знойдзены", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json index 45cd190872..055e643993 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bg.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Прекратяване на деинсталирането, ако командата за предварително деинсталиране е неуспешна", "Command-line to run:": "Команден ред за изпълнение:", "Save and close": "Запази и затвори", + "General": "Общи", + "Architecture & Location": "Архитектура и местоположение", + "Command-line": "Команден ред", + "Pre/Post install": "Преди/след инсталиране", "Run as admin": "Стартиране като администратор", "Interactive installation": "Интерактивна инсталация", "Skip hash check": "Пропускане проверката на хеша", @@ -71,6 +75,8 @@ "Manage ignored updates": "Управление на игнорираните актуализации", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Пакетите, изброени тук, няма да бъдат взети предвид при проверката за актуализации. Щракнете двукратно върху тях или щракнете върху бутона отдясно, за да спрете игнорирането на техните актуализации.", "Reset list": "Нулиране на списъка", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Наистина ли искате да нулирате списъка с игнорирани актуализации? Това действие не може да бъде отменено", + "No ignored updates": "Няма игнорирани актуализации", "Package Name": "Име на пакета", "Package ID": "ID на пакета", "Ignored version": "Игнорирана версия", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Тази операция се изпълнява интерактивно.", "You will likely need to interact with the installer.": "Вероятно ще трябва да взаимодействате с инсталатора.", "Integrity checks skipped": "Пропуснати проверки за целостта", + "Integrity checks will not be performed during this operation.": "Проверките за целостта няма да бъдат извършени по време на тази операция.", "Proceed at your own risk.": "Продължете на свой собствен риск.", "Close": "Затвори", "Loading...": "Зареждане...", @@ -120,16 +127,17 @@ "optional": "по избор", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} е готов за инсталиране.", "The update process will start after closing UniGetUI": "Процесът на актуализиране ще започне след затваряне на UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI е стартиран като администратор, което не се препоръчва. Когато UniGetUI се изпълнява като администратор, ВСЯКА операция, стартирана от UniGetUI, ще има администраторски права. Все още можете да използвате програмата, но силно препоръчваме да не стартирате UniGetUI с администраторски права.", "Share anonymous usage data": "Споделяне на анонимни данни за употреба", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI събира анонимни данни за употреба, за да подобри потребителското изживяване.", "Accept": "Приеми", - "You have installed WingetUI Version {0}": "Инсталирали сте WingetUI версия {0}", + "You have installed UniGetUI Version {0}": "Инсталирали сте UniGetUI версия {0}", "Disclaimer": "Отказ от отговорност", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не е свързан с никой от съвместимите мениджъри на пакети. UniGetUI е независим проект.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI нямаше да е възможен без помощта на сътрудниците. Благодаря на всички 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI използва следните библиотеки. Без тях WingetUI нямаше да е възможен.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI нямаше да е възможен без помощта на сътрудниците. Благодаря на всички 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI използва следните библиотеки. Без тях UniGetUI нямаше да е възможен.", "{0} homepage": "Начална страница {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI е преведен на повече от 40 езика благодарение на преводачите-доброволци. Благодарим ви 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI е преведен на повече от 40 езика благодарение на преводачите-доброволци. Благодарим ви 🤝", "Verbose": "Подробно", "1 - Errors": "1 - Грешки", "2 - Warnings": "2 - Предупреждения", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Влезли сте като {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Чудесно! Резервните копия ще бъдат качени в частен gist във вашия акаунт.", "Select backup": "Изберете архив", - "WingetUI Settings": "WingetUI настройки", + "UniGetUI Settings": "Настройки на UniGetUI", "Allow pre-release versions": "Разрешаване на предварителни версии", "Apply": "Приложи", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "От съображения за сигурност персонализираните аргументи на командния ред са изключени по подразбиране. Отидете в настройките за сигурност на UniGetUI, за да промените това.", "Go to UniGetUI security settings": "Отидете на настройките за сигурност на UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Следните опции ще се прилагат по подразбиране всеки път, когато {0} пакет бъде инсталиран, надстроен или деинсталиран.", "Package's default": "Пакет по подразбиране", @@ -160,6 +169,7 @@ "Username": "Потребителско име", "Password": "Парола", "Credentials": "Пълномощия", + "It is not guaranteed that the provided credentials will be stored safely": "Не е гарантирано, че предоставените идентификационни данни ще бъдат съхранявани безопасно", "Partially": "Частично", "Package manager": "Мениджър на пакети", "Compatible with proxy": "Съвместим с прокси сървър", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} е активирано и готово за употреба", "{pm} version:": "версия {pm}:", "{pm} was not found!": "{pm} не беше намерен!", - "You may need to install {pm} in order to use it with WingetUI.": "Може да се наложи да инсталирате {pm}, за да го използвате с WingetUI.", - "Scoop Installer - WingetUI": "Scoop инсталатор - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop деинсталатор - WingetUI", - "Clearing Scoop cache - WingetUI": "Изчистване на Scoop кеша - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Може да се наложи да инсталирате {pm}, за да го използвате с UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop инсталатор - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop деинсталатор - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Изчистване на Scoop кеша - UniGetUI", + "Restart UniGetUI to fully apply changes": "Рестартирайте UniGetUI, за да приложите напълно промените", "Restart UniGetUI": "Рестартирай UniGetUI", "Manage {0} sources": "Управление на {0} източника", "Add source": "Добави източник ", "Add": "Добави", + "Source name": "Име на източника", + "Source URL": "URL адрес на източника", "Other": "Друго", + "No minimum age": "Без минимален срок", "1 day": "1 ден", "{0} days": "{0} дена", + "Custom...": "Персонализирано...", "{0} minutes": "{0} минути", "1 hour": "1 час", "{0} hours": "{0} часа", "1 week": "1 седмица", - "WingetUI Version {0}": "Версия на WingetUI {0}", + "Supports release dates": "Поддържа дати на издаване", + "Release date support per package manager": "Поддръжка на дати на издаване по мениджър на пакети", + "UniGetUI Version {0}": "Версия на UniGetUI {0}", "Search for packages": "Търсене на пакети", "Local": "Локален", "OK": "ОК", @@ -200,11 +217,13 @@ "Enabled": "Активирано", "Disabled": "Изключено", "More info": "Повече информация", + "GitHub account": "GitHub акаунт", "Log in with GitHub to enable cloud package backup.": "Влезте с GitHub, за да активирате архивирането на пакети в облака.", "More details": "Още подробности", "Log in": "Вход", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Ако имате активирано архивиране в облака, то ще бъде запазено като GitHub Gist файл в този акаунт.", "Log out": "Изход", + "About UniGetUI": "Относно UniGetUI", "About": "Относно", "Third-party licenses": "Лицензи на трети страни", "Contributors": "Сътрудници", @@ -212,6 +231,7 @@ "Manage shortcuts": "Управление на преките пътища", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI откри нов пряк път на работния плот, който може да бъде изтрит автоматично.", "Do you really want to reset this list? This action cannot be reverted.": "Наистина ли искате да нулирате този списък? Това действието не може да бъде отменено.", + "Open in explorer": "Отвори в Explorer", "Remove from list": "Премахване от списъка", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Когато бъдат открити нови преки пътища, те да се изтриват автоматично, вместо да се показва този диалогов прозорец.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI събира анонимни данни за употреба с единствената цел да разбере и подобри потребителското изживяване.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Приемате ли, че UniGetUI събира и изпраща анонимни статистически данни за употреба, с единствената цел да разбере и подобри потребителското изживяване?", "Decline": "Отказ", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Не се събира и не се изпраща лична информация, а събраните данни са анонимизирани, така че не могат да бъдат проследени обратно до вас.", - "About WingetUI": "За WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI е приложение, което улеснява управлението на вашия софтуер, като предоставя графичен интерфейс „всичко в едно“ за вашите мениджъри на пакети от командния ред.", + "Toggle navigation panel": "Превключи навигационния панел", + "Minimize": "Минимизирай", + "Maximize": "Максимизирай", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI е приложение, което улеснява управлението на вашия софтуер, като предоставя графичен интерфейс „всичко в едно“ за вашите мениджъри на пакети от командния ред.", "Useful links": "Полезни връзки", + "UniGetUI Homepage": "Начална страница на UniGetUI", "Report an issue or submit a feature request": "Съобщете за проблем или изпратете заявка за функция", + "UniGetUI Repository": "Хранилище на UniGetUI", "View GitHub Profile": "Преглед на профила в GitHub", - "WingetUI License": "Лиценз на WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "Използването на WingetUI предполага приемането на лиценза на MIT", + "UniGetUI License": "Лиценз на UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Използването на UniGetUI предполага приемането на лиценза на MIT", "Become a translator": "Станете преводач", "View page on browser": "Отваряне на страницата в браузър", "Copy to clipboard": "Копирай в клипбоарда", "Export to a file": "Експортирай във файл", "Log level:": "Ниво на дневника:", "Reload log": "Презареждане на лога", + "Export log": "Експортиране на дневника", + "UniGetUI Log": "Дневник на UniGetUI", "Text": "Текст", "Change how operations request administrator rights": "Промяна на начина, по който операциите изискват администраторски права", "Restrictions on package operations": "Ограничения върху операциите с пакети", @@ -271,7 +297,7 @@ "Leave empty for default": "Стартиране на подпроцеса...", "Add a timestamp to the backup file names": "Добавете времева маркировка към имената на файловете за архивиране", "Backup and Restore": "Резервнито копие и възстановяване", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Активиране на фоновия API (WingetUI Widgets и Sharing, порт 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Активиране на фоновия API (UniGetUI Widgets и Sharing, порт 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Изчакайте устройството да се свърже с интернет, преди да се опитате да извършите задачи, които изискват интернет връзка.", "Disable the 1-minute timeout for package-related operations": "Деактивирайте 1-минутното изчакване за операции, свързани с пакети", "Use installed GSudo instead of UniGetUI Elevator": "Използвайте инсталиран GSudo вместо UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Телеметрия", "Manage UniGetUI settings": "Управление на настройките на UniGetUI", "Related settings": "Свързани настройки", - "Update WingetUI automatically": "Автоматично актуализиране на WingetUI", + "Update UniGetUI automatically": "Автоматично актуализиране на UniGetUI", "Check for updates": "Проверете за актуализации", "Install prerelease versions of UniGetUI": "Инсталирайте предварителни версии на UniGetUI", "Manage telemetry settings": "Управление на настройките на телеметрията", @@ -295,17 +321,17 @@ "Import": "Импортиране", "Export settings to a local file": "Експортирай избраните пакети в локален файл", "Export": "Експортирай", - "Reset WingetUI": "Нулиране на WingetUI", "Reset UniGetUI": "Нулиране на UniGetUI", "User interface preferences": "Настройки на потребителския интерфейс", "Application theme, startup page, package icons, clear successful installs automatically": "Тема на приложението, начална страница, икони на пакети, автоматично изчистване на успешни инсталации", "General preferences": "Общи настройки", - "WingetUI display language:": "Език на показване на WingetUI:", + "UniGetUI display language:": "Език на показване на UniGetUI:", "Is your language missing or incomplete?": "Вашият език липсва или е непълен?", "Appearance": "Външен вид", "UniGetUI on the background and system tray": "UniGetUI във фонов режим и системна област", "Package lists": "Списъци с пакети", "Close UniGetUI to the system tray": "Затвори UniGetUI в системния трей", + "Manage UniGetUI autostart behaviour": "Управление на поведението при автоматично стартиране на UniGetUI", "Show package icons on package lists": "Показване на икони в списъците с пакети", "Clear cache": "Изчистване на кеша", "Select upgradable packages by default": "Избиране на надграждаеми пакети по подразбиране", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Моля, обърнете внимание, че не всички мениджъри на пакети може да поддържат напълно тази функция", "Proxy URL": "URL адрес на прокси сървър", "Enter proxy URL here": "Въведете URL адрес на прокси сървъра тук", + "Authenticate to the proxy with a user and a password": "Удостоверяване пред прокси сървъра с потребител и парола", + "Internet and proxy settings": "Настройки за интернет и прокси сървър", "Package manager preferences": "Настройки на мениджърът на пакети", "Ready": "Готов", "Not found": "Не е намерен", "Notification preferences": "Предпочитания за известия", "Notification types": "Видове известия", "The system tray icon must be enabled in order for notifications to work": "Иконата в системния трей трябва да е активирана, за да работят известията", - "Enable WingetUI notifications": "Включи WingetUI известията", + "Enable UniGetUI notifications": "Включи UniGetUI известията", "Show a notification when there are available updates": "Показване на известие при наличие на актуализации", "Show a silent notification when an operation is running": "Показване на тихо известие, когато се изпълнява операция", "Show a notification when an operation fails": "Показване на известие при неуспешна операция", "Show a notification when an operation finishes successfully": "Показване на известие при успешно завършване на операция", "Concurrency and execution": "Паралелност и изпълнение", "Automatic desktop shortcut remover": "Автоматично премахване на преки пътища от работния плот", + "Choose how many operations should be performed in parallel": "Изберете колко операции да се извършват паралелно", "Clear successful operations from the operation list after a 5 second delay": "Изчистване на успешни операции от списъка с операции след 5-секундно забавяне", "Download operations are not affected by this setting": "Операциите за изтегляне не се влияят от тази настройка", "Try to kill the processes that refuse to close when requested to": "Опитайте се да прекратите процесите, които отказват да се затворят, когато бъдат поискани", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Изберете изпълним файл, който ще се използва. Следният списък показва изпълнимите файлове, намерени от UniGetUI.", "Current executable file:": "Текущ изпълним файл:", "Ignore packages from {pm} when showing a notification about updates": "Игнориране на пакети от {pm} при показване на известие за актуализации", + "Update security": "Сигурност на актуализациите", + "Use global setting": "Използване на глобалната настройка", + "e.g. 10": "напр. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не предоставя дати на издаване за пакетите си, така че тази настройка няма да има ефект", + "Override the global minimum update age for this package manager": "Замяна на глобалния минимален срок за актуализации за този мениджър на пакети", + "Minimum age for updates": "Минимален срок за актуализации", + "Custom minimum age (days)": "Персонализиран минимален срок (дни)", "View {0} logs": "Преглед на {0} лог файлове", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може да бъде намерен или не показва пакети, но е инсталиран на системата, ", "Advanced options": "Разширени опции", "Reset WinGet": "Нулиране на WinGet", "This may help if no packages are listed": "Това може да помогне, ако не са изброени пакети", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Активиране на Scoop cleanup при стартиране", "Use system Chocolatey": "Използвайте системата Chocolatey", "Default vcpkg triplet": "Подразбиране vcpkg triplet", + "Change vcpkg root location": "Промяна на местоположението на корена на vcpkg", "Language, theme and other miscellaneous preferences": "Език, тема и други предпочитания", "Show notifications on different events": "Показване на известия за различни събития", "Change how UniGetUI checks and installs available updates for your packages": "Променете начина, по който UniGetUI проверява и инсталира наличните актуализации за вашите пакети", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Не инсталирайте автоматично актуализации, когато мрежовата връзка е с ограничено потребление", "Do not automatically install updates when the device runs on battery": "Не инсталирайте автоматично актуализации, когато устройството работи на батерия", "Do not automatically install updates when the battery saver is on": "Не инсталирайте автоматично актуализации, когато режимът за пестене на батерията е включен", + "Only show updates that are at least the specified number of days old": "Показвай само актуализации, които са поне на посочения брой дни", "Change how UniGetUI handles install, update and uninstall operations.": "Променете начина, по който UniGetUI обработва операциите при инсталиране, актуализиране и деинсталиране.", "Package Managers": "Мениджъри на пакети", "More": "Още", - "WingetUI Log": "Дневник на WingetUI", "Package Manager logs": "Дневник на мениджърът на пакети", "Operation history": "История на операциите", "Help": "Помощ", + "Quit UniGetUI": "Изход от UniGetUI", "Order by:": "Подреди по:", "Name": "Име", "Id": "Идентификационен номер", @@ -409,6 +448,10 @@ "Both": "И двата", "Exact match": "Точно съвпадение", "Show similar packages": "Показване на подобни пакети", + "Nothing to share": "Няма какво да се сподели", + "Please select a package first.": "Моля, първо изберете пакет.", + "Share link copied": "Връзката за споделяне е копирана", + "The share link for {0} has been copied to the clipboard.": "Връзката за споделяне за {0} е копирана в клипборда.", "No results were found matching the input criteria": "Не бяха намерени резултати, съответстващи на въведените критерии", "No packages were found": "Не бяха намерени пакети", "Loading packages": "Зареждане на пакети", @@ -440,7 +483,11 @@ "Package bundle": "Пакетиране на пакет", "Could not create bundle": "Не можа да се създаде пакет", "The package bundle could not be created due to an error.": "Пакетът не можа да бъде създаден поради грешка.", + "Unsaved changes": "Незапазени промени", + "Discard changes": "Отхвърли промените", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Имате незапазени промени в текущия пакет. Искате ли да ги отхвърлите?", "Bundle security report": "Доклад за сигурността на пакета", + "The bundle contained restricted content": "Пакетът съдържаше ограничено съдържание", "Hooray! No updates were found.": "Ура! Няма намерени актуализации!", "Everything is up to date": "Всичко е актуално", "Uninstall selected packages": "Деинсталиране на избраните пакети", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Оригиналния мениджър за пакети за Windows. Има всичко.
Съдържа: Общ софтуер", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Хранилище, пълно с инструменти и изпълними файлове, проектирано за екосистемата на .NET на Microsoft.
Съдържа: .NET инструменти и скриптове", "NuPkg (zipped manifest)": "NuPkg (компактен манифест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Липсващият мениджър на пакети за macOS (или Linux).
Съдържа: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Мениджърът на пакети на Node JS. Е пълен с библиотеки и други помощни програми, които обикалят света на JavaScript.
Съдържа: Библиотеки на Node JavaScript и други свързани помощни програми", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Мениджър на библиотеки за Python. Съдържа библиотеки за Python и други инструменти, свързани с Python.
Съдържа: библиотеки за Python и свързану инструменти", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Мениджърът на пакети на PowerShell. Намерете библиотеки и скриптове за разширяване на възможностите на PowerShell
Съдържа: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Операция на опашката (позиция {0})...", "Click here for more details": "Кликнете тук за повече подробности", "Operation canceled by user": "Операцията е прекъсната от потребителя", + "Running PreOperation ({0}/{1})...": "Изпълнява се PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} от {1} се провали и беше отбелязана като необходима. Прекратяване...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} от {1} завърши с резултат {2}", "Starting operation...": "Стартиране на операцията...", + "Running PostOperation ({0}/{1})...": "Изпълнява се PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} от {1} се провали и беше отбелязана като необходима. Прекратяване...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} от {1} завърши с резултат {2}", "{package} installer download": "изтегляне на инсталатора на {package}", "{0} installer is being downloaded": "Инсталаторът на {0} се изтегля", "Download succeeded": "Изтеглянето е успешно", @@ -556,14 +610,12 @@ "Portable mode": "Преносим режим", "DEBUG BUILD": "ОТЛАДЪЧНА КОМПИЛАЦИЯ", "Available Updates": "Налични актуализации", - "Show WingetUI": "Показване на WingetUI", + "Show UniGetUI": "Показване на UniGetUI", "Quit": "Изход", "Attention required": "Обърнете внимание", "Restart required": "Нужно е рестрартиране", "1 update is available": "Налична е 1 актуализация", "{0} updates are available": "Налични са {0} актуализации", - "WingetUI Homepage": "Начална страница на WingetUI", - "WingetUI Repository": "Хранилище на WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Тук можете да промените поведението на UniGetUI по отношение на следните преки пътища. Отметването на пряк път ще накара UniGetUI да го изтрие, ако бъде създаден при бъдеща надстройка. Премахването на отметката ще запази прякия път непокътнат.", "Manual scan": "Ръчно сканиране", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Съществуващите преки пътища на вашия работен плот ще бъдат сканирани и ще трябва да изберете кои да запазите и кои да премахнете.", @@ -583,7 +635,6 @@ "Restart later": "Да се рестартира по-късно", "An error occurred:": "Възникна грешка:", "I understand": "Разбирам", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI е стартиран като администратор, което не се препоръчва. Когато стартирате WingetUI като администратор, ВСЯКА операция, стартирана от WingetUI, ще има администраторски права. Все още можете да използвате програмата, но силно препоръчваме да не стартирате WingetUI с администраторски права.", "WinGet was repaired successfully": "WinGet беше поправен успешно", "It is recommended to restart UniGetUI after WinGet has been repaired": "Препоръчително е да рестартирате UniGetUI след поправяне на WinGet.", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ЗАБЕЛЕЖКА: Този инструмент за отстраняване на неизправности може да бъде деактивиран от настройките на UniGetUI, в секцията WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Вашите пакети ще бъдат добавени. Можете да продължите да добавяте пакети или да ги експортирате.", "Which backup do you want to open?": "Кой резервен файл искате да отворите?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Изберете резервното копие, което искате да отворите. По-късно ще можете да прегледате кои пакети искате да инсталирате.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Има текущи операции. Излизането от WingetUI може да доведе до неуспех. Искате ли да продължите?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Има текущи операции. Излизането от UniGetUI може да доведе до неуспех. Искате ли да продължите?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI или някои от неговите компоненти липсват или са повредени.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Силно се препоръчва да инсталирате UniGetUI, за да разрешите ситуацията.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Вижте лог файловете на UniGetUI, за да получите повече подробности относно засегнатите файлове.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Напишете тук имената на процесите, разделени със запетаи (,)", "Unset or unknown": "Незададено или неизвестно", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Моля, вижте изхода от командния ред или вижте историята на операциите за допълнителна информация относно проблема.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Този пакет няма скрийншотове или липсва иконата? Допринесете за WingetUI, като добавите липсващите икони и скрийншотове към нашата отворена, публична база данни.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Този пакет няма скрийншотове или липсва иконата? Допринесете за UniGetUI, като добавите липсващите икони и скрийншотове към нашата отворена, публична база данни.", "Become a contributor": "Станете сътрудник", "Save": "Запази", "Update to {0} available": "Налична е актуализация до {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Активирайте автоматичния инструмент за отстраняване на неизправности с WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Активирайте [експериментално] подобреното отстраняване на неизправности в WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Добавете актуализации, които са неуспешни с „няма намерена приложима актуализация“, към списъка с игнорирани актуализации.", - "Restart WingetUI to fully apply changes": "Рестартирайте WingetUI, за да приложите промените напълно", - "Restart WingetUI": "Рестартиране на WingetUI", "Invalid selection": "Невалиден избор", "No package was selected": "Не е избран пакет", "More than 1 package was selected": "Избран е повече от 1 пакет", @@ -684,6 +733,37 @@ "Log out failed: ": "Неуспешен изход:", "Package backup settings": "Настройки за архивиране на пакети", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "За WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI е приложение, което улеснява управлението на вашия софтуер, като предоставя графичен интерфейс „всичко в едно“ за вашите мениджъри на пакети от командния ред.", + "You have installed WingetUI Version {0}": "Инсталирали сте WingetUI версия {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI нямаше да е възможен без помощта на сътрудниците. Благодаря на всички 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI използва следните библиотеки. Без тях WingetUI нямаше да е възможен.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI е преведен на повече от 40 езика благодарение на преводачите-доброволци. Благодарим ви 🤝", + "WingetUI Settings": "WingetUI настройки", + "You may need to install {pm} in order to use it with WingetUI.": "Може да се наложи да инсталирате {pm}, за да го използвате с WingetUI.", + "Scoop Installer - WingetUI": "Scoop инсталатор - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop деинсталатор - WingetUI", + "Clearing Scoop cache - WingetUI": "Изчистване на Scoop кеша - UniGetUI", + "WingetUI Version {0}": "Версия на WingetUI {0}", + "WingetUI License": "Лиценз на WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "Използването на WingetUI предполага приемането на лиценза на MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Активиране на фоновия API (WingetUI Widgets и Sharing, порт 7058)", + "Update WingetUI automatically": "Автоматично актуализиране на WingetUI", + "Reset WingetUI": "Нулиране на WingetUI", + "WingetUI display language:": "Език на показване на WingetUI:", + "Manage WingetUI autostart behaviour": "Управление на поведението при автоматично стартиране на WingetUI", + "Enable WingetUI notifications": "Включи WingetUI известията", + "WingetUI Log": "Дневник на WingetUI", + "Show WingetUI": "Показване на WingetUI", + "WingetUI Homepage": "Начална страница на WingetUI", + "WingetUI Repository": "Хранилище на WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI е стартиран като администратор, което не се препоръчва. Когато стартирате WingetUI като администратор, ВСЯКА операция, стартирана от WingetUI, ще има администраторски права. Все още можете да използвате програмата, но силно препоръчваме да не стартирате WingetUI с администраторски права.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Има текущи операции. Излизането от WingetUI може да доведе до неуспех. Искате ли да продължите?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Този пакет няма скрийншотове или липсва иконата? Допринесете за WingetUI, като добавите липсващите икони и скрийншотове към нашата отворена, публична база данни.", + "Restart WingetUI to fully apply changes": "Рестартирайте WingetUI, за да приложите промените напълно", + "Restart WingetUI": "Рестартиране на WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Управление на автоматичното стартиране на UniGetUI от настройките на приложението", "(Number {0} in the queue)": "(Номер {0} в опашката)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Vasil Kolev, Nikolay Naydenov", "0 packages found": "Няма намерени пакети", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json index 828e58b5cb..365ceecf13 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_bn.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "প্রাক-আনইনস্টল কমান্ড ব্যর্থ হলে আনইনস্টল বাতিল করুন", "Command-line to run:": "চালাতে কমান্ড-লাইন:", "Save and close": "সংরক্ষণ করেন এবং বন্ধ করেন", + "General": "সাধারণ", + "Architecture & Location": "আর্কিটেকচার ও অবস্থান", + "Command-line": "কমান্ড-লাইন", + "Pre/Post install": "প্রাক/পরবর্তী ইনস্টল", "Run as admin": "এডমিনিস্ট্রেটর হিসেবে চালান", "Interactive installation": "ইন্টারেক্টিভ ইনস্টলেশন", "Skip hash check": "হ্যাশ চেক করা বাদ দিন", @@ -71,6 +75,8 @@ "Manage ignored updates": "উপেক্ষা করা আপডেটগুলি পরিচালনা করুন", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "আপডেটের জন্য চেক করার সময় এখানে তালিকাভুক্ত প্যাকেজগুলি অ্যাকাউন্টে নেওয়া হবে না। তাদের আপডেট উপেক্ষা করা বন্ধ করতে তাদের ডাবল-ক্লিক করুন বা তাদের ডানদিকের বোতামটি ক্লিক করুন।", "Reset list": "তালিকা রিসেট করুন", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "আপনি কি সত্যিই উপেক্ষিত আপডেটের তালিকাটি রিসেট করতে চান? এই পদক্ষেপটি পূর্বাবস্থায় ফেরানো যাবে না", + "No ignored updates": "কোনো উপেক্ষিত আপডেট নেই", "Package Name": "প্যাকেজের নাম", "Package ID": "প্যাকেজ আইডি", "Ignored version": "উপেক্ষিত সংস্করণ", @@ -86,6 +92,7 @@ "This operation is running interactively.": "এই অপারেশনটি ইন্টারেক্টিভভাবে চলছে।", "You will likely need to interact with the installer.": "আপনার সম্ভবত ইনস্টলারের সাথে মিথস্ক্রিয়া করতে হবে।", "Integrity checks skipped": "অখণ্ডতা পরীক্ষা এড়িয়ে গেছে", + "Integrity checks will not be performed during this operation.": "এই অপারেশনের সময় অখণ্ডতা পরীক্ষা করা হবে না।", "Proceed at your own risk.": "আপনার নিজের ঝুঁকিতে এগিয়ে যান।", "Close": "বন্ধ", "Loading...": "লোড হচ্ছে...", @@ -120,16 +127,17 @@ "optional": "ঐচ্ছিক", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} ইনস্টল করার জন্য প্রস্তুত।", "The update process will start after closing UniGetUI": "UniGetUI বন্ধ করার পরে আপডেট প্রক্রিয়া শুরু হবে", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI প্রশাসক হিসেবে চালানো হয়েছে, যা সুপারিশ করা হয় না। UniGetUI-কে প্রশাসক হিসেবে চালালে UniGetUI থেকে শুরু করা প্রতিটি অপারেশন প্রশাসকের অনুমতি পাবে। আপনি এখনও প্রোগ্রামটি ব্যবহার করতে পারেন, তবে আমরা জোরালোভাবে সুপারিশ করি যে UniGetUI-কে প্রশাসক হিসেবে চালাবেন না।", "Share anonymous usage data": "নিরাপদ ব্যবহার ডেটা শেয়ার করুন", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI ব্যবহারকারীর অভিজ্ঞতা উন্নত করার জন্য নিরাপদ ব্যবহার ডেটা সংগ্রহ করে।", "Accept": "গ্রহণ করুন", - "You have installed WingetUI Version {0}": "আপনি UniGetUI সংস্করণ {0} ইনস্টল করেছেন", + "You have installed UniGetUI Version {0}": "আপনি UniGetUI সংস্করণ {0} ইনস্টল করেছেন", "Disclaimer": "দাবিত্যাগ", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI কোনো সামঞ্জস্যপূর্ণ প্যাকেজ পরিচালকদের সাথে সম্পর্কিত নয়। UniGetUI একটি স্বাধীন প্রকল্প।", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "অবদানকারীদের সাহায্য ছাড়া UniGetUI সম্ভব হত না। সবাইকে ধন্যবাদ 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI নিম্নলিখিত লাইব্রেরি ব্যবহার করে। এগুলি ছাড়া UniGetUI সম্ভব হত না।", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "অবদানকারীদের সাহায্য ছাড়া UniGetUI সম্ভব হত না। সবাইকে ধন্যবাদ 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI নিম্নলিখিত লাইব্রেরি ব্যবহার করে। এগুলি ছাড়া UniGetUI সম্ভব হত না।", "{0} homepage": "{0} হোমপেজ", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "স্বেচ্ছাসেবক অনুবাদকদের ধন্যবাদ জানাতে UniGetUI ৪০-এর বেশি ভাষায় অনুবাদ করা হয়েছে। ধন্যবাদ 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "স্বেচ্ছাসেবক অনুবাদকদের ধন্যবাদ জানাতে UniGetUI ৪০-এর বেশি ভাষায় অনুবাদ করা হয়েছে। ধন্যবাদ 🤝", "Verbose": "বর্ণনামূলক", "1 - Errors": "১ - ত্রুটি", "2 - Warnings": "২ - সতর্কতা", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "আপনি {0} (@{1}) হিসাবে লগ ইন করেছেন", "Nice! Backups will be uploaded to a private gist on your account": "চমৎকার! ব্যাকআপগুলি আপনার অ্যাকাউন্টে একটি ব্যক্তিগত gist-এ আপলোড করা হবে", "Select backup": "ব্যাকআপ নির্বাচন করুন", - "WingetUI Settings": "WingetUI সেটিংস", + "UniGetUI Settings": "UniGetUI সেটিংস", "Allow pre-release versions": "প্রি-রিলিজ সংস্করণের অনুমতি দিন", "Apply": "প্রয়োগ করুন", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "নিরাপত্তাজনিত কারণে কাস্টম কমান্ড-লাইন আর্গুমেন্ট ডিফল্টরূপে নিষ্ক্রিয় থাকে। এটি পরিবর্তন করতে UniGetUI নিরাপত্তা সেটিংসে যান।", "Go to UniGetUI security settings": "UniGetUI নিরাপত্তা সেটিংসে যান", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "প্রতিটি পর্যায়ে নিম্নলিখিত বিকল্পগুলি ডিফল্টরূপে প্রয়োগ করা হবে যখন একটি {0} প্যাকেজ ইনস্টল, আপগ্রেড বা আনইনস্টল করা হয়।", "Package's default": "প্যাকেজের ডিফল্ট", @@ -160,6 +169,7 @@ "Username": "ব্যবহারকারীর নাম", "Password": "পাসওয়ার্ড", "Credentials": "প্রশংসাপত্র", + "It is not guaranteed that the provided credentials will be stored safely": "প্রদত্ত শংসাপত্রগুলি নিরাপদে সংরক্ষিত হবে তার কোনো নিশ্চয়তা নেই", "Partially": "আংশিকভাবে", "Package manager": "প্যাকেজ ম্যানেজার", "Compatible with proxy": "প্রক্সির সাথে সামঞ্জস্যপূর্ণ", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} সক্ষম এবং যেতে প্রস্তুত", "{pm} version:": "{pm} সংস্করণ:", "{pm} was not found!": "{pm} পাওয়া যায়নি!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI-এর সাথে এটি ব্যবহার করার জন্য আপনার {pm} ইনস্টল করতে হতে পারে।", - "Scoop Installer - WingetUI": "স্কুপ ইনস্টলার - WingetUI", - "Scoop Uninstaller - WingetUI": "স্কুপ আনইনস্টলার - WingetUI", - "Clearing Scoop cache - WingetUI": "স্কুপ ক্যাশে সাফ করা হচ্ছে - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI-এর সাথে এটি ব্যবহার করার জন্য আপনার {pm} ইনস্টল করতে হতে পারে।", + "Scoop Installer - UniGetUI": "স্কুপ ইনস্টলার - UniGetUI", + "Scoop Uninstaller - UniGetUI": "স্কুপ আনইনস্টলার - UniGetUI", + "Clearing Scoop cache - UniGetUI": "স্কুপ ক্যাশে সাফ করা হচ্ছে - UniGetUI", + "Restart UniGetUI to fully apply changes": "পরিবর্তনগুলি পুরোপুরি প্রয়োগ করতে UniGetUI পুনরায় চালু করুন", "Restart UniGetUI": "UniGetUI পুনরায় চালু করুন", "Manage {0} sources": "{0}টি উৎস পরিচালনা করুন৷", "Add source": "উৎস যোগ করুন", "Add": "যুক্ত করুন", + "Source name": "উৎসের নাম", + "Source URL": "উৎস URL", "Other": "অন্যান্য", + "No minimum age": "কোনো ন্যূনতম সময়সীমা নেই", "1 day": "১ দিন", "{0} days": "{0} দিন", + "Custom...": "কাস্টম...", "{0} minutes": "{0} মিনিট", "1 hour": "১ ঘন্টা", "{0} hours": "{0} ঘণ্টা", "1 week": "১ সপ্তাহ", - "WingetUI Version {0}": "UniGetUI সংস্করণ {0}", + "Supports release dates": "রিলিজ তারিখ সমর্থন করে", + "Release date support per package manager": "প্রতিটি প্যাকেজ ম্যানেজারের রিলিজ তারিখ সমর্থন", + "UniGetUI Version {0}": "UniGetUI সংস্করণ {0}", "Search for packages": "প্যাকেজ অনুসন্ধান করুন", "Local": "স্থানীয়", "OK": "ঠিক আছে", @@ -200,11 +217,13 @@ "Enabled": "সক্ষম", "Disabled": "অক্ষম", "More info": "আরও তথ্য", + "GitHub account": "GitHub অ্যাকাউন্ট", "Log in with GitHub to enable cloud package backup.": "ক্লাউড প্যাকেজ ব্যাকআপ সক্ষম করতে GitHub দিয়ে লগ ইন করুন।", "More details": "আরো বিস্তারিত", "Log in": "লগ ইন করুন", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "যদি আপনার ক্লাউড ব্যাকআপ সক্ষম থাকে তবে এটি এই অ্যাকাউন্টে একটি GitHub Gist হিসাবে সংরক্ষিত হবে", "Log out": "লগ আউট করুন", + "About UniGetUI": "UniGetUI সম্পর্কে", "About": "সম্পর্কিত", "Third-party licenses": "তৃতীয় পক্ষের লাইসেন্স", "Contributors": "অবদানকারী", @@ -212,6 +231,7 @@ "Manage shortcuts": "শর্টকাটস পরিচালনা করুন", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI নিম্নলিখিত ডেস্কটপ শর্টকাটগুলি সনাক্ত করেছে যা ভবিষ্যতের আপগ্রেডে স্বয়ংক্রিয়ভাবে সরানো যেতে পারে", "Do you really want to reset this list? This action cannot be reverted.": "আপনি কি সত্যিই এই তালিকাটি রিসেট করতে চান? এই পদক্ষেপটি পূর্বাবস্থায় ফেরানো যায় না।", + "Open in explorer": "এক্সপ্লোরারে খুলুন", "Remove from list": "তালিকা থেকে বাদ দিন", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "যখন নতুন শর্টকাটগুলি সনাক্ত করা হয় তখন এই সংলাপটি দেখানোর পরিবর্তে সেগুলিকে স্বয়ংক্রিয়ভাবে মুছে ফেলুন।", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI ব্যবহারকারীর অভিজ্ঞতা বোঝা এবং উন্নত করার একমাত্র উদ্দেশ্যে নিরাপদ ব্যবহার ডেটা সংগ্রহ করে।", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "আপনি কি মেনে চলেন যে UniGetUI ব্যবহারকারীর অভিজ্ঞতা বোঝা এবং উন্নত করার একমাত্র উদ্দেশ্যে নিরাপদ ব্যবহার পরিসংখ্যান সংগ্রহ এবং পাঠায়?", "Decline": "অস্বীকার করুন", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "কোনো ব্যক্তিগত তথ্য সংগ্রহ বা প্রেরণ করা হয় না এবং সংগৃহীত ডেটা অননামকৃত করা হয়, তাই এটি আপনার কাছে ফিরিয়ে আনা যায় না।", - "About WingetUI": "WingetUI সম্পর্কে", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI একটি অ্যাপ্লিকেশন যা আপনার কমান্ড-লাইন প্যাকেজ ম্যানেজারগুলির জন্য একটি সর্বাত্মক গ্রাফিক্যাল ইন্টারফেস প্রদান করে আপনার সফ্টওয়্যার পরিচালনা সহজ করে।", + "Toggle navigation panel": "নেভিগেশন প্যানেল টগল করুন", + "Minimize": "মিনিমাইজ", + "Maximize": "ম্যাক্সিমাইজ", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI একটি অ্যাপ্লিকেশন যা আপনার কমান্ড-লাইন প্যাকেজ ম্যানেজারগুলির জন্য একটি সর্বাত্মক গ্রাফিক্যাল ইন্টারফেস প্রদান করে আপনার সফ্টওয়্যার পরিচালনা সহজ করে।", "Useful links": "দরকারি লিঙ্কগুলি", + "UniGetUI Homepage": "UniGetUI হোমপেজ", "Report an issue or submit a feature request": "একটি সমস্যা রিপোর্ট করুন বা একটি বৈশিষ্ট্য অনুরোধ জমা দিন", + "UniGetUI Repository": "UniGetUI রিপোজিটরি", "View GitHub Profile": "GitHub প্রোফাইল দেখুন", - "WingetUI License": "UniGetUI লাইসেন্স", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ব্যবহার করা MIT লাইসেন্স গ্রহণ করার অন্তর্দৃষ্টি দেয়", + "UniGetUI License": "UniGetUI লাইসেন্স", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI ব্যবহার করা MIT লাইসেন্স গ্রহণ করার অন্তর্দৃষ্টি দেয়", "Become a translator": "একজন অনুবাদক হন", "View page on browser": "ব্রাউজারে পৃষ্ঠা দেখুন", "Copy to clipboard": "ক্লিপবোর্ডে কপি করুন", "Export to a file": "একটি ফাইলে রপ্তানি করুন", "Log level:": "লগ লেভেলঃ", "Reload log": "লগ পুনরায় লোড করুন", + "Export log": "লগ রপ্তানি করুন", + "UniGetUI Log": "UniGetUI লগ", "Text": "পাঠ্য", "Change how operations request administrator rights": "অপারেশনগুলি কীভাবে প্রশাসকের অধিকার অনুরোধ করে তা পরিবর্তন করুন", "Restrictions on package operations": "প্যাকেজ অপারেশনগুলির বিধিনিষেধ", @@ -271,7 +297,7 @@ "Leave empty for default": "ডিফল্টের জন্য খালি ছেড়ে দিন", "Add a timestamp to the backup file names": "ব্যাকআপ ফাইলের নামগুলিতে একটি টাইমস্ট্যাম্প যোগ করুন", "Backup and Restore": "ব্যাকআপ এবং পুনরুদ্ধার", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "ব্যাকগ্রাউন্ড এপিআই সক্ষম করুন (WingetUI উইজেট এবং শেয়ারিং, পোর্ট 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "ব্যাকগ্রাউন্ড এপিআই সক্ষম করুন (UniGetUI উইজেট এবং শেয়ারিং, পোর্ট 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "ইন্টারনেট সংযোগের প্রয়োজনীয় কাজগুলি করার চেষ্টা করার আগে ডিভাইসটি ইন্টারনেটে সংযুক্ত হওয়ার জন্য অপেক্ষা করুন।", "Disable the 1-minute timeout for package-related operations": "প্যাকেজ-সম্পর্কিত অপারেশনের জন্য ১-মিনিটের সময়সীমা অক্ষম করুন", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI এলিভেটরের পরিবর্তে ইনস্টল করা GSudo ব্যবহার করুন", @@ -286,7 +312,7 @@ "Telemetry": "টেলিমেট্রি", "Manage UniGetUI settings": "UniGetUI সেটিংস পরিচালনা করুন", "Related settings": "সম্পর্কিত সেটিংস", - "Update WingetUI automatically": "স্বয়ংক্রিয়ভাবে WingetUI হালনাগাদ করুন", + "Update UniGetUI automatically": "স্বয়ংক্রিয়ভাবে UniGetUI হালনাগাদ করুন", "Check for updates": "আপডেটের জন্য চেক করুন", "Install prerelease versions of UniGetUI": "UniGetUI-এর প্রি-রিলিজ সংস্করণ ইনস্টল করুন", "Manage telemetry settings": "টেলিমেট্রি সেটিংস পরিচালনা করুন", @@ -295,17 +321,17 @@ "Import": "আমদানি", "Export settings to a local file": "একটি স্থানীয় ফাইলে সেটিংস রপ্তানি করুন", "Export": "রপ্তানি", - "Reset WingetUI": "WingetUI রিসেট করুন", "Reset UniGetUI": "UniGetUI রিসেট করুন", "User interface preferences": "ব্যবহারকারীর ইন্টারফেস পছন্দসমূহ", "Application theme, startup page, package icons, clear successful installs automatically": "অ্যাপ্লিকেশন থিম, স্টার্টআপ পৃষ্ঠা, প্যাকেজ আইকন, স্বয়ংক্রিয়ভাবে সফল ইনস্টল পরিষ্কার করুন", "General preferences": "সাধারণ পছন্দ", - "WingetUI display language:": "WingetUI ভাষা প্রদর্শন:", + "UniGetUI display language:": "UniGetUI ভাষা প্রদর্শন:", "Is your language missing or incomplete?": "আপনার ভাষা অনুপস্থিত বা অসম্পূর্ণ?", "Appearance": "উপস্থিতি", "UniGetUI on the background and system tray": "পটভূমিতে এবং সিস্টেম ট্রেতে UniGetUI", "Package lists": "প্যাকেজ তালিকা", "Close UniGetUI to the system tray": "UniGetUI সিস্টেম ট্রেতে বন্ধ করুন", + "Manage UniGetUI autostart behaviour": "UniGetUI-এর স্বয়ংক্রিয় চালু হওয়ার আচরণ পরিচালনা করুন", "Show package icons on package lists": "প্যাকেজ তালিকায় প্যাকেজ আইকন দেখান", "Clear cache": "ক্যাশ পরিষ্কার করুন", "Select upgradable packages by default": "ডিফল্টরূপে আপগ্রেডযোগ্য প্যাকেজ নির্বাচন করুন", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "অনুগ্রহ করে মনে রাখবেন যে সমস্ত প্যাকেজ ম্যানেজার এই বৈশিষ্ট্যটি সম্পূর্ণরূপে সমর্থন করতে পারে না", "Proxy URL": "প্রক্সি URL", "Enter proxy URL here": "এখানে প্রক্সি URL লিখুন", + "Authenticate to the proxy with a user and a password": "একটি ব্যবহারকারীর নাম এবং পাসওয়ার্ড দিয়ে প্রক্সিতে প্রমাণীকরণ করুন", + "Internet and proxy settings": "ইন্টারনেট ও প্রক্সি সেটিংস", "Package manager preferences": "প্যাকেজ ম্যানেজার পছন্দ", "Ready": "প্রস্তুত", "Not found": "খুঁজে পাওয়া যায়নি", "Notification preferences": "বিজ্ঞপ্তি পছন্দ", "Notification types": "বিজ্ঞপ্তি প্রকার", "The system tray icon must be enabled in order for notifications to work": "বিজ্ঞপ্তি কাজ করার জন্য সিস্টেম ট্রে আইকন সক্ষম করা আবশ্যক", - "Enable WingetUI notifications": "WingetUI বিজ্ঞপ্তি সক্ষম করুন", + "Enable UniGetUI notifications": "UniGetUI বিজ্ঞপ্তি সক্ষম করুন", "Show a notification when there are available updates": "আপডেট পাওয়া গেলে একটি বিজ্ঞপ্তি দেখান", "Show a silent notification when an operation is running": "অপারেশন চলাকালীন একটি নীরব বিজ্ঞপ্তি দেখান", "Show a notification when an operation fails": "অপারেশন ব্যর্থ হলে একটি বিজ্ঞপ্তি দেখান", "Show a notification when an operation finishes successfully": "একটি অপারেশন সফলভাবে শেষ হলে একটি বিজ্ঞপ্তি দেখান", "Concurrency and execution": "সমসাময়িকতা এবং বাস্তবায়ন", "Automatic desktop shortcut remover": "স্বয়ংক্রিয় ডেস্কটপ শর্টকাট অপসারণকারী", + "Choose how many operations should be performed in parallel": "কতগুলো অপারেশন সমান্তরালে চালানো হবে তা নির্বাচন করুন", "Clear successful operations from the operation list after a 5 second delay": "৫ সেকেন্ডের বিলম্বের পরে অপারেশন তালিকা থেকে সফল অপারেশন পরিষ্কার করুন", "Download operations are not affected by this setting": "ডাউনলোড অপারেশন এই সেটিংদ্বারা প্রভাবিত হয় না", "Try to kill the processes that refuse to close when requested to": "অনুরোধ করলে বন্ধ করতে অস্বীকার করে এমন প্রক্রিয়াগুলি বন্ধ করার চেষ্টা করুন", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "ব্যবহার করার জন্য এক্সিকিউটেবল নির্বাচন করুন। নিম্নলিখিত তালিকা UniGetUI দ্বারা পাওয়া এক্সিকিউটেবলগুলি দেখায়", "Current executable file:": "বর্তমান এক্সিকিউটেবল ফাইল:", "Ignore packages from {pm} when showing a notification about updates": "আপডেটের বিষয়ে বিজ্ঞপ্তি দেখানোর সময় {pm} থেকে প্যাকেজ উপেক্ষা করুন", + "Update security": "আপডেট নিরাপত্তা", + "Use global setting": "গ্লোবাল সেটিং ব্যবহার করুন", + "e.g. 10": "যেমন 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} তার প্যাকেজগুলোর জন্য রিলিজ তারিখ দেয় না, তাই এই সেটিংটির কোনো প্রভাব হবে না", + "Override the global minimum update age for this package manager": "এই প্যাকেজ ম্যানেজারের জন্য গ্লোবাল ন্যূনতম আপডেট-বয়স ওভাররাইড করুন", + "Minimum age for updates": "আপডেটের ন্যূনতম বয়স", + "Custom minimum age (days)": "কাস্টম ন্যূনতম বয়স (দিন)", "View {0} logs": "{0} লগ দেখুন", + "If Python cannot be found or is not listing packages but is installed on the system, ": "যদি Python খুঁজে না পাওয়া যায় অথবা প্যাকেজ তালিকা না দেখায় কিন্তু সিস্টেমে ইনস্টল থাকে, ", "Advanced options": "উন্নত বিকল্প", "Reset WinGet": "WinGet রিসেট করুন", "This may help if no packages are listed": "যদি কোন প্যাকেজ তালিকাভুক্ত না হয় তবে এটি সাহায্য করতে পারে", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "লঞ্চের সময় Scoop ক্লিনআপ সক্ষম করুন", "Use system Chocolatey": "সিস্টেম চকোলেট ব্যবহার করুন", "Default vcpkg triplet": "ডিফল্ট vcpkg ট্রিপলেট", + "Change vcpkg root location": "vcpkg রুট অবস্থান পরিবর্তন করুন", "Language, theme and other miscellaneous preferences": "ভাষা, থিম এবং অন্যান্য বিবিধ পছন্দ", "Show notifications on different events": "অপারেশন চলাকালীন একটি নীরব বিজ্ঞপ্তি দেখান", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI কীভাবে আপনার প্যাকেজগুলির জন্য উপলব্ধ আপডেটগুলি পরীক্ষা করে এবং ইনস্টল করে তা পরিবর্তন করুন", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "নেটওয়ার্ক সংযোগ পরিমাপযুক্ত হলে স্বয়ংক্রিয়ভাবে আপডেট ইনস্টল করবেন না", "Do not automatically install updates when the device runs on battery": "ডিভাইসটি ব্যাটারিতে চলার সময় স্বয়ংক্রিয়ভাবে আপডেট ইনস্টল করবেন না", "Do not automatically install updates when the battery saver is on": "ব্যাটারি সেভার চালু থাকলে সয়ংক্রিয়ভাবে আপডেট ইনস্টল করবেন না", + "Only show updates that are at least the specified number of days old": "শুধুমাত্র সেই আপডেটগুলো দেখান যেগুলো অন্তত নির্দিষ্ট সংখ্যক দিন পুরোনো", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI কীভাবে ইনস্টল, আপডেট এবং আনইনস্টল অপারেশন পরিচালনা করে তা পরিবর্তন করুন।", "Package Managers": "প্যাকেজ ম্যানেজার", "More": "আরও", - "WingetUI Log": "WingetUI লগ", "Package Manager logs": "প্যাকেজ ম্যানেজার লগ", "Operation history": "অপারেশন ইতিহাস", "Help": "সাহায্য", + "Quit UniGetUI": "UniGetUI বন্ধ করুন", "Order by:": "অর্ডার করুন:", "Name": "নাম", "Id": "আইড", @@ -409,6 +448,10 @@ "Both": "উভয়", "Exact match": "খাপে খাপ", "Show similar packages": "অনুরূপ প্যাকেজ দেখান", + "Nothing to share": "শেয়ার করার কিছু নেই", + "Please select a package first.": "অনুগ্রহ করে আগে একটি প্যাকেজ নির্বাচন করুন।", + "Share link copied": "শেয়ার লিংক কপি হয়েছে", + "The share link for {0} has been copied to the clipboard.": "{0}-এর শেয়ার লিংক ক্লিপবোর্ডে কপি করা হয়েছে।", "No results were found matching the input criteria": "ইনপুট মানদণ্ডের সাথে মেলে এমন কোনো ফলাফল পাওয়া যায়নি", "No packages were found": "কোন প্যাকেজ পাওয়া যায়নি", "Loading packages": "প্যাকেজ লোড হচ্ছে", @@ -440,7 +483,11 @@ "Package bundle": "প্যাকেজ বান্ডিল", "Could not create bundle": "বান্ডিল তৈরি করা যায়নি", "The package bundle could not be created due to an error.": "একটি ত্রুটির কারণে প্যাকেজ বান্ডিল তৈরি করা যায়নি।", + "Unsaved changes": "অসংরক্ষিত পরিবর্তন", + "Discard changes": "পরিবর্তন বাতিল করুন", + "You have unsaved changes in the current bundle. Do you want to discard them?": "বর্তমান বান্ডিলে আপনার অসংরক্ষিত পরিবর্তন রয়েছে। আপনি কি সেগুলো বাতিল করতে চান?", "Bundle security report": "বান্ডেল নিরাপত্তা রিপোর্ট", + "The bundle contained restricted content": "বান্ডিলে সীমাবদ্ধ কনটেন্ট ছিল", "Hooray! No updates were found.": "কোনো নতুন আপডেট পাওয়া যায়নি!", "Everything is up to date": "সবকিছু আপ টু ডেট", "Uninstall selected packages": "নির্বাচিত প্যাকেজ আনইনস্টল করুন", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "উইন্ডোজের জন্য ক্লাসিক্যাল প্যাকেজ ম্যানেজার। আপনি সেখানে সবকিছু পাবেন.
ধারণ করে: সাধারণ সফ্টওয়্যার", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "মাইক্রোসফটের .NET ইকোসিস্টেমকে মাথায় রেখে ডিজাইন করা টুলস এবং এক্সিকিউটেবলে পূর্ণ একটি ভান্ডার।
এতে রয়েছে: .NET সম্পর্কিত টুল এবং স্ক্রিপ্ট", "NuPkg (zipped manifest)": "NuPkg (জিপ করা ম্যানিফেস্ট)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (বা Linux)-এর জন্য অনুপস্থিত প্যাকেজ ম্যানেজার।
রয়েছে: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "নোড জেএস এর প্যাকেজ ম্যানেজার। লাইব্রেরি এবং অন্যান্য ইউটিলিটি পূর্ণ যা জাভাস্ক্রিপ্ট বিশ্বকে প্রদক্ষিণ করে
এতে রয়েছে: নোড জাভাস্ক্রিপ্ট লাইব্রেরি এবং অন্যান্য সম্পর্কিত ইউটিলিটিগুলি", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "পাইথনের লাইব্রেরি ম্যানেজার। পাইথন লাইব্রেরি এবং অন্যান্য পাইথন-সম্পর্কিত ইউটিলিটিগুলিতে পরিপূর্ণ
অন্তর্ভুক্ত: পাইথন লাইব্রেরি এবং সম্পর্কিত ইউটিলিটিগুলি", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "পাওয়ারশেলের প্যাকেজ ম্যানেজার। PowerShell ক্ষমতা প্রসারিত করতে লাইব্রেরি এবং স্ক্রিপ্ট খুঁজুন
অন্তর্ভুক্তঃ মডিউল, স্ক্রিপ্ট, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "সারিতে অপারেশন (অবস্থান {0})...", "Click here for more details": "আরও বিবরণের জন্য এখানে ক্লিক করুন", "Operation canceled by user": "ব্যবহারকারী দ্বারা অপারেশন বাতিল করা হয়েছে", + "Running PreOperation ({0}/{1})...": "PreOperation চলছে ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}-এর মধ্যে PreOperation {0} ব্যর্থ হয়েছে এবং এটিকে প্রয়োজনীয় হিসেবে চিহ্নিত করা ছিল। বাতিল করা হচ্ছে...", + "PreOperation {0} out of {1} finished with result {2}": "{1}-এর মধ্যে PreOperation {0} {2} ফলাফল নিয়ে শেষ হয়েছে", "Starting operation...": "অপারেশন শুরু হচ্ছে...", + "Running PostOperation ({0}/{1})...": "PostOperation চলছে ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}-এর মধ্যে PostOperation {0} ব্যর্থ হয়েছে এবং এটিকে প্রয়োজনীয় হিসেবে চিহ্নিত করা ছিল। বাতিল করা হচ্ছে...", + "PostOperation {0} out of {1} finished with result {2}": "{1}-এর মধ্যে PostOperation {0} {2} ফলাফল নিয়ে শেষ হয়েছে", "{package} installer download": "{package} ইনস্টলার ডাউনলোড", "{0} installer is being downloaded": "{0} ইনস্টলার ডাউনলোড করা হচ্ছে", "Download succeeded": "ডাউনলোড সফল হয়েছে", @@ -556,14 +610,12 @@ "Portable mode": "পোর্টেবল মোড\n", "DEBUG BUILD": "ডিবাগ বিল্ড", "Available Updates": "উপলব্ধ আপডেট", - "Show WingetUI": "WingetUI দেখান", + "Show UniGetUI": "UniGetUI দেখান", "Quit": "বন্ধ করুন", "Attention required": "মনোযোগ প্রয়োজন", "Restart required": "রিস্টার্ট প্রয়োজন", "1 update is available": "১ টি আপডেট উপলব্ধ", "{0} updates are available": "{0}টি আপডেট উপলব্ধ", - "WingetUI Homepage": "UniGetUI হোমপেজ", - "WingetUI Repository": "UniGetUI রিপোজিটরি", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "এখানে আপনি নিম্নলিখিত শর্টকাটগুলির বিষয়ে UniGetUI-এর আচরণ পরিবর্তন করতে পারেন। একটি শর্টকাট চেক করা UniGetUI-কে ভবিষ্যতের আপগ্রেডে এটি তৈরি হলে মুছে ফেলতে বাধ্য করবে। এটি আনচেক করলে শর্টকাটটি অক্ষুণ্ণ থাকবে", "Manual scan": "ম্যানুয়াল স্ক্যান", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "আপনার ডেস্কটপের বিদ্যমান শর্টকাটগুলি স্ক্যান করা হবে এবং আপনি কোনগুলি রাখতে এবং কোনগুলি সরাতে হবে তা বেছে নিতে হবে।", @@ -583,7 +635,6 @@ "Restart later": "পরে পুনরায় আরম্ভ করুন", "An error occurred:": "একটি ত্রুটি ঘটেছেঃ", "I understand": "আমি বুঝেছি", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI প্রশাসক হিসাবে চালানো হয়েছে যা সুপারিশ করা হয় না। UniGetUI-কে প্রশাসক হিসাবে চালানোর সময় UniGetUI থেকে চালু করা প্রতিটি অপারেশনে প্রশাসকের বিশেষাধিকার থাকবে। আপনি এখনও প্রোগ্রামটি ব্যবহার করতে পারেন কিন্তু আমরা প্রশাসকের বিশেষাধিকার সহ UniGetUI না চালানোর দৃঢ় সুপারিশ করি।", "WinGet was repaired successfully": "WinGet সফলভাবে মেরামত করা হয়েছে", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet মেরামত করার পর UniGetUI পুনরায় চালু করার সুপারিশ করা হয়", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "নোট: এই সমস্যা নির্ণায়ক UniGetUI সেটিংস থেকে WinGet বিভাগে অক্ষম করা যেতে পারে", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "৪. আপনার প্যাকেজগুলি বান্ডেলে যোগ করা হবে। আপনি প্যাকেজ যোগ করা চালিয়ে যেতে পারেন বা বান্ডেলটি রপ্তানি করতে পারেন।", "Which backup do you want to open?": "আপনি কোন ব্যাকআপটি খুলতে চান?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "আপনি যে ব্যাকআপটি খুলতে চান তা নির্বাচন করুন। পরে, আপনি কোন প্যাকেজ/প্রোগ্রাম পুনরুদ্ধার করতে চান তা পর্যালোচনা করতে পারবেন।", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "চলমান অভিযান চলছে। UniGetUI ত্যাগ করা তাদের ব্যর্থ হতে পারে। আপনি কি চালিয়ে যেতে চান?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "চলমান অভিযান চলছে। UniGetUI ত্যাগ করা তাদের ব্যর্থ হতে পারে। আপনি কি চালিয়ে যেতে চান?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI বা এর কিছু উপাদান অনুপস্থিত বা দুর্নীতিগ্রস্ত।", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "পরিস্থিতি সমাধানের জন্য UniGetUI পুনরায় ইনস্টল করার দৃঢ় সুপারিশ করা হয়।", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "প্রভাবিত ফাইলগুলির বিষয়ে আরও বিবরণ পেতে UniGetUI লগস দেখুন", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "এখানে প্রক্রিয়ার নাম লিখুন, কমা (,) দ্বারা পৃথক করা", "Unset or unknown": "আনসেট বা অজানা", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "অনুগ্রহ করে কমান্ড-লাইন আউটপুট দেখুন বা সমস্যা সম্পর্কে আরও তথ্যের জন্য অপারেশন ইতিহাস পড়ুন।", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "এই প্যাকেজের কোন স্ক্রিনশট নেই বা আইকনটি নেই? আমাদের উন্মুক্ত, পাবলিক ডাটাবেসে অনুপস্থিত আইকন এবং স্ক্রিনশট যোগ করে UniGetUI-তে অবদান রাখুন।", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "এই প্যাকেজের কোন স্ক্রিনশট নেই বা আইকনটি নেই? আমাদের উন্মুক্ত, পাবলিক ডাটাবেসে অনুপস্থিত আইকন এবং স্ক্রিনশট যোগ করে UniGetUI-তে অবদান রাখুন।", "Become a contributor": "অবদানকারী হয়ে উঠুন", "Save": "সংরক্ষণ করুন", "Update to {0} available": "{0} এর আপডেট উপলব্ধ", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "স্বয়ংক্রিয় WinGet সমস্যা নির্ণয় সক্ষম করুন", "Enable an [experimental] improved WinGet troubleshooter": "একটি [পরীক্ষামূলক] উন্নত WinGet সমস্যা নির্ণয় সক্ষম করুন", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "\" কোন প্রযোজ্য আপডেট পাওয়া যায়নি\" দিয়ে ব্যর্থ হওয়া আপডেটগুলি উপেক্ষা করা আপডেটগুলির তালিকায় যোগ করুন।", - "Restart WingetUI to fully apply changes": "পরিবর্তনগুলি সম্পূর্ণরূপে প্রয়োগ করতে WingetUI পুনরায় চালু করুন", - "Restart WingetUI": "WingetUI পুনরায় চালু করুন", "Invalid selection": "অবৈধ নির্বাচন", "No package was selected": "কোনো প্যাকেজ নির্বাচিত হয়নি", "More than 1 package was selected": "১টিরও বেশি প্যাকেজ নির্বাচন করা হয়েছে", @@ -684,6 +733,37 @@ "Log out failed: ": "লগ আউট ব্যর্থ: ", "Package backup settings": "প্যাকেজ ব্যাকআপ সেটিংস", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI সম্পর্কে", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI একটি অ্যাপ্লিকেশন যা আপনার কমান্ড-লাইন প্যাকেজ ম্যানেজারগুলির জন্য একটি সর্বাত্মক গ্রাফিক্যাল ইন্টারফেস প্রদান করে আপনার সফ্টওয়্যার পরিচালনা সহজ করে।", + "You have installed WingetUI Version {0}": "আপনি UniGetUI সংস্করণ {0} ইনস্টল করেছেন", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "অবদানকারীদের সাহায্য ছাড়া UniGetUI সম্ভব হত না। সবাইকে ধন্যবাদ 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI নিম্নলিখিত লাইব্রেরি ব্যবহার করে। এগুলি ছাড়া UniGetUI সম্ভব হত না।", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "স্বেচ্ছাসেবক অনুবাদকদের ধন্যবাদ জানাতে UniGetUI ৪০-এর বেশি ভাষায় অনুবাদ করা হয়েছে। ধন্যবাদ 🤝", + "WingetUI Settings": "WingetUI সেটিংস", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI-এর সাথে এটি ব্যবহার করার জন্য আপনার {pm} ইনস্টল করতে হতে পারে।", + "Scoop Installer - WingetUI": "স্কুপ ইনস্টলার - WingetUI", + "Scoop Uninstaller - WingetUI": "স্কুপ আনইনস্টলার - WingetUI", + "Clearing Scoop cache - WingetUI": "স্কুপ ক্যাশে সাফ করা হচ্ছে - WingetUI", + "WingetUI Version {0}": "UniGetUI সংস্করণ {0}", + "WingetUI License": "UniGetUI লাইসেন্স", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ব্যবহার করা MIT লাইসেন্স গ্রহণ করার অন্তর্দৃষ্টি দেয়", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "ব্যাকগ্রাউন্ড এপিআই সক্ষম করুন (WingetUI উইজেট এবং শেয়ারিং, পোর্ট 7058)", + "Update WingetUI automatically": "স্বয়ংক্রিয়ভাবে WingetUI হালনাগাদ করুন", + "Reset WingetUI": "WingetUI রিসেট করুন", + "WingetUI display language:": "WingetUI ভাষা প্রদর্শন:", + "Manage WingetUI autostart behaviour": "WingetUI-এর স্বয়ংক্রিয় চালু হওয়ার আচরণ পরিচালনা করুন", + "Enable WingetUI notifications": "WingetUI বিজ্ঞপ্তি সক্ষম করুন", + "WingetUI Log": "WingetUI লগ", + "Show WingetUI": "WingetUI দেখান", + "WingetUI Homepage": "UniGetUI হোমপেজ", + "WingetUI Repository": "UniGetUI রিপোজিটরি", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI প্রশাসক হিসাবে চালানো হয়েছে যা সুপারিশ করা হয় না। UniGetUI-কে প্রশাসক হিসাবে চালানোর সময় UniGetUI থেকে চালু করা প্রতিটি অপারেশনে প্রশাসকের বিশেষাধিকার থাকবে। আপনি এখনও প্রোগ্রামটি ব্যবহার করতে পারেন কিন্তু আমরা প্রশাসকের বিশেষাধিকার সহ UniGetUI না চালানোর দৃঢ় সুপারিশ করি।", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "চলমান অভিযান চলছে। UniGetUI ত্যাগ করা তাদের ব্যর্থ হতে পারে। আপনি কি চালিয়ে যেতে চান?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "এই প্যাকেজের কোন স্ক্রিনশট নেই বা আইকনটি নেই? আমাদের উন্মুক্ত, পাবলিক ডাটাবেসে অনুপস্থিত আইকন এবং স্ক্রিনশট যোগ করে UniGetUI-তে অবদান রাখুন।", + "Restart WingetUI to fully apply changes": "পরিবর্তনগুলি সম্পূর্ণরূপে প্রয়োগ করতে WingetUI পুনরায় চালু করুন", + "Restart WingetUI": "WingetUI পুনরায় চালু করুন", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "সেটিংস অ্যাপ থেকে UniGetUI অটোস্টার্ট আচরণ পরিচালনা করুন", "(Number {0} in the queue)": "(সারিতে {0} কিউ নম্বর)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Nilavra Bhattacharya, @fluentmoheshwar, Mushfiq Iqbal Rayon, @itz-rj-here, @samiulislamsharan", "0 packages found": "০ টি প্যাকেজ পাওয়া গেছে", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json index 1198fe1ce0..b3b080fe5c 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Avorta la desinstal·lació si la comanda de pre-desinstal·lació falla", "Command-line to run:": "Línia de comandes a executar:", "Save and close": "Desa i tanca", + "General": "Configuració general", + "Architecture & Location": "Arquitectura i ubicació", + "Command-line": "Línia d'ordres", + "Pre/Post install": "Pre/Postinstal·lació", "Run as admin": "Executa com a administrador", "Interactive installation": "Instal·lació interactiva", "Skip hash check": "No comprovis el hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Administra les actualitzacions ignorades", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Els paquets mostrats aquí no es tindran en compte quan es comprovi si hi ha actualitzacions disponibles. Cliqueu-los dos cops o premeu el botó de la seva dreta per a deixar d'ignorar-ne les actualitzacions.", "Reset list": "Reseteja la llista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Realment voleu restablir la llista d'actualitzacions ignorades? Aquesta acció no es pot desfer.", + "No ignored updates": "No hi ha actualitzacions ignorades", "Package Name": "Nom del paquet", "Package ID": "Identificador del paquet", "Ignored version": "Versió ignorada", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Aquesta operació s'està executant de forma interactiva.", "You will likely need to interact with the installer.": "Segurament haureu d'interactuar amb l'instal·lador.", "Integrity checks skipped": "Comprovacions d'integritat omeses", + "Integrity checks will not be performed during this operation.": "No es faran comprovacions d'integritat durant aquesta operació.", "Proceed at your own risk.": "Continueu sota la vostra responsabilitat", "Close": "Tanca", "Loading...": "Carregant...", @@ -120,16 +127,17 @@ "optional": "opcional", "UniGetUI {0} is ready to be installed.": "L'UniGetUI {0} està llest per a ser instal·lat", "The update process will start after closing UniGetUI": "El procés d'actualització començarà en tancar l'UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "L'UniGetUI s'ha executat com a administrador, cosa que no es recomana. Quan l'UniGetUI s'executa com a administrador, TOTES les operacions iniciades des de l'UniGetUI tindran privilegis d'administrador. Encara podeu utilitzar el programa, però recomanem fermament no executar l'UniGetUI amb privilegis d'administrador.", "Share anonymous usage data": "Comparteix dades d'ús anònimes", "UniGetUI collects anonymous usage data in order to improve the user experience.": "L'UniGetUI recull dades d'ús anònimes amb la finalitat de millorar l'experiència de l'usuari.", "Accept": "Acceptar", - "You have installed WingetUI Version {0}": "Teniu instal·lat l'UniGetUI versió {0}", + "You have installed UniGetUI Version {0}": "Teniu instal·lat l'UniGetUI versió {0}", "Disclaimer": "Exempció de responsabilitat", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "L'UniGetUI no està relacionat amb els administradors de paquets compatibles. L'UniGetUI és un projecte independent.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "L'UniGetUI no hagués estat possible sense l'ajuda dels contribuïdors. Moltes gràcies a tots 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "L'UniGetUI utilitza les següents llibreries. Sense elles, l'UniGetUI no hagués estat possible. ", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "L'UniGetUI no hagués estat possible sense l'ajuda dels contribuïdors. Moltes gràcies a tots 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "L'UniGetUI utilitza les següents llibreries. Sense elles, l'UniGetUI no hagués estat possible.", "{0} homepage": "lloc web de {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "L'UniGetUI ha estat traduit a més de 40 idiomes gràcies als traductors voluntaris. Gràcies 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "L'UniGetUI ha estat traduit a més de 40 idiomes gràcies als traductors voluntaris. Gràcies 🤝", "Verbose": "Verbós", "1 - Errors": "1 - Errors", "2 - Warnings": "2 - Advertències", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Heu iniciat la sessió com a {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Fantàstic! Les còpies de seguretat es carregaran en un Gist privat al vostre compte", "Select backup": "Seleccioneu una còpia", - "WingetUI Settings": "Configuració de l'UniGetUI", + "UniGetUI Settings": "Configuració de l'UniGetUI", "Allow pre-release versions": "Permet versions de prellançament", "Apply": "Aplica", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Per motius de seguretat, els arguments personalitzats de la línia d'ordres estan desactivats per defecte. Aneu a la configuració de seguretat de l'UniGetUI per canviar-ho.", "Go to UniGetUI security settings": "Configuració de seguretat de l'UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Les opcions següents s'aplicaran per defecte cada cop que un paquet del {0} s'instal·li, s'acualitzi o es desinstal·li.", "Package's default": "Predeterminat del paquet", @@ -160,6 +169,7 @@ "Username": "Nom d'usuari", "Password": "Contrasenya", "Credentials": "Credencials", + "It is not guaranteed that the provided credentials will be stored safely": "No es garanteix que les credencials proporcionades s'emmagatzemin de manera segura", "Partially": "Parcialment", "Package manager": "Administrador de paquets", "Compatible with proxy": "Compatible amb el proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} està activat i a punt", "{pm} version:": "Versió del {pm}: ", "{pm} was not found!": "No s'ha trobat el {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "Potser heu d'instal·lar el {pm} si el voleu utilitzar a través l'UniGetUI.", - "Scoop Installer - WingetUI": "Instal·lador de l'Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Desinstal·lador de l'Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Netejant la memòria cau de l'Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Potser heu d'instal·lar el {pm} si el voleu utilitzar a través l'UniGetUI.", + "Scoop Installer - UniGetUI": "Instal·lador de l'Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstal·lador de l'Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Netejant la memòria cau de l'Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicieu l'UniGetUI per aplicar completament els canvis", "Restart UniGetUI": "Reinicia l'UniGetUI", "Manage {0} sources": "Administra les fonts del {0}", "Add source": "Afegeix una font", "Add": "Afegeix", + "Source name": "Nom de la font", + "Source URL": "URL de la font", "Other": "Una altra", + "No minimum age": "Sense antiguitat mínima", "1 day": "1 dia", "{0} days": "{0} dies", + "Custom...": "Personalitzat...", "{0} minutes": "{0} minuts", "1 hour": "1 hora", "{0} hours": "{0} hores", "1 week": "1 setmana", - "WingetUI Version {0}": "UniGetUI Versió {0}", + "Supports release dates": "Admet dates de llançament", + "Release date support per package manager": "Compatibilitat amb dates de llançament per gestor de paquets", + "UniGetUI Version {0}": "UniGetUI Versió {0}", "Search for packages": "Cerqueu paquets", "Local": "Local", "OK": "D'acord", @@ -200,11 +217,13 @@ "Enabled": "Activat", "Disabled": "Desactivat", "More info": "Més detalls", + "GitHub account": "Compte de GitHub", "Log in with GitHub to enable cloud package backup.": "Inicieu la sessió amb el GitHub per a activar la còpia de seguretat al núvol", "More details": "Més detalls", "Log in": "Inicia la sessió", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Si heu activat la còpia de seguretat al núvol, aquesta es desarà en un Gist de GitHub privat en aquest compte.", "Log out": "Tanca la sessió", + "About UniGetUI": "Sobre l'UniGetUI", "About": "Sobre", "Third-party licenses": "Llicències de tercers", "Contributors": "Contribuïdors", @@ -212,6 +231,7 @@ "Manage shortcuts": "Administrar les dreceres", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "L'UniGetUI ha detectat les següents dreceres a l'escriptori que es poden eliminar automàticament durant les actualitzacions", "Do you really want to reset this list? This action cannot be reverted.": "Realment voleu resetejar aquesta llista? Aquesta acció no es pot desfer.", + "Open in explorer": "Obre a l'Explorador", "Remove from list": "Treu de la llista", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Quan es trobin noves icones, elimina-les automàticament en comptes de mostrar aquest quadre de diàleg.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "L'UniGetUI recull dades d'ús anònimes amb la única finalitat d'entendre i millorar l'experiència de l'usuari.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Accepteu que l'UniGetUI reculli i enviï dades d'ús anònimes, amb l'únic propòsit d'entendre i millorar l'experiència de l'ususari?", "Decline": "Declinar", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "No es recull ni s'envia informació personal, i la informació recollida s'anonimitza, de forma que no es pot relacionar amb tu.", - "About WingetUI": "Sobre l'UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "L'UniGetUI és una aplicació que facilita l'administració de software, oferint una interfície gràfica unificada per als administradors de paquets més coneguts.", + "Toggle navigation panel": "Mostra o amaga el panell de navegació", + "Minimize": "Minimitza", + "Maximize": "Maximitza", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "L'UniGetUI és una aplicació que facilita l'administració de software, oferint una interfície gràfica unificada per als administradors de paquets més coneguts.", "Useful links": "Enllaços útils", + "UniGetUI Homepage": "Pàgina principal de l'UniGetUI", "Report an issue or submit a feature request": "Informeu d'un problema o suggeriu una característica nova", + "UniGetUI Repository": "Repositori de l'UniGetUI", "View GitHub Profile": "Perfil de GitHub", - "WingetUI License": "Llicència de l'UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Usar l'UniGetUI implica l'acceptació de la llicència MIT", + "UniGetUI License": "Llicència de l'UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Usar l'UniGetUI implica l'acceptació de la llicència MIT", "Become a translator": "Fer-se traductor", "View page on browser": "Mostra al navegador", "Copy to clipboard": "Copia al porta-retalls", "Export to a file": "Exporta a un fitxer", "Log level:": "Nivell del registre:", "Reload log": "Recarrega el registre", + "Export log": "Exporta el registre", + "UniGetUI Log": "Registre de l'UniGetUI", "Text": "Text", "Change how operations request administrator rights": "Canvieu com les operacions demanen drets d'administrador", "Restrictions on package operations": "Restriccions a les operacions amb paquets", @@ -271,7 +297,7 @@ "Leave empty for default": "Deixeu-ho buit per al valor predeterminat", "Add a timestamp to the backup file names": "Afegeix la data i l'hora als noms de les còpies de seguretat", "Backup and Restore": "Còpia de seguretat i restauració", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activa la API de rerefons, (Widgets for UniGetUI i Compartició de paquets, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Activa la API de rerefons, (Widgets for UniGetUI i Compartició de paquets, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Espereu a que el dispositiu estigui connectat a internet abans d'intentar cap tasca que requereixi connexió a internet.", "Disable the 1-minute timeout for package-related operations": "Desactiva el temps màxim d'1 minut per a les tasques de llistar paquets", "Use installed GSudo instead of UniGetUI Elevator": "Utilitza el GSudo instal·lat en comptes de l'UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Administra la configuració de l'UniGetUI", "Related settings": "Configuració relacionada", - "Update WingetUI automatically": "Actualitza l'UniGetUI automàticament", + "Update UniGetUI automatically": "Actualitza l'UniGetUI automàticament", "Check for updates": "Cerca actualitzacions", "Install prerelease versions of UniGetUI": "Instal·la versions de previsualització (no estables) de l'UniGetUI", "Manage telemetry settings": "Administra la configuració de la telemetria", @@ -295,17 +321,17 @@ "Import": "Importa", "Export settings to a local file": "Exporta les preferències a un fitxer", "Export": "Exporta", - "Reset WingetUI": "Reseteja l'UniGetUI", "Reset UniGetUI": "Reseteja l'UniGetUI", "User interface preferences": "Preferències de l'interfície d'usuari", "Application theme, startup page, package icons, clear successful installs automatically": "Tema de l'aplicació, pàgina d'inici, icones als paquets, neteja les instal·lacions exitoses automàticament", "General preferences": "Preferències generals", - "WingetUI display language:": "Idioma de l'UniGetUI:", + "UniGetUI display language:": "Idioma de l'UniGetUI:", "Is your language missing or incomplete?": "Falta el vostre idioma o la traducció està incompleta?", "Appearance": "Aparença", "UniGetUI on the background and system tray": "L'UniGetUI al rerefons i safata del sistema", "Package lists": "Llistes de paquets", "Close UniGetUI to the system tray": "Tanca l'UniGetUI a la safata del sistema", + "Manage UniGetUI autostart behaviour": "Gestiona el comportament d'inici automàtic de l'UniGetUI", "Show package icons on package lists": "Mostra les icones dels paquets a la llista dels paquets", "Clear cache": "Neteja la memòria cau", "Select upgradable packages by default": "Selecciona els paquets actualitzables per defecte", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Nota: alguns administradors de paquets poden no ser del tot compatibles amb aquesta característica", "Proxy URL": "URL del proxy", "Enter proxy URL here": "Escriviu l'URL del proxy aquí", + "Authenticate to the proxy with a user and a password": "Autentiqueu-vos al servidor intermediari amb un usuari i una contrasenya", + "Internet and proxy settings": "Configuració d'Internet i del servidor intermediari", "Package manager preferences": "Preferències dels administradors de paquets", "Ready": "A punt", "Not found": "No trobat", "Notification preferences": "Preferències de les notificacions", "Notification types": "Tipus de notificacions", "The system tray icon must be enabled in order for notifications to work": "L'icona de la safata del sistema ha d'estar activada per a que funcionin les notificacions", - "Enable WingetUI notifications": "Activa les notificacions de l'UniGetUI", + "Enable UniGetUI notifications": "Activa les notificacions de l'UniGetUI", "Show a notification when there are available updates": "Mostra una notificació quan s'hagin trobat actualitzacions", "Show a silent notification when an operation is running": "Mostra una notificació silenciosa quan s'estigui executant una operació", "Show a notification when an operation fails": "Mostra una notificació quan una operació falli", "Show a notification when an operation finishes successfully": "Mostra una notificació quan una operació acabi satisfactòriament", "Concurrency and execution": "Concurrència i execució", "Automatic desktop shortcut remover": "Eliminador automàtic de dreceres de l'escriptori", + "Choose how many operations should be performed in parallel": "Trieu quantes operacions s'han de fer en paral·lel", "Clear successful operations from the operation list after a 5 second delay": "Treu de la llista les operacions exitoses automàticament cap de 5 segons", "Download operations are not affected by this setting": "Les operacions de descàrrega no es veuran afectades per aquesta opció", "Try to kill the processes that refuse to close when requested to": "Intenta matar els processos que refusen tancar-se quan se'ls demani.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Sel·lecciona l'executable a utilitzar. La següent llista mostra els fitxers executables trobats per l'UniGetUI", "Current executable file:": "Fitxer executable actual:", "Ignore packages from {pm} when showing a notification about updates": "Ignora els paquets del {pm} quan es notifiquin les actualitzacions disponibles", + "Update security": "Seguretat de les actualitzacions", + "Use global setting": "Utilitza la configuració global", + "e.g. 10": "p. ex. 10", + "{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", + "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", + "Minimum age for updates": "Antiguitat mínima de les actualitzacions", + "Custom minimum age (days)": "Antiguitat mínima personalitzada (dies)", "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, ", "Advanced options": "Opcions avançades", "Reset WinGet": "Reseteja el WinGet", "This may help if no packages are listed": "Això pot ajudar si no es mostren paquetsa les llistes", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Activa la comanda scoop cleanup en iniciar", "Use system Chocolatey": "Utilitza el Chocolatey del sistema", "Default vcpkg triplet": "Triplet per defecte del vcpkg", + "Change vcpkg root location": "Canvia la ubicació arrel del vcpkg", "Language, theme and other miscellaneous preferences": "Idioma, tema i altres preferències miscel·lànies", "Show notifications on different events": "Mostra notificacions en diferents situacions", "Change how UniGetUI checks and installs available updates for your packages": "Canviar com l'UniGetUI comprova i instal·la les actualizacions dels paquets", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "No instal·lar automàticament les actualitzacions quan la connexió a internet sigui d'ús mesurat", "Do not automatically install updates when the device runs on battery": "No instal·lis automàticament les actualitzacions quan l'ordinador no estigui connectat a la corrent", "Do not automatically install updates when the battery saver is on": "No instal·lar automàticament les actualitzacions quan l'estalviador de bateria estigui activat", + "Only show updates that are at least the specified number of days old": "Mostra només les actualitzacions que tinguin com a mínim el nombre de dies especificat", "Change how UniGetUI handles install, update and uninstall operations.": "Canvieu com l'UniGetUI instal·la, actualitza i desinstal·la els paquets.", "Package Managers": "Admin. de Paquets", "More": "Més", - "WingetUI Log": "Registre de l'UniGetUI", "Package Manager logs": "Registre dels administradors de paquets", "Operation history": "Historial d'operacions", "Help": "Ajuda", + "Quit UniGetUI": "Surt de l'UniGetUI", "Order by:": "Ordena per:", "Name": "Nom", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Ambdós", "Exact match": "Coincidència exacta", "Show similar packages": "Mostra paquets similars", + "Nothing to share": "No hi ha res per compartir", + "Please select a package first.": "Seleccioneu primer un paquet.", + "Share link copied": "S'ha copiat l'enllaç per compartir", + "The share link for {0} has been copied to the clipboard.": "L'enllaç per compartir de {0} s'ha copiat al porta-retalls.", "No results were found matching the input criteria": "No s'han trobat resultats que compleixin amb els filtres establerts", "No packages were found": "No s'han trobat paquets", "Loading packages": "Carregant paquets", @@ -440,7 +483,11 @@ "Package bundle": "Col·lecció de paquets", "Could not create bundle": "No s'ha pogut crear la col·lecció", "The package bundle could not be created due to an error.": "No s'ha pogut crear la col·lecció a causa d'un error.", + "Unsaved changes": "Canvis sense desar", + "Discard changes": "Descarta els canvis", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Hi ha canvis sense desar a la col·lecció actual. Voleu descartar-los?", "Bundle security report": "Informe de seguretat de la col·lecció de paquets", + "The bundle contained restricted content": "La col·lecció contenia contingut restringit", "Hooray! No updates were found.": "Visca! No s'han trobat actualitzacions!", "Everything is up to date": "Tot està al dia", "Uninstall selected packages": "Desinstal·la els paquets seleccionats", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "L'administrador de paquets clàssic del Windows. Hi trobareu de tot.
Conté: Programari general", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repositori ple d'eines i executables dissenyats amb l'ecosistema .NET de Microsoft
Conté: Eines i scripts relacionats amb .NET", "NuPkg (zipped manifest)": "NuPkg (manifest comprimit)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "El gestor de paquets que faltava per al macOS (o Linux).
Conté: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "L'administrador de paquets del Node JS. Ple de llibreries i d'altres utilitats que orbiten al voltant del mon de Javascript.
Conté: Llibreries de Node i altres utilitats relacionades", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "L'administrador de llibreries de Python. Ple de llibreries i d'altres utilitats relacionades.
Conté: Llibreries de Python i altres utilitats", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "L'administrador de paquets del PowerShell. Trobeu llibreries i scripts que us permetran expandir les capacitats del PowerShell
Conté: Mòduls, scripts i Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operació a la cua (posició {0})...", "Click here for more details": "Cliqueu per a més detalls", "Operation canceled by user": "Operació cancel·lada per l'usuari", + "Running PreOperation ({0}/{1})...": "S'està executant la preoperació ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "La preoperació {0} de {1} ha fallat i estava marcada com a necessària. S'està avortant...", + "PreOperation {0} out of {1} finished with result {2}": "La preoperació {0} de {1} ha acabat amb el resultat {2}", "Starting operation...": "Començant operació...", + "Running PostOperation ({0}/{1})...": "S'està executant la postoperació ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "La postoperació {0} de {1} ha fallat i estava marcada com a necessària. S'està avortant...", + "PostOperation {0} out of {1} finished with result {2}": "La postoperació {0} de {1} ha acabat amb el resultat {2}", "{package} installer download": "Descàrrega de l'instal·lador del {package}", "{0} installer is being downloaded": "S'està descarregant l'instal·lador del {0}", "Download succeeded": "Descàrrega completada amb èxit", @@ -556,14 +610,12 @@ "Portable mode": "Mode portàtil", "DEBUG BUILD": "COMPILACIÓ DE DEPURACIÓ", "Available Updates": "Actualitzacions disponibles", - "Show WingetUI": "Mostra l'UniGetUI", + "Show UniGetUI": "Mostra l'UniGetUI", "Quit": "Tanca", "Attention required": "Es requereix atenció", "Restart required": "Reinici requerit", "1 update is available": "Hi ha 1 actualització disponible", "{0} updates are available": "Hi ha {0} actualitzacions disponibles", - "WingetUI Homepage": "Lloc web de l'UniGetUI", - "WingetUI Repository": "Repositori de l'UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aquí podeu canviar el funcionament de l'UniGetUI pel que fa a les següents dreceres. Seleccionar una drecera farà que l'UniGetUI l'elimini si mai es crea durant una actualització. Desseleccionar-la farà que la drecera no s'elimini", "Manual scan": "Escaneig manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Les dreceres existents al vostre escriptori s'escanejaran, i podreu escollir quines s'han de mantenir i quines s'han d'eliminar", @@ -583,7 +635,6 @@ "Restart later": "Reincia més tard", "An error occurred:": "Hi ha hagut un error:", "I understand": "Ho entenc", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Heu executat l'UniGetUI amb drets d'administrador, cosa que no es recomana. Quan l'UniGetUI s'executa amb drets d'administrador, TOTES les operacions executades des de l'UniGetUI també tindran drets d'administrador. Podeu seguir usant el prorgama, però us recomanem que no executeu el WingetUI amb drets d'administrador.", "WinGet was repaired successfully": "S'ha reparat el WinGet correctament.", "It is recommended to restart UniGetUI after WinGet has been repaired": "Es recomana reiniciar l'UniGetUI un cop s'ha reparat el WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Aquest solucionador de problemes es pot desactivar des de la configuració de l'UniGetUI, a la secció del WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Els paquets ja s'hauràn afegit a la col·lecció. Podeu exportar la col·lecció o afegir més paquets", "Which backup do you want to open?": "Quina còpia de seguretat voleu obrir?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Seleccioneu la còpia que voleu obrir. Més endavant podreu revisar quins paquets/programes voleu restaurar.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Hi ha operacions en execució. Tancar l'UniGetUI pot provocar que fallin o es cancel·lin. Voleu continuar?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Hi ha operacions en execució. Tancar l'UniGetUI pot provocar que fallin o es cancel·lin. Voleu continuar?", "UniGetUI or some of its components are missing or corrupt.": "L'UniGetUI o algun dels seus components falta o s'ha corromput.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Es recomana fortament que reinstal·leu l'UniGetUI per a arreglar la situació.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Veieu el registre de l'UniGetUI per a obtenir més detalls sobre el(s) fitxer(s) afectat(s)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Escriviu aquí els noms dels processos, separats per comes (,)", "Unset or unknown": "No especificada o desconeguda", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Veieu la Sortida de la línia de comandes o l'historial d'operacions per a més detalls sobre l'error.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Aquest paquet no té icona o li falten imatges? Contribuïu a l'UniGetUI afegint la icona i imatges que faltin a la base de dades pública i oberta de l'UniGetUI.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Aquest paquet no té icona o li falten imatges? Contribuïu a l'UniGetUI afegint la icona i imatges que faltin a la base de dades pública i oberta de l'UniGetUI.", "Become a contributor": "Fer-se contribuïdor", "Save": "Desa", "Update to {0} available": "Actualització a {0} disponible", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Activa el solucionador de problemes automàtic del WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Activa un solucionador [experimental] millorat per al WunGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Afegiu qualsevol actualització que falli amb l'error 'No aplica' a la llista d'acttualitzacions ignorades", - "Restart WingetUI to fully apply changes": "Cal reiniciar l'UniGetUI per a aplicar els canvis", - "Restart WingetUI": "Reinicia l'UniGetUI", "Invalid selection": "Selecció invàlida", "No package was selected": "No s'ha seleccionat cap paquet", "More than 1 package was selected": "S'ha seleccionat més d'un paquet", @@ -684,6 +733,37 @@ "Log out failed: ": "Ha fallat el tancament de sessió:", "Package backup settings": "Configuració de la còpia de seguretat", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Sobre l'UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "L'UniGetUI és una aplicació que facilita l'administració de software, oferint una interfície gràfica unificada per als administradors de paquets més coneguts.", + "You have installed WingetUI Version {0}": "Teniu instal·lat l'UniGetUI versió {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "L'UniGetUI no hagués estat possible sense l'ajuda dels contribuïdors. Moltes gràcies a tots 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "L'UniGetUI utilitza les següents llibreries. Sense elles, l'UniGetUI no hagués estat possible. ", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "L'UniGetUI ha estat traduit a més de 40 idiomes gràcies als traductors voluntaris. Gràcies 🤝", + "WingetUI Settings": "Configuració de l'UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Potser heu d'instal·lar el {pm} si el voleu utilitzar a través l'UniGetUI.", + "Scoop Installer - WingetUI": "Instal·lador de l'Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Desinstal·lador de l'Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Netejant la memòria cau de l'Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Versió {0}", + "WingetUI License": "Llicència de l'UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Usar l'UniGetUI implica l'acceptació de la llicència MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activa la API de rerefons, (Widgets for UniGetUI i Compartició de paquets, port 7058)", + "Update WingetUI automatically": "Actualitza l'UniGetUI automàticament", + "Reset WingetUI": "Reseteja l'UniGetUI", + "WingetUI display language:": "Idioma de l'UniGetUI:", + "Manage WingetUI autostart behaviour": "Gestiona el comportament d'inici automàtic de l'UniGetUI", + "Enable WingetUI notifications": "Activa les notificacions de l'UniGetUI", + "WingetUI Log": "Registre de l'UniGetUI", + "Show WingetUI": "Mostra l'UniGetUI", + "WingetUI Homepage": "Lloc web de l'UniGetUI", + "WingetUI Repository": "Repositori de l'UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Heu executat l'UniGetUI amb drets d'administrador, cosa que no es recomana. Quan l'UniGetUI s'executa amb drets d'administrador, TOTES les operacions executades des de l'UniGetUI també tindran drets d'administrador. Podeu seguir usant el prorgama, però us recomanem que no executeu el WingetUI amb drets d'administrador.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Hi ha operacions en execució. Tancar l'UniGetUI pot provocar que fallin o es cancel·lin. Voleu continuar?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Aquest paquet no té icona o li falten imatges? Contribuïu a l'UniGetUI afegint la icona i imatges que faltin a la base de dades pública i oberta de l'UniGetUI.", + "Restart WingetUI to fully apply changes": "Cal reiniciar l'UniGetUI per a aplicar els canvis", + "Restart WingetUI": "Reinicia l'UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Administreu el comportament d'inici de l'UniGetUI des de la configuració de l'ordinador", "(Number {0} in the queue)": "(Número {0} a la cua)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment", "0 packages found": "No s'han trobat paquets", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json index a78ac9da5f..ef6c7d2190 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_cs.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Přerušit odinstalaci, pokud předinstalační příkaz selže", "Command-line to run:": "Příkazový řádek pro spuštění:", "Save and close": "Uložit a zavřít", + "General": "Obecné", + "Architecture & Location": "Architektura a umístění", + "Command-line": "Příkazový řádek", + "Pre/Post install": "Před/po instalaci", "Run as admin": "Spustit jako správce", "Interactive installation": "Interaktivní instalace", "Skip hash check": "Přeskočit kontrolní součet", @@ -71,6 +75,8 @@ "Manage ignored updates": "Spravovat ignorované aktualizace", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Uvedené balíčky nebudou při kontrole aktualizací brány v úvahu. Poklepejte na ně nebo klikněte na tlačítko vpravo, abyste přestali ignorovat jejich aktualizace.", "Reset list": "Obnovit seznam", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Opravdu chcete obnovit seznam ignorovaných aktualizací? Tuto akci nelze vrátit zpět", + "No ignored updates": "Žádné ignorované aktualizace", "Package Name": "Název balíčku", "Package ID": "ID balíčku", "Ignored version": "Ignorovaná verze", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Tento operace je spuštěna interaktivně.", "You will likely need to interact with the installer.": "Pravděpodobně budete muset s instalátorem interagovat.", "Integrity checks skipped": "Kontrola integrity přeskočena", + "Integrity checks will not be performed during this operation.": "Během této operace nebudou provedeny kontroly integrity.", "Proceed at your own risk.": "Pokračujte na vlastní nebezpečí.", "Close": "Zavřít", "Loading...": "Načítání...", @@ -120,16 +127,17 @@ "optional": "volitelné", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} je připraven k instalaci.", "The update process will start after closing UniGetUI": "Aktualizace začne po zavření UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI byl spuštěn jako správce, což se nedoporučuje. Když spouštíte UniGetUI jako správce, KAŽDÁ operace spuštěná z UniGetUI bude mít oprávnění správce. Program můžete stále používat, ale důrazně doporučujeme nespouštět UniGetUI s oprávněními správce.", "Share anonymous usage data": "Sdílení anonymních dat o používání", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI shromažďuje anonymní údaje o používání za účelem zlepšení uživatelského komfortu.", "Accept": "Přijmout", - "You have installed WingetUI Version {0}": "Je nainstalován UniGetUI verze {0}", + "You have installed UniGetUI Version {0}": "Je nainstalován UniGetUI verze {0}", "Disclaimer": "Upozornění", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nesouvisí s žádným z kompatibilních správců balíčků. UniGetUI je nezávislý projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebylo možné vytvořit bez pomoci přispěvatelů. Děkuji Vám všem 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI používá následující knihovny. Bez nich by UniGetUI nebyl možný.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebylo možné vytvořit bez pomoci přispěvatelů. Děkuji Vám všem 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI používá následující knihovny. Bez nich by UniGetUI nebyl možný.", "{0} homepage": "{0} domovská stránka", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI byl díky dobrovolným překladatelům přeložen do více než 40 jazyků. Děkujeme 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI byl díky dobrovolným překladatelům přeložen do více než 40 jazyků. Děkujeme 🤝", "Verbose": "Podrobný výstup", "1 - Errors": "1 - Chyby", "2 - Warnings": "2 - Varování", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "jste přihlášen jako {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Hezky! Zálohy budou nahrány do soukromého gistu na vašem účtu.", "Select backup": "Výběr zálohy", - "WingetUI Settings": "Nastavení UniGetUI", + "UniGetUI Settings": "Nastavení UniGetUI", "Allow pre-release versions": "Povolit předběžné verze", "Apply": "Použít", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Z bezpečnostních důvodů jsou vlastní argumenty příkazového řádku ve výchozím nastavení zakázány. Chcete-li to změnit, přejděte do nastavení zabezpečení UniGetUI.", "Go to UniGetUI security settings": "Přejděte do nastavení zabezpečení UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Při každé instalaci, aktualizaci nebo odinstalaci balíčku {0} se ve výchozím nastavení použijí následující možnosti.", "Package's default": "Výchozí nastavení balíčku", @@ -160,6 +169,7 @@ "Username": "Uživatelské jméno", "Password": "Heslo", "Credentials": "Přihlašovací údaje", + "It is not guaranteed that the provided credentials will be stored safely": "Není zaručeno, že poskytnuté přihlašovací údaje budou uloženy bezpečně", "Partially": "Částečně", "Package manager": "Správce balíčků", "Compatible with proxy": "Kompatibilní s proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} je povolen a připraven k použití", "{pm} version:": "{pm} verze:", "{pm} was not found!": "{pm} nebyl nalezen!", - "You may need to install {pm} in order to use it with WingetUI.": "Může být nutné nainstalovat {pm} pro použití s UniGetUI.", - "Scoop Installer - WingetUI": "Scoop instalátor - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop odinstalátor - UniGetUI", - "Clearing Scoop cache - WingetUI": "Mazání mezipaměti Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Může být nutné nainstalovat {pm} pro použití s UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop instalátor - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop odinstalátor - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Mazání mezipaměti Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Restartujte UniGetUI, aby se změny plně projevily", "Restart UniGetUI": "Restartovat UniGetUI", "Manage {0} sources": "Správa zdrojů {0}", "Add source": "Přidat zdroj", "Add": "Přidat", + "Source name": "Název zdroje", + "Source URL": "URL zdroje", "Other": "Ostatní", + "No minimum age": "Bez minimálního stáří", "1 day": "den", "{0} days": "{0} dnů", + "Custom...": "Vlastní...", "{0} minutes": "{0} minut", "1 hour": "hodina", "{0} hours": "{0} hodin", "1 week": "1 týden", - "WingetUI Version {0}": "UniGetUI verze {0}", + "Supports release dates": "Podporuje data vydání", + "Release date support per package manager": "Podpora dat vydání podle správce balíčků", + "UniGetUI Version {0}": "UniGetUI verze {0}", "Search for packages": "Vyhledávání balíčků", "Local": "Místní", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Povoleno", "Disabled": "Vypnuto", "More info": "Více informací", + "GitHub account": "Účet GitHub", "Log in with GitHub to enable cloud package backup.": "Přihlašte se pomocí GitHub pro zapnutí zálohování balíčků do cloudu.", "More details": "Více informací", "Log in": "Přihlásit se", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Pokud máte povoleno zálohování do cloudu, bude na tomto účtu uložen jako GitHub Gist.", "Log out": "Odhlásit se", + "About UniGetUI": "O aplikaci UniGetUI", "About": "O aplikaci", "Third-party licenses": "Licence třetích stran", "Contributors": "Přispěvatelé", @@ -212,6 +231,7 @@ "Manage shortcuts": "Spravovat zástupce", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI zjistil následující zástupce na ploše, které lze při budoucích aktualizacích automaticky odstranit", "Do you really want to reset this list? This action cannot be reverted.": "Opravdu chcete tento seznam obnovit? Tuto akci nelze vrátit zpět.", + "Open in explorer": "Otevřít v Průzkumníku", "Remove from list": "Odstranit ze seznamu", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Když jsou detekovány nové zkratky, automaticky je smazat, místo aby se zobrazovalo toto dialogové okno.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI shromažďuje anonymní údaje o používání pouze za účelem pochopení a zlepšení uživatelských zkušeností.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Souhlasíte s tím, že UniGetUI shromažďuje a odesílá anonymní statistiky o používání, a to výhradně za účelem pochopení a zlepšení uživatelských zkušeností?", "Decline": "Odmítnout", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nejsou shromažďovány ani odesílány osobní údaje a shromážděné údaje jsou anonymizovány, takže je nelze zpětně vysledovat.", - "About WingetUI": "O UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikace, která usnadňuje správu softwaru tím, že poskytuje grafické rozhraní pro správce balíčků příkazového řádku.", + "Toggle navigation panel": "Přepnout navigační panel", + "Minimize": "Minimalizovat", + "Maximize": "Maximalizovat", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikace, která usnadňuje správu softwaru tím, že poskytuje grafické rozhraní pro správce balíčků příkazového řádku.", "Useful links": "Užitečné odkazy", + "UniGetUI Homepage": "Domovská stránka UniGetUI", "Report an issue or submit a feature request": "Nahlásit problém nebo odešli požadavek na funkci", + "UniGetUI Repository": "Repozitář UniGetUI", "View GitHub Profile": "Zobrazit GitHub profil", - "WingetUI License": "UniGetUI Licence", - "Using WingetUI implies the acceptation of the MIT License": "Používání UniGetUI znamená souhlas s licencí MIT.", + "UniGetUI License": "UniGetUI Licence", + "Using UniGetUI implies the acceptation of the MIT License": "Používání UniGetUI znamená souhlas s licencí MIT.", "Become a translator": "Staňte se překladatelem", "View page on browser": "Zobrazit stránku v prohlížeči", "Copy to clipboard": "Zkopírovat do schránky", "Export to a file": "Exportovat do souboru", "Log level:": "Úroveň protokolu:", "Reload log": "Znovu načíst protokol", + "Export log": "Exportovat protokol", + "UniGetUI Log": "UniGetUI protokol", "Text": "Textový", "Change how operations request administrator rights": "Změna způsobu, jakým operace vyžadují oprávnění správce", "Restrictions on package operations": "Omezení operací s balíčky", @@ -271,7 +297,7 @@ "Leave empty for default": "Nechat prázdné pro výchozí", "Add a timestamp to the backup file names": "Přidat časové razítko (timestamp) do názvu souboru zálohy", "Backup and Restore": "Zálohování a obnovení", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Povolit api na pozadí (Widgets pro UniGetUI a Sdílení, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Povolit api na pozadí (Widgets pro UniGetUI a Sdílení, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Před prováděním úkolů, které vyžadují připojení k internetu, počkejte, až bude zařízení připojeno k internetu.", "Disable the 1-minute timeout for package-related operations": "Vypnutí minutového limitu pro operace související s balíčky", "Use installed GSudo instead of UniGetUI Elevator": "Použít nainstalovaný GSudo místo UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrie", "Manage UniGetUI settings": "Správa nastavení UniGetUI", "Related settings": "Související nastavení", - "Update WingetUI automatically": "Automaticky aktualizovat UniGetUI", + "Update UniGetUI automatically": "Automaticky aktualizovat UniGetUI", "Check for updates": "Zkontrolovat aktualizace", "Install prerelease versions of UniGetUI": "Instalovat předběžné verze UniGetUI", "Manage telemetry settings": "Spravovat nastavení telemetrie", @@ -295,17 +321,17 @@ "Import": "Importovat", "Export settings to a local file": "Exportovat nastavení do souboru", "Export": "Exportovat", - "Reset WingetUI": "Obnovit UniGetUI", "Reset UniGetUI": "Obnovit UniGetUI", "User interface preferences": "Vlastnosti uživatelského rozhraní", "Application theme, startup page, package icons, clear successful installs automatically": "Motiv aplikace, úvodní stránka, ikony balíčků, automatické vymazání úspěšných instalací", "General preferences": "Obecné vlastnosti", - "WingetUI display language:": "Jazyk UniGetUI", + "UniGetUI display language:": "Jazyk UniGetUI", "Is your language missing or incomplete?": "Chybí váš jazyk nebo není úplný?", "Appearance": "Vzhled", "UniGetUI on the background and system tray": "UniGetUI v pozadí a systémové liště", "Package lists": "Seznamy balíčků", "Close UniGetUI to the system tray": "Zavírat UniGetUI do systémové lišty", + "Manage UniGetUI autostart behaviour": "Spravovat chování automatického spouštění UniGetUI", "Show package icons on package lists": "Zobrazit ikonky balíčků na seznamu balíčků", "Clear cache": "Vyčistit mezipaměť", "Select upgradable packages by default": "Vždy vybrat aktualizovatelné balíčky", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Upozorňujeme, že ne všichni správci balíčků mohou tuto funkci plně podporovat.", "Proxy URL": "URL proxy serveru", "Enter proxy URL here": "Zde zadejte URL proxy serveru", + "Authenticate to the proxy with a user and a password": "Ověřit se vůči proxy pomocí uživatele a hesla", + "Internet and proxy settings": "Nastavení internetu a proxy", "Package manager preferences": "Nastavení správce balíčků", "Ready": "Připraveno", "Not found": "Nenalezeno", "Notification preferences": "Předvolby oznámení", "Notification types": "Typy oznámení", "The system tray icon must be enabled in order for notifications to work": "Aby oznámení fungovala, musí být povolena ikona na systémové liště.", - "Enable WingetUI notifications": "Zapnout oznámení UniGetUI", + "Enable UniGetUI notifications": "Zapnout oznámení UniGetUI", "Show a notification when there are available updates": "Zobrazit oznámení, pokud jsou dostupné aktualizace", "Show a silent notification when an operation is running": "Zobrazit tichá oznámení při běžící operaci", "Show a notification when an operation fails": "Zobrazit oznámení po selhání operace", "Show a notification when an operation finishes successfully": "Zobrazit oznámení po úspěšném dokončení operace", "Concurrency and execution": "Souběžnost a provádění", "Automatic desktop shortcut remover": "Automatické mazání zástupců z plochy", + "Choose how many operations should be performed in parallel": "Vyberte, kolik operací se má provádět souběžně", "Clear successful operations from the operation list after a 5 second delay": "Vymazat úspěšné operace po 5 sekundách ze seznamu operací", "Download operations are not affected by this setting": "Toto nastavení nemá vliv na operace stahování", "Try to kill the processes that refuse to close when requested to": "Pokuste se ukončit procesy, které se odmítají zavřít, když je to požadováno.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Vyberte spustitelný soubor, který chcete použít. Následující seznam obsahuje spustitelné soubory nalezené UniGetUI.", "Current executable file:": "Aktuálně spustitelný soubor:", "Ignore packages from {pm} when showing a notification about updates": "Ignorovat balíčky z {pm} při zobrazení oznámení o aktualizacích", + "Update security": "Zabezpečení aktualizací", + "Use global setting": "Použít globální nastavení", + "e.g. 10": "např. 10", + "{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", + "Override the global minimum update age for this package manager": "Přepsat globální minimální stáří aktualizací pro tohoto správce balíčků", + "Minimum age for updates": "Minimální stáří aktualizací", + "Custom minimum age (days)": "Vlastní minimální stáří (dny)", "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, ", "Advanced options": "Pokročilé možnosti", "Reset WinGet": "Obnovit WinGet", "This may help if no packages are listed": "Toto může pomoci, když se balíčky nezobrazují", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Zapnout pročištění Scoopu po spuštění", "Use system Chocolatey": "Použít systémový Chocolatey", "Default vcpkg triplet": "Výchozí vcpkg triplet", + "Change vcpkg root location": "Změnit umístění kořene vcpkg", "Language, theme and other miscellaneous preferences": "Lokalizace, motivy a další různé vlastnosti", "Show notifications on different events": "Zobrazit oznámení o různých událostech", "Change how UniGetUI checks and installs available updates for your packages": "Změňte, jak UniGetUI kontroluje a instaluje dostupné aktualizace pro vaše balíčky", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Neinstalovat aktualizace, pokud je síťové připojení účtováno po objemu dat", "Do not automatically install updates when the device runs on battery": "Neinstalovat aktualizace, pokud zařízení běží na baterii", "Do not automatically install updates when the battery saver is on": "Neinstalovat aktualizace, pokud je zapnutý spořič energie", + "Only show updates that are at least the specified number of days old": "Zobrazovat pouze aktualizace, které jsou alespoň zadaný počet dní staré", "Change how UniGetUI handles install, update and uninstall operations.": "Změňte způsob, jakým UniGetUI zpracovává operace instalace, aktualizace a odinstalace.", "Package Managers": "Správci balíčků", "More": "Více", - "WingetUI Log": "UniGetUI protokol", "Package Manager logs": "Protokoly správce balíčků", "Operation history": "Historie operací", "Help": "Nápověda", + "Quit UniGetUI": "Ukončit UniGetUI", "Order by:": "Seřadit podle:", "Name": "Název", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Oba", "Exact match": "Přesná shoda", "Show similar packages": "Podobné balíčky", + "Nothing to share": "Není co sdílet", + "Please select a package first.": "Nejprve vyberte balíček.", + "Share link copied": "Odkaz pro sdílení zkopírován", + "The share link for {0} has been copied to the clipboard.": "Odkaz pro sdílení pro {0} byl zkopírován do schránky.", "No results were found matching the input criteria": "Nebyl nalezen žádný výsledek splňující kritéria", "No packages were found": "Žádné balíčky nebyly nalezeny", "Loading packages": "Načítání balíčků", @@ -440,7 +483,11 @@ "Package bundle": "Sada balíčku", "Could not create bundle": "Sadu se nepodařilo vytvořit", "The package bundle could not be created due to an error.": "Sada balíčků se nepodařilo vytvořit z důvodu chyby.", + "Unsaved changes": "Neuložené změny", + "Discard changes": "Zahodit změny", + "You have unsaved changes in the current bundle. Do you want to discard them?": "V aktuální sadě máte neuložené změny. Chcete je zahodit?", "Bundle security report": "Zpráva o zabezpečení sady", + "The bundle contained restricted content": "Sada obsahovala omezený obsah", "Hooray! No updates were found.": "Juchů! Nejsou žádné aktualizace!", "Everything is up to date": "Vše je aktuální", "Uninstall selected packages": "Odinstalovat vybrané balíčky", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasický správce balíčků pro Windows. Najdete v něm vše.
Obsahuje: Obecný software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repozitář plný nástrojů a spustitelných souborů navržených s ohledem na ekosystém .NET společnosti Microsoft.
Obsahuje: .NET související nástroje a skripty\n", "NuPkg (zipped manifest)": "NuPkg (zazipovaný manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Chybějící správce balíčků pro macOS (nebo Linux).
Obsahuje: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Správce balíčků Node.js, je plný knihoven a dalších nástrojů, které týkají světa javascriptu.
Obsahuje: Knihovny a další související nástroje pro Node.js", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Správce knihoven Pythonu a dalších nástrojů souvisejících s Pythonem.
Obsahuje: Knihovny Pythonu a související nástroje", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell správce balíčků. Hledání knihoven a skriptů k rozšíření PowerShell schopností
Obsahuje: Moduly, Skripty, Cmdlets\n", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operace v pořadí (pozice {0})...", "Click here for more details": "Klikněte zde pro více informací", "Operation canceled by user": "Operace zrušena uživatelem", + "Running PreOperation ({0}/{1})...": "Spouští se PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} z {1} selhala a byla označena jako nezbytná. Přerušuje se...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} z {1} skončila s výsledkem {2}", "Starting operation...": "Spouštění operace...", + "Running PostOperation ({0}/{1})...": "Spouští se PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} z {1} selhala a byla označena jako nezbytná. Přerušuje se...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} z {1} skončila s výsledkem {2}", "{package} installer download": "Stáhnout instalační program {package}", "{0} installer is being downloaded": "Stahuje se instalační program {0}", "Download succeeded": "Úspěšně staženo", @@ -556,14 +610,12 @@ "Portable mode": "Přenosný režim", "DEBUG BUILD": "LADICÍ SESTAVENÍ", "Available Updates": "Dostupné aktualizace", - "Show WingetUI": "Zobrazit UniGetUI", + "Show UniGetUI": "Zobrazit UniGetUI", "Quit": "Ukončit", "Attention required": "Nutná pozornost", "Restart required": "Vyžadován restart", "1 update is available": "1 dostupná aktualizace", "{0} updates are available": "Je dostupných {0} aktualizací.", - "WingetUI Homepage": "Domovská stránka UniGetUI", - "WingetUI Repository": "UniGetUI repozitář", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Zde můžete změnit chování rozhraní UniGetUI, pokud jde o následující zkratky. Zaškrtnutí zástupce způsobí, že jej UniGetUI odstraní, pokud bude vytvořen při budoucí aktualizaci. Zrušením zaškrtnutí zůstane zástupce nedotčen", "Manual scan": "Manuální skenování", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Stávající zástupci na ploše budou prohledáni a budete muset vybrat, které z nich chcete zachovat a které odstranit.", @@ -583,7 +635,6 @@ "Restart later": "Restartovat později", "An error occurred:": "Nastala chyba:", "I understand": "Rozumím", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI byl spuštěn jako správce, což se nedoporučuje. Pokud je UniGetUI spuštěn jako správce, bude mít KAŽDÁ operace spuštěná z UniGetUI práva správce. Program můžete používat i nadále, ale důrazně nedoporučujeme spouštět UniGetUI s právy správce.", "WinGet was repaired successfully": "WinGet byl úspěšně opraven", "It is recommended to restart UniGetUI after WinGet has been repaired": "Po opravě WinGet se doporučuje restartovat aplikaci UniGetUI", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "Poznámka: Toto řešení problémů může být vypnuto z nastavení UnigetUI v sekci WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Vaše balíčky budou přidány do balíčku. Můžete pokračovat v přidávání balíčků nebo balíček exportovat.", "Which backup do you want to open?": "Kterou zálohu chcete otevřít?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Vyberte zálohu, kterou chcete otevřít. Později budete moci zkontrolovat, které balíčky/programy chcete obnovit.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Stále se provádí operace. Ukončení UniGetUI může způsobit jejich selhání. Chcete i přesto pokračovat?\n", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Stále se provádí operace. Ukončení UniGetUI může způsobit jejich selhání. Chcete i přesto pokračovat?\n", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI nebo některé z jeho komponent chybí nebo jsou poškozené.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Důrazně se doporučuje přeinstalovat UniGetUI k vyřešení této situace.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Podívejte se do protokolů UniGetUI pro získání více podrobností o postižených souborech", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Zde napište názvy procesů oddělené čárkami (,).", "Unset or unknown": "Nenastaveno nebo neznámo", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Další informace o problému naleznete ve výstupu příkazového řádku nebo v Historii operací.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Chybí tomuto balíčku snímky obrazovky nebo ikonka? Přispějte do UniGetUI přidáním chybějících ikonek a snímků obrazovky do naší otevřené, veřejné databáze.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Chybí tomuto balíčku snímky obrazovky nebo ikonka? Přispějte do UniGetUI přidáním chybějících ikonek a snímků obrazovky do naší otevřené, veřejné databáze.", "Become a contributor": "Staňte se přispěvatelem", "Save": "Uložit", "Update to {0} available": "Je dostupná aktualizace na {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Zapnout automatické řešení problémů WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Povolit [experimentálního] vylepšeného nástroje pro řešení potíží WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Přidat aktualizace, které selžou s hlášením „nebyla nalezena žádná použitelná aktualizace“, do seznamu ignorovaných aktualizací.", - "Restart WingetUI to fully apply changes": "Pro aplikování změn restartujte UniGetUI", - "Restart WingetUI": "Restartovat UniGetUI", "Invalid selection": "Neplatný výběr", "No package was selected": "Nebyl vybrán žádný balíček", "More than 1 package was selected": "Byl vybrán víc než 1 balíček", @@ -684,6 +733,37 @@ "Log out failed: ": "Odhlášení se nezdařilo:", "Package backup settings": "Nastavení zálohování balíčku", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "O UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikace, která usnadňuje správu softwaru tím, že poskytuje grafické rozhraní pro správce balíčků příkazového řádku.", + "You have installed WingetUI Version {0}": "Je nainstalován UniGetUI verze {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebylo možné vytvořit bez pomoci přispěvatelů. Děkuji Vám všem 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI používá následující knihovny. Bez nich by UniGetUI nebyl možný.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI byl díky dobrovolným překladatelům přeložen do více než 40 jazyků. Děkujeme 🤝", + "WingetUI Settings": "Nastavení UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Může být nutné nainstalovat {pm} pro použití s UniGetUI.", + "Scoop Installer - WingetUI": "Scoop instalátor - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop odinstalátor - UniGetUI", + "Clearing Scoop cache - WingetUI": "Mazání mezipaměti Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI verze {0}", + "WingetUI License": "UniGetUI Licence", + "Using WingetUI implies the acceptation of the MIT License": "Používání UniGetUI znamená souhlas s licencí MIT.", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Povolit api na pozadí (Widgets pro UniGetUI a Sdílení, port 7058)", + "Update WingetUI automatically": "Automaticky aktualizovat UniGetUI", + "Reset WingetUI": "Obnovit UniGetUI", + "WingetUI display language:": "Jazyk UniGetUI", + "Manage WingetUI autostart behaviour": "Spravovat chování automatického spouštění UniGetUI", + "Enable WingetUI notifications": "Zapnout oznámení UniGetUI", + "WingetUI Log": "UniGetUI protokol", + "Show WingetUI": "Zobrazit UniGetUI", + "WingetUI Homepage": "Domovská stránka UniGetUI", + "WingetUI Repository": "UniGetUI repozitář", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI byl spuštěn jako správce, což se nedoporučuje. Pokud je UniGetUI spuštěn jako správce, bude mít KAŽDÁ operace spuštěná z UniGetUI práva správce. Program můžete používat i nadále, ale důrazně nedoporučujeme spouštět UniGetUI s právy správce.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Stále se provádí operace. Ukončení UniGetUI může způsobit jejich selhání. Chcete i přesto pokračovat?\n", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Chybí tomuto balíčku snímky obrazovky nebo ikonka? Přispějte do UniGetUI přidáním chybějících ikonek a snímků obrazovky do naší otevřené, veřejné databáze.", + "Restart WingetUI to fully apply changes": "Pro aplikování změn restartujte UniGetUI", + "Restart WingetUI": "Restartovat UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Správa spouštění UniGetUI v aplikaci Nastavení", "(Number {0} in the queue)": "(Pořadí ve frontě: {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@panther7, @mlisko, @xtorlukas", "0 packages found": "Nenalezeny žádné balíčky", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json index dbbacac161..4941bf7c2e 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_da.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Afbryd afinstallation hvis kommandoen før afinstallation mislykkes", "Command-line to run:": "Kommandolinje til kørsel:", "Save and close": "Gem og luk", + "General": "Generelt", + "Architecture & Location": "Arkitektur og placering", + "Command-line": "Kommandolinje", + "Pre/Post install": "Før/efter installation", "Run as admin": "Kør som administrator", "Interactive installation": "Interaktiv installation", "Skip hash check": "Spring over hash check", @@ -71,6 +75,8 @@ "Manage ignored updates": "Administrer ignorerede opdateringer", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pakkerne listet her vil ikke blive taget i betragtning ved søgning efter opdateringer. Dobbeltklik på dem eller klik på knappen til højre for dem for at stoppe med at ignorere deres opdateringer.", "Reset list": "Nulstil liste", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Vil du virkelig nulstille listen over ignorerede opdateringer? Denne handling kan ikke fortrydes", + "No ignored updates": "Ingen ignorerede opdateringer", "Package Name": "Pakke navn", "Package ID": "Pakke ID", "Ignored version": "Ignoreret version", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Handlingen kører interaktivt.", "You will likely need to interact with the installer.": "Du vil sandsynligvis være nødt til at interagere med installationsprogrammet.", "Integrity checks skipped": "Integritetstjek sprunget over", + "Integrity checks will not be performed during this operation.": "Integritetstjek udføres ikke under denne handling.", "Proceed at your own risk.": "Fortsæt på egen risiko.", "Close": "Luk", "Loading...": "Indlæser...", @@ -120,16 +127,17 @@ "optional": "valgfrit", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} er klar til at blive installeret.", "The update process will start after closing UniGetUI": "Opdateringsprocessen vil starte efter UniGetUI bliver lukket", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI er blevet kørt som administrator, hvilket ikke anbefales. Når UniGetUI køres som administrator, vil ALLE handlinger startet fra UniGetUI have administratorrettigheder. Du kan stadig bruge programmet, men vi anbefaler kraftigt ikke at køre UniGetUI med administratorrettigheder.", "Share anonymous usage data": "Del anonym brugsdata", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI indsamler anonyme brugsdata for at forbedre brugeroplevelsen.", "Accept": "Accepter", - "You have installed WingetUI Version {0}": "Installeret WingetUI version er {0}", + "You have installed UniGetUI Version {0}": "Installeret UniGetUI version er {0}", "Disclaimer": "Ansvarsfraskrivelse", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI er ikke relateret til nogle af de kompatible pakkemanagere. UniGetUI er it uafhængigt projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikke have været mulig uden støtten fra vores hjælpere. Tak til jer alle 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI bruger følgende biblioteker. Uden dem ville WingetUI ikke have været mulig.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ville ikke have været mulig uden støtten fra vores hjælpere. Tak til jer alle 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI bruger følgende biblioteker. Uden dem ville UniGetUI ikke have været mulig.", "{0} homepage": "{0} startside", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI er oversat til mere end 40 sprog takket være de frivillige oversættere. Mange tak 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI er oversat til mere end 40 sprog takket være de frivillige oversættere. Mange tak 🤝", "Verbose": "Udførlig", "1 - Errors": "1 fejl", "2 - Warnings": "2 - Advarsler", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Du er logget på som {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Rigtig godt! Backups vil blive uploadet til en privat gist på din konto", "Select backup": "Vælg backup", - "WingetUI Settings": "WingetUI Indstillinger", + "UniGetUI Settings": "UniGetUI-indstillinger", "Allow pre-release versions": "Tillad pre-release versioner", "Apply": "Anvend", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Af sikkerhedsmæssige årsager er brugerdefinerede kommandolinjeargumenter deaktiveret som standard. Gå til UniGetUIs sikkerhedsindstillinger for at ændre dette.", "Go to UniGetUI security settings": "Gå til UniGetUI sikkerhedsindstillinger", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Følgende muligheder vil blive anvendt som standard hver gang en {0} pakke installeres, opgraderes eller afinstalleres.", "Package's default": "Pakkens standard", @@ -160,6 +169,7 @@ "Username": "Brugernavn", "Password": "Adgangskode", "Credentials": "Log-på oplysninger", + "It is not guaranteed that the provided credentials will be stored safely": "Det er ikke garanteret, at de angivne legitimationsoplysninger opbevares sikkert", "Partially": "Delvist", "Package manager": "Pakkemanager", "Compatible with proxy": "Kompatibel med proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} er aktiveret og klar til brug", "{pm} version:": "{pm} udgave:", "{pm} was not found!": "{pm} blev ikke fundet!", - "You may need to install {pm} in order to use it with WingetUI.": "Installation af {pm} er nødvendig, for at kunne bruge det med WingetUI.", - "Scoop Installer - WingetUI": "Scoop Installere - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop Afinstallere - WingetUI", - "Clearing Scoop cache - WingetUI": "Fjerner Scoop cache - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Installation af {pm} er nødvendig, for at kunne bruge det med UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop Installere - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop Afinstallere - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Fjerner Scoop cache - UniGetUI", + "Restart UniGetUI to fully apply changes": "Genstart UniGetUI for at anvende ændringerne fuldt ud", "Restart UniGetUI": "Genstart UniGetUI", "Manage {0} sources": "Administrer {0} kilder", "Add source": "Tilføj kilde", "Add": "Tilføj", + "Source name": "Kildenavn", + "Source URL": "Kilde-URL", "Other": "Andre", + "No minimum age": "Ingen minimumsalder", "1 day": "1 dag", "{0} days": "{0} dage", + "Custom...": "Brugerdefineret...", "{0} minutes": "{0} minutter", "1 hour": "1 time", "{0} hours": "{0} timer", "1 week": "1 uge", - "WingetUI Version {0}": "WingetUI Version {0}", + "Supports release dates": "Understøtter udgivelsesdatoer", + "Release date support per package manager": "Understøttelse af udgivelsesdatoer pr. pakkemanager", + "UniGetUI Version {0}": "UniGetUI version {0}", "Search for packages": "Søg efter pakker", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Aktiveret", "Disabled": "Deaktiveret", "More info": "Mere info", + "GitHub account": "GitHub-konto", "Log in with GitHub to enable cloud package backup.": "Log på med GitHub for at aktivere cloud pakke backup.", "More details": "Flere detaljer", "Log in": "Log på", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Hvis du har cloud backup aktiveret, gemmes det som en GitHub Gist på denne konto", "Log out": "Log af", + "About UniGetUI": "Om UniGetUI", "About": "Om", "Third-party licenses": "Tredjepartslicenser", "Contributors": "Bidragydere", @@ -212,6 +231,7 @@ "Manage shortcuts": "Administrer genveje", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI har opdaget følgende skrivebordsgenveje, som kan fjernes automatisk ved fremtidige opgraderinger", "Do you really want to reset this list? This action cannot be reverted.": "Ønsker du virkelig at nulstille denne liste? Handlingen kan ikke føres tilbage.", + "Open in explorer": "Åbn i Stifinder", "Remove from list": "Fjern fra liste", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Når nye genveje detekteres, skal du slette dem automatisk i stedet for at vise denne dialog.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI indsamler anonyme brugsdata med det ene formåle at forstå og forbedre brugeroplevelsen.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Accepterer du, at UniGetUI indsamler og sender anonyme brugsstatistikker med det ene formål at forstå og forbedre brugeroplevelsen?", "Decline": "Afvis", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Ingen personlig information bliver indsamlet eller sendt, og den indsamlede data bliver anonymiseret, så det ikke kan spores tilbage til dig.", - "About WingetUI": "Om UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er en applikation, som gør adminstrationen af din software lettere ved at levere et alt-i-et grafisk brugergrænseflade til dine kommandolinje pakkemanagere.", + "Toggle navigation panel": "Vis/skjul navigationspanel", + "Minimize": "Minimer", + "Maximize": "Maksimer", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er en applikation, som gør adminstrationen af din software lettere ved at levere et alt-i-et grafisk brugergrænseflade til dine kommandolinje pakkemanagere.", "Useful links": "Nyttige links", + "UniGetUI Homepage": "UniGetUI-hjemmeside", "Report an issue or submit a feature request": "Rapporter et issue eller send et ønske om en ny feature", + "UniGetUI Repository": "UniGetUI-arkiv", "View GitHub Profile": "Se GitHub Profil", - "WingetUI License": "WingetUI Licens", - "Using WingetUI implies the acceptation of the MIT License": "Brug af UniGetUI betyder accept af MIT licensen", + "UniGetUI License": "UniGetUI Licens", + "Using UniGetUI implies the acceptation of the MIT License": "Brug af UniGetUI betyder accept af MIT licensen", "Become a translator": "Bidrag selv til oversættelse", "View page on browser": "Vis side i browser", "Copy to clipboard": "Kopier til udklipsholder", "Export to a file": "Eksporter til fil", "Log level:": "Log-niveau:", "Reload log": "Genindlæs log", + "Export log": "Eksporter log", + "UniGetUI Log": "UniGetUI-log", "Text": "Tekst", "Change how operations request administrator rights": "Ændre hvordan operationer anmoder om administrator-rettigheder", "Restrictions on package operations": "Begrænsninger på pakkeoperationer", @@ -271,7 +297,7 @@ "Leave empty for default": "Efterlad blankt for standardindstilling", "Add a timestamp to the backup file names": "Tilføj tidsstempel til backup filnavne", "Backup and Restore": "Backup og Gendannelse", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver baggrunds-API (Widgets til UniGetUI og Deling, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktiver baggrunds-API (Widgets til UniGetUI og Deling, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Vent på, at enheden er forbundet til internettet, før der forsøges på at gøre noget, som kræver internetforbindelse.", "Disable the 1-minute timeout for package-related operations": "Deaktiver 1-minuts timeout for pakkerelaterede operationer", "Use installed GSudo instead of UniGetUI Elevator": "Brug installeret GSudo i stedet for UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "Administrer UniGetUI indstillinger", "Related settings": "Relaterede indstillinger", - "Update WingetUI automatically": "Opdatér WingetUI automatisk", + "Update UniGetUI automatically": "Opdatér UniGetUI automatisk", "Check for updates": "Søg efter opdateringer", "Install prerelease versions of UniGetUI": "Installer præ-release versioner af UniGetUI", "Manage telemetry settings": "Administrer telemetriindstillinger", @@ -295,17 +321,17 @@ "Import": "Importer", "Export settings to a local file": "Eksporter indstillinger til en fil", "Export": "Eksporter", - "Reset WingetUI": "Nulstil WingetUI", "Reset UniGetUI": "Nulstil UniGetUI", "User interface preferences": "Brugerflade indstillinger", "Application theme, startup page, package icons, clear successful installs automatically": "Applikationstema, startside, pakkeikoner, fjern successfulde installationer automatisk", "General preferences": "Generelle indstillinger", - "WingetUI display language:": "WingetUI Sprog", + "UniGetUI display language:": "UniGetUI Sprog", "Is your language missing or incomplete?": "Mangler dit sprog (helt eller delvist)?", "Appearance": "Udseende", "UniGetUI on the background and system tray": "UniGetUI i baggrunden og systembakken", "Package lists": "Pakkelister", "Close UniGetUI to the system tray": "Luk UniGetUI til systembakken", + "Manage UniGetUI autostart behaviour": "Administrer UniGetUI's autostartadfærd", "Show package icons on package lists": "Vis pakkeikoner på pakkelister", "Clear cache": "Tøm cache", "Select upgradable packages by default": "Vælg opgraderbare pakker som standard", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Bemærk, at ikke alle pakkemanagere fuldt ud kan understøtte denne funktion", "Proxy URL": "Proxy-URL", "Enter proxy URL here": "Indtast proxy URL her", + "Authenticate to the proxy with a user and a password": "Autentificer over for proxyen med et brugernavn og en adgangskode", + "Internet and proxy settings": "Internet- og proxyindstillinger", "Package manager preferences": "Pakkemanager indstillinger", "Ready": "Klar", "Not found": "Ikke fundet", "Notification preferences": "Notifikationspræferencer", "Notification types": "Notifikationstyper", "The system tray icon must be enabled in order for notifications to work": "Systemtray ikonen skal aktiveres for at notifikationer fungerer", - "Enable WingetUI notifications": "Aktiver UniGetUI notifikationer", + "Enable UniGetUI notifications": "Aktiver UniGetUI notifikationer", "Show a notification when there are available updates": "Vis notifikation når der er tilgængelige opdateringer", "Show a silent notification when an operation is running": "Vis en lydløs notifikation når en handling kører", "Show a notification when an operation fails": "Vis en notifikation når en handling mislykkes", "Show a notification when an operation finishes successfully": "Vis en notifikation når en handling gennemføres med success", "Concurrency and execution": "Samtidighed og udførelse", "Automatic desktop shortcut remover": "Automatisk skrivebordsgenvej-fjerner", + "Choose how many operations should be performed in parallel": "Vælg hvor mange handlinger der skal udføres parallelt", "Clear successful operations from the operation list after a 5 second delay": "Fjern succesfulde operationer fra operationslisten med 5 sekunders forsinkelse", "Download operations are not affected by this setting": "Download-operationer påvirkes ikke af denne indstilling", "Try to kill the processes that refuse to close when requested to": "Forsøg at dræbe processerne, der nægter at lukke når der anmodes om det", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Vælg den eksekverbare fil der skal bruges. Følgende liste viser de eksekverbare filer fundet af UniGetUI", "Current executable file:": "Aktuel eksekverbar fil:", "Ignore packages from {pm} when showing a notification about updates": "Ignorer pakker fra {pm} når der vises en notifikation om opdateringer", + "Update security": "Opdateringssikkerhed", + "Use global setting": "Brug global indstilling", + "e.g. 10": "f.eks. 10", + "{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", + "Override the global minimum update age for this package manager": "Tilsidesæt den globale minimumsalder for opdateringer for denne pakkemanager", + "Minimum age for updates": "Minimumsalder for opdateringer", + "Custom minimum age (days)": "Brugerdefineret minimumsalder (dage)", "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, ", "Advanced options": "Avancerede muligheder", "Reset WinGet": "Nulstil WinGet", "This may help if no packages are listed": "Det kan hjælpe, hvis der ikke listes nogle pakker", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktiver Scoop-oprydning ved programstart", "Use system Chocolatey": "Brug systemets Chocolatey", "Default vcpkg triplet": "Standard vcpkg triplet", + "Change vcpkg root location": "Skift vcpkg-rodplacering", "Language, theme and other miscellaneous preferences": "Sprog, tema og forskellige andre indstillinger", "Show notifications on different events": "Vis notifikationer ved forskellige hændelser", "Change how UniGetUI checks and installs available updates for your packages": "Bestem hvordan UniGetUI søger efter og installerer tilgængelige opdateringer for dine pakker", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Installer ikke automatisk opdateringer når netværksforbindelsen er målt", "Do not automatically install updates when the device runs on battery": "Installer ikke automatisk opdateringer når enheden kører på batteri", "Do not automatically install updates when the battery saver is on": "Installer ikke automatisk opdateringer når batteribesparelse er tændt", + "Only show updates that are at least the specified number of days old": "Vis kun opdateringer, der er mindst det angivne antal dage gamle", "Change how UniGetUI handles install, update and uninstall operations.": "Ændre hvordan UniGetUI håndterer installations-, opdaterings- og afinstallationsoperationer.", "Package Managers": "Pakkemanagere", "More": "Mere", - "WingetUI Log": "WingetUI log", "Package Manager logs": "Pakkemanager logs", "Operation history": "Handlingshistorik", "Help": "Hjælp", + "Quit UniGetUI": "Afslut UniGetUI", "Order by:": "Sortering:", "Name": "Navn", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Begge", "Exact match": "Nøjagtigt match", "Show similar packages": "Vis lignende pakker", + "Nothing to share": "Intet at dele", + "Please select a package first.": "Vælg venligst først en pakke.", + "Share link copied": "Delingslink kopieret", + "The share link for {0} has been copied to the clipboard.": "Delingslinket til {0} er blevet kopieret til udklipsholderen.", "No results were found matching the input criteria": "Ingen resultater fundet der opfylder valgte kriterier", "No packages were found": "Ingen pakker blev fundet", "Loading packages": "Indlæser pakker", @@ -440,7 +483,11 @@ "Package bundle": "Pakke samling", "Could not create bundle": "Kunne ikke oprette samlingen", "The package bundle could not be created due to an error.": "Pakkesamlingen kunne ikke oprettes på grund af en fejl.", + "Unsaved changes": "Ikke-gemte ændringer", + "Discard changes": "Kassér ændringer", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Du har ikke-gemte ændringer i den aktuelle samling. Vil du kassere dem?", "Bundle security report": "Pakkesamlings sikkerhedsrapport", + "The bundle contained restricted content": "Samlingen indeholdt begrænset indhold", "Hooray! No updates were found.": "Ingen opdateringer fundet.", "Everything is up to date": "Alt er opdateret", "Uninstall selected packages": "Afinstaller valgte pakker", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows' egen Pakkemanager, hvor du kan finde det meste.
Indeholder:Generel software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "En samling af værktøjer og programmer til brug i Microsoft's .NET økosystem.
Indeholder .NET relaterede værktøjer og scripts", "NuPkg (zipped manifest)": "NuPkg (zippet manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Den manglende pakkemanager til macOS (eller Linux).
Indeholder: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS's pakkemanager. Fuld af biblioteker og andre værktøjer, som omkranser Javascript verdenen
Indeholder: Node Javascript biblioteker og andre relaterede værktøjer", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python's biblioteksmanager. Fuld af python biblioteker og andre pythonrelaterede værktøjer
Indeholder: Python biblioteker og andre relaterede værktøjer", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell's pakkemanager. Find biblioteker og scripts til at udvide mulighederne i PowerShell
Indeholder: Moduler, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Handling er i kø (position {0})...", "Click here for more details": "Klik her for yderligere detaljer", "Operation canceled by user": "Handlingen blev annulleret af bruger", + "Running PreOperation ({0}/{1})...": "Kører PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} ud af {1} mislykkedes og var markeret som nødvendig. Afbryder...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} ud af {1} blev afsluttet med resultatet {2}", "Starting operation...": "Starter handling...", + "Running PostOperation ({0}/{1})...": "Kører PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} ud af {1} mislykkedes og var markeret som nødvendig. Afbryder...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} ud af {1} blev afsluttet med resultatet {2}", "{package} installer download": "{package} installationsprogram download", "{0} installer is being downloaded": "{0} installationsprogram bliver downloaded", "Download succeeded": "Download lykkedes", @@ -556,14 +610,12 @@ "Portable mode": "Portabel tilstand\n", "DEBUG BUILD": "DEBUG-BUILD", "Available Updates": "Tilgængelige opdateringer", - "Show WingetUI": "Vis WingetUI", + "Show UniGetUI": "Vis UniGetUI", "Quit": "Afslut", "Attention required": "Opmærksomhed kræves", "Restart required": "Genstart påkrævet", "1 update is available": "1 opdatering tilgængelig", "{0} updates are available": "{0} opdateringer tilgængelige", - "WingetUI Homepage": "WingetUI Startside", - "WingetUI Repository": "WingetUI Biblioteket", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Her kan du ændre UniGetUI's opførsel vedrørende følgende genveje. Markering af en genvej vil få UniGetUI til at slette den, hvis den oprettes under en fremtidig opgradering. Afmarkering af den vil beholde genvejen.", "Manual scan": "Manuel scanning", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Eksisterende genveje på dit skrivebord vil blive scannet, og du vil være nødt til at vælge hvilke, der skal beholdes og hvilke, der skal fjernes.", @@ -583,7 +635,6 @@ "Restart later": "Genstart senere", "An error occurred:": "Der opstod en fejl:", "I understand": "Accepter", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI har været kørt som administrator, hvilket ikke anbefales. Når man kører UniGetUI som administrator vil ALLE handlinger startet fra UniGetUI have administratorrettigheder. Du kan stadig bruge programmet, men vi anbefaler kraftigt ikke at køre UniGetUI med administratorrettigheder.", "WinGet was repaired successfully": "WinGet blev repareret med success", "It is recommended to restart UniGetUI after WinGet has been repaired": "Det anbefales at genstarte UniGetUI efter WinGet er blevet repareret", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "BEMÆRK: Denne problemløser kan deaktiveres fra UniGetUI Indstillinger i WinGet sektionen", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Dine pakker vil være tilføjet til samlingen. Du kan fortsætte med at tilføje pakker eller eksportere samlingen.", "Which backup do you want to open?": "Hvilken backup ønsker du at åbne?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Vælg den backup, du vil åbne. Senere vil du kunne gennemse hvilke pakker du vil installere.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Der er igangværende handlinger. Afslutning af UniGetUI kan betyde, at de mislykkes. Ønsker du at fortsætte?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Der er igangværende handlinger. Afslutning af UniGetUI kan betyde, at de mislykkes. Ønsker du at fortsætte?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller nogle af dets komponenter mangler eller er beskadigede.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Det anbefales stærkt at geninstallere UniGetUI for at løse situationen.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Se UniGetUI Logs for at få flere detaljer vedrørende de berørte fil(er)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Skriv her processnavnene, adskilt af kommaer (,)", "Unset or unknown": "Ikke angivet eller ukendt", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Se Kommandolinje Output eller i Handlingshistorikken for yderligere information om dette problem.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakke har ingen skærmbilleder eller mangler ikonet? Bidrag til UniGetUI ved at tilføje manglende ikoner og skærmbilleder til vores åbne, offentlige database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakke har ingen skærmbilleder eller mangler ikonet? Bidrag til UniGetUI ved at tilføje manglende ikoner og skærmbilleder til vores åbne, offentlige database.", "Become a contributor": "Bidrag selv til udviklingen", "Save": "Gem", "Update to {0} available": "Opdatering til {0} tilgængelig", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktiver den automatiske WinGet problemløser", "Enable an [experimental] improved WinGet troubleshooter": "Aktiver en [eksperimentel] forbedret WinGet problemløser", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Tilføj opdateringer, som mislykkes med en 'ingen relevante opdateriinger fundet' til listen over ignorerede opdateringer", - "Restart WingetUI to fully apply changes": "Genstart WingetUI for at gennemføre ændringer", - "Restart WingetUI": "Genstart WingetUI", "Invalid selection": "Ugyldigt valg", "No package was selected": "Ingen pakke blev valgt", "More than 1 package was selected": "Mere end 1 pakke blev valgt", @@ -684,6 +733,37 @@ "Log out failed: ": "Logoff fejlede: ", "Package backup settings": "Pakke backup indstillinger", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Om UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er en applikation, som gør adminstrationen af din software lettere ved at levere et alt-i-et grafisk brugergrænseflade til dine kommandolinje pakkemanagere.", + "You have installed WingetUI Version {0}": "Installeret WingetUI version er {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikke have været mulig uden støtten fra vores hjælpere. Tak til jer alle 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI bruger følgende biblioteker. Uden dem ville WingetUI ikke have været mulig.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI er oversat til mere end 40 sprog takket være de frivillige oversættere. Mange tak 🤝", + "WingetUI Settings": "WingetUI Indstillinger", + "You may need to install {pm} in order to use it with WingetUI.": "Installation af {pm} er nødvendig, for at kunne bruge det med WingetUI.", + "Scoop Installer - WingetUI": "Scoop Installere - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop Afinstallere - WingetUI", + "Clearing Scoop cache - WingetUI": "Fjerner Scoop cache - WingetUI", + "WingetUI Version {0}": "WingetUI Version {0}", + "WingetUI License": "WingetUI Licens", + "Using WingetUI implies the acceptation of the MIT License": "Brug af UniGetUI betyder accept af MIT licensen", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver baggrunds-API (Widgets til UniGetUI og Deling, port 7058)", + "Update WingetUI automatically": "Opdatér WingetUI automatisk", + "Reset WingetUI": "Nulstil WingetUI", + "WingetUI display language:": "WingetUI Sprog", + "Manage WingetUI autostart behaviour": "Administrer WingetUI's autostartadfærd", + "Enable WingetUI notifications": "Aktiver UniGetUI notifikationer", + "WingetUI Log": "WingetUI log", + "Show WingetUI": "Vis WingetUI", + "WingetUI Homepage": "WingetUI Startside", + "WingetUI Repository": "WingetUI Biblioteket", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI har været kørt som administrator, hvilket ikke anbefales. Når man kører UniGetUI som administrator vil ALLE handlinger startet fra UniGetUI have administratorrettigheder. Du kan stadig bruge programmet, men vi anbefaler kraftigt ikke at køre UniGetUI med administratorrettigheder.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Der er igangværende handlinger. Afslutning af UniGetUI kan betyde, at de mislykkes. Ønsker du at fortsætte?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakke har ingen skærmbilleder eller mangler ikonet? Bidrag til UniGetUI ved at tilføje manglende ikoner og skærmbilleder til vores åbne, offentlige database.", + "Restart WingetUI to fully apply changes": "Genstart WingetUI for at gennemføre ændringer", + "Restart WingetUI": "Genstart WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Administrer UniGetUI automatisk start-opførsel fra Indstillinger appen", "(Number {0} in the queue)": "(Nummer {0} i køen)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@mikkolukas, @yrjarv, @AAUCrisp, @siewers, @bstordrup", "0 packages found": "0 pakker fundet", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json index 96f5a53f48..d467f6af49 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_de.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Deinstallation abbrechen, wenn der Vorinstallationsbefehl fehlschlägt", "Command-line to run:": "Auszuführende Befehlszeile:", "Save and close": "Speichern und schließen", + "General": "Allgemein", + "Architecture & Location": "Architektur & Speicherort", + "Command-line": "Befehlszeile", + "Pre/Post install": "Vor-/Nachinstallation", "Run as admin": "Als Administrator ausführen", "Interactive installation": "Interaktiv installieren", "Skip hash check": "Hash-Prüfung überspringen", @@ -71,6 +75,8 @@ "Manage ignored updates": "Ignorierte Updates verwalten", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Die hier aufgeführten Pakete werden bei der Suche nach Updates nicht berücksichtigt. Doppelklicken Sie auf die Updates oder klicken Sie auf die Schaltfläche rechts neben ihnen, um ihre Updates nicht mehr zu ignorieren.", "Reset list": "Liste zurücksetzen", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Möchten Sie die Liste der ignorierten Updates wirklich zurücksetzen? Diese Aktion kann nicht rückgängig gemacht werden", + "No ignored updates": "Keine ignorierten Updates", "Package Name": "Paketname", "Package ID": "Paket-ID", "Ignored version": "Ignorierte Version", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Dieser Vorgang wird interaktiv durchgeführt.", "You will likely need to interact with the installer.": "Sie werden wahrscheinlich mit der Installation interagieren müssen.", "Integrity checks skipped": "Integritätsüberprüfungen übersprungen", + "Integrity checks will not be performed during this operation.": "Während dieses Vorgangs werden keine Integritätsprüfungen durchgeführt.", "Proceed at your own risk.": "Fortfahren auf eigenes Risiko", "Close": "Schließen", "Loading...": "Laden...", @@ -120,16 +127,17 @@ "optional": "optional", "UniGetUI {0} is ready to be installed.": "UniGetUI-Version {0} ist bereit zur Installation.", "The update process will start after closing UniGetUI": "Das Update wird nach dem Beenden von UniGetUI durchgeführt.", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI wurde als Administrator ausgeführt, was nicht empfohlen wird. Wenn UniGetUI als Administrator ausgeführt wird, wird JEDER von UniGetUI gestartete Vorgang mit Administratorrechten ausgeführt. Sie können das Programm weiterhin verwenden, wir empfehlen jedoch dringend, UniGetUI nicht mit Administratorrechten auszuführen.", "Share anonymous usage data": "Anonyme Nutzungsdaten teilen", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI sammelt anonyme Nutzungsdaten, um die Nutzererfahrung zu verbessern.", "Accept": "Akzeptieren", - "You have installed WingetUI Version {0}": "Sie haben die UniGetUI-Version {0} installiert.", + "You have installed UniGetUI Version {0}": "Sie haben die UniGetUI-Version {0} installiert.", "Disclaimer": "Haftungsausschluss", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI gehört zu keinem der kompatiblen Paketmanager. UniGetUI ist ein unabhängiges Projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wäre ohne die Hilfe der Mitwirkenden nicht möglich gewesen. Vielen Dank an alle 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI verwendet die folgenden Bibliotheken, ohne die UniGetUI nicht realisierbar gewesen wäre.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wäre ohne die Hilfe der Mitwirkenden nicht möglich gewesen. Vielen Dank an alle 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI verwendet die folgenden Bibliotheken, ohne die UniGetUI nicht realisierbar gewesen wäre.", "{0} homepage": "{0} Homepage", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI wurde dank freiwilliger Übersetzer in mehr als 40 Sprachen übersetzt. Vielen Dank 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI wurde dank freiwilliger Übersetzer in mehr als 40 Sprachen übersetzt. Vielen Dank 🤝", "Verbose": "Verbose", "1 - Errors": "1 – Fehler", "2 - Warnings": "2 – Warnungen", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Sie sind angemeldet als {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Super! Die Sicherungen werden in einen privaten Gist auf Ihrem Konto hochgeladen", "Select backup": "Sicherung auswählen", - "WingetUI Settings": "UniGetUI-Einstellungen", + "UniGetUI Settings": "UniGetUI-Einstellungen", "Allow pre-release versions": "Vorabversionen zulassen", "Apply": "Anwenden", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Aus Sicherheitsgründen sind benutzerdefinierte Befehlszeilenargumente standardmäßig deaktiviert. Gehen Sie zu den UniGetUI-Sicherheitseinstellungen, um dies zu ändern.", "Go to UniGetUI security settings": "Zu den UniGetUI-Sicherheitseinstellungen gehen", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Die folgenden Optionen werden standardmäßig angewendet, wenn ein {0}-Paket installiert, aktualisiert oder deinstalliert wird.", "Package's default": "Standardeinstellung des Pakets", @@ -160,6 +169,7 @@ "Username": "Benutzername", "Password": "Passwort", "Credentials": "Anmeldedaten", + "It is not guaranteed that the provided credentials will be stored safely": "Es kann nicht garantiert werden, dass die angegebenen Anmeldedaten sicher gespeichert werden", "Partially": "Teilweise", "Package manager": "Paketmanager", "Compatible with proxy": "Kompatibel mit Proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} ist aktiviert und bereit", "{pm} version:": "{pm}-Version:", "{pm} was not found!": "{pm} wurde nicht gefunden", - "You may need to install {pm} in order to use it with WingetUI.": "Sie müssen möglicherweise {pm} installieren, um es mit UniGetUI verwenden zu können.", - "Scoop Installer - WingetUI": "Scoop-Installer – UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop-Uninstaller – UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop-Cache leeren – UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Sie müssen möglicherweise {pm} installieren, um es mit UniGetUI verwenden zu können.", + "Scoop Installer - UniGetUI": "Scoop-Installer – UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop-Uninstaller – UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop-Cache leeren – UniGetUI", + "Restart UniGetUI to fully apply changes": "Starten Sie UniGetUI neu, um die Änderungen vollständig anzuwenden", "Restart UniGetUI": "UniGetUI neu starten", "Manage {0} sources": "{0}-Quellen verwalten", "Add source": "Quelle hinzufügen", "Add": "Hinzufügen", + "Source name": "Quellenname", + "Source URL": "Quell-URL", "Other": "Andere", + "No minimum age": "Kein Mindestalter", "1 day": "1 Tag", "{0} days": "{0} Tage", + "Custom...": "Benutzerdefiniert...", "{0} minutes": "{0} Minuten", "1 hour": "1 Stunde", "{0} hours": "{0} Stunden", "1 week": "1 Woche", - "WingetUI Version {0}": "UniGetUI-Version {0}", + "Supports release dates": "Unterstützt Veröffentlichungsdaten", + "Release date support per package manager": "Unterstützung von Veröffentlichungsdaten pro Paketmanager", + "UniGetUI Version {0}": "UniGetUI-Version {0}", "Search for packages": "Nach Paketen suchen", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Aktiviert", "Disabled": "Deaktiviert", "More info": "Mehr Infos", + "GitHub account": "GitHub-Konto", "Log in with GitHub to enable cloud package backup.": "Bei GitHub anmelden, um die Cloud-Paketsicherung zu aktivieren.", "More details": "Mehr Details", "Log in": "Anmelden", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Wenn Sie die Cloud-Sicherung aktiviert haben, wird sie als GitHub Gist auf diesem Konto gespeichert", "Log out": "Abmelden", + "About UniGetUI": "Über UniGetUI", "About": "Über", "Third-party licenses": "Drittanbieterlizenzen", "Contributors": "Mitwirkende", @@ -212,6 +231,7 @@ "Manage shortcuts": "Verknüpfungen verwalten", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI hat folgende Desktopverknüpfungen gefunden, die beim nächsten Update automatisch entfernt werden können", "Do you really want to reset this list? This action cannot be reverted.": "Möchten Sie wirklich diese Liste zurücksetzen? Diese Aktion kann nicht rückgängig getan werden.", + "Open in explorer": "Im Explorer öffnen", "Remove from list": "Aus der Liste entfernen", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Wenn neue Verknüpfungen erkannt werden, diese automatisch löschen, anstatt diesen Dialog anzuzeigen.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI sammelt anonyme Nutzungsdaten mit dem alleinigen Ziel, das Nutzererlebnis zu verstehen und zu verbessern.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Sind Sie damit einverstanden, dass UniGetUI anonyme Nutzungsstatistiken sammelt und übermittelt, mit dem alleinigen Zweck, die Nutzererfahrung zu verstehen und zu verbessern?", "Decline": "Ablehnen", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Persönliche Daten werden weder gesammelt noch gesendet, und die gesammelten Daten sind anonymisiert, sodass sie nicht zu Ihnen zurückverfolgt werden können.", - "About WingetUI": "Über UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI ist eine Anwendung, die das Verwalten Ihrer Software vereinfacht, indem sie eine vollumfängliche Oberfläche für Ihre Kommandozeilen-Paketmanager bereitstellt.", + "Toggle navigation panel": "Navigationsbereich umschalten", + "Minimize": "Minimieren", + "Maximize": "Maximieren", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI ist eine Anwendung, die das Verwalten Ihrer Software vereinfacht, indem sie eine vollumfängliche Oberfläche für Ihre Kommandozeilen-Paketmanager bereitstellt.", "Useful links": "Nützliche Links", + "UniGetUI Homepage": "UniGetUI-Homepage", "Report an issue or submit a feature request": "Ein Problem melden oder eine Funktionsanfrage stellen", + "UniGetUI Repository": "UniGetUI-Repository", "View GitHub Profile": "GitHub-Profil öffnen", - "WingetUI License": "UniGetUI-Lizenz", - "Using WingetUI implies the acceptation of the MIT License": "Die Verwendung von UniGetUI impliziert die Zustimmung zur MIT-Lizenz", + "UniGetUI License": "UniGetUI-Lizenz", + "Using UniGetUI implies the acceptation of the MIT License": "Die Verwendung von UniGetUI impliziert die Zustimmung zur MIT-Lizenz", "Become a translator": "Werden Sie Übersetzer", "View page on browser": "Seite im Browser öffnen", "Copy to clipboard": "In Zwischenablage kopieren", "Export to a file": "Als Datei exportieren", "Log level:": "Protokollebene:", "Reload log": "Protokoll neu laden", + "Export log": "Protokoll exportieren", + "UniGetUI Log": "UniGetUI-Protokoll", "Text": "Text", "Change how operations request administrator rights": "Festlegen, wie Vorgänge Administratorrechte anfordern", "Restrictions on package operations": "Beschränkungen für Paketvorgänge", @@ -271,7 +297,7 @@ "Leave empty for default": "Leer lassen für Standard", "Add a timestamp to the backup file names": "Zeitstempel an den Sicherungsdateinamen anhängen", "Backup and Restore": "Sichern und Wiederherstellen", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Hintergrund-API aktivieren (UniGetUI-Widgets und -Zugriff, Port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Hintergrund-API aktivieren (UniGetUI-Widgets und -Zugriff, Port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Mit der Ausführung von Aufgaben, die eine Internetverbindung erfordern, warten, bis das Gerät mit dem Internet verbunden ist.", "Disable the 1-minute timeout for package-related operations": "Einminütige Zeitüberschreitung für paketbezogene Vorgänge deaktivieren", "Use installed GSudo instead of UniGetUI Elevator": "Installiertes GSudo anstelle des UniGetUI-Elevators verwenden", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrie", "Manage UniGetUI settings": "UniGetUI-Einstellungen verwalten", "Related settings": "Verwandte Einstellungen", - "Update WingetUI automatically": "UniGetUI automatisch aktualisieren", + "Update UniGetUI automatically": "UniGetUI automatisch aktualisieren", "Check for updates": "Nach Updates suchen", "Install prerelease versions of UniGetUI": "Auch Vorabversionen von UniGetUI installieren", "Manage telemetry settings": "Telemetrieeinstellungen verwalten", @@ -295,17 +321,17 @@ "Import": "Importieren", "Export settings to a local file": "Einstellungen in lokale Datei exportieren", "Export": "Exportieren", - "Reset WingetUI": "UniGetUI zurücksetzen", "Reset UniGetUI": "UniGetUI zurücksetzen", "User interface preferences": "Bedienoberfläche", "Application theme, startup page, package icons, clear successful installs automatically": "Farbschema, Startseite, Paketsymbole, erfolgreiche Installationen automatisch leeren", "General preferences": "Allgemeines", - "WingetUI display language:": "UniGetUI-Anzeigesprache:", + "UniGetUI display language:": "UniGetUI-Anzeigesprache:", "Is your language missing or incomplete?": "Fehlt Ihre Sprache oder ist diese unvollständig?", "Appearance": "Darstellung", "UniGetUI on the background and system tray": "UniGetUI im Hintergrund und Infobereich", "Package lists": "Paketlisten", "Close UniGetUI to the system tray": "UniGetUI nach dem Schließen im Infobereich anzeigen", + "Manage UniGetUI autostart behaviour": "Autostartverhalten von UniGetUI verwalten", "Show package icons on package lists": "Paketsymbole in Paketlisten anzeigen", "Clear cache": "Cache leeren", "Select upgradable packages by default": "Pakete mit Updates automatisch auswählen", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Bitte beachten Sie, dass nicht alle Paketmanager diese Funktion vollständig unterstützen.", "Proxy URL": "Proxy-URL", "Enter proxy URL here": "Proxy-URL hier eingeben", + "Authenticate to the proxy with a user and a password": "Am Proxy mit Benutzername und Passwort authentifizieren", + "Internet and proxy settings": "Internet- und Proxy-Einstellungen", "Package manager preferences": "Paketmanager-Einstellungen", "Ready": "Bereit", "Not found": "Nicht gefunden", "Notification preferences": "Benachrichtigungen", "Notification types": "Benachrichtigungstypen", "The system tray icon must be enabled in order for notifications to work": "Das Symbol im Infobereich muss aktiviert sein, damit die Benachrichtigungen funktionieren.", - "Enable WingetUI notifications": "UniGetUI-Benachrichtigungen aktivieren", + "Enable UniGetUI notifications": "UniGetUI-Benachrichtigungen aktivieren", "Show a notification when there are available updates": "Benachrichtigung anzeigen, wenn Updates verfügbar sind", "Show a silent notification when an operation is running": "Stille Benachrichtigung anzeigen, wenn ein Vorgang ausgeführt wird", "Show a notification when an operation fails": "Benachrichtigung anzeigen, wenn ein Vorgang fehlschlägt", "Show a notification when an operation finishes successfully": "Benachrichtigung anzeigen, wenn ein Vorgang erfolgreich abgeschlossen wurde", "Concurrency and execution": "Parallele Ausführung", "Automatic desktop shortcut remover": "Desktopverknüpfung automatisch entfernen", + "Choose how many operations should be performed in parallel": "Wählen Sie aus, wie viele Vorgänge parallel ausgeführt werden sollen", "Clear successful operations from the operation list after a 5 second delay": "Erfolgreiche Vorgänge nach einer Verzögerung von 5 Sekunden aus der Liste entfernen", "Download operations are not affected by this setting": "Download-Vorgänge sind von dieser Einstellung nicht betroffen", "Try to kill the processes that refuse to close when requested to": "Prozesse nach Möglichkeit zwangsweise beenden, wenn sie sich nicht ordnungsgemäß schließen lassen.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Wählen Sie die auszuführende Datei aus. Die folgende Liste zeigt die von UniGetUI gefundenen ausführbaren Dateien.", "Current executable file:": "Aktuelle ausführbare Datei:", "Ignore packages from {pm} when showing a notification about updates": "Pakete von {pm} ignorieren, wenn eine Benachrichtigung über Updates angezeigt wird", + "Update security": "Update-Sicherheit", + "Use global setting": "Globale Einstellung verwenden", + "e.g. 10": "z. B. 10", + "{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", + "Override the global minimum update age for this package manager": "Das globale Mindestalter für Updates für diesen Paketmanager überschreiben", + "Minimum age for updates": "Mindestalter für Updates", + "Custom minimum age (days)": "Benutzerdefiniertes Mindestalter (Tage)", "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, ", "Advanced options": "Erweiterte Optionen", "Reset WinGet": "WinGet zurücksetzen", "This may help if no packages are listed": "Dies kann hilfreich sein, wenn keine Pakete aufgelistet sind", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Bereinigung von Scoop beim Start aktivieren", "Use system Chocolatey": "Systeminternes Chocolatey verwenden", "Default vcpkg triplet": "Standard vcpkg-Triplett", + "Change vcpkg root location": "vcpkg-Stammspeicherort ändern", "Language, theme and other miscellaneous preferences": "Sprache und andere Einstellungen", "Show notifications on different events": "Benachrichtigungen über verschiedene Ereignisse anzeigen", "Change how UniGetUI checks and installs available updates for your packages": "Legen Sie fest, wie UniGetUI nach verfügbaren Updates für Ihre Pakete sucht und installiert", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Updates nicht automatisch installieren, wenn die Netzwerkverbindung getaktet ist", "Do not automatically install updates when the device runs on battery": "Updates nicht automatisch installieren, wenn das Gerät im Akkubetrieb läuft", "Do not automatically install updates when the battery saver is on": "Updates nicht automatisch installieren, wenn der Energiesparmodus aktiviert ist", + "Only show updates that are at least the specified number of days old": "Nur Updates anzeigen, die mindestens die angegebene Anzahl von Tagen alt sind", "Change how UniGetUI handles install, update and uninstall operations.": "Festlegen, wie UniGetUI Installations-, Aktualisierungs- und Deinstallationsvorgänge durchführt.", "Package Managers": "Paketmanager", "More": "Mehr", - "WingetUI Log": "UniGetUI-Protokoll", "Package Manager logs": "Paketmanager-Protokolle", "Operation history": "Vorgangsverlauf", "Help": "Hilfe", + "Quit UniGetUI": "UniGetUI beenden", "Order by:": "Sortieren nach:", "Name": "Name", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Beide", "Exact match": "Exakter Treffer", "Show similar packages": "Ähnliche Pakete anzeigen", + "Nothing to share": "Nichts zu teilen", + "Please select a package first.": "Bitte wählen Sie zuerst ein Paket aus.", + "Share link copied": "Freigabelink kopiert", + "The share link for {0} has been copied to the clipboard.": "Der Freigabelink für {0} wurde in die Zwischenablage kopiert.", "No results were found matching the input criteria": "Es wurden keine Ergebnisse gefunden, die den eingegebenen Kriterien entsprechen.", "No packages were found": "Keine Pakete gefunden", "Loading packages": "Pakete werden geladen...", @@ -440,7 +483,11 @@ "Package bundle": "Paketbündel", "Could not create bundle": "Bündel konnte nicht erstellt werden", "The package bundle could not be created due to an error.": "Das Paketbündel konnte aufgrund eines Fehlers nicht erstellt werden.", + "Unsaved changes": "Nicht gespeicherte Änderungen", + "Discard changes": "Änderungen verwerfen", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Sie haben nicht gespeicherte Änderungen im aktuellen Bündel. Möchten Sie sie verwerfen?", "Bundle security report": "Bündel-Sicherheitsbericht", + "The bundle contained restricted content": "Das Bündel enthielt eingeschränkte Inhalte", "Hooray! No updates were found.": "Hurra! Es wurden keine Updates gefunden.", "Everything is up to date": "Alles ist auf dem neuesten Stand", "Uninstall selected packages": "Ausgewählte Pakete deinstallieren", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Der klassische Paketmanager für Windows. Dort finden Sie alles.
Enthält: Allgemeine Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Ein Repository mit Tools und ausführbaren Dateien, designt für das .NET-Ökosystem von Microsoft.
Enthält: .NET-bezogene Tools und Skripte", "NuPkg (zipped manifest)": "NuPkg (komprimiertes Manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Der fehlende Paketmanager für macOS (oder Linux).
Enthält: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node.js-Paketmanager. Enthält viele Bibliotheken und andere Dienstprogramme aus der JavaScript-Welt.
Enthält: Node JavaScript-Bibliotheken und andere zugehörige Dienstprogramme", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Paketmanager von Python. Enthält viele Python-Bibliotheken und andere mit Python verwandte Dienstprogramme.
Enthält: Python-Bibliotheken und zugehörige Dienstprogramme", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell-Paketmanager. Finden Sie Bibliotheken und Skripte zur Erweiterung der PowerShell-Funktionen.
Enthält: Module, Skripte, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Vorgang in Warteschlange (Position {0})...", "Click here for more details": "Hier klicken für mehr Details", "Operation canceled by user": "Vorgang vom Benutzer abgebrochen", + "Running PreOperation ({0}/{1})...": "PreOperation wird ausgeführt ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} von {1} ist fehlgeschlagen und als erforderlich markiert. Abbruch...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} von {1} wurde mit dem Ergebnis {2} abgeschlossen", "Starting operation...": "Vorgang starten...", + "Running PostOperation ({0}/{1})...": "PostOperation wird ausgeführt ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} von {1} ist fehlgeschlagen und als erforderlich markiert. Abbruch...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} von {1} wurde mit dem Ergebnis {2} abgeschlossen", "{package} installer download": "{package}-Installationsdatei wird heruntergeladen", "{0} installer is being downloaded": "{0}-Installationsdatei wird heruntergeladen", "Download succeeded": "Download erfolgreich", @@ -556,14 +610,12 @@ "Portable mode": "Portabler Modus", "DEBUG BUILD": "DEBUG-BUILD", "Available Updates": "Verfügbare Updates", - "Show WingetUI": "UniGetUI anzeigen", + "Show UniGetUI": "UniGetUI anzeigen", "Quit": "Beenden", "Attention required": "Aufmerksamkeit erforderlich", "Restart required": "Neustart erforderlich", "1 update is available": "1 Update verfügbar", "{0} updates are available": "{0} Updates verfügbar", - "WingetUI Homepage": "UniGetUI-Startseite", - "WingetUI Repository": "UniGetUI-Repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Hier können Sie das Verhalten von UniGetUI bezüglich der folgenden Verknüpfungen ändern. Wenn Sie ein Häkchen setzen, wird UniGetUI die Verknüpfung löschen, wenn sie bei einem zukünftigen Upgrade erstellt wird. Wenn Sie das Häkchen entfernen, bleibt die Verknüpfung bestehen.", "Manual scan": "Manueller Scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Vorhandene Verknüpfungen auf Ihrem Desktop werden gescannt, und Sie müssen auswählen, welche Sie behalten und welche Sie entfernen möchten.", @@ -583,7 +635,6 @@ "Restart later": "Später neu starten", "An error occurred:": "Ein Fehler ist aufgetreten:", "I understand": "Ich verstehe", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI wurde als Administrator ausgeführt, was nicht empfohlen wird. Wenn UniGetUI als Administrator ausgeführt wird, wird JEDER Vorgang in UniGetUI mit Administratorrechten ausgeführt. Sie können das Programm trotzdem verwenden, aber wir empfehlen dringend, UniGetUI nicht mit Administratorrechten auszuführen.", "WinGet was repaired successfully": "WinGet wurde erfolgreich repariert", "It is recommended to restart UniGetUI after WinGet has been repaired": "Es wird empfohlen, UniGetUI nach der Reparatur von WinGet neu zu starten", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "HINWEIS: Diese Funktion zur Fehlersuche kann in den Paketmanager-Einstellungen im Abschnitt „WinGet“ deaktiviert werden.", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Ihre Pakete wurden nun dem Bündel hinzugefügt. Sie können weitere Pakete hinzufügen oder das Bündel exportieren.", "Which backup do you want to open?": "Welche Sicherung möchten Sie öffnen?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Wählen Sie die Sicherung aus, die Sie öffnen möchten. Später können Sie überprüfen, welche Pakete/Programme Sie wiederherstellen möchten.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Laufende Vorgänge gefunden. Wenn Sie UniGetUI beenden, können diese fehlschlagen. Möchten Sie fortfahren?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Laufende Vorgänge gefunden. Wenn Sie UniGetUI beenden, können diese fehlschlagen. Möchten Sie fortfahren?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI oder einige seiner Komponenten fehlen oder sind beschädigt.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Es wird dringend empfohlen, UniGetUI neu zu installieren, um das Problem zu beheben.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Weitere Informationen zu den betroffenen Dateien finden Sie in den UniGetUI-Protokollen.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Geben Sie hier die Prozessnamen ein, getrennt durch Kommas (,)", "Unset or unknown": "Nicht festgelegt oder unbekannt", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Bitte prüfen Sie die Kommandozeilen-Ausgabe oder schauen Sie im Vorgangsverlauf nach, um weitere Informationen über den Fehler zu erhalten.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Dieses Paket hat keine Screenshots oder es fehlt ein Symbol? Unterstützen Sie UniGetUI, indem Sie die fehlenden Symbole und Screenshots zu unserer offenen, öffentlichen Datenbank hinzufügen.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Dieses Paket hat keine Screenshots oder es fehlt ein Symbol? Unterstützen Sie UniGetUI, indem Sie die fehlenden Symbole und Screenshots zu unserer offenen, öffentlichen Datenbank hinzufügen.", "Become a contributor": "Werden Sie Mitwirkender", "Save": "Speichern", "Update to {0} available": "Update auf {0} verfügbar", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Automatische WinGet-Fehlerbehebung aktivieren", "Enable an [experimental] improved WinGet troubleshooter": "Aktivieren einer [experimentellen] verbesserten WinGet-Fehlerbehebungsfunktion", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Updates, die mit der Meldung „kein anwendbares Update gefunden“ fehlschlagen, zur Liste der ignorierten Updates hinzufügen.", - "Restart WingetUI to fully apply changes": "Zum Anwenden der Änderungen UniGetUI neu starten", - "Restart WingetUI": "UniGetUI neu starten", "Invalid selection": "Ungültige Auswahl", "No package was selected": "Es wurde kein Paket ausgewählt.", "More than 1 package was selected": "Es wurde mehr als ein Paket ausgewählt.", @@ -684,6 +733,37 @@ "Log out failed: ": "Abmeldung fehlgeschlagen:", "Package backup settings": "Einstellungen für die Paketsicherung", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Über UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI ist eine Anwendung, die das Verwalten Ihrer Software vereinfacht, indem sie eine vollumfängliche Oberfläche für Ihre Kommandozeilen-Paketmanager bereitstellt.", + "You have installed WingetUI Version {0}": "Sie haben die UniGetUI-Version {0} installiert.", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wäre ohne die Hilfe der Mitwirkenden nicht möglich gewesen. Vielen Dank an alle 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI verwendet die folgenden Bibliotheken, ohne die UniGetUI nicht realisierbar gewesen wäre.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI wurde dank freiwilliger Übersetzer in mehr als 40 Sprachen übersetzt. Vielen Dank 🤝", + "WingetUI Settings": "UniGetUI-Einstellungen", + "You may need to install {pm} in order to use it with WingetUI.": "Sie müssen möglicherweise {pm} installieren, um es mit UniGetUI verwenden zu können.", + "Scoop Installer - WingetUI": "Scoop-Installer – UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop-Uninstaller – UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop-Cache leeren – UniGetUI", + "WingetUI Version {0}": "UniGetUI-Version {0}", + "WingetUI License": "UniGetUI-Lizenz", + "Using WingetUI implies the acceptation of the MIT License": "Die Verwendung von UniGetUI impliziert die Zustimmung zur MIT-Lizenz", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Hintergrund-API aktivieren (UniGetUI-Widgets und -Zugriff, Port 7058)", + "Update WingetUI automatically": "UniGetUI automatisch aktualisieren", + "Reset WingetUI": "UniGetUI zurücksetzen", + "WingetUI display language:": "UniGetUI-Anzeigesprache:", + "Manage WingetUI autostart behaviour": "Autostartverhalten von UniGetUI verwalten", + "Enable WingetUI notifications": "UniGetUI-Benachrichtigungen aktivieren", + "WingetUI Log": "UniGetUI-Protokoll", + "Show WingetUI": "UniGetUI anzeigen", + "WingetUI Homepage": "UniGetUI-Startseite", + "WingetUI Repository": "UniGetUI-Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI wurde als Administrator ausgeführt, was nicht empfohlen wird. Wenn UniGetUI als Administrator ausgeführt wird, wird JEDER Vorgang in UniGetUI mit Administratorrechten ausgeführt. Sie können das Programm trotzdem verwenden, aber wir empfehlen dringend, UniGetUI nicht mit Administratorrechten auszuführen.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Laufende Vorgänge gefunden. Wenn Sie UniGetUI beenden, können diese fehlschlagen. Möchten Sie fortfahren?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Dieses Paket hat keine Screenshots oder es fehlt ein Symbol? Unterstützen Sie UniGetUI, indem Sie die fehlenden Symbole und Screenshots zu unserer offenen, öffentlichen Datenbank hinzufügen.", + "Restart WingetUI to fully apply changes": "Zum Anwenden der Änderungen UniGetUI neu starten", + "Restart WingetUI": "UniGetUI neu starten", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Autostartverhalten von UniGetUI über die Einstellungen-App verwalten", "(Number {0} in the queue)": "(Position {0} in der Warteschlange)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Datacra5H, @ebnater, @Seeloewen, @michaelmairegger, @CanePlayz, @1270o1, @yrjarv, @alxhu-dev, @Araxxas, @martinwilco, @tkohlmeier, @TheScarfix, @VfBFan, @arnowelzel, @AbsolutLeon, @Xeraox3335, @lucadsign", "0 packages found": "0 Pakete gefunden", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json index a4b04739a6..3e573e3e41 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_el.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Διακοπή απεγκατάστασης εάν η εντολή πριν την απεγκατάσταση αποτύχει", "Command-line to run:": "Γραμμή εντολών για εκτέλεση:", "Save and close": "Αποθήκευση και κλείσιμο", + "General": "Γενικά", + "Architecture & Location": "Αρχιτεκτονική & Τοποθεσία", + "Command-line": "Γραμμή εντολών", + "Pre/Post install": "Πριν/Μετά την εγκατάσταση", "Run as admin": "Εκτέλεση ως διαχειριστής", "Interactive installation": "Διαδραστική εγκατάσταση", "Skip hash check": "Αγνόηση ελέγχου hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Διαχείριση αγνοημένων ενημερώσεων", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Τα πακέτα στη λίστα δε θα ληφθούν υπόψη κατά τον έλεγχο για ενημερώσεις. Πατήστε τα διπλά ή πατήστε στο κουμπί στα δεξιά τους για να σταματήσετε να αγνοείτε τις ενημερώσεις τους.", "Reset list": "Επαναφορά λίστας", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Θέλετε σίγουρα να επαναφέρετε τη λίστα αγνοημένων ενημερώσεων; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί", + "No ignored updates": "Δεν υπάρχουν αγνοημένες ενημερώσεις", "Package Name": "Όνομα Πακέτου", "Package ID": "Ταυτότητα Πακέτου", "Ignored version": "Αγνοημένη εκδοση", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Αυτή η λειτουργία εκτελείται διαδραστικά.", "You will likely need to interact with the installer.": "Πιθανόν, να χρειαστείτε να διαδράσετε με το πρόγραμμα εγκατάστασης", "Integrity checks skipped": "Οι έλεγχοι ακεραιότητας αγνοήθηκαν", + "Integrity checks will not be performed during this operation.": "Δεν θα πραγματοποιηθούν έλεγχοι ακεραιότητας κατά τη διάρκεια αυτής της λειτουργίας.", "Proceed at your own risk.": "Συνεχίστε με δική σας ευθύνη.", "Close": "Κλείσιμο", "Loading...": "Φόρτωση...", @@ -120,16 +127,17 @@ "optional": "προαιρετικό", "UniGetUI {0} is ready to be installed.": "Το UniGetUI {0} είναι έτοιμο για εγκατάσταση.", "The update process will start after closing UniGetUI": "Η διαδικασία ενημέρωσης θα εκκινήσει μετά το κλείσιμο του UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "Το UniGetUI εκτελέστηκε ως διαχειριστής, κάτι που δεν συνιστάται. Όταν το UniGetUI εκτελείται ως διαχειριστής, ΚΑΘΕ λειτουργία που ξεκινά από το UniGetUI θα έχει δικαιώματα διαχειριστή. Μπορείτε να συνεχίσετε να χρησιμοποιείτε το πρόγραμμα, αλλά συνιστούμε ανεπιφύλακτα να μην εκτελείτε το UniGetUI με δικαιώματα διαχειριστή.", "Share anonymous usage data": "Κοινή χρήση ανώνυμων δεδομένων χρήσης", "UniGetUI collects anonymous usage data in order to improve the user experience.": "Το UniGetUI συλλέγει ανώνυμα δεδομένα χρήσης ώστε να βελτιώσει την εμπειρία του χρήστη.", "Accept": "Αποδοχή", - "You have installed WingetUI Version {0}": "Έχετε εγκατεστημένη την έκδοση {0} του UniGetUI", + "You have installed UniGetUI Version {0}": "Έχετε εγκατεστημένη την έκδοση {0} του UniGetUI", "Disclaimer": "Δήλωση αποποίησης ευθυνών", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "Το UniGetUI δε σχετίζεται με κανέναν από τους συμβατούς διαχειριστές πακέτων. Το UniGetUI είναι ένα ανεξάρτητο έργο.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Το UniGetUI δε θα ήταν δυνατό χωρίς τη βοήθεια των συνεισφερόντων. Σας ευχαριστώ όλους 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Το UniGetUI χρησιμοποιεί τις ακόλουθες βιβλιοθήκες. Χωρίς αυτές, το UniGetUI δε θα υπήρχε.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Το UniGetUI δε θα ήταν δυνατό χωρίς τη βοήθεια των συνεισφερόντων. Σας ευχαριστώ όλους 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "Το UniGetUI χρησιμοποιεί τις ακόλουθες βιβλιοθήκες. Χωρίς αυτές, το UniGetUI δε θα υπήρχε.", "{0} homepage": "Αρχική σελίδα {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Το UniGetUI έχει μεταφραστεί σε περισσότερες από 40 γλώσσες χάρη στους εθελοντές μεταφραστές. Ευχαριστώ 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Το UniGetUI έχει μεταφραστεί σε περισσότερες από 40 γλώσσες χάρη στους εθελοντές μεταφραστές. Ευχαριστώ 🤝", "Verbose": "Πολύλογος", "1 - Errors": "1 - Σφάλματα", "2 - Warnings": "2 - Προειδοποιήσεις", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Εχετε συνδεθεί ως {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Ωραία! Τα αντίγραφα ασφαλείας θα μεταφορτωθούν σε ένα ιδιωτικό gist στον λογαριασμό σας.", "Select backup": "Επιλέξτε αντίγραφο ασφαλείας", - "WingetUI Settings": "Ρυθμίσεις UniGetUI", + "UniGetUI Settings": "Ρυθμίσεις UniGetUI", "Allow pre-release versions": "Να επιτρέπονται pre-release εκδόσεις ", "Apply": "Εφαρμογή", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Για λόγους ασφαλείας, τα προσαρμοσμένα ορίσματα γραμμής εντολών είναι απενεργοποιημένα από προεπιλογή. Μεταβείτε στις ρυθμίσεις ασφαλείας του UniGetUI για να το αλλάξετε.", "Go to UniGetUI security settings": "Μετάβαση στις ρυθμίσεις ασφαλείας του UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Οι ακόλουθες επιλογές θα εφαρμόζονται από προεπιλογή κάθε φορά που εγκαθίσταται, αναβαθμίζεται ή απεγκαθίσταται ένα πακέτο {0}.", "Package's default": "Προεπιλογή πακέτου", @@ -160,6 +169,7 @@ "Username": "Όνομα χρήστη", "Password": "Κωδικός πρόσβασης", "Credentials": "Διαπιστευτήρια", + "It is not guaranteed that the provided credentials will be stored safely": "Δεν είναι εγγυημένο ότι τα παρεχόμενα διαπιστευτήρια θα αποθηκευτούν με ασφάλεια", "Partially": "Τμηματικά", "Package manager": "Διαχειριστής πακέτων", "Compatible with proxy": "Συμβατό με διακομιστή", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "Το {pm} είναι ενεργοποιημένο και έτοιμο για χρήση", "{pm} version:": "Εκδοση {pm}:", "{pm} was not found!": "Το {pm} δεν βρέθηκε!", - "You may need to install {pm} in order to use it with WingetUI.": "Ίσως χρειαστεί να εγκαταστήσετε το {pm} για να το χρησιμοποιήσετε με το UniGetUI.", - "Scoop Installer - WingetUI": "Πρόγραμμα εγκατάστασης Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Πρόγραμμα απεγκατάστασης Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Εκκαθάριση μνήμης cache του Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Ίσως χρειαστεί να εγκαταστήσετε το {pm} για να το χρησιμοποιήσετε με το UniGetUI.", + "Scoop Installer - UniGetUI": "Πρόγραμμα εγκατάστασης Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Πρόγραμμα απεγκατάστασης Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Εκκαθάριση μνήμης cache του Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Επανεκκινήστε το UniGetUI για να εφαρμοστούν πλήρως οι αλλαγές", "Restart UniGetUI": "Επανεκκίνηση του UniGetUI", "Manage {0} sources": "Διαχείριση προελεύσεων {0}", "Add source": "Προσθήκη προέλευσης", "Add": "Προσθήκη", + "Source name": "Όνομα προέλευσης", + "Source URL": "URL προέλευσης", "Other": "Άλλο", + "No minimum age": "Χωρίς ελάχιστο όριο ηλικίας", "1 day": "1 ημέρα", "{0} days": "{0} ημέρες", + "Custom...": "Προσαρμοσμένο...", "{0} minutes": "{0} λεπτά", "1 hour": "1 ώρα", "{0} hours": "{0} ώρες", "1 week": "1 εβδομάδα", - "WingetUI Version {0}": "UniGetUI Εκδοση {0}", + "Supports release dates": "Υποστηρίζει ημερομηνίες έκδοσης", + "Release date support per package manager": "Υποστήριξη ημερομηνιών έκδοσης ανά διαχειριστή πακέτων", + "UniGetUI Version {0}": "UniGetUI Εκδοση {0}", "Search for packages": "Αναζήτηση πακέτων", "Local": "Τοπικό", "OK": "ΕΝΤΆΞΕΙ", @@ -200,11 +217,13 @@ "Enabled": "Ενεργοποιημένο", "Disabled": "Ανενεργό", "More info": "Περισσότερες πληροφορίες", + "GitHub account": "Λογαριασμός GitHub", "Log in with GitHub to enable cloud package backup.": "Συνδεθείτε με το GitHub για να ενεργοποιήσετε τη δημιουργία αντιγράφων ασφαλείας πακέτων στο cloud.", "More details": "Περισσότερες λεπτομέρειες", "Log in": "Σύνδεση", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Εάν έχετε ενεργοποιήσει τη δημιουργία αντιγράφων ασφαλείας στο cloud, θα αποθηκευτεί ως GitHub Gist σε αυτόν τον λογαριασμό.", "Log out": "Αποσύνδεση", + "About UniGetUI": "Σχετικά με το UniGetUI", "About": "Σχετικά", "Third-party licenses": "Αδειες τρίτων", "Contributors": "Συνεισφέροντες", @@ -212,6 +231,7 @@ "Manage shortcuts": "Διαχείριση συντομεύσεων", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Το UniGetUI ανίχνευσε τις ακόλουθες συντομεύσεις επιφάνειας εργασίας που μπορούν να απομακρυνθούν αυτόματα σε μελλοντικές αναβαθμίσεις", "Do you really want to reset this list? This action cannot be reverted.": "Θέλετε να επαναφέρεται αυτή τη λίστα; Αυτή η ενέργεια δεν είναι αναστρέψιμη.", + "Open in explorer": "Άνοιγμα στην Εξερεύνηση", "Remove from list": "Απομάκρυνση από τη λίστα", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Όταν νέες συντομεύσεις ανιχνεύονται θα διαγράφονται αυτόματα αντί για εμφάνιση αυτού του παραθύρου.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "Το UniGetUI συλλέγει ανώνυμα δεδομένα χρήσης με μοναδικό σκοπό κατανόησης και βελτίωσης της εμπειρίας χρήσης.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Αποδέχεστε ότι το UniGetUI συλλέγει και αποστέλλει ανώνυμα στατιστικά στοιχεία χρήσης, με μοναδικό σκοπό την κατανόηση και τη βελτίωση της εμπειρίας χρήστη;", "Decline": "Απόρριψη", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Καμιά προσωπική πληροφορία δε συλλέγεται ούτε αποστέλλεται και τα συλλεχθέντα δεδομένα είναι ανώνυμα, έτσι δεν μπορούν να αντιστοιχιστούν με εσάς.", - "About WingetUI": "Σχετικά με το UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Το UniGetUI είναι μια εφαρμογή που διευκολύνει τη διαχείριση του λογισμικού σας, παρέχοντας ένα γραφικό περιβάλλον χρήστη όλα σε ένα για τους διαχειριστές πακέτων γραμμής εντολών σας.", + "Toggle navigation panel": "Εναλλαγή πίνακα περιήγησης", + "Minimize": "Ελαχιστοποίηση", + "Maximize": "Μεγιστοποίηση", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Το UniGetUI είναι μια εφαρμογή που διευκολύνει τη διαχείριση του λογισμικού σας, παρέχοντας ένα γραφικό περιβάλλον χρήστη όλα σε ένα για τους διαχειριστές πακέτων γραμμής εντολών σας.", "Useful links": "Χρήσιμοι σύνδεσμοι", + "UniGetUI Homepage": "Αρχική σελίδα του UniGetUI", "Report an issue or submit a feature request": "Αναφέρετε ένα πρόβλημα ή υποβάλετε ένα αίτημα νέου χαρακτηριστικού", + "UniGetUI Repository": "Αποθετήριο UniGetUI", "View GitHub Profile": "Προβολή προφίλ στο GitHub", - "WingetUI License": "Αδεια UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Η χρήση του UniGetUI συνεπάγεται την αποδοχή της άδειας MIT", + "UniGetUI License": "Αδεια UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Η χρήση του UniGetUI συνεπάγεται την αποδοχή της άδειας MIT", "Become a translator": "Γίνετε μεταφραστής", "View page on browser": "Προβολή σελίδας στο φυλλομετρητή", "Copy to clipboard": "Αντιγραφή στο πρόχειρο", "Export to a file": "Εξαγωγή σε αρχείο", "Log level:": "Επίπεδο καταγραφής:", "Reload log": "Επαναφόρτωση αρχείου καταγραφής", + "Export log": "Εξαγωγή αρχείου καταγραφής", + "UniGetUI Log": "Αρχείο καταγραφής UniGetUI", "Text": "Κείμενο", "Change how operations request administrator rights": "Αλλαγή του τρόπου αίτησης για δικαιώματα διαχειριστή", "Restrictions on package operations": "Περιορισμοί στις λειτουργίες πακέτων", @@ -271,7 +297,7 @@ "Leave empty for default": "Αφήστε το κενό για προεπιλογή", "Add a timestamp to the backup file names": "Προσθήκη χρονοσφραγίδας στα ονόματα των αρχείων αντιγράφων ασφαλείας", "Backup and Restore": "Αντίγραφα ασφαλείας και επαναφορά", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ενεργοποίηση API παρασκηνίου (Widgets για UniGetUI και Κοινή Χρήση, θύρα 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Ενεργοποίηση API παρασκηνίου (Widgets για UniGetUI και Κοινή Χρήση, θύρα 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Περιμένετε να συνδεθεί η συσκευή στο διαδίκτυο πριν επιχειρήσετε να κάνετε εργασίες που απαιτούν σύνδεση στο Διαδίκτυο.", "Disable the 1-minute timeout for package-related operations": "Απενεργοποίηση χρονικού ορίου 1 λεπτού για λειτουργίες που σχετίζονται με πακέτα", "Use installed GSudo instead of UniGetUI Elevator": "Χρήση του εγκατεστημένου GSudo αντί για το UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Τηλεμετρία", "Manage UniGetUI settings": "Διαχείριση ρυθμίσεων UniGetUI", "Related settings": "Σχετικές ρυθμίσεις", - "Update WingetUI automatically": "Αυτόματη ενημέρωση UniGetUI", + "Update UniGetUI automatically": "Αυτόματη ενημέρωση UniGetUI", "Check for updates": "Έλεγχος για ενημερώσεις", "Install prerelease versions of UniGetUI": "Εγκατάσταση προδημοσιευμένων εκδόσεων του UniGetUI", "Manage telemetry settings": "Διαχείριση ρυθμίσεων τηλεμετρίας", @@ -295,17 +321,17 @@ "Import": "Εισαγωγή", "Export settings to a local file": "Εξαγωγή ρυθμίσεων σε τοπικό αρχείο", "Export": "Εξαγωγή", - "Reset WingetUI": "Επαναφορά του UniGetUI", "Reset UniGetUI": "Επαναφορά του UniGetUI", "User interface preferences": "Προτιμήσεις περιβάλλοντος χρήστη", "Application theme, startup page, package icons, clear successful installs automatically": "Θέμα εφαρμογής, σελίδα εκκίνησης, εικονίδια πακέτου, εκκαθάριση επιτυχών εγκαταστάσεων αυτόματα", "General preferences": "Γενικές προτιμήσεις", - "WingetUI display language:": "Γλώσσα εμφάνισης UniGetUI:", + "UniGetUI display language:": "Γλώσσα εμφάνισης UniGetUI:", "Is your language missing or incomplete?": "Η γλώσσα σας λείπει ή είναι ημιτελής;", "Appearance": "Εμφάνιση", "UniGetUI on the background and system tray": "Το UniGetUI στο υπόβαθρο και στη γραμμή εργασιών", "Package lists": "Λίστες πακέτων", "Close UniGetUI to the system tray": "Κλείσιμο του UniGetUI στη γραμμή εργασιών", + "Manage UniGetUI autostart behaviour": "Διαχείριση συμπεριφοράς αυτόματης εκκίνησης του UniGetUI", "Show package icons on package lists": "Εμφάνιση εικονιδίων πακέτων στις λίστες πακέτων", "Clear cache": "Εκκαθάριση μνήμης cache", "Select upgradable packages by default": "Επιλογή αναβαθμίσιμων πακέτων από προεπιλογή", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Σημειώστε ότι αυτό το το χαρακτηριστικό δεν υποστηρίζεται πλήρως από όλους τους διαχειριστές πακέτων", "Proxy URL": "URL διακομιστή", "Enter proxy URL here": "Εισαγωγή URL διακομιστή εδώ", + "Authenticate to the proxy with a user and a password": "Έλεγχος ταυτότητας στον διακομιστή μεσολάβησης με όνομα χρήστη και κωδικό πρόσβασης", + "Internet and proxy settings": "Ρυθμίσεις διαδικτύου και διακομιστή μεσολάβησης", "Package manager preferences": "Προτιμήσεις διαχειριστή πακέτων", "Ready": "Ετοιμο", "Not found": "Δεν βρέθηκε", "Notification preferences": "Προτιμήσεις ειδοποιήσεων", "Notification types": "Τύποι ειδοποιήσεων", "The system tray icon must be enabled in order for notifications to work": "Το εικονίδιο στη γραμμή εργασιών πρέπει να ενεργοποιηθεί ώστε να δουλεύουν οι ειδοποιήσεις", - "Enable WingetUI notifications": "Ενεργοποίηση ειδοποιήσεων UniGetUI", + "Enable UniGetUI notifications": "Ενεργοποίηση ειδοποιήσεων UniGetUI", "Show a notification when there are available updates": "Εμφάνιση ειδοποίησης όταν υπάρχουν διαθέσιμες ενημερώσεις", "Show a silent notification when an operation is running": "Εμφάνιση σιωπηλής ειδοποίησης όταν εκτελείται μια λειτουργία", "Show a notification when an operation fails": "Εμφάνιση ειδοποίησης όταν μια λειτουργία αποτυγχάνει", "Show a notification when an operation finishes successfully": "Εμφάνιση ειδοποίησης όταν μια λειτουργία ολοκληρώνεται επιτυχώς", "Concurrency and execution": "Συγχρονισμός και εκτέλεση", "Automatic desktop shortcut remover": "Αυτόματο πρόγραμμα απομάκρυνσης συντόμευσης επιφάνειας εργασίας", + "Choose how many operations should be performed in parallel": "Επιλέξτε πόσες λειτουργίες πρέπει να εκτελούνται παράλληλα", "Clear successful operations from the operation list after a 5 second delay": "Εκκαθάριση επιτυχώς ολοκληρωμένων λειτουργιών από τη λίστα λειτουργιών μετά από καθυστέρηση 5 δευτερολέπτων", "Download operations are not affected by this setting": "Οι λειτουργίες λήψης δεν επηρεάζονται από αυτή τη ρύθμιση", "Try to kill the processes that refuse to close when requested to": "Προσπάθεια αναγκαστικού τερματισμού των διεργασιών που αρνούνται να κλείσουν όταν τους ζητηθεί", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Επιλέξτε το εκτελέσιμο αρχείο που θα χρησιμοποιηθεί. Η ακόλουθη λίστα εμφανίζει τα εκτελέσιμα αρχεία που βρέθηκαν από το UniGetUI", "Current executable file:": "Τρέχον εκτελέσιμο αρχείο:", "Ignore packages from {pm} when showing a notification about updates": "Αγνόηση πακέτων από το {pm} όταν εμφανίζεται ειδοποίηση για ενημερώσεις", + "Update security": "Ασφάλεια ενημερώσεων", + "Use global setting": "Χρήση καθολικής ρύθμισης", + "e.g. 10": "π.χ. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "Το {pm} δεν παρέχει ημερομηνίες έκδοσης για τα πακέτα του, επομένως αυτή η ρύθμιση δεν θα έχει κανένα αποτέλεσμα", + "Override the global minimum update age for this package manager": "Παράκαμψη της καθολικής ελάχιστης ηλικίας ενημέρωσης για αυτόν τον διαχειριστή πακέτων", + "Minimum age for updates": "Ελάχιστη ηλικία για ενημερώσεις", + "Custom minimum age (days)": "Προσαρμοσμένη ελάχιστη ηλικία (ημέρες)", "View {0} logs": "Δείτε {0} καταγραφές", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Αν δεν είναι δυνατός ο εντοπισμός του Python ή δεν εμφανίζει πακέτα αλλά είναι εγκατεστημένο στο σύστημα, ", "Advanced options": "Επιλογές για προχωρημένους", "Reset WinGet": "Επαναφορά του WinGet", "This may help if no packages are listed": "Αυτό μπορεί να βοηθήσει αν κανένα πακέτο δεν εμφανίζεται", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Ενεργοποίηση εκκαθάρισης Scoop κατά την εκκίνηση", "Use system Chocolatey": "Χρήση Chocolatey συστήματος", "Default vcpkg triplet": "Προεπιλεγμένο vcpkg triplet", + "Change vcpkg root location": "Αλλαγή τοποθεσίας ρίζας του vcpkg", "Language, theme and other miscellaneous preferences": "Γλώσσα, θέμα και διάφορες άλλες προτιμήσεις", "Show notifications on different events": "Εμφάνιση ειδοποιήσεων για διαφορετικά συμβάντα", "Change how UniGetUI checks and installs available updates for your packages": "Αλλαγή του τρόπου με τον οποίο το UniGetUI ελέγχει και εγκαθιστά τις διαθέσιμες ενημερώσεις για τα πακέτα σας", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Να μη γίνεται αυτόματη εγκατάσταση ενημερώσεων όταν η σύνδεση στο διαδίκτυο είναι περιορισμένη", "Do not automatically install updates when the device runs on battery": "Να μη γίνεται αυτόματη εγκατάσταση ενημερώσεων όταν η συσκευή είναι σε λειτουργία μπαταρίας", "Do not automatically install updates when the battery saver is on": "Να μη γίνεται αυτόματη εγκατάσταση ενημερώσεων όταν η εξοικονόμηση μπαταρίας είναι ενεργή", + "Only show updates that are at least the specified number of days old": "Εμφάνιση μόνο ενημερώσεων που έχουν ηλικία τουλάχιστον τον καθορισμένο αριθμό ημερών", "Change how UniGetUI handles install, update and uninstall operations.": "Αλλαγή του χειρισμού της εγκατάστασης, της ενημέρωσης και της απεγκατάστασης από το UniGetUI.", "Package Managers": "Διαχειριστές πακέτων", "More": "Περισσότερα", - "WingetUI Log": "Αρχείο καταγραφής UniGetUI", "Package Manager logs": "Αρχεία καταγραφής διαχειριστή πακέτων", "Operation history": "Ιστορικό εργασιών", "Help": "Βοήθεια", + "Quit UniGetUI": "Έξοδος από το UniGetUI", "Order by:": "Ταξινόμηση κατά:", "Name": "Όνομα", "Id": "Ταυτότητα", @@ -409,6 +448,10 @@ "Both": "Και τα δύο", "Exact match": "Ακριβές ταίριασμα", "Show similar packages": "Εμφάνιση παρόμοιων πακέτων", + "Nothing to share": "Δεν υπάρχει τίποτα για κοινοποίηση", + "Please select a package first.": "Παρακαλώ επιλέξτε πρώτα ένα πακέτο.", + "Share link copied": "Ο σύνδεσμος κοινοποίησης αντιγράφηκε", + "The share link for {0} has been copied to the clipboard.": "Ο σύνδεσμος κοινοποίησης για το {0} έχει αντιγραφεί στο πρόχειρο.", "No results were found matching the input criteria": "Δε βρέθηκαν αποτελέσματα που να ταιριάζουν με αυτά τα κριτήρια", "No packages were found": "Δε βρέθηκαν πακέτα", "Loading packages": "Φόρτωση πακέτων", @@ -440,7 +483,11 @@ "Package bundle": "Συλλογή πακέτων", "Could not create bundle": "Αδύνατη η δημιουργία της συλλογής", "The package bundle could not be created due to an error.": "Η συλλογή πακέτων δεν μπορεί να δημιουργηθεί λόγω σφάλματος.", + "Unsaved changes": "Μη αποθηκευμένες αλλαγές", + "Discard changes": "Απόρριψη αλλαγών", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Υπάρχουν μη αποθηκευμένες αλλαγές στην τρέχουσα συλλογή. Θέλετε να τις απορρίψετε;", "Bundle security report": "Αναφορά ασφαλείας συλλογής", + "The bundle contained restricted content": "Η συλλογή περιείχε περιορισμένο περιεχόμενο", "Hooray! No updates were found.": "Συγχαρητήρια! Δε βρέθηκαν ενημερώσεις!", "Everything is up to date": "Ολα είναι ενημερωμένα", "Uninstall selected packages": "Απεγκατάσταση επιλεγμένων πακέτων", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Ο κλασικός διαχειριστής πακέτων για windows. Θα βρείτε τα πάντα εκεί.
Περιέχει: Γενικό λογισμικό", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Ενα αποθετήριο γεμάτο εργαλεία και εκτελέσιμα αρχεία σχεδιασμένο με βάση το οικοσύστημα .NET της Microsoft.
Περιέχει: Εργαλεία και κώδικες σχετικά με το .NET", "NuPkg (zipped manifest)": "NuPkg (συμπιεσμένο manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Ο ελλείπων διαχειριστής πακέτων για macOS (ή Linux).
Περιέχει: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Διαχειριστής πακέτων του Node JS. Γεμάτος βιβλιοθήκες και άλλα βοηθητικά προγράμματα σε τροχιά γύρω από τον κόσμο της javascript
Περιέχει: Βιβλιοθήκες Node javascript και άλλα σχετικά βοηθητικά προγράμματα", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Διαχειριστής βιβλιοθηκών της Python. Γεμάτος με βιβλιοθήκες της python και άλλα βοηθητικά προγράμματα που σχετίζονται με την python
Περιέχει: Βιβλιοθήκες Python και σχετικά βοηθητικά προγράμματα", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Διαχειριστής πακέτων του PowerShell. Βρείτε βιβλιοθήκες και κώδικες για να επεκτείνετε τις δυνατότητες του PowerShell
Περιέχει: Ενότητες, Κώδικες, Σύνολα εντολών", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Η εργασία είναι σε σειρά προτεραιότητας (θέση {0})...", "Click here for more details": "Πατήστε εδώ για περισσότερες λεπτομέρειες", "Operation canceled by user": "Η λειτουργία ακυρώθηκε από τον χρήστη", + "Running PreOperation ({0}/{1})...": "Εκτέλεση PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Το PreOperation {0} από {1} απέτυχε και είχε επισημανθεί ως απαραίτητο. Ματαίωση...", + "PreOperation {0} out of {1} finished with result {2}": "Το PreOperation {0} από {1} ολοκληρώθηκε με αποτέλεσμα {2}", "Starting operation...": "Εκκίνηση λειτουργίας...", + "Running PostOperation ({0}/{1})...": "Εκτέλεση PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Το PostOperation {0} από {1} απέτυχε και είχε επισημανθεί ως απαραίτητο. Ματαίωση...", + "PostOperation {0} out of {1} finished with result {2}": "Το PostOperation {0} από {1} ολοκληρώθηκε με αποτέλεσμα {2}", "{package} installer download": "Το πρόγραμμα εγκατάστασης {package} λαμβάνεται", "{0} installer is being downloaded": "{0} πρόγραμμα εγκατάστασης λαμβάνεται", "Download succeeded": "Η λήψη ολοκληρώθηκε επιτυχώς", @@ -556,14 +610,12 @@ "Portable mode": "Λειτουργία Portable (φορητή)", "DEBUG BUILD": "ΔΟΜΗ ΑΠΟΣΦΑΛΜΑΤΩΣΗΣ", "Available Updates": "Διαθέσιμες Ενημερώσεις", - "Show WingetUI": "Εμφάνιση του UniGetUI", + "Show UniGetUI": "Εμφάνιση του UniGetUI", "Quit": "Έξοδος", "Attention required": "Απαιτείται προσοχή", "Restart required": "Απαιτείται επανεκκίνηση", "1 update is available": "1 ενημέρωση είναι διαθέσιμη", "{0} updates are available": "{0} ενημερώσεις είναι διαθέσιμες", - "WingetUI Homepage": "Αρχική σελίδα UniGetUI", - "WingetUI Repository": "Αποθετήριο UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Εδώ μπορείτε να αλλάξετε τη συμπεριφορά του UniGetUI αναφορικά με τις ακόλουθες συντομεύσεις. Ο έλεγχος μιας συντόμευσης θα κάνει το UniGetUI να τη διαγράψει αν δημιουργηθεί σε μελλοντική αναβάθμιση. Ο μή έλεγχός της θα διατηρήσεις τη συντόμευση ανέπαφη", "Manual scan": "Χειροκίνητη σάρωση", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Οι υπάρχουσες συντομεύσεις στην επιφάνεια εργασίας σας θα σαρωθούν και θα πρέπει να επιλέξετε ποιες θα διατηρήσετε και ποιες θα απομακρύνετε.", @@ -583,7 +635,6 @@ "Restart later": "Επανεκκίνηση αργότερα", "An error occurred:": "Παρουσιάστηκε σφάλμα:", "I understand": "Το κατάλαβα", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Το UniGetUI έχει εκτελεστεί με δικαιώματα διαχειριστή, κάτι που δεν συνιστάται. Οταν εκτελείτε το UniGetUI ως διαχειριστής, ΚΑΘΕ λειτουργία που ξεκινά από το UniGetUI θα έχει δικαιώματα διαχειριστή. Μπορείτε ακόμα να χρησιμοποιήσετε το πρόγραμμα, αλλά συνιστούμε ανεπιφύλακτα να μην εκτελείτε το WingetUI με δικαιώματα διαχειριστή.", "WinGet was repaired successfully": "Το WinGet επισκευάστηκε επιτυχώς", "It is recommended to restart UniGetUI after WinGet has been repaired": "Προτείνεται η επανεκκίνηση του UniGetUI μετά την επισκευή του WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ΣΗΜΕΙΩΣΗ: Το πρόγραμμα αντιμετώπισης προβλημάτων μπορεί να απενεργοποιηθεί από τις ρυθμίσεις του UniGetUI, στον τομέα WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Τα πακέτα σας θα έχουν προστεθεί στη συλλογή. Μπορείτε να συνεχίσετε να προσθέτετε πακέτα ή να εξάγετε τη συλλογή.", "Which backup do you want to open?": "Ποιο αντίγραφο ασφαλείας θέλετε να ανοίξετε;", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Επιλέξτε το αντίγραφο ασφαλείας που θέλετε να ανοίξετε. Αργότερα, θα μπορείτε να ελέγξετε ποια πακέτα θέλετε να εγκαταστήσετε.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Υπάρχουν εργασίες σε εξέλιξη. Η διακοπή του UniGetUI μπορεί να προκαλέσει την αποτυχία τους. Θέλετε να συνεχίσετε;", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Υπάρχουν εργασίες σε εξέλιξη. Η διακοπή του UniGetUI μπορεί να προκαλέσει την αποτυχία τους. Θέλετε να συνεχίσετε;", "UniGetUI or some of its components are missing or corrupt.": "Το UniGetUI ή ορισμένα από τα στοιχεία του λείπουν ή είναι κατεστραμμένα.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Συνιστάται ανεπιφύλακτα να επανεγκαταστήσετε το UniGetUI για να αντιμετωπίσετε το πρόβλημα.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Ανατρέξτε στα αρχεία καταγραφής UniGetUI για να λάβετε περισσότερες λεπτομέρειες σχετικά με τα αρχεία που επηρεάζονται.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Γράψτε εδώ τα ονόματα των διεργασιών, διαχωρισμένα με κόμματα (,)", "Unset or unknown": "Μη ορισμένο ή άγνωστο", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Δείτε τον Κώδικα της Γραμμής Εντολών ή ανατρέξτε στο Ιστορικό Εργασιών για περισσότερες πληροφορίες σχετικά με το ζήτημα.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Αυτό το πακέτο δεν έχει στιγμιότυπα οθόνης ή λείπει το εικονίδιο; Συνεισφέρετε στο UniGetUI προσθέτοντας τα εικονίδια και τα στιγμιότυπα οθόνης που λείπουν στην ανοιχτή, δημόσια βάση δεδομένων μας.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Αυτό το πακέτο δεν έχει στιγμιότυπα οθόνης ή λείπει το εικονίδιο; Συνεισφέρετε στο UniGetUI προσθέτοντας τα εικονίδια και τα στιγμιότυπα οθόνης που λείπουν στην ανοιχτή, δημόσια βάση δεδομένων μας.", "Become a contributor": "Γίνετε συνεισφέρων", "Save": "Αποθήκευση", "Update to {0} available": "Υπάρχει διαθέσιμη ενημέρωση για το {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Ενεργοποίηση του προγράμματος αυτόματης αντιμετώπισης προβλημάτων του WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Ενεργοποίηση ενός [εμπειρικού] βελτιωμένου προγράμματος αντιμετώπισης προβλημάτων του UniGetUI", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Προσθήκη ενημερώσεων που απέτυχαν με την ετικέτα «δε βρέθηκε καμιά ενημέρωση εφαρμογής» στη λίστα αγνόησης ενημερώσεων", - "Restart WingetUI to fully apply changes": "Επανεκκίνηση του UniGetUI για πλήρη εφαρμογή των αλλαγών", - "Restart WingetUI": "Επανεκκίνηση του UniGetUI", "Invalid selection": "Μη έγκυρη επιλογή", "No package was selected": "Δεν επιλέχθηκε κανένα πακέτο", "More than 1 package was selected": "Επιλέχθηκαν περισσότερα από 1 πακέτα", @@ -684,6 +733,37 @@ "Log out failed: ": "Η αποσύνδεση απέτυχε:", "Package backup settings": "Ρυθμίσεις αντιγράφου ασφαλείας πακέτου", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Σχετικά με το UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Το UniGetUI είναι μια εφαρμογή που διευκολύνει τη διαχείριση του λογισμικού σας, παρέχοντας ένα γραφικό περιβάλλον χρήστη όλα σε ένα για τους διαχειριστές πακέτων γραμμής εντολών σας.", + "You have installed WingetUI Version {0}": "Έχετε εγκατεστημένη την έκδοση {0} του UniGetUI", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Το UniGetUI δε θα ήταν δυνατό χωρίς τη βοήθεια των συνεισφερόντων. Σας ευχαριστώ όλους 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Το UniGetUI χρησιμοποιεί τις ακόλουθες βιβλιοθήκες. Χωρίς αυτές, το UniGetUI δε θα υπήρχε.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Το UniGetUI έχει μεταφραστεί σε περισσότερες από 40 γλώσσες χάρη στους εθελοντές μεταφραστές. Ευχαριστώ 🤝", + "WingetUI Settings": "Ρυθμίσεις UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Ίσως χρειαστεί να εγκαταστήσετε το {pm} για να το χρησιμοποιήσετε με το UniGetUI.", + "Scoop Installer - WingetUI": "Πρόγραμμα εγκατάστασης Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Πρόγραμμα απεγκατάστασης Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Εκκαθάριση μνήμης cache του Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Εκδοση {0}", + "WingetUI License": "Αδεια UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Η χρήση του UniGetUI συνεπάγεται την αποδοχή της άδειας MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ενεργοποίηση API παρασκηνίου (Widgets για UniGetUI και Κοινή Χρήση, θύρα 7058)", + "Update WingetUI automatically": "Αυτόματη ενημέρωση UniGetUI", + "Reset WingetUI": "Επαναφορά του UniGetUI", + "WingetUI display language:": "Γλώσσα εμφάνισης UniGetUI:", + "Manage WingetUI autostart behaviour": "Διαχείριση συμπεριφοράς αυτόματης εκκίνησης του UniGetUI", + "Enable WingetUI notifications": "Ενεργοποίηση ειδοποιήσεων UniGetUI", + "WingetUI Log": "Αρχείο καταγραφής UniGetUI", + "Show WingetUI": "Εμφάνιση του UniGetUI", + "WingetUI Homepage": "Αρχική σελίδα UniGetUI", + "WingetUI Repository": "Αποθετήριο UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Το UniGetUI έχει εκτελεστεί με δικαιώματα διαχειριστή, κάτι που δεν συνιστάται. Οταν εκτελείτε το UniGetUI ως διαχειριστής, ΚΑΘΕ λειτουργία που ξεκινά από το UniGetUI θα έχει δικαιώματα διαχειριστή. Μπορείτε ακόμα να χρησιμοποιήσετε το πρόγραμμα, αλλά συνιστούμε ανεπιφύλακτα να μην εκτελείτε το WingetUI με δικαιώματα διαχειριστή.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Υπάρχουν εργασίες σε εξέλιξη. Η διακοπή του UniGetUI μπορεί να προκαλέσει την αποτυχία τους. Θέλετε να συνεχίσετε;", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Αυτό το πακέτο δεν έχει στιγμιότυπα οθόνης ή λείπει το εικονίδιο; Συνεισφέρετε στο UniGetUI προσθέτοντας τα εικονίδια και τα στιγμιότυπα οθόνης που λείπουν στην ανοιχτή, δημόσια βάση δεδομένων μας.", + "Restart WingetUI to fully apply changes": "Επανεκκίνηση του UniGetUI για πλήρη εφαρμογή των αλλαγών", + "Restart WingetUI": "Επανεκκίνηση του UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Διαχειριστείτε τη συμπεριφορά αυτόματης εκκίνησης του UniGetUI από την εφαρμογή Ρυθμίσεις", "(Number {0} in the queue)": "(Αριθμός {0} στην ουρά)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@antwnhsx, @wobblerrrgg, @thunderstrike116, @seijind, @panos78", "0 packages found": "Βρέθηκαν 0 πακέτα", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json index d10937885a..89aa4410f1 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_en.json @@ -131,13 +131,13 @@ "Share anonymous usage data": "Share anonymous usage data", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI collects anonymous usage data in order to improve the user experience.", "Accept": "Accept", - "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "You have installed UniGetUI Version {0}": "You have installed UniGetUI Version {0}", "Disclaimer": "Disclaimer", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI Uses the following libraries. Without them, UniGetUI wouldn't have been possible.", "{0} homepage": "{0} homepage", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", "Verbose": "Verbose", "1 - Errors": "1 - Errors", "2 - Warnings": "2 - Warnings", @@ -157,7 +157,7 @@ "You are logged in as {0} (@{1})": "You are logged in as {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Nice! Backups will be uploaded to a private gist on your account", "Select backup": "Select backup", - "WingetUI Settings": "UniGetUI Settings", + "UniGetUI Settings": "UniGetUI Settings", "Allow pre-release versions": "Allow pre-release versions", "Apply": "Apply", "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.", @@ -185,10 +185,10 @@ "{pm} is enabled and ready to go": "{pm} is enabled and ready to go", "{pm} version:": "{pm} version:", "{pm} was not found!": "{pm} was not found!", - "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", - "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", - "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Clearing Scoop cache - UniGetUI", "Restart UniGetUI to fully apply changes": "Restart UniGetUI to fully apply changes", "Restart UniGetUI": "Restart UniGetUI", "Manage {0} sources": "Manage {0} sources", @@ -207,11 +207,11 @@ "1 week": "1 week", "Supports release dates": "Supports release dates", "Release date support per package manager": "Release date support per package manager", - "WingetUI Version {0}": "UniGetUI Version {0}", + "UniGetUI Version {0}": "UniGetUI Version {0}", "Search for packages": "Search for packages", "Local": "Local", "OK": "OK", - "{0} packages were found, {1} of which match the specified filters.": "{1} packages were found, {0} of which match the specified filters.", + "{0} packages were found, {1} of which match the specified filters.": "{0} packages were found, {1} of which match the specified filters.", "{0} selected": "{0} selected", "(Last checked: {0})": "(Last checked: {0})", "Enabled": "Enabled", @@ -242,15 +242,14 @@ "Toggle navigation panel": "Toggle navigation panel", "Minimize": "Minimize", "Maximize": "Maximize", - "About WingetUI": "About UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", "Useful links": "Useful links", "UniGetUI Homepage": "UniGetUI Homepage", "Report an issue or submit a feature request": "Report an issue or submit a feature request", "UniGetUI Repository": "UniGetUI Repository", "View GitHub Profile": "View GitHub Profile", - "WingetUI License": "UniGetUI License", - "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "UniGetUI License": "UniGetUI License", + "Using UniGetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", "Become a translator": "Become a translator", "View page on browser": "View page on browser", "Copy to clipboard": "Copy to clipboard", @@ -270,7 +269,7 @@ "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.", "Allow custom command-line arguments": "Allow custom command-line arguments", "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Allow custom pre-install and post-install commands to be run", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Ignore custom pre-install and post-install commands when importing packages from a bundle", "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully", "Allow changing the paths for package manager executables": "Allow changing the paths for package manager executables", "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous", @@ -298,7 +297,7 @@ "Leave empty for default": "Leave empty for default", "Add a timestamp to the backup file names": "Add a timestamp to the backup file names", "Backup and Restore": "Backup and Restore", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.", "Disable the 1-minute timeout for package-related operations": "Disable the 1-minute timeout for package-related operations", "Use installed GSudo instead of UniGetUI Elevator": "Use installed GSudo instead of UniGetUI Elevator", @@ -313,7 +312,7 @@ "Telemetry": "Telemetry", "Manage UniGetUI settings": "Manage UniGetUI settings", "Related settings": "Related settings", - "Update WingetUI automatically": "Update UniGetUI automatically", + "Update UniGetUI automatically": "Update UniGetUI automatically", "Check for updates": "Check for updates", "Install prerelease versions of UniGetUI": "Install prerelease versions of UniGetUI", "Manage telemetry settings": "Manage telemetry settings", @@ -322,18 +321,17 @@ "Import": "Import", "Export settings to a local file": "Export settings to a local file", "Export": "Export", - "Reset WingetUI": "Reset UniGetUI", "Reset UniGetUI": "Reset UniGetUI", "User interface preferences": "User interface preferences", "Application theme, startup page, package icons, clear successful installs automatically": "Application theme, startup page, package icons, clear successful installs automatically", "General preferences": "General preferences", - "WingetUI display language:": "UniGetUI display language:", + "UniGetUI display language:": "UniGetUI display language:", "Is your language missing or incomplete?": "Is your language missing or incomplete?", "Appearance": "Appearance", "UniGetUI on the background and system tray": "UniGetUI on the background and system tray", "Package lists": "Package lists", "Close UniGetUI to the system tray": "Close UniGetUI to the system tray", - "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Manage UniGetUI autostart behaviour": "Manage UniGetUI autostart behaviour", "Show package icons on package lists": "Show package icons on package lists", "Clear cache": "Clear cache", "Select upgradable packages by default": "Select upgradable packages by default", @@ -361,7 +359,7 @@ "Notification preferences": "Notification preferences", "Notification types": "Notification types", "The system tray icon must be enabled in order for notifications to work": "The system tray icon must be enabled in order for notifications to work", - "Enable WingetUI notifications": "Enable UniGetUI notifications", + "Enable UniGetUI notifications": "Enable UniGetUI notifications", "Show a notification when there are available updates": "Show a notification when there are available updates", "Show a silent notification when an operation is running": "Show a silent notification when an operation is running", "Show a notification when an operation fails": "Show a notification when an operation fails", @@ -415,7 +413,6 @@ "Enable and disable package managers, change default install options, etc.": "Enable and disable package managers, change default install options, etc.", "Internet connection settings": "Internet connection settings", "Proxy settings, etc.": "Proxy settings, etc.", - "UniGetUI Settings": "UniGetUI Settings", "Beta features and other options that shouldn't be touched": "Beta features and other options that shouldn't be touched", "Update checking": "Update checking", "Automatic updates": "Automatic updates", @@ -429,7 +426,6 @@ "Change how UniGetUI handles install, update and uninstall operations.": "Change how UniGetUI handles install, update and uninstall operations.", "Package Managers": "Package Managers", "More": "More", - "WingetUI Log": "WingetUI Log", "Package Manager logs": "Package Manager logs", "Operation history": "Operation history", "Help": "Help", @@ -614,14 +610,12 @@ "Portable mode": "Portable mode\n", "DEBUG BUILD": "DEBUG BUILD", "Available Updates": "Available Updates", - "Show WingetUI": "Show UniGetUI", + "Show UniGetUI": "Show UniGetUI", "Quit": "Quit", "Attention required": "Attention required", "Restart required": "Restart required", "1 update is available": "1 update is available", "{0} updates are available": "{0} updates are available", - "WingetUI Homepage": "UniGetUI Homepage", - "WingetUI Repository": "UniGetUI Repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if gets created on a future upgrade. Unchecking it will keep the shortcut intact", "Manual scan": "Manual scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.", @@ -641,7 +635,6 @@ "Restart later": "Restart later", "An error occurred:": "An error occurred:", "I understand": "I understand", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", "WinGet was repaired successfully": "WinGet was repaired successfully", "It is recommended to restart UniGetUI after WinGet has been repaired": "It is recommended to restart UniGetUI after WinGet has been repaired", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section", @@ -661,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.", "Which backup do you want to open?": "Which backup do you want to open?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Select the backup you want to open. Later, you will be able to review which packages/programs you want to restore.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI or some of its components are missing or corrupt.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "It is strongly recommended to reinstall UniGetUI to address the situation.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Refer to the UniGetUI Logs to get more details regarding the affected file(s)", @@ -693,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Write here the process names here, separated by commas (,)", "Unset or unknown": "Unset or unknown", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Please see the Command-line Output or refer to the Operation History for further information about the issue.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", "Become a contributor": "Become a contributor", "Save": "Save", "Update to {0} available": "Update to {0} available", @@ -714,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Enable the automatic WinGet troubleshooter", "Enable an [experimental] improved WinGet troubleshooter": "Enable an [experimental] improved WinGet troubleshooter", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Add updates that fail with 'no applicable update found' to the ignored updates list.", - "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", - "Restart WingetUI": "Restart UniGetUI", "Invalid selection": "Invalid selection", "No package was selected": "No package was selected", "More than 1 package was selected": "More than 1 package was selected", @@ -742,6 +733,37 @@ "Log out failed: ": "Log out failed: ", "Package backup settings": "Package backup settings", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "About UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "WingetUI Settings": "UniGetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI Version {0}", + "WingetUI License": "UniGetUI License", + "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Update UniGetUI automatically", + "Reset WingetUI": "Reset UniGetUI", + "WingetUI display language:": "UniGetUI display language:", + "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Enable WingetUI notifications": "Enable UniGetUI notifications", + "WingetUI Log": "UniGetUI Log", + "Show WingetUI": "Show UniGetUI", + "WingetUI Homepage": "UniGetUI Homepage", + "WingetUI Repository": "UniGetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", + "Restart WingetUI": "Restart UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", "(Number {0} in the queue)": "(Number {0} in the queue)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign", "0 packages found": "0 packages found", @@ -836,7 +858,7 @@ "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!", "Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?", "Do you want to restart your computer now?": "Do you want to restart your computer now?", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.", "Donate": "Donate", "Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically", @@ -859,7 +881,7 @@ "GitHub profile": "GitHub profile", "Global": "Global", "Help and documentation": "Help and documentation", - "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Mart├¡, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", "Hide details": "Hide details", "How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?", "Ignore updates for the selected packages": "Ignore updates for the selected packages", @@ -1082,9 +1104,9 @@ "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI is being renamed in order to emphasize the difference between UniGetUI (the interface you are using right now) and WinGet (a package manager developed by Microsoft with which I am not related)", "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI is being updated. When finished, UniGetUI will restart itself", "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.", - "WingetUI log": "WingetUI Log", + "WingetUI log": "UniGetUI Log", "WingetUI tray application preferences": "UniGetUI tray application preferences", - "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", "WingetUI version {0} is being downloaded.": "UniGetUI version {0} is being downloaded.", "WingetUI will become {newname} soon!": "WingetUI will become {newname} soon!", "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_eo.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_eo.json new file mode 100644 index 0000000000..4f232438e5 --- /dev/null +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_eo.json @@ -0,0 +1,1155 @@ +{ + "Operation in progress": "Operacio en progreso", + "Please wait...": "Bonvolu atendi...", + "Success!": "Sukceso!", + "Failed": "Malsukcesis", + "An error occurred while processing this package": "Okazis eraro dum traktado de ĉi tiu pakaĵo", + "Log in to enable cloud backup": "Ensalutu por ebligi nuban sekurkopion", + "Backup Failed": "Sekurkopio malsukcesis", + "Downloading backup...": "Elŝutante sekurkopion...", + "An update was found!": "Troviĝis ĝisdatigo!", + "{0} can be updated to version {1}": "{0} povas esti ĝisdatigita al versio {1}", + "Updates found!": "Ĝisdatigoj trovitaj!", + "{0} packages can be updated": "{0} pakaĵoj povas esti ĝisdatigitaj", + "You have currently version {0} installed": "Vi nuntempe havas version {0} instalitan", + "Desktop shortcut created": "Labortabla ŝparvojo kreita", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI detektis novan labortablan ŝparvojon, kiu povas esti forigita aŭtomate.", + "{0} desktop shortcuts created": "{0} labortablaj ŝparvojoj kreitaj", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI detektis {0} novajn labortablajn ŝparvojojn, kiuj povas esti forigitaj aŭtomate.", + "Are you sure?": "Ĉu vi certas?", + "Do you really want to uninstall {0}?": "Ĉu vi vere volas malinstali {0}?", + "Do you really want to uninstall the following {0} packages?": "Ĉu vi vere volas malinstali la jenajn {0} pakaĵojn?", + "No": "Ne", + "Yes": "Jes", + "View on UniGetUI": "Vidi en UniGetUI", + "Update": "Ĝisdatigi", + "Open UniGetUI": "Malfermi UniGetUI", + "Update all": "Ĝisdatigi ĉiujn", + "Update now": "Ĝisdatigi nun", + "This package is on the queue": "Ĉi tiu pakaĵo estas en la vico", + "installing": "instalado", + "updating": "ĝisdatigado", + "uninstalling": "malinstalado", + "installed": "instalita", + "Retry": "Reprovi", + "Install": "Instali", + "Uninstall": "Malinstali", + "Open": "Malfermi", + "Operation profile:": "Operacia profilo:", + "Follow the default options when installing, upgrading or uninstalling this package": "Sekvu la defaŭltajn opciojn dum instalado, ĝisdatigo aŭ malinstalo de ĉi tiu pakaĵo", + "The following settings will be applied each time this package is installed, updated or removed.": "La jenaj agordoj estos aplikataj ĉiufoje kiam ĉi tiu pakaĵo estas instalata, ĝisdatigata aŭ forigata.", + "Version to install:": "Versio por instali:", + "Architecture to install:": "Arkitekturo por instali:", + "Installation scope:": "Instala amplekso:", + "Install location:": "Instala loko:", + "Select": "Elekti", + "Reset": "Restarigi", + "Custom install arguments:": "Propraj argumentoj por instalado:", + "Custom update arguments:": "Propraj argumentoj por ĝisdatigo:", + "Custom uninstall arguments:": "Propraj argumentoj por malinstalo:", + "Pre-install command:": "Antaŭinstala komando:", + "Post-install command:": "Postinstala komando:", + "Abort install if pre-install command fails": "Nuligi instaladon se la antaŭinstala komando malsukcesas", + "Pre-update command:": "Antaŭĝisdatiga komando:", + "Post-update command:": "Postĝisdatiga komando:", + "Abort update if pre-update command fails": "Nuligi ĝisdatigon se la antaŭĝisdatiga komando malsukcesas", + "Pre-uninstall command:": "Antaŭmalinstala komando:", + "Post-uninstall command:": "Postmalinstala komando:", + "Abort uninstall if pre-uninstall command fails": "Nuligi malinstalon se la antaŭmalinstala komando malsukcesas", + "Command-line to run:": "Komandlinio por ruli:", + "Save and close": "Konservi kaj fermi", + "General": "Ĝenerala", + "Architecture & Location": "Arkitekturo kaj loko", + "Command-line": "Komandlinio", + "Pre/Post install": "Antaŭ/Post instalado", + "Run as admin": "Ruli kiel administranto", + "Interactive installation": "Interaga instalado", + "Skip hash check": "Preterlasi haŝkontrolon", + "Uninstall previous versions when updated": "Malinstali antaŭajn versiojn dum ĝisdatigo", + "Skip minor updates for this package": "Preterlasi etajn ĝisdatigojn por ĉi tiu pakaĵo", + "Automatically update this package": "Aŭtomate ĝisdatigi ĉi tiun pakaĵon", + "{0} installation options": "{0} instalaj opcioj", + "Latest": "Plej nova", + "PreRelease": "Antaŭeldono", + "Default": "Defaŭlta", + "Manage ignored updates": "Administri ignoratajn ĝisdatigojn", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "La ĉi tie listigitaj pakaĵoj ne estos konsiderataj dum kontrolo pri ĝisdatigoj. Duoble alklaku ilin aŭ alklaku la butonon dekstre por ĉesi ignori iliajn ĝisdatigojn.", + "Reset list": "Restarigi liston", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Ĉu vi vere volas restarigi la liston de ignorataj ĝisdatigoj? Ĉi tiu ago ne povas esti malfarita", + "No ignored updates": "Neniuj ignorataj ĝisdatigoj", + "Package Name": "Pakaĵa nomo", + "Package ID": "Pakaĵa ID", + "Ignored version": "Ignorata versio", + "New version": "Nova versio", + "Source": "Fonto", + "All versions": "Ĉiuj versioj", + "Unknown": "Nekonata", + "Up to date": "Ĝisdata", + "Cancel": "Nuligi", + "Administrator privileges": "Administrantaj privilegioj", + "This operation is running with administrator privileges.": "Ĉi tiu operacio ruliĝas kun administrantaj privilegioj.", + "Interactive operation": "Interaga operacio", + "This operation is running interactively.": "Ĉi tiu operacio ruliĝas interage.", + "You will likely need to interact with the installer.": "Vi probable devos interagi kun la instalilo.", + "Integrity checks skipped": "Integrecaj kontroloj preterlasitaj", + "Integrity checks will not be performed during this operation.": "Integrecaj kontroloj ne estos faritaj dum ĉi tiu operacio.", + "Proceed at your own risk.": "Daŭrigu je via propra risko.", + "Close": "Fermi", + "Loading...": "Ŝargante...", + "Installer SHA256": "Instalila SHA256", + "Homepage": "Hejmpaĝo", + "Author": "Aŭtoro", + "Publisher": "Eldoninto", + "License": "Permesilo", + "Manifest": "Manifesto", + "Installer Type": "Tipo de instalilo", + "Size": "Grandeco", + "Installer URL": "URL de instalilo", + "Last updated:": "Laste ĝisdatigita:", + "Release notes URL": "URL de eldonaj notoj", + "Package details": "Detaloj de pako", + "Dependencies:": "Dependecoj:", + "Release notes": "Eldonaj notoj", + "Version": "Versio", + "Install as administrator": "Instali kiel administranto", + "Update to version {0}": "Ĝisdatigi al versio {0}", + "Installed Version": "Instalita versio", + "Update as administrator": "Ĝisdatigi kiel administranto", + "Interactive update": "Interaga ĝisdatigo", + "Uninstall as administrator": "Malinstali kiel administranto", + "Interactive uninstall": "Interaga malinstalo", + "Uninstall and remove data": "Malinstali kaj forigi datumojn", + "Not available": "Ne disponebla", + "Installer SHA512": "SHA512 de instalilo", + "Unknown size": "Nekonata grandeco", + "No dependencies specified": "Neniuj dependecoj specifitaj", + "mandatory": "deviga", + "optional": "laŭvola", + "UniGetUI {0} is ready to be installed.": "UniGetUI {0} pretas esti instalita.", + "The update process will start after closing UniGetUI": "La ĝisdatiga procezo komenciĝos post fermo de UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI estis rulita kiel administranto, kio ne estas rekomendinda. Kiam UniGetUI ruliĝas kiel administranto, ĈIU operacio lanĉita el UniGetUI havos administrajn privilegiojn. Vi ankoraŭ povas uzi la programon, sed ni forte rekomendas ne ruli UniGetUI kun administraj privilegioj.", + "Share anonymous usage data": "Kunhavigi anonimajn uzdatumojn", + "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI kolektas anonimajn uzdatumojn por plibonigi la uzantosperton.", + "Accept": "Akcepti", + "You have installed UniGetUI Version {0}": "Vi instalis UniGetUI-version {0}", + "Disclaimer": "Malgarantio", + "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ne rilatas al iu ajn el la kongruaj pakaĵadministriloj. UniGetUI estas sendependa projekto.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI uzas la jenajn bibliotekojn. Sen ili, UniGetUI ne estus ebla.", + "{0} homepage": "Hejmpaĝo de {0}", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "Verbose": "Detala", + "1 - Errors": "1 - Eraroj", + "2 - Warnings": "2 - Avertoj", + "3 - Information (less)": "3 - Informoj (malpli)", + "4 - Information (more)": "4 - Informoj (pli)", + "5 - information (debug)": "5 - Informoj (sencimigo)", + "Warning": "Averto", + "The following settings may pose a security risk, hence they are disabled by default.": "La jenaj agordoj povas prezenti sekurecan riskon, tial ili estas malŝaltitaj defaŭlte.", + "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Enŝaltu la subajn agordojn nur kaj nur se vi plene komprenas kion ili faras kaj la sekvojn, kiujn ili povas havi.", + "The settings will list, in their descriptions, the potential security issues they may have.": "La agordoj listigos en siaj priskriboj la eblajn sekurecajn problemojn, kiujn ili povas havi.", + "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "La sekurkopio inkluzivos la kompletan liston de la instalitaj pakoj kaj iliajn instalajn opciojn. Ignoritaj ĝisdatigoj kaj preterlasitaj versioj ankaŭ estos konservitaj.", + "The backup will NOT include any binary file nor any program's saved data.": "La sekurkopio NE inkluzivos ajnan duuman dosieron nek la konservitajn datumojn de iu programo.", + "The size of the backup is estimated to be less than 1MB.": "La grandeco de la sekurkopio laŭtakse estos malpli ol 1MB.", + "The backup will be performed after login.": "La sekurkopio estos farita post ensaluto.", + "{pcName} installed packages": "Instalitaj pakoj de {pcName}", + "Current status: Not logged in": "Nuna stato: Ne ensalutinta", + "You are logged in as {0} (@{1})": "Vi estas ensalutinta kiel {0} (@{1})", + "Nice! Backups will be uploaded to a private gist on your account": "Bone! Sekurkopioj estos alŝutitaj al privata gist en via konto", + "Select backup": "Elekti sekurkopion", + "UniGetUI Settings": "Agordoj de UniGetUI", + "Allow pre-release versions": "Permesi antaŭeldonajn versiojn", + "Apply": "Apliki", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Pro sekurecaj kialoj, propraj komandliniaj argumentoj estas malŝaltitaj defaŭlte. Iru al la sekurecaj agordoj de UniGetUI por ŝanĝi tion.", + "Go to UniGetUI security settings": "Iri al la sekurecaj agordoj de UniGetUI", + "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "La jenaj opcioj estos aplikataj defaŭlte ĉiufoje kiam pako de {0} estas instalata, ĝisdatigata aŭ malinstalata.", + "Package's default": "Defaŭlto de la pako", + "Install location can't be changed for {0} packages": "Instala loko ne povas esti ŝanĝita por pakoj de {0}", + "The local icon cache currently takes {0} MB": "La loka piktograma kaŝmemoro nun okupas {0} MB", + "Username": "Uzantnomo", + "Password": "Pasvorto", + "Credentials": "Akreditaĵoj", + "It is not guaranteed that the provided credentials will be stored safely": "Ne estas garantiite, ke la provizitaj akreditaĵoj estos sekure konservitaj", + "Partially": "Parte", + "Package manager": "Pakaĵadministrilo", + "Compatible with proxy": "Kongrua kun prokurilo", + "Compatible with authentication": "Kongrua kun aŭtentikigo", + "Proxy compatibility table": "Tabelo de kongrueco kun prokuriloj", + "{0} settings": "Agordoj de {0}", + "{0} status": "Stato de {0}", + "Default installation options for {0} packages": "Defaŭltaj instalaj opcioj por pakoj de {0}", + "Expand version": "Malfaldi version", + "The executable file for {0} was not found": "La plenumebla dosiero por {0} ne estis trovita", + "{pm} is disabled": "{pm} estas malŝaltita", + "Enable it to install packages from {pm}.": "Enŝaltu ĝin por instali pakojn el {pm}.", + "{pm} is enabled and ready to go": "{pm} estas enŝaltita kaj preta por uzo", + "{pm} version:": "Versio de {pm}:", + "{pm} was not found!": "{pm} ne estis trovita!", + "You may need to install {pm} in order to use it with UniGetUI.": "Vi eble bezonos instali {pm} por uzi ĝin kun UniGetUI.", + "Scoop Installer - UniGetUI": "Instalilo de Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Malinstalilo de Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Malplenigado de la kaŝmemoro de Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Restartigu UniGetUI por plene apliki la ŝanĝojn", + "Restart UniGetUI": "Restartigi UniGetUI", + "Manage {0} sources": "Administri fontojn de {0}", + "Add source": "Aldoni fonton", + "Add": "Aldoni", + "Source name": "Nomo de fonto", + "Source URL": "URL de fonto", + "Other": "Alia", + "No minimum age": "Neniu minimuma aĝo", + "1 day": "1 tago", + "{0} days": "{0} tagoj", + "Custom...": "Propra...", + "{0} minutes": "{0} minutoj", + "1 hour": "unu horo", + "{0} hours": "{0} horoj", + "1 week": "1 semajno", + "Supports release dates": "Subtenas eldondatojn", + "Release date support per package manager": "Subteno de eldondatoj laŭ pakadministrilo", + "UniGetUI Version {0}": "UniGetUI versio {0}", + "Search for packages": "Serĉi pakaĵojn", + "Local": "Loka", + "OK": "OK", + "{0} packages were found, {1} of which match the specified filters.": "Troviĝis {0} pakaĵoj, el kiuj {1} kongruas kun la specifitaj filtriloj.", + "{0} selected": "{0} elektitaj", + "(Last checked: {0})": "(Laste kontrolite: {0})", + "Enabled": "Ŝaltita", + "Disabled": "Malŝaltita", + "More info": "Pliaj informoj", + "GitHub account": "GitHub-konto", + "Log in with GitHub to enable cloud package backup.": "Ensalutu per GitHub por ebligi nuban sekurkopion de pakaĵoj.", + "More details": "Pliaj detaloj", + "Log in": "Ensaluti", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se vi havas ebligitan nuban sekurkopion, ĝi estos konservita kiel GitHub Gist en ĉi tiu konto", + "Log out": "Elsaluti", + "About UniGetUI": "Pri UniGetUI", + "About": "Pri", + "Third-party licenses": "Licencoj de triaj", + "Contributors": "Kontribuantoj", + "Translators": "Tradukantoj", + "Manage shortcuts": "Administri ŝparvojojn", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI detektis la jenajn labortablajn ŝparvojojn, kiuj povas esti aŭtomate forigitaj dum estontaj ĝisdatigoj", + "Do you really want to reset this list? This action cannot be reverted.": "Ĉu vi vere volas reagordi ĉi tiun liston? Ĉi tiu ago ne povas esti malfarita.", + "Open in explorer": "Malfermi en Esplorilo", + "Remove from list": "Forigi el listo", + "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kiam novaj ŝparvojoj estas detektitaj, forigu ilin aŭtomate anstataŭ montri ĉi tiun dialogon.", + "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI kolektas anonimajn uzdatumojn kun la sola celo kompreni kaj plibonigi la uzantosperton.", + "More details about the shared data and how it will be processed": "Pliaj detaloj pri la kunhavataj datumoj kaj kiel ili estos prilaborataj", + "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Ĉu vi akceptas, ke UniGetUI kolektu kaj sendu anonimajn uzostatistikojn kun la sola celo kompreni kaj plibonigi la uzantosperton?", + "Decline": "Malakcepti", + "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Neniuj personaj informoj estas kolektataj nek sendataj, kaj la kolektitaj datumoj estas anonimigitaj, do ili ne povas esti spuritaj reen al vi.", + "Toggle navigation panel": "Montri aŭ kaŝi la navigan panelon", + "Minimize": "Minimumigi", + "Maximize": "Maksimumigi", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI estas aplikaĵo, kiu faciligas la administradon de via programaro, provizante tute-en-unu grafikan interfacon por viaj komandliniaj pakadministriloj.", + "Useful links": "Utilaj ligiloj", + "UniGetUI Homepage": "Hejmpaĝo de UniGetUI", + "Report an issue or submit a feature request": "Raporti problemon aŭ sendi peton pri nova funkcio", + "UniGetUI Repository": "Deponejo de UniGetUI", + "View GitHub Profile": "Vidi GitHub-profilon", + "UniGetUI License": "Licenco de UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Uzi UniGetUI implicas akcepton de la MIT-licenco", + "Become a translator": "Fariĝi tradukanto", + "View page on browser": "Vidi paĝon en retumilo", + "Copy to clipboard": "Kopii al tondujo", + "Export to a file": "Eksporti al dosiero", + "Log level:": "Nivelo de protokolo:", + "Reload log": "Reŝargi protokolon", + "Export log": "Eksporti protokolon", + "UniGetUI Log": "Protokolo de UniGetUI", + "Text": "Teksto", + "Change how operations request administrator rights": "Ŝanĝi kiel operacioj petas administrajn rajtojn", + "Restrictions on package operations": "Limigoj pri pakoperacioj", + "Restrictions on package managers": "Limigoj pri pakadministriloj", + "Restrictions when importing package bundles": "Limigoj dum importado de pakfaskoj", + "Ask for administrator privileges once for each batch of operations": "Peti administrajn rajtojn unufoje por ĉiu aro da operacioj", + "Ask only once for administrator privileges": "Peti administrajn rajtojn nur unufoje", + "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Malpermesi ĉian altigon per UniGetUI Elevator aŭ GSudo", + "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Ĉi tiu opcio JA kaŭzos problemojn. Ĉiu operacio nekapabla mem altiĝi MALSUKCESOS. Instali/ĝisdatigi/malinstali kiel administranto NE FUNKCIOS.", + "Allow custom command-line arguments": "Permesi proprajn komandliniajn argumentojn", + "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Propraj komandliniaj argumentoj povas ŝanĝi la manieron, laŭ kiu programoj estas instalataj, ĝisdatigataj aŭ malinstalataj, tiel ke UniGetUI ne povas tion regi. Uzi proprajn komandliniajn argumentojn povas rompi pakaĵojn. Procedu singarde.", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Ignori proprajn antaŭinstalajn kaj postinstalajn komandojn dum importado de pakaĵoj el fasko", + "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Antaŭinstalaj kaj postinstalaj komandoj estos rulataj antaŭ kaj post kiam pakaĵo estas instalata, ĝisdatigata aŭ malinstalata. Konsciu, ke ili povas rompi aferojn, krom se uzataj singarde", + "Allow changing the paths for package manager executables": "Permesi ŝanĝi la vojojn al la ruleblaj dosieroj de pakadministriloj", + "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Ŝalti ĉi tion ebligas ŝanĝi la ruleblan dosieron uzatan por interagi kun pakadministriloj. Kvankam tio permesas pli detalan agordon de viaj instalaj procezoj, ĝi ankaŭ povas esti danĝera", + "Allow importing custom command-line arguments when importing packages from a bundle": "Permesi importi proprajn komandliniajn argumentojn dum importado de pakaĵoj el fasko", + "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "Misformitaj komandliniaj argumentoj povas rompi pakaĵojn, aŭ eĉ ebligi al malica aganto akiri privilegian plenumon. Tial importado de propraj komandliniaj argumentoj estas defaŭlte malŝaltita.", + "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Permesi importi proprajn antaŭinstalajn kaj postinstalajn komandojn dum importado de pakaĵoj el fasko", + "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "Antaŭinstalaj kaj postinstalaj komandoj povas fari tre malagrablajn aferojn al via aparato, se ili estas tiel desegnitaj. Povas esti tre danĝere importi la komandojn el fasko, krom se vi fidas la fonton de tiu pakfasko", + "Administrator rights and other dangerous settings": "Administraj rajtoj kaj aliaj danĝeraj agordoj", + "Package backup": "Sekurkopio de pakaĵoj", + "Cloud package backup": "Nuba sekurkopio de pakaĵoj", + "Local package backup": "Loka sekurkopio de pakaĵoj", + "Local backup advanced options": "Altnivelaj opcioj por loka sekurkopio", + "Log in with GitHub": "Ensaluti per GitHub", + "Log out from GitHub": "Elsaluti el GitHub", + "Periodically perform a cloud backup of the installed packages": "Periode fari nuban sekurkopion de la instalitaj pakaĵoj", + "Cloud backup uses a private GitHub Gist to store a list of installed packages": "Nuba sekurkopio uzas privatan GitHub Gist por konservi liston de instalitaj pakaĵoj", + "Perform a cloud backup now": "Fari nuban sekurkopion nun", + "Backup": "Sekurkopio", + "Restore a backup from the cloud": "Restarigi sekurkopion el la nubo", + "Begin the process to select a cloud backup and review which packages to restore": "Komenci la procezon por elekti nuban sekurkopion kaj revizii, kiujn pakaĵojn restarigi", + "Periodically perform a local backup of the installed packages": "Periode fari lokan sekurkopion de la instalitaj pakaĵoj", + "Perform a local backup now": "Fari lokan sekurkopion nun", + "Change backup output directory": "Ŝanĝi la eligan dosierujon de sekurkopioj", + "Set a custom backup file name": "Agordi propran nomon de sekurkopia dosiero", + "Leave empty for default": "Lasu malplena por la defaŭlto", + "Add a timestamp to the backup file names": "Aldoni tempomarkon al la nomoj de sekurkopiaj dosieroj", + "Backup and Restore": "Sekurkopio kaj restarigo", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Ebligi fonan API-on (fenestraĵoj de UniGetUI kaj kunhavigo, pordo 7058)", + "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Atendi ĝis la aparato estos konektita al la interreto antaŭ ol provi fari taskojn, kiuj postulas interretan konekteblecon.", + "Disable the 1-minute timeout for package-related operations": "Malŝalti la 1-minutan templimon por pakaĵ-rilataj operacioj", + "Use installed GSudo instead of UniGetUI Elevator": "Uzi instalitan GSudo anstataŭ UniGetUI Elevator", + "Use a custom icon and screenshot database URL": "Uzi propran URL-on por la datumbazo de ikonoj kaj ekrankopioj", + "Enable background CPU Usage optimizations (see Pull Request #3278)": "Ebligi fonajn optimumigojn de CPU-uzo (vidu Pull Request #3278)", + "Perform integrity checks at startup": "Fari integrecajn kontrolojn je lanĉo", + "When batch installing packages from a bundle, install also packages that are already installed": "Kiam amase instalas pakaĵojn el fasko, instalu ankaŭ pakaĵojn, kiuj jam estas instalitaj", + "Experimental settings and developer options": "Eksperimentaj agordoj kaj programistaj opcioj", + "Show UniGetUI's version and build number on the titlebar.": "Montri la version de UniGetUI en la titolbreto.", + "Language": "Lingvo", + "UniGetUI updater": "Ĝisdatigilo de UniGetUI", + "Telemetry": "Telemetrio", + "Manage UniGetUI settings": "Administri la agordojn de UniGetUI", + "Related settings": "Rilataj agordoj", + "Update UniGetUI automatically": "Aŭtomate ĝisdatigi UniGetUI", + "Check for updates": "Kontroli ĝisdatigojn", + "Install prerelease versions of UniGetUI": "Instali antaŭeldonajn versiojn de UniGetUI", + "Manage telemetry settings": "Administri agordojn pri telemetrio", + "Manage": "Administri", + "Import settings from a local file": "Importi agordojn el loka dosiero", + "Import": "Importi", + "Export settings to a local file": "Eksporti agordojn al loka dosiero", + "Export": "Eksporti", + "Reset UniGetUI": "Restarigi UniGetUI", + "User interface preferences": "Preferoj de la uzantinterfaco", + "Application theme, startup page, package icons, clear successful installs automatically": "Aplika temo, lanĉpaĝo, pakaĵikonoj, aŭtomate forigi sukcesajn instaladojn", + "General preferences": "Ĝeneralaj preferoj", + "UniGetUI display language:": "Montra lingvo de UniGetUI:", + "Is your language missing or incomplete?": "Ĉu via lingvo mankas aŭ estas nekompleta?", + "Appearance": "Aspekto", + "UniGetUI on the background and system tray": "UniGetUI en la fono kaj sistempleto", + "Package lists": "Pakaĵlistoj", + "Close UniGetUI to the system tray": "Fermi UniGetUI al la sistempleto", + "Manage UniGetUI autostart behaviour": "Administri la aŭtolanĉan konduton de UniGetUI", + "Show package icons on package lists": "Montri pakaĵikonojn en pakaĵlistoj", + "Clear cache": "Malplenigi kaŝmemoron", + "Select upgradable packages by default": "Defaŭlte elekti ĝisdatigeblajn pakaĵojn", + "Light": "Hela", + "Dark": "Malhela", + "Follow system color scheme": "Sekvi la sisteman kolorskemon", + "Application theme:": "Aplika temo:", + "Discover Packages": "Malkovri pakaĵojn", + "Software Updates": "Programaraj ĝisdatigoj", + "Installed Packages": "Instalitaj pakaĵoj", + "Package Bundles": "Pakaĵfaskoj", + "Settings": "Agordoj", + "UniGetUI startup page:": "Lanĉpaĝo de UniGetUI:", + "Proxy settings": "Prokurilaj agordoj", + "Other settings": "Aliaj agordoj", + "Connect the internet using a custom proxy": "Konekti al la interreto per propra prokurilo", + "Please note that not all package managers may fully support this feature": "Bonvolu rimarki, ke ne ĉiuj pakaĵadministriloj plene subtenas ĉi tiun funkcion", + "Proxy URL": "URL de prokurilo", + "Enter proxy URL here": "Enigu la URL-on de la prokurilo ĉi tie", + "Authenticate to the proxy with a user and a password": "Aŭtentikigu vin ĉe la prokurilo per uzantnomo kaj pasvorto", + "Internet and proxy settings": "Interretaj kaj prokurilaj agordoj", + "Package manager preferences": "Preferoj de pakaĵadministriloj", + "Ready": "Preta", + "Not found": "Ne trovita", + "Notification preferences": "Preferoj pri sciigoj", + "Notification types": "Tipoj de sciigoj", + "The system tray icon must be enabled in order for notifications to work": "La sistempleta piktogramo devas esti ebligita por ke sciigoj funkciu", + "Enable UniGetUI notifications": "Ebligi sciigojn de UniGetUI", + "Show a notification when there are available updates": "Montri sciigon kiam estas disponeblaj ĝisdatigoj", + "Show a silent notification when an operation is running": "Montri silentan sciigon kiam operacio ruliĝas", + "Show a notification when an operation fails": "Montri sciigon kiam operacio malsukcesas", + "Show a notification when an operation finishes successfully": "Montri sciigon kiam operacio sukcese finiĝas", + "Concurrency and execution": "Samtempeco kaj plenumo", + "Automatic desktop shortcut remover": "Aŭtomata forigilo de labortablaj ŝparvojoj", + "Choose how many operations should be performed in parallel": "Elektu kiom da operacioj estu plenumataj paralele", + "Clear successful operations from the operation list after a 5 second delay": "Forigi sukcesajn operaciojn el la operacilisto post 5-sekunda prokrasto", + "Download operations are not affected by this setting": "Elŝutaj operacioj ne estas trafitaj de ĉi tiu agordo", + "Try to kill the processes that refuse to close when requested to": "Provu ĉesigi la procezojn, kiuj rifuzas fermiĝi laŭpete", + "You may lose unsaved data": "Vi eble perdos nekonservitajn datumojn", + "Ask to delete desktop shortcuts created during an install or upgrade.": "Demandi pri forigo de labortablaj ŝparvojoj kreitaj dum instalado aŭ ĝisdatigo.", + "Package update preferences": "Preferoj pri pakaĵaj ĝisdatigoj", + "Update check frequency, automatically install updates, etc.": "Ofteco de ĝisdatigkontroloj, aŭtomata instalado de ĝisdatigoj, ktp.", + "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Malpliigi UAC-instigojn, defaŭlte altigi instaladojn, malŝlosi iujn danĝerajn funkciojn, ktp.", + "Package operation preferences": "Preferoj pri pakaĵaj operacioj", + "Enable {pm}": "Ebligi {pm}", + "Not finding the file you are looking for? Make sure it has been added to path.": "Ĉu vi ne trovas la dosieron, kiun vi serĉas? Certigu, ke ĝi estis aldonita al Path.", + "For security reasons, changing the executable file is disabled by default": "Pro sekurecaj kialoj, ŝanĝi la plenumeblan dosieron estas defaŭlte malebligita", + "Change this": "Ŝanĝi tion", + "Select the executable to be used. The following list shows the executables found by UniGetUI": "Elektu la uzotan plenumeblan dosieron. La jena listo montras la plenumeblajn dosierojn trovitajn de UniGetUI", + "Current executable file:": "Nuna plenumebla dosiero:", + "Ignore packages from {pm} when showing a notification about updates": "Ignori pakaĵojn de {pm} dum montrado de sciigo pri ĝisdatigoj", + "Update security": "Ĝisdatiga sekureco", + "Use global setting": "Uzi ĝeneralan agordon", + "e.g. 10": "ekz. 10", + "{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", + "Override the global minimum update age for this package manager": "Superregi la ĝeneralan minimuman aĝon de ĝisdatigoj por ĉi tiu pakaĵadministrilo", + "Minimum age for updates": "Minimuma aĝo por ĝisdatigoj", + "Custom minimum age (days)": "Propra minimuma aĝo (tagoj)", + "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, ", + "Advanced options": "Altnivelaj opcioj", + "Reset WinGet": "Restarigi WinGet", + "This may help if no packages are listed": "Tio povas helpi se neniuj pakaĵoj estas listigitaj", + "Force install location parameter when updating packages with custom locations": "Devigi la parametron de instala loko dum ĝisdatigo de pakaĵoj kun propraj lokoj", + "Use bundled WinGet instead of system WinGet": "Uzi la inkluzivitan WinGet anstataŭ la sistema WinGet", + "This may help if WinGet packages are not shown": "Tio povas helpi se WinGet-pakaĵoj ne estas montrataj", + "Install Scoop": "Instali Scoop", + "Uninstall Scoop (and its packages)": "Malinstali Scoop (kaj ĝiajn pakaĵojn)", + "Run cleanup and clear cache": "Ruli purigon kaj malplenigi kaŝmemoron", + "Run": "Ruli", + "Enable Scoop cleanup on launch": "Ebligi purigon de Scoop ĉe lanĉo", + "Use system Chocolatey": "Uzi sisteman Chocolatey", + "Default vcpkg triplet": "Defaŭlta vcpkg-triplo", + "Change vcpkg root location": "Ŝanĝi la radikan lokon de vcpkg", + "Language, theme and other miscellaneous preferences": "Lingvo, temo kaj aliaj diversaj preferoj", + "Show notifications on different events": "Montri sciigojn por diversaj eventoj", + "Change how UniGetUI checks and installs available updates for your packages": "Ŝanĝi kiel UniGetUI kontrolas kaj instalas disponeblajn ĝisdatigojn por viaj pakaĵoj", + "Automatically save a list of all your installed packages to easily restore them.": "Aŭtomate konservi liston de ĉiuj viaj instalitaj pakaĵoj por facile restarigi ilin.", + "Enable and disable package managers, change default install options, etc.": "Ebligi kaj malebligi pakaĵadministrilojn, ŝanĝi defaŭltajn instalajn opciojn, ktp.", + "Internet connection settings": "Agordoj de interreta konekto", + "Proxy settings, etc.": "Prokurilaj agordoj, ktp.", + "Beta features and other options that shouldn't be touched": "Betaaj funkcioj kaj aliaj opcioj, kiujn oni ne tuŝu", + "Update checking": "Kontrolado de ĝisdatigoj", + "Automatic updates": "Aŭtomataj ĝisdatigoj", + "Check for package updates periodically": "Periode kontroli ĝisdatigojn de pakaĵoj", + "Check for updates every:": "Kontroli ĝisdatigojn ĉiun:", + "Install available updates automatically": "Aŭtomate instali disponeblajn ĝisdatigojn", + "Do not automatically install updates when the network connection is metered": "Ne aŭtomate instali ĝisdatigojn kiam la retkonekto estas laŭmezura", + "Do not automatically install updates when the device runs on battery": "Ne aŭtomate instali ĝisdatigojn kiam la aparato funkcias per baterio", + "Do not automatically install updates when the battery saver is on": "Ne aŭtomate instali ĝisdatigojn kiam energiŝpara reĝimo estas ŝaltita", + "Only show updates that are at least the specified number of days old": "Montri nur ĝisdatigojn, kiuj estas almenaŭ la specifita nombro da tagoj malnovaj", + "Change how UniGetUI handles install, update and uninstall operations.": "Ŝanĝi kiel UniGetUI traktas instalajn, ĝisdatigajn kaj malinstalajn operaciojn.", + "Package Managers": "Pakaĵadministriloj", + "More": "Pli", + "Package Manager logs": "Protokoloj de pakaĵadministriloj", + "Operation history": "Historio de operacioj", + "Help": "Helpo", + "Quit UniGetUI": "Eliri el UniGetUI", + "Order by:": "Ordigi laŭ:", + "Name": "Nomo", + "Id": "ID", + "Ascendant": "Kreskanta", + "Descendant": "Malkreskanta", + "View mode:": "Vida reĝimo:", + "Filters": "Filtriloj", + "Sources": "Fontoj", + "Search for packages to start": "Serĉu pakaĵojn por komenci", + "Select all": "Elekti ĉiujn", + "Clear selection": "Forigi elekton", + "Instant search": "Tuja serĉo", + "Distinguish between uppercase and lowercase": "Distingi inter majuskloj kaj minuskloj", + "Ignore special characters": "Ignori specialajn signojn", + "Search mode": "Serĉreĝimo", + "Both": "Ambaŭ", + "Exact match": "Ekzakta kongruo", + "Show similar packages": "Montri similajn pakaĵojn", + "Nothing to share": "Nenio por kunhavigi", + "Please select a package first.": "Bonvolu unue elekti pakaĵon.", + "Share link copied": "Kunhaviga ligilo kopiita", + "The share link for {0} has been copied to the clipboard.": "La kunhaviga ligilo por {0} estis kopiita al la tondujo.", + "No results were found matching the input criteria": "Neniuj rezultoj estis trovitaj kongruaj kun la enigaj kriterioj", + "No packages were found": "Neniuj pakaĵoj estis trovitaj", + "Loading packages": "Ŝargado de pakaĵoj", + "Skip integrity checks": "Preterlasi integrecajn kontrolojn", + "Download selected installers": "Elŝuti elektitajn instalilojn", + "Install selection": "Instali elekton", + "Install options": "Instalaj opcioj", + "Share": "Kunhavigi", + "Add selection to bundle": "Aldoni elekton al pakaĵaro", + "Download installer": "Elŝuti instalilon", + "Share this package": "Kunhavigi ĉi tiun pakaĵon", + "Uninstall selection": "Malinstali elekton", + "Uninstall options": "Malinstalaj opcioj", + "Ignore selected packages": "Ignori elektitajn pakaĵojn", + "Open install location": "Malfermi instalan lokon", + "Reinstall package": "Reinstali pakaĵon", + "Uninstall package, then reinstall it": "Malinstali pakaĵon, poste reinstali ĝin", + "Ignore updates for this package": "Ignori ĝisdatigojn por ĉi tiu pakaĵo", + "Do not ignore updates for this package anymore": "Ne plu ignori ĝisdatigojn por ĉi tiu pakaĵo", + "Add packages or open an existing package bundle": "Aldoni pakaĵojn aŭ malfermi ekzistantan pakaĵaron", + "Add packages to start": "Aldonu pakaĵojn por komenci", + "The current bundle has no packages. Add some packages to get started": "La nuna pakaĵaro enhavas neniujn pakaĵojn. Aldonu kelkajn pakaĵojn por komenci", + "New": "Nova", + "Save as": "Konservi kiel", + "Remove selection from bundle": "Forigi elekton el pakaĵaro", + "Skip hash checks": "Preterlasi haŝkontrolojn", + "The package bundle is not valid": "La pakaĵaro ne estas valida", + "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "La pakaĵaro, kiun vi provas ŝargi, ŝajnas esti nevalida. Bonvolu kontroli la dosieron kaj reprovi.", + "Package bundle": "Pakaĵaro", + "Could not create bundle": "Ne eblis krei pakaĵaron", + "The package bundle could not be created due to an error.": "La pakaĵaro ne povis esti kreita pro eraro.", + "Unsaved changes": "Nekonservitaj ŝanĝoj", + "Discard changes": "Forĵeti ŝanĝojn", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Vi havas nekonservitajn ŝanĝojn en la nuna pakaĵaro. Ĉu vi volas forĵeti ilin?", + "Bundle security report": "Sekureca raporto de pakaĵaro", + "The bundle contained restricted content": "La pakaĵaro enhavis limigitan enhavon", + "Hooray! No updates were found.": "Hura! Neniuj ĝisdatigoj estis trovitaj.", + "Everything is up to date": "Ĉio estas ĝisdata", + "Uninstall selected packages": "Malinstali elektitajn pakaĵojn", + "Update selection": "Ĝisdatigi elekton", + "Update options": "Ĝisdatigaj opcioj", + "Uninstall package, then update it": "Malinstali pakaĵon, poste ĝisdatigi ĝin", + "Uninstall package": "Malinstali pakaĵon", + "Skip this version": "Preterlasi ĉi tiun version", + "Pause updates for": "Paŭzigi ĝisdatigojn por", + "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "La pakaĵadministrilo por Rust.
Enhavas: Rust-bibliotekojn kaj programojn verkitajn en Rust", + "The classical package manager for windows. You'll find everything there.
Contains: General Software": "La klasika pakaĵadministrilo por Windows. Vi trovos ĉion tie.
Enhavas: Ĝeneralan programaron", + "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Deponejo plena je iloj kaj ruleblaj dosieroj desegnitaj kun la .NET-ekosistemo de Microsoft en menso.
Enhavas: .NET-rilatajn ilojn kaj skriptojn", + "NuPkg (zipped manifest)": "NuPkg (zipita manifesto)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "La mankanta pakaĵadministrilo por macOS (aŭ Linux).
Enhavas: Formulae, Casks", + "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "La pakaĵadministrilo de Node JS. Plena je bibliotekoj kaj aliaj utilaĵoj, kiuj rondiras ĉirkaŭ la mondo de JavaScript
Enhavas: Node-JavaScript-bibliotekojn kaj aliajn rilatajn utilaĵojn", + "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "La bibliotekadministrilo de Python. Plena je Python-bibliotekoj kaj aliaj utilaĵoj rilataj al Python
Enhavas: Python-bibliotekojn kaj rilatajn utilaĵojn", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "La pakaĵadministrilo de PowerShell. Trovu bibliotekojn kaj skriptojn por vastigi la kapablojn de PowerShell
Enhavas: Modulojn, skriptojn, Cmdlets", + "extracted": "eltirita", + "Scoop package": "Scoop-pakaĵo", + "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "Bonega deponejo de nekonataj sed utilaj iloj kaj aliaj interesaj pakaĵoj.
Enhavas: Ilojn, komandliniajn programojn, ĝeneralan programaron (extras bucket necesas)", + "library": "biblioteko", + "feature": "trajto", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "Populara C/C++-bibliotekadministrilo. Plena je C/C++-bibliotekoj kaj aliaj utilaĵoj rilataj al C/C++
Enhavas: C/C++-bibliotekojn kaj rilatajn utilaĵojn", + "option": "opcio", + "This package cannot be installed from an elevated context.": "Ĉi tiu pakaĵo ne povas esti instalita en altigita kunteksto.", + "Please run UniGetUI as a regular user and try again.": "Bonvolu ruli UniGetUI kiel ordinara uzanto kaj reprovi.", + "Please check the installation options for this package and try again": "Bonvolu kontroli la instalajn opciojn por ĉi tiu pakaĵo kaj reprovi", + "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "La oficiala pakaĵadministrilo de Microsoft. Plena je konataj kaj kontrolitaj pakaĵoj
Enhavas: Ĝeneralan programaron, aplikaĵojn de Microsoft Store", + "Local PC": "Loka komputilo", + "Android Subsystem": "Android-subsistemo", + "Operation on queue (position {0})...": "Operacio en la vico (pozicio {0})...", + "Click here for more details": "Alklaku ĉi tie por pliaj detaloj", + "Operation canceled by user": "Operacio nuligita de la uzanto", + "Running PreOperation ({0}/{1})...": "Rulas PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} el {1} malsukcesis kaj estis markita kiel necesa. Ĉesigas...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} el {1} finiĝis kun rezulto {2}", + "Starting operation...": "Komencas operacion...", + "Running PostOperation ({0}/{1})...": "Rulas PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} el {1} malsukcesis kaj estis markita kiel necesa. Ĉesigas...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} el {1} finiĝis kun rezulto {2}", + "{package} installer download": "Elŝuto de la instalilo de {package}", + "{0} installer is being downloaded": "La instalilo de {0} estas elŝutata", + "Download succeeded": "Elŝuto sukcesis", + "{package} installer was downloaded successfully": "La instalilo de {package} estis sukcese elŝutita", + "Download failed": "Elŝuto malsukcesis", + "{package} installer could not be downloaded": "La instalilo de {package} ne povis esti elŝutita", + "{package} Installation": "Instalado de {package}", + "{0} is being installed": "{0} estas instalata", + "Installation succeeded": "Instalado sukcesis", + "{package} was installed successfully": "{package} estis sukcese instalita", + "Installation failed": "Instalado malsukcesis", + "{package} could not be installed": "{package} ne povis esti instalita", + "{package} Update": "Ĝisdatigo de {package}", + "{0} is being updated to version {1}": "{0} estas ĝisdatigata al versio {1}", + "Update succeeded": "Ĝisdatigo sukcesis", + "{package} was updated successfully": "{package} estis sukcese ĝisdatigita", + "Update failed": "Ĝisdatigo malsukcesis", + "{package} could not be updated": "{package} ne povis esti ĝisdatigita", + "{package} Uninstall": "Malinstalado de {package}", + "{0} is being uninstalled": "{0} estas malinstalata", + "Uninstall succeeded": "Malinstalado sukcesis", + "{package} was uninstalled successfully": "{package} estis sukcese malinstalita", + "Uninstall failed": "Malinstalado malsukcesis", + "{package} could not be uninstalled": "{package} ne povis esti malinstalita", + "Adding source {source}": "Aldonante fonton {source}", + "Adding source {source} to {manager}": "Aldonante fonton {source} al {manager}", + "Source added successfully": "Fonto sukcese aldonita", + "The source {source} was added to {manager} successfully": "La fonto {source} estis sukcese aldonita al {manager}", + "Could not add source": "Ne eblis aldoni la fonton", + "Could not add source {source} to {manager}": "Ne eblis aldoni fonton {source} al {manager}", + "Removing source {source}": "Forigante fonton {source}", + "Removing source {source} from {manager}": "Forigante fonton {source} el {manager}", + "Source removed successfully": "Fonto sukcese forigita", + "The source {source} was removed from {manager} successfully": "La fonto {source} estis sukcese forigita el {manager}", + "Could not remove source": "Ne eblis forigi la fonton", + "Could not remove source {source} from {manager}": "Ne eblis forigi fonton {source} el {manager}", + "The package manager \"{0}\" was not found": "La pakaĵadministrilo \"{0}\" ne estis trovita", + "The package manager \"{0}\" is disabled": "La pakaĵadministrilo \"{0}\" estas malŝaltita", + "There is an error with the configuration of the package manager \"{0}\"": "Estas eraro en la agordo de la pakaĵadministrilo \"{0}\"", + "The package \"{0}\" was not found on the package manager \"{1}\"": "La pakaĵo \"{0}\" ne estis trovita en la pakaĵadministrilo \"{1}\"", + "{0} is disabled": "{0} estas malŝaltita", + "Something went wrong": "Io misfunkciis", + "An interal error occurred. Please view the log for further details.": "Okazis interna eraro. Bonvolu vidi la protokolon por pliaj detaloj.", + "No applicable installer was found for the package {0}": "Neniu aplikebla instalilo estis trovita por la pakaĵo {0}", + "We are checking for updates.": "Ni kontrolas ĝisdatigojn.", + "Please wait": "Bonvolu atendi", + "UniGetUI version {0} is being downloaded.": "UniGetUI-versio {0} estas elŝutata.", + "This may take a minute or two": "Tio povas daŭri unu aŭ du minutojn", + "The installer authenticity could not be verified.": "La aŭtentikeco de la instalilo ne povis esti kontrolita.", + "The update process has been aborted.": "La ĝisdatiga procezo estis ĉesigita.", + "Great! You are on the latest version.": "Bonege! Vi jam uzas la plej novan version.", + "There are no new UniGetUI versions to be installed": "Ne estas novaj versioj de UniGetUI por instali", + "An error occurred when checking for updates: ": "Eraro okazis dum kontrolado de ĝisdatigoj: ", + "UniGetUI is being updated...": "UniGetUI estas ĝisdatigata...", + "Something went wrong while launching the updater.": "Io misfunkciis dum lanĉo de la ĝisdatigilo.", + "Please try again later": "Bonvolu reprovi poste", + "Integrity checks will not be performed during this operation": "Integreckontroloj ne estos faritaj dum ĉi tiu operacio", + "This is not recommended.": "Tio ne estas rekomendinda.", + "Run now": "Ruli nun", + "Run next": "Ruli sekve", + "Run last": "Ruli laste", + "Retry as administrator": "Reprovi kiel administranto", + "Retry interactively": "Reprovi interage", + "Retry skipping integrity checks": "Reprovi sen integreckontroloj", + "Installation options": "Instalaj opcioj", + "Show in explorer": "Montri en Esplorilo", + "This package is already installed": "Ĉi tiu pakaĵo jam estas instalita", + "This package can be upgraded to version {0}": "Ĉi tiu pakaĵo povas esti ĝisdatigita al versio {0}", + "Updates for this package are ignored": "Ĝisdatigoj por ĉi tiu pakaĵo estas ignorataj", + "This package is being processed": "Ĉi tiu pakaĵo estas prilaborata", + "This package is not available": "Ĉi tiu pakaĵo ne estas disponebla", + "Select the source you want to add:": "Elektu la fonton, kiun vi volas aldoni:", + "Source name:": "Nomo de la fonto:", + "Source URL:": "URL de la fonto:", + "An error occurred": "Okazis eraro", + "An error occurred when adding the source: ": "Okazis eraro dum aldono de la fonto: ", + "Package management made easy": "Facila pakaĵadministrado", + "version {0}": "versio {0}", + "[RAN AS ADMINISTRATOR]": "[RULIGITA KIEL ADMINISTRANTO]", + "Portable mode": "Portebla reĝimo\n", + "DEBUG BUILD": "SENCIMIGA KONSTRUO", + "Available Updates": "Disponeblaj ĝisdatigoj", + "Show UniGetUI": "Montri UniGetUI", + "Quit": "Eliri", + "Attention required": "Atento bezonata", + "Restart required": "Restartigo bezonata", + "1 update is available": "1 ĝisdatigo disponeblas", + "{0} updates are available": "{0} ĝisdatigoj disponeblas", + "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Ĉi tie vi povas ŝanĝi la konduton de UniGetUI rilate al la jenaj ŝparvojoj. Marki ŝparvojon igos UniGetUI forigi ĝin se ĝi kreiĝos dum estonta ĝisdatigo. Malmarki ĝin konservos la ŝparvojon netuŝita.", + "Manual scan": "Mana skanado", + "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Ekzistantaj ŝparvojoj sur via labortablo estos skanitaj, kaj vi devos elekti kiujn konservi kaj kiujn forigi.", + "Continue": "Daŭrigi", + "Delete?": "Ĉu forigi?", + "Missing dependency": "Mankanta dependaĵo", + "Not right now": "Ne nun", + "Install {0}": "Instali {0}", + "UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI bezonas {0} por funkcii, sed ĝi ne estis trovita en via sistemo.", + "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Alklaku Instali por komenci la instaladon. Se vi preterlasos la instaladon, UniGetUI eble ne funkcios kiel atendite.", + "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Alternative, vi ankaŭ povas instali {0} rulante la jenan komandon en Windows PowerShell-fenestro:", + "Do not show this dialog again for {0}": "Ne montru ĉi tiun dialogon denove por {0}", + "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Bonvolu atendi dum {0} estas instalata. Nigra fenestro eble aperos. Bonvolu atendi ĝis ĝi fermiĝos.", + "{0} has been installed successfully.": "{0} estis instalita sukcese.", + "Please click on \"Continue\" to continue": "Bonvolu alklaki \"Daŭrigi\" por pluiri", + "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} estis instalita sukcese. Oni rekomendas restartigi UniGetUI por fini la instaladon", + "Restart later": "Restartigi poste", + "An error occurred:": "Okazis eraro:", + "I understand": "Mi komprenas", + "WinGet was repaired successfully": "WinGet estis riparita sukcese", + "It is recommended to restart UniGetUI after WinGet has been repaired": "Oni rekomendas restartigi UniGetUI post kiam WinGet estis riparita", + "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "RIMARKO: Ĉi tiu problemosolvilo povas esti malŝaltita en UniGetUI-agordoj, en la sekcio WinGet", + "Restart": "Restartigi", + "WinGet could not be repaired": "WinGet ne povis esti riparita", + "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Neatendita problemo okazis dum provo ripari WinGet. Bonvolu reprovi poste", + "Are you sure you want to delete all shortcuts?": "Ĉu vi certas, ke vi volas forigi ĉiujn ŝparvojojn?", + "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "Ĉiuj novaj ŝparvojoj kreitaj dum instalado aŭ ĝisdatigo estos forigitaj aŭtomate, anstataŭ montri konfirman inviton kiam ili unuafoje estas detektitaj.", + "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Ĉiuj ŝparvojoj kreitaj aŭ modifitaj ekster UniGetUI estos ignorataj. Vi povos aldoni ilin per la butono {0}.", + "Are you really sure you want to enable this feature?": "Ĉu vi vere certas, ke vi volas ebligi ĉi tiun funkcion?", + "No new shortcuts were found during the scan.": "Neniuj novaj ŝparvojoj estis trovitaj dum la skanado.", + "How to add packages to a bundle": "Kiel aldoni pakaĵojn al pakaĵaro", + "In order to add packages to a bundle, you will need to: ": "Por aldoni pakaĵojn al pakaĵaro, vi devos: ", + "1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Iru al la paĝo \"{0}\" aŭ \"{1}\".", + "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. Trovu la pakaĵojn, kiujn vi volas aldoni al la pakaĵaro, kaj elektu ilian plej maldekstran markobutonon.", + "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. Kiam la pakaĵoj, kiujn vi volas aldoni al la pakaĵaro, estas elektitaj, trovu kaj alklaku la opcion \"{0}\" en la ilobreto.", + "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Viaj pakaĵoj estos aldonitaj al la pakaĵaro. Vi povas daŭrigi aldoni pakaĵojn aŭ eksporti la pakaĵaron.", + "Which backup do you want to open?": "Kiun sekurkopion vi volas malfermi?", + "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Elektu la sekurkopion, kiun vi volas malfermi. Poste vi povos revizii kiujn pakaĵojn vi volas instali.", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Estas daŭrantaj operacioj. Eliri el UniGetUI povas kaŭzi ilian malsukceson. Ĉu vi volas daŭrigi?", + "UniGetUI or some of its components are missing or corrupt.": "UniGetUI aŭ kelkaj el ĝiaj komponantoj mankas aŭ estas difektitaj.", + "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Estas forte rekomendite reinstali UniGetUI por solvi la situacion.", + "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Rigardu la protokolojn de UniGetUI por ricevi pliajn detalojn pri la tuŝitaj dosieroj", + "Integrity checks can be disabled from the Experimental Settings": "Integrecaj kontroloj povas esti malŝaltitaj en la Eksperimentaj agordoj", + "Repair UniGetUI": "Ripari UniGetUI", + "Live output": "Rekta eligo", + "Package not found": "Pakaĵo ne trovita", + "An error occurred when attempting to show the package with Id {0}": "Okazis eraro dum provo montri la pakaĵon kun ID {0}", + "Package": "Pakaĵo", + "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "Ĉi tiu pakaĵaro havis kelkajn agordojn, kiuj estas eble danĝeraj, kaj ili eble estos ignorataj defaŭlte.", + "Entries that show in YELLOW will be IGNORED.": "Eroj montrataj en FLAVA estos IGNORATAJ.", + "Entries that show in RED will be IMPORTED.": "Eroj montrataj en RUĜA estos IMPORTITAJ.", + "You can change this behavior on UniGetUI security settings.": "Vi povas ŝanĝi ĉi tiun konduton en la sekurecaj agordoj de UniGetUI.", + "Open UniGetUI security settings": "Malfermi la sekurecajn agordojn de UniGetUI", + "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Se vi modifos la sekurecajn agordojn, vi devos remalfermi la pakaĵaron por ke la ŝanĝoj efektiviĝu.", + "Details of the report:": "Detaloj de la raporto:", + "\"{0}\" is a local package and can't be shared": "\"{0}\" estas loka pakaĵo kaj ne povas esti kundividita", + "Are you sure you want to create a new package bundle? ": "Ĉu vi certas, ke vi volas krei novan pakaĵaron? ", + "Any unsaved changes will be lost": "Ĉiuj nekonservitaj ŝanĝoj perdiĝos", + "Warning!": "Averto!", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "Pro sekurecaj kialoj, propraj komandliniaj argumentoj estas malŝaltitaj defaŭlte. Iru al la sekurecaj agordoj de UniGetUI por ŝanĝi tion. ", + "Change default options": "Ŝanĝi la defaŭltajn opciojn", + "Ignore future updates for this package": "Ignori estontajn ĝisdatigojn por ĉi tiu pakaĵo", + "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "Pro sekurecaj kialoj, antaŭoperaciaj kaj postoperaciaj skriptoj estas malŝaltitaj defaŭlte. Iru al la sekurecaj agordoj de UniGetUI por ŝanĝi tion. ", + "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "Vi povas difini la komandojn, kiuj ruliĝos antaŭ aŭ post kiam ĉi tiu pakaĵo estos instalita, ĝisdatigita aŭ malinstalita. Ili ruliĝos en komandlinia fenestro, do CMD-skriptoj funkcios ĉi tie.", + "Change this and unlock": "Ŝanĝi tion kaj malŝlosi", + "{0} Install options are currently locked because {0} follows the default install options.": "La instalaj opcioj de {0} estas nuntempe ŝlositaj ĉar {0} sekvas la defaŭltajn instalajn opciojn.", + "Select the processes that should be closed before this package is installed, updated or uninstalled.": "Elektu la procezojn, kiuj devus esti fermitaj antaŭ ol ĉi tiu pakaĵo estos instalita, ĝisdatigita aŭ malinstalita.", + "Write here the process names here, separated by commas (,)": "Skribu ĉi tie la nomojn de la procezoj, apartigitajn per komoj (,)", + "Unset or unknown": "Nedifinita aŭ nekonata", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Bonvolu vidi la komandlinian eligon aŭ konsulti la historion de operacioj por pliaj informoj pri la problemo.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ĉi tiu pakaĵo ne havas ekrankopiojn aŭ mankas la ikono? Kontribuu al UniGetUI aldonante la mankantajn ikonojn kaj ekrankopiojn al nia malferma, publika datumbazo.", + "Become a contributor": "Fariĝi kontribuanto", + "Save": "Konservi", + "Update to {0} available": "Ĝisdatigo al {0} disponeblas", + "Reinstall": "Reinstali", + "Installer not available": "Instalilo ne disponeblas", + "Version:": "Versio:", + "Performing backup, please wait...": "Sekurkopiado okazas, bonvolu atendi...", + "An error occurred while logging in: ": "Okazis eraro dum ensaluto: ", + "Fetching available backups...": "Ŝargante disponeblajn sekurkopiojn...", + "Done!": "Farite!", + "The cloud backup has been loaded successfully.": "La nuba sekurkopio estis ŝargita sukcese.", + "An error occurred while loading a backup: ": "Okazis eraro dum ŝargado de sekurkopio: ", + "Backing up packages to GitHub Gist...": "Sekurkopiante pakaĵojn al GitHub Gist...", + "Backup Successful": "Sekurkopio sukcesis", + "The cloud backup completed successfully.": "La nuba sekurkopio finiĝis sukcese.", + "Could not back up packages to GitHub Gist: ": "Ne eblis fari sekurkopion de la pakaĵoj al GitHub Gist: ", + "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "Ne estas garantiite, ke la provizitaj ensalutdatumoj estos konservitaj sekure, do prefere ne uzu la ensalutdatumojn de via banka konto", + "Enable the automatic WinGet troubleshooter": "Ebligi la aŭtomatan WinGet-problemsolvilon", + "Enable an [experimental] improved WinGet troubleshooter": "Ebligi [eksperimentan] plibonigitan WinGet-problemsolvilon", + "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Aldoni ĝisdatigojn, kiuj malsukcesas kun 'no applicable update found', al la listo de ignorataj ĝisdatigoj.", + "Invalid selection": "Nevalida elekto", + "No package was selected": "Neniu pakaĵo estis elektita", + "More than 1 package was selected": "Pli ol 1 pakaĵo estis elektita", + "List": "Listo", + "Grid": "Krado", + "Icons": "Ikonoj", + "\"{0}\" is a local package and does not have available details": "\"{0}\" estas loka pakaĵo kaj ne havas disponeblajn detalojn", + "\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" estas loka pakaĵo kaj ne kongruas kun ĉi tiu funkcio", + "WinGet malfunction detected": "Misfunkcio de WinGet detektita", + "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Ŝajnas, ke WinGet ne funkcias ĝuste. Ĉu vi volas provi ripari WinGet?", + "Repair WinGet": "Ripari WinGet", + "Create .ps1 script": "Krei .ps1-skripton", + "Add packages to bundle": "Aldoni pakaĵojn al la pakaĵaro", + "Preparing packages, please wait...": "Pakaĵoj estas preparataj, bonvolu atendi...", + "Loading packages, please wait...": "Pakaĵoj estas ŝargataj, bonvolu atendi...", + "Saving packages, please wait...": "Pakaĵoj estas konservataj, bonvolu atendi...", + "The bundle was created successfully on {0}": "La pakaĵaro estis sukcese kreita en {0}", + "Install script": "Instala skripto", + "The installation script saved to {0}": "La instala skripto estis konservita en {0}", + "An error occurred while attempting to create an installation script:": "Eraro okazis dum provo krei instalan skripton:", + "{0} packages are being updated": "{0} pakaĵoj estas ĝisdatigataj", + "Error": "Eraro", + "Log in failed: ": "Ensaluto malsukcesis: ", + "Log out failed: ": "Elsaluto malsukcesis: ", + "Package backup settings": "Agordoj de sekurkopio de pakaĵoj", + "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "About UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "WingetUI Settings": "UniGetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI Version {0}", + "WingetUI License": "UniGetUI License", + "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Update UniGetUI automatically", + "Reset WingetUI": "Reset UniGetUI", + "WingetUI display language:": "UniGetUI display language:", + "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Enable WingetUI notifications": "Enable UniGetUI notifications", + "WingetUI Log": "UniGetUI Log", + "Show WingetUI": "Show UniGetUI", + "WingetUI Homepage": "UniGetUI Homepage", + "WingetUI Repository": "UniGetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", + "Restart WingetUI": "Restart UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "(Number {0} in the queue)": "(Number {0} in the queue)", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign", + "0 packages found": "0 packages found", + "0 updates found": "0 updates found", + "1 month": "a month", + "1 package was found": "1 package was found", + "1 year": "1 year", + "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools", + "A restart is required": "A restart is required", + "About Qt6": "About Qt6", + "About WingetUI version {0}": "About UniGetUI version {0}", + "About the dev": "About the dev", + "Action when double-clicking packages, hide successful installations": "Action when double-clicking packages, hide successful installations", + "Add a source to {0}": "Add a source to {0}", + "Add a timestamp to the backup files": "Add a timestamp to the backup files", + "Add packages or open an existing bundle": "Add packages or open an existing bundle", + "Addition succeeded": "Addition succeeded", + "Administrator privileges preferences": "Administrator privileges preferences", + "Administrator rights": "Administrator rights", + "All files": "All files", + "Allow package operations to be performed in parallel": "Allow package operations to be performed in parallel", + "Allow parallel installs (NOT RECOMMENDED)": "Allow parallel installs (NOT RECOMMENDED)", + "Allow {pm} operations to be performed in parallel": "Allow {pm} operations to be performed in parallel", + "Always elevate {pm} installations by default": "Always elevate {pm} installations by default", + "Always run {pm} operations with administrator rights": "Always run {pm} operations with administrator rights", + "An unexpected error occurred:": "An unexpected error occurred:", + "Another source": "Another source", + "App Name": "App Name", + "Are these screenshots wron or blurry?": "Are these screenshots wrong or blurry?", + "Ask for administrator rights when required": "Ask for administrator rights when required", + "Ask once or always for administrator rights, elevate installations by default": "Ask once or always for administrator rights, elevate installations by default", + "Ask only once for administrator privileges (not recommended)": "Ask only once for administrator privileges (not recommended)", + "Authenticate to the proxy with an user and a password": "Authenticate to the proxy with an user and a password", + "Automatically save a list of your installed packages on your computer.": "Automatically save a list of your installed packages on your computer.", + "Autostart WingetUI in the notifications area": "Autostart UniGetUI in the notifications area", + "Available updates: {0}": "Available updates: {0}", + "Available updates: {0}, not finished yet...": "Available updates: {0}, not finished yet...", + "Backup installed packages": "Backup installed packages", + "Backup location": "Backup location", + "But here are other things you can do to learn about WingetUI even more:": "But here are other things you can do to learn about UniGetUI even more:", + "By toggling a package manager off, you will no longer be able to see or update its packages.": "By toggling a package manager off, you will no longer be able to see or update its packages.", + "Cache administrator rights and elevate installers by default": "Cache administrator rights and elevate installers by default", + "Cache administrator rights, but elevate installers only when required": "Cache administrator rights, but elevate installers only when required", + "Cache was reset successfully!": "Cache was reset successfully!", + "Can't {0} {1}": "Can't {0} {1}", + "Cancel all operations": "Cancel all operations", + "Change how UniGetUI installs packages, and checks and installs available updates": "Change how UniGetUI installs packages, and checks and installs available updates", + "Change install location": "Change install location", + "Check for updates periodically": "Check for updates periodically.", + "Check for updates regularly, and ask me what to do when updates are found.": "Check for updates regularly, and ask me what to do when updates are found.", + "Check for updates regularly, and automatically install available ones.": "Check for updates regularly, and automatically install available ones.", + "Check out my {0} and my {1}!": "Check out my {0} and my {1}!", + "Check out some WingetUI overviews": "Check out some UniGetUI reviews", + "Checking for other running instances...": "Checking for other running instances...", + "Checking for updates...": "Checking for updates...", + "Checking found instace(s)...": "Checking found instance(s)...", + "Choose how many operations shouls be performed in parallel": "Choose how many operations should be performed in parallel", + "Clear finished operations": "Clear finished operations", + "Clear successful operations": "Clear successful operations", + "Clear the local icon cache": "Clear the local icon cache", + "Clearing Scoop cache...": "Clearing Scoop cache...", + "Close WingetUI to the notification area": "Close UniGetUI to the notification area", + "Command-line Output": "Command-line Output", + "Compare query against": "Compare query against", + "Component Information": "Component Information", + "Contribute to the icon and screenshot repository": "Contribute to the icon and screenshot repository", + "Copy": "Copy", + "Could not load announcements - ": "Could not load announcements - ", + "Could not load announcements - HTTP status code is $CODE": "Could not load announcements - HTTP status code is $CODE", + "Could not remove {source} from {manager}": "Could not remove {source} from {manager}", + "Current Version": "Current Version", + "Current user": "Current user", + "Custom arguments:": "Custom arguments:", + "Custom command-line arguments:": "Custom command-line arguments:", + "Customize WingetUI - for hackers and advanced users only": "Customize UniGetUI - for hackers and advanced users only", + "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.", + "Default preferences - suitable for regular users": "Default preferences - suitable for regular users", + "Description:": "Description:", + "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "Developing is hard, and this application is free. However, if you found the application helpful, you can always buy me a coffee :)", + "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)", + "Disable new share API (port 7058)": "Disable new share API (port 7058)", + "Discover packages": "Discover Packages", + "Distinguish between\nuppercase and lowercase": "Distinguish between uppercase and lowercase", + "Do NOT check for updates": "Do NOT check for updates", + "Do an interactive install for the selected packages": "Do an interactive install for the selected packages", + "Do an interactive uninstall for the selected packages": "Do an interactive uninstall for the selected packages", + "Do an interactive update for the selected packages": "Do an interactive update for the selected packages", + "Do not download new app translations from GitHub automatically": "Do not download new app translations from GitHub automatically", + "Do not remove successful operations from the list automatically": "Do not remove successful operations from the list automatically", + "Do not update package indexes on launch": "Do not update package indexes on launch", + "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "Do you find UniGetUI useful? If you can, you may want to support my work, so I can continue making UniGetUI the ultimate package managing interface.", + "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!", + "Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?", + "Do you want to restart your computer now?": "Do you want to restart your computer now?", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", + "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.", + "Donate": "Donate", + "Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically", + "Downloading": "Downloading", + "Downloading installer for {package}": "Downloading installer for {package}", + "Downloading package metadata...": "Downloading package metadata...", + "Enable the new UniGetUI-Branded UAC Elevator": "Enable the new UniGetUI-Branded UAC Elevator", + "Enable the new process input handler (StdIn automated closer)": "Enable the new process input handler (StdIn automated closer)", + "Export log as a file": "Export log as a file", + "Export packages": "Export packages", + "Export selected packages to a file": "Export selected packages to a file", + "Fetching latest announcements, please wait...": "Fetching latest announcements, please wait...", + "Finish": "Finish", + "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)", + "Formerly known as WingetUI": "Formerly known as WingetUI", + "Found": "Found", + "Found packages: ": "Found packages: ", + "Found packages: {0}": "Found packages: {0}", + "Found packages: {0}, not finished yet...": "Found packages: {0}, not finished yet...", + "GitHub profile": "GitHub profile", + "Global": "Global", + "Help and documentation": "Help and documentation", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", + "Hide details": "Hide details", + "How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?", + "Ignore updates for the selected packages": "Ignore updates for the selected packages", + "Ignored updates": "Ignored updates", + "Import packages": "Import packages", + "Import packages from a file": "Import packages from a file", + "Initializing WingetUI...": "Initializing UniGetUI...", + "Install and more": "Install and more", + "Install and update preferences": "Install and update preferences", + "Install packages from a file": "Install packages from a file", + "Install selected packages": "Install selected packages", + "Install selected packages with administrator privileges": "Install selected packages with administrator privileges", + "Install the latest prerelease version": "Install the latest prerelease version", + "Install updates automatically": "Install updates automatically", + "Installation canceled by the user!": "Installation canceled by the user!", + "Installed packages": "Installed Packages", + "Instance {0} responded, quitting...": "Instance {0} responded, quitting...", + "Is this package missing the icon?": "Is this package missing the icon?", + "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "It looks like you ran UniGetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges. Click on \"{showDetails}\" to see why.", + "Latest Version": "Latest Version", + "Latest Version:": "Latest Version:", + "Latest details...": "Latest details...", + "Launching subprocess...": "Launching subprocess...", + "Licenses": "Licenses", + "Live command-line output": "Live command-line output", + "Loading UI components...": "Loading UI components...", + "Loading WingetUI...": "Loading UniGetUI...", + "Local machine": "Local machine", + "Locating {pm}...": "Locating {pm}...", + "Looking for packages...": "Looking for packages...", + "Machine | Global": "Machine | Global", + "Manage WingetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "Manage ignored packages": "Manage ignored packages", + "Manifests": "Manifests", + "New Version": "New Version", + "New bundle": "New bundle", + "No packages found": "No packages found", + "No packages found matching the input criteria": "No packages found matching the input criteria", + "No packages have been added yet": "No packages have been added yet", + "No packages selected": "No packages selected", + "No sources found": "No sources found", + "No sources were found": "No sources were found", + "No updates are available": "No updates are available", + "Notes:": "Notes:", + "Notification tray options": "Notification tray options", + "Ok": "OK", + "Open GitHub": "Open GitHub", + "Open WingetUI": "Open UniGetUI", + "Open backup location": "Open backup location", + "Open existing bundle": "Open existing bundle", + "Open the welcome wizard": "Open the welcome wizard", + "Operation cancelled": "Operation cancelled", + "Options saved": "Options saved", + "Package Manager": "Package Manager", + "Package managers": "Package Managers", + "Package {name} from {manager}": "Package {name} from {manager}", + "Packages": "Packages", + "Packages found: {0}": "Packages found: {0}", + "Paste a valid URL to the database": "Paste a valid URL to the database", + "Perform a backup now": "Perform a backup now", + "Periodically perform a backup of the installed packages": "Periodically perform a backup of the installed packages", + "Please enter at least 3 characters": "Please enter at least 3 characters", + "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.", + "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.", + "Please select how you want to configure WingetUI": "Please select how you want to configure UniGetUI", + "Please type at least two characters": "Please type at least two characters", + "Portable": "Portable", + "Publication date:": "Publication date:", + "Quit WingetUI": "Quit UniGetUI", + "Release notes URL:": "Release notes URL:", + "Release notes:": "Release notes:", + "Reload": "Reload", + "Removal failed": "Removal failed", + "Removal succeeded": "Removal succeeded", + "Remove permanent data": "Remove permanent data", + "Remove successful installs/uninstalls/updates from the installation list": "Remove successful installs/uninstalls/updates from the installation list", + "Repository": "Repository", + "Reset Scoop's global app cache": "Reset Scoop's global app cache", + "Reset Winget sources (might help if no packages are listed)": "Reset WinGet sources (might help if no packages are listed)", + "Reset WingetUI and its preferences": "Reset UniGetUI and its preferences", + "Reset WingetUI icon and screenshot cache": "Reset UniGetUI icon and screenshot cache", + "Resetting Winget sources - WingetUI": "Resetting WinGet sources - UniGetUI", + "Restart now": "Restart now", + "Restart your PC to finish installation": "Restart your PC to finish installation", + "Restart your computer to finish the installation": "Restart your computer to finish the installation", + "Retry failed operations": "Retry failed operations", + "Retrying, please wait...": "Retrying, please wait...", + "Return to top": "Return to top", + "Running the installer...": "Running the installer...", + "Running the uninstaller...": "Running the uninstaller...", + "Running the updater...": "Running the updater...", + "Save File": "Save File", + "Save bundle as": "Save bundle as", + "Save now": "Save now", + "Search": "Search", + "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want UniGetUI to overcomplicate, I just want a simple software store", + "Search on available updates": "Search on available updates", + "Search on your software": "Search on your software", + "Searching for installed packages...": "Searching for installed packages...", + "Searching for packages...": "Searching for packages...", + "Searching for updates...": "Searching for updates...", + "Select \"{item}\" to add your custom bucket": "Select \"{item}\" to add your custom bucket", + "Select a folder": "Select a folder", + "Select all packages": "Select all packages", + "Select only if you know what you are doing.": "Select only if you know what you are doing.", + "Select package file": "Select package file", + "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.", + "Sent handshake. Waiting for instance listener's answer... ({0}%)": "Sent handshake. Waiting for instance listener's answer... ({0}%)", + "Set custom backup file name": "Set custom backup file name", + "Share WingetUI": "Share UniGetUI", + "Show UniGetUI on the system tray": "Show UniGetUI on the system tray", + "Show a notification when an installation fails": "Show a notification when an installation fails", + "Show a notification when an installation finishes successfully": "Show a notification when an installation finishes successfully", + "Show details": "Show details", + "Show info about the package on the Updates tab": "Show info about the package on the Updates tab", + "Show missing translation strings": "Show missing translation strings", + "Show package details": "Show package details", + "Show the live output": "Show the live output", + "Skip": "Skip", + "Skip the hash check when installing the selected packages": "Skip the hash check when installing the selected packages", + "Skip the hash check when updating the selected packages": "Skip the hash check when updating the selected packages", + "Source addition failed": "Source addition failed", + "Source removal failed": "Source removal failed", + "Source:": "Source:", + "Start": "Start", + "Starting daemons...": "Starting daemons...", + "Startup options": "Startup options", + "Status": "Status", + "Stuck here? Skip initialization": "Stuck here? Skip initialization", + "Suport the developer": "Support the developer", + "Support me": "Support me", + "Support the developer": "Support the developer", + "Systems are now ready to go!": "Systems are now ready to go!", + "Text file": "Text file", + "Thank you Γ¥ñ": "Thank you Γ¥ñ", + "Thank you 😉": "Thank you 😉", + "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.", + "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.", + "The following packages are going to be installed on your system.": "The following packages are going to be installed on your system.", + "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.", + "The icons and screenshots are maintained by users like you!": "The icons and screenshots are maintained by users like you!", + "The installer has an invalid checksum": "The installer has an invalid checksum", + "The installer hash does not match the expected value.": "The installer hash does not match the expected value.", + "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "The main goal of this project is to create an intuitive UI for the most common CLI package managers for Windows, such as Winget and Scoop.", + "The package {0} from {1} was not found.": "The package {0} from {1} was not found.", + "The selected packages have been blacklisted": "The selected packages have been blacklisted", + "The update will be installed upon closing WingetUI": "The update will be installed upon closing UniGetUI", + "The update will not continue.": "The update will not continue.", + "The user has canceled {0}, that was a requirement for {1} to be run": "The user has canceled {0}, that was a requirement for {1} to be run", + "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "There are some great videos on YouTube that showcase UniGetUI and its capabilities. You could learn useful tricks and tips!", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "There are two main reasons to not run UniGetUI as administrator:\nThe first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\nThe second one is that running UniGetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\nRemember that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.", + "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "There is an installation in progress. If you close UniGetUI, the installation may fail and have unexpected results. Do you still want to quit UniGetUI?", + "They are the programs in charge of installing, updating and removing packages.": "They are the programs in charge of installing, updating and removing packages.", + "This could represent a security risk.": "This could represent a security risk.", + "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}", + "This is the default choice.": "This is the default choice.", + "This package can be updated": "This package can be updated", + "This package can be updated to version {0}": "This package can be updated to version {0}", + "This process is running with administrator privileges": "This process is running with administrator privileges", + "This project has no connection with the official {0} project ΓÇö it's completely unofficial.": "This project has no connection with the official {0} project ΓÇö it's completely unofficial.", + "This setting is disabled": "This setting is disabled", + "This wizard will help you configure and customize WingetUI!": "This wizard will help you configure and customize UniGetUI!", + "Toggle search filters pane": "Toggle search filters pane", + "Type here the name and the URL of the source you want to add, separed by a space.": "Type here the name and the URL of the source you want to add, separated by a space.", + "Unable to find package": "Unable to find the package", + "Unable to load informarion": "Unable to load information", + "Uninstall and more": "Uninstall and more", + "Uninstall canceled by the user!": "Uninstall canceled by the user!", + "Uninstall the selected packages with administrator privileges": "Uninstall the selected packages with administrator privileges", + "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.", + "Update and more": "Update and more", + "Update date": "Update date", + "Update found!": "Update found!", + "Update package indexes on launch": "Update package indexes on launch", + "Update packages automatically": "Update packages automatically", + "Update selected packages": "Update selected packages", + "Update selected packages with administrator privileges": "Update selected packages with administrator privileges", + "Update vcpkg's Git portfiles automatically (requires Git installed)": "Update vcpkg's Git portfiles automatically (requires Git installed)", + "Updates": "Updates", + "Updates available!": "Updates available!", + "Updates preferences": "Updates preferences", + "Updating WingetUI": "Updating UniGetUI", + "Url": "URL", + "Use Legacy bundled WinGet instead of PowerShell CMDLets": "Use Legacy bundled WinGet instead of PowerShell CMDLets", + "Use bundled WinGet instead of PowerShell CMDlets": "Use bundled WinGet instead of PowerShell CMDlets", + "Use installed GSudo instead of the bundled one": "Use installed GSudo instead of the bundled one", + "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Use legacy UniGetUI Elevator (may be helpful if having issues with UniGetUI Elevator)", + "Use system Chocolatey (Needs a restart)": "Use system Chocolatey (Needs a restart)", + "Use system Winget (Needs a restart)": "Use system Winget (Needs a restart)", + "Use system Winget (System language must be set to english)": "Use WinGet (System language must be set to English)", + "Use the WinGet COM API to fetch packages": "Use the WinGet COM API to fetch packages", + "Use the WinGet PowerShell Module instead of the WinGet COM API": "Use the WinGet PowerShell Module instead of the WinGet COM API", + "User": "User", + "User | Local": "User | Local", + "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Using UniGetUI implies the acceptance of the GNU Lesser General Public License v2.1 License", + "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings", + "Vcpkg was not found on your system.": "Vcpkg was not found on your system.", + "View WingetUI on GitHub": "View UniGetUI on GitHub", + "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "View UniGetUI's source code. From there, you can report bugs or suggest features, or even contribute directly to the UniGetUI project", + "Waiting for other installations to finish...": "Waiting for other installations to finish...", + "Waiting for {0} to complete...": "Waiting for {0} to complete...", + "We could not load detailed information about this package, because it was not found in any of your package sources": "We could not load detailed information about this package, because it was not found in any of your package sources.", + "We could not load detailed information about this package, because it was not installed from an available package manager.": "We could not load detailed information about this package, because it was not installed from an available package manager.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.", + "We couldn't find any package": "We couldn't find any package", + "Welcome to WingetUI": "Welcome to UniGetUI", + "Which package managers do you want to use?": "Which package managers do you want to use?", + "Which source do you want to add?": "Which source do you want to add?", + "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "While WinGet can be used within UniGetUI, UniGetUI can be used with other package managers, which can be confusing. In the past, UniGetUI was designed to work only with Winget, but this is not true anymore, and therefore UniGetUI does not represent what this project aims to become.", + "WingetUI": "UniGetUI", + "WingetUI - Everything is up to date": "UniGetUI - Everything is up to date", + "WingetUI - {0} updates are available": "UniGetUI - {0} updates are available", + "WingetUI - {0} {1}": "UniGetUI - {0} {1}", + "WingetUI Homepage - Share this link!": "UniGetUI Homepage - Share this link!", + "WingetUI Settings File": "UniGetUI Settings File", + "WingetUI autostart behaviour, application launch settings": "UniGetUI autostart behaviour, application launch settings", + "WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI can check if your software has available updates, and install them automatically if you want", + "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI has not been machine translated! The following users have been in charge of the translations:", + "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI is being renamed in order to emphasize the difference between UniGetUI (the interface you are using right now) and WinGet (a package manager developed by Microsoft with which I am not related)", + "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI is being updated. When finished, UniGetUI will restart itself", + "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.", + "WingetUI log": "UniGetUI Log", + "WingetUI tray application preferences": "UniGetUI tray application preferences", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI version {0} is being downloaded.": "UniGetUI version {0} is being downloaded.", + "WingetUI will become {newname} soon!": "WingetUI will become {newname} soon!", + "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.", + "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI will show a UAC prompt every time a package requires elevation to be installed.", + "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "UniGetUI wouldn't have been possible without the help of our dear contributors. Check out their GitHub profiles, UniGetUI wouldn't be possible without them!", + "WingetUI {0} is ready to be installed.": "UniGetUI {0} is ready to be installed.", + "You may restart your computer later if you wish": "You may restart your computer later if you wish", + "You will be prompted only once, and administrator rights will be granted to packages that request them.": "You will be prompted only once, and administrator rights will be granted to packages that request them.", + "You will be prompted only once, and every future installation will be elevated automatically.": "You will be prompted only once, and every future installation will be elevated automatically.", + "buy me a coffee": "buy me a coffee", + "formerly WingetUI": "formerly WingetUI", + "homepage": "Homepage", + "install": "Install", + "installation": "installation", + "uninstall": "Uninstall", + "uninstallation": "uninstallation", + "uninstalled": "uninstalled", + "update(noun)": "update", + "update(verb)": "update", + "updated": "updated", + "{0} Uninstallation": "{0} Uninstallation", + "{0} aborted": "{0} aborted", + "{0} can be updated": "{0} can be updated", + "{0} failed": "{0} failed", + "{0} has failed, that was a requirement for {1} to be run": "{0} has failed, that was a requirement for {1} to be run", + "{0} installation": "{0} installation", + "{0} is being updated": "{0} is being updated", + "{0} months": "{0} months", + "{0} packages found": "{0} packages found", + "{0} packages were found": "{0} packages were found", + "{0} succeeded": "{0} succeeded", + "{0} update": "{0} update", + "{0} was {1} successfully!": "{0} was {1} successfully!", + "{0} weeks": "{0} weeks", + "{0} years": "{0} years", + "{0} {1} failed": "{0} {1} failed", + "{package} installation failed": "{package} installation failed", + "{package} uninstall failed": "{package} uninstall failed", + "{package} update failed": "{package} update failed", + "{package} update failed. Click here for more details.": "{package} update failed. Click here for more details.", + "{pm} could not be found": "{pm} could not be found", + "{pm} found: {state}": "{pm} found: {state}", + "{pm} package manager specific preferences": "{pm} package manager specific preferences", + "{pm} preferences": "{pm} preferences" +} diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es-MX.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es-MX.json index c220edf243..f0dd52c056 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es-MX.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es-MX.json @@ -1,1075 +1,1152 @@ { - "Operation in progress": "", - "Please wait...": "", - "Success!": "", - "Failed": "", - "An error occurred while processing this package": "", - "Log in to enable cloud backup": "", - "Backup Failed": "", - "Downloading backup...": "", - "An update was found!": "", - "{0} can be updated to version {1}": "", - "Updates found!": "", - "{0} packages can be updated": "", - "You have currently version {0} installed": "", - "Desktop shortcut created": "", - "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "", - "{0} desktop shortcuts created": "", - "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "", - "Are you sure?": "", - "Do you really want to uninstall {0}?": "", - "Do you really want to uninstall the following {0} packages?": "", - "No": "", - "Yes": "", - "View on UniGetUI": "", - "Update": "", - "Open UniGetUI": "", - "Update all": "", - "Update now": "", - "This package is on the queue": "", - "installing": "", - "updating": "", - "uninstalling": "", - "installed": "", - "Retry": "", - "Install": "", - "Uninstall": "", - "Open": "", - "Operation profile:": "", - "Follow the default options when installing, upgrading or uninstalling this package": "", - "The following settings will be applied each time this package is installed, updated or removed.": "", - "Version to install:": "", - "Architecture to install:": "", - "Installation scope:": "", - "Install location:": "", - "Select": "", - "Reset": "", - "Custom install arguments:": "", - "Custom update arguments:": "", - "Custom uninstall arguments:": "", - "Pre-install command:": "", - "Post-install command:": "", - "Abort install if pre-install command fails": "", - "Pre-update command:": "", - "Post-update command:": "", - "Abort update if pre-update command fails": "", - "Pre-uninstall command:": "", - "Post-uninstall command:": "", - "Abort uninstall if pre-uninstall command fails": "", - "Command-line to run:": "", - "Save and close": "", - "Run as admin": "", - "Interactive installation": "", - "Skip hash check": "", - "Uninstall previous versions when updated": "", - "Skip minor updates for this package": "", - "Automatically update this package": "", - "{0} installation options": "", - "Latest": "", - "PreRelease": "", - "Default": "", - "Manage ignored updates": "", - "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "", - "Reset list": "", - "Package Name": "", - "Package ID": "", - "Ignored version": "", - "New version": "", - "Source": "", - "All versions": "", - "Unknown": "", - "Up to date": "", - "Cancel": "", - "Administrator privileges": "", - "This operation is running with administrator privileges.": "", - "Interactive operation": "", - "This operation is running interactively.": "", - "You will likely need to interact with the installer.": "", - "Integrity checks skipped": "", - "Proceed at your own risk.": "", - "Close": "", - "Loading...": "", - "Installer SHA256": "", - "Homepage": "", - "Author": "", - "Publisher": "", - "License": "", - "Manifest": "", - "Installer Type": "", - "Size": "", - "Installer URL": "", - "Last updated:": "", - "Release notes URL": "", - "Package details": "", - "Dependencies:": "", - "Release notes": "", - "Version": "", - "Install as administrator": "", - "Update to version {0}": "", - "Installed Version": "", - "Update as administrator": "", - "Interactive update": "", - "Uninstall as administrator": "", - "Interactive uninstall": "", - "Uninstall and remove data": "", - "Not available": "", - "Installer SHA512": "", - "Unknown size": "", - "No dependencies specified": "", - "mandatory": "", - "optional": "", - "UniGetUI {0} is ready to be installed.": "", - "The update process will start after closing UniGetUI": "", - "Share anonymous usage data": "", - "UniGetUI collects anonymous usage data in order to improve the user experience.": "", - "Accept": "", - "You have installed WingetUI Version {0}": "", - "Disclaimer": "", - "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "{0} homepage": "", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "", - "Verbose": "", - "1 - Errors": "", - "2 - Warnings": "", - "3 - Information (less)": "", - "4 - Information (more)": "", - "5 - information (debug)": "", - "Warning": "", - "The following settings may pose a security risk, hence they are disabled by default.": "", - "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "", - "The settings will list, in their descriptions, the potential security issues they may have.": "", - "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "", - "The backup will NOT include any binary file nor any program's saved data.": "", - "The size of the backup is estimated to be less than 1MB.": "", - "The backup will be performed after login.": "", - "{pcName} installed packages": "", - "Current status: Not logged in": "", - "You are logged in as {0} (@{1})": "", - "Nice! Backups will be uploaded to a private gist on your account": "", - "Select backup": "", - "WingetUI Settings": "", - "Allow pre-release versions": "", - "Apply": "", - "Go to UniGetUI security settings": "", - "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "", - "Package's default": "", - "Install location can't be changed for {0} packages": "", - "The local icon cache currently takes {0} MB": "", - "Username": "", - "Password": "", - "Credentials": "", - "Partially": "", - "Package manager": "", - "Compatible with proxy": "", - "Compatible with authentication": "", - "Proxy compatibility table": "", - "{0} settings": "", - "{0} status": "", - "Default installation options for {0} packages": "", - "Expand version": "", - "The executable file for {0} was not found": "", - "{pm} is disabled": "", - "Enable it to install packages from {pm}.": "", - "{pm} is enabled and ready to go": "", - "{pm} version:": "", - "{pm} was not found!": "", - "You may need to install {pm} in order to use it with WingetUI.": "", - "Scoop Installer - WingetUI": "", - "Scoop Uninstaller - WingetUI": "", - "Clearing Scoop cache - WingetUI": "", - "Restart UniGetUI": "", - "Manage {0} sources": "", - "Add source": "", - "Add": "", - "Other": "", - "1 day": "", - "{0} days": "", - "{0} minutes": "", - "1 hour": "", - "{0} hours": "", - "1 week": "", - "WingetUI Version {0}": "", - "Search for packages": "", - "Local": "", - "OK": "", - "{0} packages were found, {1} of which match the specified filters.": "", - "{0} selected": "", - "(Last checked: {0})": "", - "Enabled": "", - "Disabled": "", - "More info": "", - "Log in with GitHub to enable cloud package backup.": "", - "More details": "", - "Log in": "", - "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "", - "Log out": "", - "About": "", - "Third-party licenses": "", - "Contributors": "", - "Translators": "", - "Manage shortcuts": "", - "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "", - "Do you really want to reset this list? This action cannot be reverted.": "", - "Remove from list": "", - "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "", - "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "", - "More details about the shared data and how it will be processed": "", - "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "", - "Decline": "", - "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "", - "About WingetUI": "", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "", - "Useful links": "", - "Report an issue or submit a feature request": "", - "View GitHub Profile": "", - "WingetUI License": "", - "Using WingetUI implies the acceptation of the MIT License": "", - "Become a translator": "", - "View page on browser": "", - "Copy to clipboard": "", - "Export to a file": "", - "Log level:": "", - "Reload log": "", - "Text": "", - "Change how operations request administrator rights": "", - "Restrictions on package operations": "", - "Restrictions on package managers": "", - "Restrictions when importing package bundles": "", - "Ask for administrator privileges once for each batch of operations": "", - "Ask only once for administrator privileges": "", - "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "", - "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "", - "Allow custom command-line arguments": "", - "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "", - "Allow changing the paths for package manager executables": "", - "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "", - "Allow importing custom command-line arguments when importing packages from a bundle": "", - "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "", - "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "", - "Administrator rights and other dangerous settings": "", - "Package backup": "", - "Cloud package backup": "", - "Local package backup": "", - "Local backup advanced options": "", - "Log in with GitHub": "", - "Log out from GitHub": "", - "Periodically perform a cloud backup of the installed packages": "", - "Cloud backup uses a private GitHub Gist to store a list of installed packages": "", - "Perform a cloud backup now": "", - "Backup": "", - "Restore a backup from the cloud": "", - "Begin the process to select a cloud backup and review which packages to restore": "", - "Periodically perform a local backup of the installed packages": "", - "Perform a local backup now": "", - "Change backup output directory": "", - "Set a custom backup file name": "", - "Leave empty for default": "", - "Add a timestamp to the backup file names": "", - "Backup and Restore": "", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "", - "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "", - "Disable the 1-minute timeout for package-related operations": "", - "Use installed GSudo instead of UniGetUI Elevator": "", - "Use a custom icon and screenshot database URL": "", - "Enable background CPU Usage optimizations (see Pull Request #3278)": "", - "Perform integrity checks at startup": "", - "When batch installing packages from a bundle, install also packages that are already installed": "", - "Experimental settings and developer options": "", - "Show UniGetUI's version and build number on the titlebar.": "", - "Language": "", - "UniGetUI updater": "", - "Telemetry": "", - "Manage UniGetUI settings": "", - "Related settings": "", - "Update WingetUI automatically": "", - "Check for updates": "", - "Install prerelease versions of UniGetUI": "", - "Manage telemetry settings": "", - "Manage": "", - "Import settings from a local file": "", - "Import": "", - "Export settings to a local file": "", - "Export": "", - "Reset WingetUI": "", - "Reset UniGetUI": "", - "User interface preferences": "", - "Application theme, startup page, package icons, clear successful installs automatically": "", - "General preferences": "", - "WingetUI display language:": "", - "Is your language missing or incomplete?": "", - "Appearance": "", - "UniGetUI on the background and system tray": "", - "Package lists": "", - "Close UniGetUI to the system tray": "", - "Show package icons on package lists": "", - "Clear cache": "", - "Select upgradable packages by default": "", - "Light": "", - "Dark": "", - "Follow system color scheme": "", - "Application theme:": "", - "Discover Packages": "", - "Software Updates": "", - "Installed Packages": "", - "Package Bundles": "", - "Settings": "", - "UniGetUI startup page:": "", - "Proxy settings": "", - "Other settings": "", - "Connect the internet using a custom proxy": "", - "Please note that not all package managers may fully support this feature": "", - "Proxy URL": "", - "Enter proxy URL here": "", - "Package manager preferences": "", - "Ready": "", - "Not found": "", - "Notification preferences": "", - "Notification types": "", - "The system tray icon must be enabled in order for notifications to work": "", - "Enable WingetUI notifications": "", - "Show a notification when there are available updates": "", - "Show a silent notification when an operation is running": "", - "Show a notification when an operation fails": "", - "Show a notification when an operation finishes successfully": "", - "Concurrency and execution": "", - "Automatic desktop shortcut remover": "", - "Clear successful operations from the operation list after a 5 second delay": "", - "Download operations are not affected by this setting": "", - "Try to kill the processes that refuse to close when requested to": "", - "You may lose unsaved data": "", - "Ask to delete desktop shortcuts created during an install or upgrade.": "", - "Package update preferences": "", - "Update check frequency, automatically install updates, etc.": "", - "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "", - "Package operation preferences": "", - "Enable {pm}": "", - "Not finding the file you are looking for? Make sure it has been added to path.": "", - "For security reasons, changing the executable file is disabled by default": "", - "Change this": "", - "Select the executable to be used. The following list shows the executables found by UniGetUI": "", - "Current executable file:": "", - "Ignore packages from {pm} when showing a notification about updates": "", - "View {0} logs": "", - "Advanced options": "", - "Reset WinGet": "", - "This may help if no packages are listed": "", - "Force install location parameter when updating packages with custom locations": "", - "Use bundled WinGet instead of system WinGet": "", - "This may help if WinGet packages are not shown": "", - "Install Scoop": "", - "Uninstall Scoop (and its packages)": "", - "Run cleanup and clear cache": "", - "Run": "", - "Enable Scoop cleanup on launch": "", - "Use system Chocolatey": "", - "Default vcpkg triplet": "", - "Language, theme and other miscellaneous preferences": "", - "Show notifications on different events": "", - "Change how UniGetUI checks and installs available updates for your packages": "", - "Automatically save a list of all your installed packages to easily restore them.": "", - "Enable and disable package managers, change default install options, etc.": "", - "Internet connection settings": "", - "Proxy settings, etc.": "", - "Beta features and other options that shouldn't be touched": "", - "Update checking": "", - "Automatic updates": "", - "Check for package updates periodically": "", - "Check for updates every:": "", - "Install available updates automatically": "", - "Do not automatically install updates when the network connection is metered": "", - "Do not automatically install updates when the device runs on battery": "", - "Do not automatically install updates when the battery saver is on": "", - "Change how UniGetUI handles install, update and uninstall operations.": "", - "Package Managers": "", - "More": "", - "WingetUI Log": "", - "Package Manager logs": "", - "Operation history": "", - "Help": "", - "Order by:": "", - "Name": "", - "Id": "", - "Ascendant": "", - "Descendant": "", - "View mode:": "", - "Filters": "", - "Sources": "", - "Search for packages to start": "", - "Select all": "", - "Clear selection": "", - "Instant search": "", - "Distinguish between uppercase and lowercase": "", - "Ignore special characters": "", - "Search mode": "", - "Both": "", - "Exact match": "", - "Show similar packages": "", - "No results were found matching the input criteria": "", - "No packages were found": "", - "Loading packages": "", - "Skip integrity checks": "", - "Download selected installers": "", - "Install selection": "", - "Install options": "", - "Share": "", - "Add selection to bundle": "", - "Download installer": "", - "Share this package": "", - "Uninstall selection": "", - "Uninstall options": "", - "Ignore selected packages": "", - "Open install location": "", - "Reinstall package": "", - "Uninstall package, then reinstall it": "", - "Ignore updates for this package": "", - "Do not ignore updates for this package anymore": "", - "Add packages or open an existing package bundle": "", - "Add packages to start": "", - "The current bundle has no packages. Add some packages to get started": "", - "New": "", - "Save as": "", - "Remove selection from bundle": "", - "Skip hash checks": "", - "The package bundle is not valid": "", - "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "", - "Package bundle": "", - "Could not create bundle": "", - "The package bundle could not be created due to an error.": "", - "Bundle security report": "", - "Hooray! No updates were found.": "", - "Everything is up to date": "", - "Uninstall selected packages": "", - "Update selection": "", - "Update options": "", - "Uninstall package, then update it": "", - "Uninstall package": "", - "Skip this version": "", - "Pause updates for": "", - "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "", - "The classical package manager for windows. You'll find everything there.
Contains: General Software": "", - "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "", - "NuPkg (zipped manifest)": "", - "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "", - "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "", - "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "", - "extracted": "", - "Scoop package": "", - "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "", - "library": "", - "feature": "", - "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "", - "option": "", - "This package cannot be installed from an elevated context.": "", - "Please run UniGetUI as a regular user and try again.": "", - "Please check the installation options for this package and try again": "", - "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "", - "Local PC": "", - "Android Subsystem": "", - "Operation on queue (position {0})...": "", - "Click here for more details": "", - "Operation canceled by user": "", - "Starting operation...": "", - "{package} installer download": "", - "{0} installer is being downloaded": "", - "Download succeeded": "", - "{package} installer was downloaded successfully": "", - "Download failed": "", - "{package} installer could not be downloaded": "", - "{package} Installation": "", - "{0} is being installed": "", - "Installation succeeded": "", - "{package} was installed successfully": "", - "Installation failed": "", - "{package} could not be installed": "", - "{package} Update": "", - "{0} is being updated to version {1}": "", - "Update succeeded": "", - "{package} was updated successfully": "", - "Update failed": "", - "{package} could not be updated": "", - "{package} Uninstall": "", - "{0} is being uninstalled": "", - "Uninstall succeeded": "", - "{package} was uninstalled successfully": "", - "Uninstall failed": "", - "{package} could not be uninstalled": "", - "Adding source {source}": "", - "Adding source {source} to {manager}": "", - "Source added successfully": "", - "The source {source} was added to {manager} successfully": "", - "Could not add source": "", - "Could not add source {source} to {manager}": "", - "Removing source {source}": "", - "Removing source {source} from {manager}": "", - "Source removed successfully": "", - "The source {source} was removed from {manager} successfully": "", - "Could not remove source": "", - "Could not remove source {source} from {manager}": "", - "The package manager \"{0}\" was not found": "", - "The package manager \"{0}\" is disabled": "", - "There is an error with the configuration of the package manager \"{0}\"": "", - "The package \"{0}\" was not found on the package manager \"{1}\"": "", - "{0} is disabled": "", - "Something went wrong": "", - "An interal error occurred. Please view the log for further details.": "", - "No applicable installer was found for the package {0}": "", - "We are checking for updates.": "", - "Please wait": "", - "UniGetUI version {0} is being downloaded.": "", - "This may take a minute or two": "", - "The installer authenticity could not be verified.": "", - "The update process has been aborted.": "", - "Great! You are on the latest version.": "", - "There are no new UniGetUI versions to be installed": "", - "An error occurred when checking for updates: ": "", - "UniGetUI is being updated...": "", - "Something went wrong while launching the updater.": "", - "Please try again later": "", - "Integrity checks will not be performed during this operation": "", - "This is not recommended.": "", - "Run now": "", - "Run next": "", - "Run last": "", - "Retry as administrator": "", - "Retry interactively": "", - "Retry skipping integrity checks": "", - "Installation options": "", - "Show in explorer": "", - "This package is already installed": "", - "This package can be upgraded to version {0}": "", - "Updates for this package are ignored": "", - "This package is being processed": "", - "This package is not available": "", - "Select the source you want to add:": "", - "Source name:": "", - "Source URL:": "", - "An error occurred": "", - "An error occurred when adding the source: ": "", - "Package management made easy": "", - "version {0}": "", - "[RAN AS ADMINISTRATOR]": "", - "Portable mode": "", - "DEBUG BUILD": "", - "Available Updates": "", - "Show WingetUI": "", - "Quit": "", - "Attention required": "", - "Restart required": "", - "1 update is available": "", - "{0} updates are available": "", - "WingetUI Homepage": "", - "WingetUI Repository": "", - "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "", - "Manual scan": "", - "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "", - "Continue": "", - "Delete?": "", - "Missing dependency": "", - "Not right now": "", - "Install {0}": "", - "UniGetUI requires {0} to operate, but it was not found on your system.": "", - "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "", - "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "", - "Do not show this dialog again for {0}": "", - "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "", - "{0} has been installed successfully.": "", - "Please click on \"Continue\" to continue": "", - "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "", - "Restart later": "", - "An error occurred:": "", - "I understand": "", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "", - "WinGet was repaired successfully": "", - "It is recommended to restart UniGetUI after WinGet has been repaired": "", - "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "", - "Restart": "", - "WinGet could not be repaired": "", - "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "", - "Are you sure you want to delete all shortcuts?": "", - "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "", - "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "", - "Are you really sure you want to enable this feature?": "", - "No new shortcuts were found during the scan.": "", - "How to add packages to a bundle": "", - "In order to add packages to a bundle, you will need to: ": "", - "1. Navigate to the \"{0}\" or \"{1}\" page.": "", - "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "", - "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "", - "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "", - "Which backup do you want to open?": "", - "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "", - "UniGetUI or some of its components are missing or corrupt.": "", - "It is strongly recommended to reinstall UniGetUI to adress the situation.": "", - "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "", - "Integrity checks can be disabled from the Experimental Settings": "", - "Repair UniGetUI": "", - "Live output": "", - "Package not found": "", - "An error occurred when attempting to show the package with Id {0}": "", - "Package": "", - "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "", - "Entries that show in YELLOW will be IGNORED.": "", - "Entries that show in RED will be IMPORTED.": "", - "You can change this behavior on UniGetUI security settings.": "", - "Open UniGetUI security settings": "", - "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "", - "Details of the report:": "", - "\"{0}\" is a local package and can't be shared": "", - "Are you sure you want to create a new package bundle? ": "", - "Any unsaved changes will be lost": "", - "Warning!": "", - "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "", - "Change default options": "", - "Ignore future updates for this package": "", - "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "", - "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "", - "Change this and unlock": "", - "{0} Install options are currently locked because {0} follows the default install options.": "", - "Select the processes that should be closed before this package is installed, updated or uninstalled.": "", - "Write here the process names here, separated by commas (,)": "", - "Unset or unknown": "", - "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "", - "Become a contributor": "", - "Save": "", - "Update to {0} available": "", - "Reinstall": "", - "Installer not available": "", - "Version:": "", - "Performing backup, please wait...": "", - "An error occurred while logging in: ": "", - "Fetching available backups...": "", - "Done!": "", - "The cloud backup has been loaded successfully.": "", - "An error occurred while loading a backup: ": "", - "Backing up packages to GitHub Gist...": "", - "Backup Successful": "", - "The cloud backup completed successfully.": "", - "Could not back up packages to GitHub Gist: ": "", - "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "", - "Enable the automatic WinGet troubleshooter": "", - "Enable an [experimental] improved WinGet troubleshooter": "", - "Add updates that fail with a 'no applicable update found' to the ignored updates list": "", - "Restart WingetUI to fully apply changes": "", - "Restart WingetUI": "", - "Invalid selection": "", - "No package was selected": "", - "More than 1 package was selected": "", - "List": "", - "Grid": "", - "Icons": "", - "\"{0}\" is a local package and does not have available details": "", - "\"{0}\" is a local package and is not compatible with this feature": "", - "WinGet malfunction detected": "", - "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "", - "Repair WinGet": "", - "Create .ps1 script": "", - "Add packages to bundle": "", - "Preparing packages, please wait...": "", - "Loading packages, please wait...": "", - "Saving packages, please wait...": "", - "The bundle was created successfully on {0}": "", - "Install script": "", - "The installation script saved to {0}": "", - "An error occurred while attempting to create an installation script:": "", - "{0} packages are being updated": "", - "Error": "", - "Log in failed: ": "", - "Log out failed: ": "", - "Package backup settings": "", + "Operation in progress": "Operación en curso", + "Please wait...": "Por favor espere...", + "Success!": "Éxito!", + "Failed": "Fallido.", + "An error occurred while processing this package": "Ocurrió un error mientras se procesaba este paquete", + "Log in to enable cloud backup": "Inicia sesión para habilitar la copia de seguridad en la nube.", + "Backup Failed": "Error en la copia de seguridad.", + "Downloading backup...": "Descargando copia de seguridad...", + "An update was found!": "¡Se encontró una actualización!", + "{0} can be updated to version {1}": "{0} puede actualizarse a la versión {1}", + "Updates found!": "¡Actualizaciones disponibles!", + "{0} packages can be updated": "{0} paquetes pueden ser actualizados", + "You have currently version {0} installed": "Actualmente tienes instalada la versión {0}", + "Desktop shortcut created": "Acceso directo de escritorio creado", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI ha detectado un nuevo atajo de escritorio que se puede eliminar automaticamente", + "{0} desktop shortcuts created": "Se han creado {0} accesos directos en el escritorio", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI ha detectado {0} un nuevo atajo del escritorio que se puede eliminar automaticamente.", + "Are you sure?": "¿Estás seguro?", + "Do you really want to uninstall {0}?": "¿Realmente quieres desinstalar {0}?", + "Do you really want to uninstall the following {0} packages?": "¿Realmente quiere desinstalar los siguientes {0} paquetes?", + "No": "No", + "Yes": "Sí", + "View on UniGetUI": "Ver en UniGetUI", + "Update": "Actualizar", + "Open UniGetUI": "Abrir UniGetUI", + "Update all": "Actualizar todos", + "Update now": "Actualizar ahora", + "This package is on the queue": "Este paquete está en la cola", + "installing": "instalando", + "updating": "actualizando", + "uninstalling": "desinstalando", + "installed": "instalado", + "Retry": "Reintentar", + "Install": "Instalar", + "Uninstall": "Desinstalar", + "Open": "Abrir", + "Operation profile:": "Perfil de operación:", + "Follow the default options when installing, upgrading or uninstalling this package": "Seguir las opciones predeterminadas al instalar, actualizar o desinstalar este paquete.", + "The following settings will be applied each time this package is installed, updated or removed.": "Las siguientes configuraciones se aplicarán cada vez que este paquete sea instalado, actualizado o removido.", + "Version to install:": "Versión a instalar:", + "Architecture to install:": "Arquitectura a instalar:", + "Installation scope:": "Entorno de instalación:", + "Install location:": "Ubicación de instalación:", + "Select": "Seleccionar", + "Reset": "Restablecer", + "Custom install arguments:": "Argumentos de instalación personalizados:", + "Custom update arguments:": "Argumentos personalizados para actualización:", + "Custom uninstall arguments:": "Argumentos personalizados para desinstalación:", + "Pre-install command:": "Comando previo a la instalación:", + "Post-install command:": "Comando posterior a la instalación:", + "Abort install if pre-install command fails": "Cancelar la instalación si falla el comando previo.", + "Pre-update command:": "Comando previo a la actualización:", + "Post-update command:": "Comando posterior a la actualización:", + "Abort update if pre-update command fails": "Cancelar la actualización si falla el comando previo.", + "Pre-uninstall command:": "Comando previo a la desinstalación:", + "Post-uninstall command:": "Comando posterior a la desinstalación:", + "Abort uninstall if pre-uninstall command fails": "Cancelar la desinstalación si falla el comando previo.", + "Command-line to run:": "Línea de comandos a ejecutar:", + "Save and close": "Salvar y salir", + "General": "Generales", + "Architecture & Location": "Arquitectura y ubicación", + "Command-line": "Línea de comandos", + "Pre/Post install": "Pre/Postinstalación", + "Run as admin": "Ejecutar como admin", + "Interactive installation": "Instalación interactiva", + "Skip hash check": "Omitir comprobación de hash", + "Uninstall previous versions when updated": "Desinstalar versiones anteriores al actualizar.", + "Skip minor updates for this package": "Saltarse las actualizaciones menores para este paquete", + "Automatically update this package": "Actualizar este paquete automáticamente", + "{0} installation options": "Opciones de instalación de {0}", + "Latest": "Última", + "PreRelease": "PreLanzamiento", + "Default": "Por defecto", + "Manage ignored updates": "Administrar actualizaciones ignoradas", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Los paquetes listados aquí no se tendrán en cuenta cuando se compruebe si hay actualizaciones disponibles. Haga doble click en ellos o pulse el botón a su derecha para dejar de ignorar sus actualizaciones.", + "Reset list": "Reiniciar lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "¿Realmente quieres restablecer la lista de actualizaciones ignoradas? Esta acción no se puede revertir.", + "No ignored updates": "No hay actualizaciones ignoradas", + "Package Name": "Nombre de Paquete", + "Package ID": "ID de Paquete", + "Ignored version": "Versión Ignorada", + "New version": "Nueva versión", + "Source": "Origen", + "All versions": "Todas las versiones", + "Unknown": "Desconocido", + "Up to date": "Ya está actualizado", + "Cancel": "Cancelar", + "Administrator privileges": "Privilegios de administrador", + "This operation is running with administrator privileges.": "Esta operación se está ejecutando con derechos de administrador.", + "Interactive operation": "Operación interactiva", + "This operation is running interactively.": "Esta operación se está ejecutando de forma interactiva.", + "You will likely need to interact with the installer.": "Es muy probable que sea necesario interactuar con el instalador", + "Integrity checks skipped": "Comprobaciones de integridad omitidas", + "Integrity checks will not be performed during this operation.": "No se realizarán comprobaciones de integridad durante esta operación.", + "Proceed at your own risk.": "Proceda bajo su responsabilidad", + "Close": "Cerrar", + "Loading...": "Cargando...", + "Installer SHA256": "SHA256 del instalador", + "Homepage": "Sitio web", + "Author": "Autor", + "Publisher": "Publicador", + "License": "Licencia", + "Manifest": "Manifiesto", + "Installer Type": "Tipo de instalador", + "Size": "Tamaño", + "Installer URL": "URL del instalador", + "Last updated:": "Actualizado por última vez:", + "Release notes URL": "URL de notas de lanzamiento", + "Package details": "Detalles del paquete", + "Dependencies:": "Dependencias:", + "Release notes": "Notas de liberación", + "Version": "Versión", + "Install as administrator": "Instalar como administrador", + "Update to version {0}": "Actualizar a la versión \"{0}\"", + "Installed Version": "Versión Instalada", + "Update as administrator": "Actualizar como administrador", + "Interactive update": "Actualización interactiva", + "Uninstall as administrator": "Desinstalar como administrador", + "Interactive uninstall": "Desinstalación interactiva", + "Uninstall and remove data": "Desinstalar y eliminar datos", + "Not available": "No disponible", + "Installer SHA512": "SHA512 del instalador", + "Unknown size": "Tamaño desconocido", + "No dependencies specified": "No se especificaron dependencias.", + "mandatory": "obligatorio", + "optional": "opcional", + "UniGetUI {0} is ready to be installed.": "UniGetUI {0} esta listo para ser instalado", + "The update process will start after closing UniGetUI": "El proceso de actualización comenzará cuando se cierre UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI se ha ejecutado como administrador, lo cual no se recomienda. Cuando UniGetUI se ejecuta como administrador, TODA operación iniciada desde UniGetUI tendrá privilegios de administrador. Aun así puedes usar el programa, pero recomendamos encarecidamente no ejecutar UniGetUI con privilegios de administrador.", + "Share anonymous usage data": "Compartir datos de uso anónimos", + "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI recoge datos de uso anónimos con el único fin de mejorar la experiencia del usuario.", + "Accept": "Aceptar", + "You have installed UniGetUI Version {0}": "Tienes instalado UniGetUI versión {0}", + "Disclaimer": "Descargo de responsabilidad", + "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI no está relacionado con los administradores de paquetes compatibles. UniGetUI es un proyecto independiente.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI no habría sido posible sin la ayuda de los contribuidores. Gracias a todos 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", + "{0} homepage": "Página oficial de {0}", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ha sido traducido a más de 40 idiomas gracias a traductores voluntarios. Gracias 🤝", + "Verbose": "Verboso", + "1 - Errors": "1 - Errores", + "2 - Warnings": "2 - Advertencias", + "3 - Information (less)": "3 - Información (menos)", + "4 - Information (more)": "4 - Información (más)", + "5 - information (debug)": "5 - Información (depuración)", + "Warning": "Advertencia", + "The following settings may pose a security risk, hence they are disabled by default.": "Las siguientes configuraciones pueden suponer un riesgo de seguridad, por lo que están desactivadas por defecto.", + "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Activa las siguientes opciones solo si comprendes completamente lo que hacen y sus implicaciones.", + "The settings will list, in their descriptions, the potential security issues they may have.": "Las configuraciones indicarán, en su descripción, los posibles riesgos de seguridad que puedan tener.", + "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "El respaldo incluirá la lista completa de los paquetes instalados y sus opciones de instalación. Las actualizaciones ignoradas y salteadas también se salvarán.", + "The backup will NOT include any binary file nor any program's saved data.": "El respaldo NO incluirá ningún archivo binario ni los datos guardados de ningún programa.", + "The size of the backup is estimated to be less than 1MB.": "El tamaño de este respaldo está estimado en menos de 1 MB.", + "The backup will be performed after login.": "El respaldo se llevará a cabo después de iniciar sesión.", + "{pcName} installed packages": "Paquetes instalados en {pcName}", + "Current status: Not logged in": "Estado actual: No has iniciado sesión.", + "You are logged in as {0} (@{1})": "Has iniciado sesión como {0} (@{1})", + "Nice! Backups will be uploaded to a private gist on your account": "¡Genial! Las copias de seguridad se subirán como un Gist privado en tu cuenta.", + "Select backup": "Seleccionar copia de seguridad.", + "UniGetUI Settings": "Configuración de UniGetUI", + "Allow pre-release versions": "Permitir versiones preliminares.", + "Apply": "Aplicar", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por motivos de seguridad, los argumentos personalizados de la línea de comandos están deshabilitados de forma predeterminada. Ve a la configuración de seguridad de UniGetUI para cambiarlo.", + "Go to UniGetUI security settings": "Ir a la configuración de seguridad de UniGetUI.", + "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Las siguientes opciones se aplicarán por defecto cada vez que se instale, actualice o desinstale un paquete {0}.", + "Package's default": "Predeterminado del paquete.", + "Install location can't be changed for {0} packages": "No se puede cambiar la ubicación de instalación para {0} paquetes.", + "The local icon cache currently takes {0} MB": "El caché de iconos local ocupa {0} MB", + "Username": "Nombre de usuario", + "Password": "Contraseña", + "Credentials": "Credenciales", + "It is not guaranteed that the provided credentials will be stored safely": "No se garantiza que las credenciales proporcionadas se almacenen de forma segura", + "Partially": "Parcialmente", + "Package manager": "Administrador de paquetes", + "Compatible with proxy": "Compatible con proxy", + "Compatible with authentication": "Compatible con autenticación", + "Proxy compatibility table": "Tabla de compatibilidad de proxy", + "{0} settings": "Configuración del {0}", + "{0} status": "estado de {0}", + "Default installation options for {0} packages": "Opciones predeterminadas de instalación para {0} paquetes.", + "Expand version": "Expandir versión", + "The executable file for {0} was not found": "No se encontró el archivo ejecutable para {0}", + "{pm} is disabled": "{pm} está deshabilitado", + "Enable it to install packages from {pm}.": "Habilítelo para instalar paquetes de {pm}.", + "{pm} is enabled and ready to go": "{pm} está habilitado y listo para usarse", + "{pm} version:": "Versión de {pm}:", + "{pm} was not found!": "¡Se encontró {pm}!", + "You may need to install {pm} in order to use it with UniGetUI.": "Tal vez necesites instalar {pm} para usarlo con UniGetUI.", + "Scoop Installer - UniGetUI": "Instalador de Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstalador de Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Limpiando caché de Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicia UniGetUI para aplicar los cambios por completo", + "Restart UniGetUI": "Reiniciar UniGetUI", + "Manage {0} sources": "Administrar orígenes de {0}", + "Add source": "Añadir origen", + "Add": "Agregar", + "Source name": "Nombre del origen", + "Source URL": "URL del origen", + "Other": "Otro", + "No minimum age": "Sin antigüedad mínima", + "1 day": "1 día", + "{0} days": "{0} días", + "Custom...": "Personalizado...", + "{0} minutes": "{0} minutos", + "1 hour": "1 hora", + "{0} hours": "{0} horas", + "1 week": "1 semana", + "Supports release dates": "Admite fechas de lanzamiento", + "Release date support per package manager": "Compatibilidad de fechas de lanzamiento por gestor de paquetes", + "UniGetUI Version {0}": "UniGetUI Versión {0}", + "Search for packages": "Buscar paquetes", + "Local": "Local", + "OK": "Aceptar", + "{0} packages were found, {1} of which match the specified filters.": "Se encontraron {1} paquetes, {0} de los cuales coinciden con los filtros especificados.", + "{0} selected": "{0} seleccionados", + "(Last checked: {0})": "(Comprobado por última vez: {0})", + "Enabled": "Habilitado", + "Disabled": "Desactivado", + "More info": "Más información", + "GitHub account": "Cuenta de GitHub", + "Log in with GitHub to enable cloud package backup.": "Inicia sesión con GitHub para habilitar la copia de seguridad de paquetes en la nube.", + "More details": "Más detalles", + "Log in": "Iniciar sesión.", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Si tienes activada la copia en la nube, se guardará como un Gist de GitHub en esta cuenta.", + "Log out": "Cerrar sesión.", + "About UniGetUI": "Acerca de UniGetUI", + "About": "Acerca de", + "Third-party licenses": "Licencias de terceros", + "Contributors": "Contribuidores", + "Translators": "Traductores", + "Manage shortcuts": "Gestionar atajos", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ha detectado los siguientes accesos directos en el escritorio que se pueden eliminar automáticamente en las siguientes actualizaciones", + "Do you really want to reset this list? This action cannot be reverted.": "¿Realmente quieres restablecer esta lista? Esta acción no puede revertirse.", + "Open in explorer": "Abrir en el explorador de archivos", + "Remove from list": "Eliminar de la lista", + "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Cuando se detectan nuevos accesos directos, eliminarlos automáticamente en lugar de mostrar este diálogo.", + "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI recoge datos de uso anónimos con el único fin de entender y mejorar la experiencia del usuario.", + "More details about the shared data and how it will be processed": "Más detalles sobre qué datos se comparten y sobre cómo se procesa la información compartida", + "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aceptas que UniGetUI recoja y envie estadísticas anónimas de uso, con el único propósito de entender y mejorar la experiencia del usuario?", + "Decline": "Declinar", + "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "No se recogen datos personales, y los datos enviados están anonimizados, de forma que no se pueden relacionar con ud.", + "Toggle navigation panel": "Mostrar u ocultar el panel de navegación", + "Minimize": "Minimizar", + "Maximize": "Maximizar", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI es una aplicación que hace administrar tu software más fácil, proporcionando una interfaz gráfica unificada para todos tus administradores de paquetes de línea de comandos.", + "Useful links": "Links útiles", + "UniGetUI Homepage": "Sitio web de UniGetUI", + "Report an issue or submit a feature request": "Reportar un problema o enviar una solicitud de característica", + "UniGetUI Repository": "Repositorio de UniGetUI", + "View GitHub Profile": "Ver Perfil GitHub", + "UniGetUI License": "Licencia de UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Usar UniGetUI implica la aceptación de la Licencia MIT", + "Become a translator": "Conviértete en traductor", + "View page on browser": "Ver página en navegador", + "Copy to clipboard": "Copiar al portapapeles", + "Export to a file": "Exportar a un archivo", + "Log level:": "Nivel del registro:", + "Reload log": "Recargar el registro", + "Export log": "Exportar registro", + "UniGetUI Log": "Registro de UniGetUI", + "Text": "Texto", + "Change how operations request administrator rights": "Cambiar cómo las operaciones solicitan derechos de administrador.", + "Restrictions on package operations": "Restricciones sobre operaciones de paquetes.", + "Restrictions on package managers": "Restricciones sobre los gestores de paquetes.", + "Restrictions when importing package bundles": "Restricciones al importar paquetes agrupados.", + "Ask for administrator privileges once for each batch of operations": "Pedir privilegios de administrador una vez por cada lote de operaciones", + "Ask only once for administrator privileges": "Solicitar privilegios de administrador solo una vez.", + "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Prohibir cualquier tipo de elevación mediante UniGetUI Elevator o GSudo.", + "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Esta opción CAUSARÁ problemas. Cualquier operación que no pueda elevar privilegios FALLARÁ. Instalar/actualizar/desinstalar como administrador NO FUNCIONARÁ.", + "Allow custom command-line arguments": "Admitir argumentos de línea de comandos personalizados", + "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Los argumentos de línea de comandos personalizados puede cambia la forma en que los programas se instalan, actualizan o desinstalan, de una forma que UniGetUI no puede controlar. Usar líneas de comandos personalizadas puede romper paquetes. Procede con precaución.", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Permitir que se ejecuten comandos personalizados de pre-instalación y post-instalación", + "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Los comandos pre y post instalación se ejecutarán antes y después de que un paquete se instale, actualice o desinstale. Tenga presente que pueden romper cosas a menos que se los use con cuidado", + "Allow changing the paths for package manager executables": "Permitir cambiar las rutas de los ejecutables del gestor de paquetes.", + "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Activar esto permite cambiar el ejecutable usado para interactuar con gestores de paquetes. Aunque ofrece más personalización, puede ser peligroso.", + "Allow importing custom command-line arguments when importing packages from a bundle": "Permitir importar argumentos de línea de comandos personalizados al importar paquetes de un grupo", + "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "Argumentos de línea de comandos malformados pueden romper paquetes, o incluso permitir que un actor malicioso obtenga ejecución privilegiada. Por tanto, importar líneas de comandos personalizadas está deshabilitado por defecto.", + "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Permitir importar comandos personalizados antes y después de la instalación al importar paquetes desde un lote.", + "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "Los comandos pre y post instalación puede hacer cosas muy feas a tu dispositivo, si se las diseña para eso. Puede ser muy peligroso importar los comandos de un grupo, a menos que confíe en el origen de ese grupo de paquetes.", + "Administrator rights and other dangerous settings": "Permisos de administrador y otras configuraciones peligrosas.", + "Package backup": "Respaldo de paquete", + "Cloud package backup": "Copia de seguridad de paquetes en la nube.", + "Local package backup": "Copia de seguridad de paquetes local.", + "Local backup advanced options": "Opciones avanzadas de copia de seguridad local.", + "Log in with GitHub": "Inicia sesión con GitHub.", + "Log out from GitHub": "Cerrar sesión de GitHub.", + "Periodically perform a cloud backup of the installed packages": "Realizar periódicamente copia de seguridad en la nube de los paquetes instalados.", + "Cloud backup uses a private GitHub Gist to store a list of installed packages": "La copia de seguridad en la nube usa un Gist privado de GitHub para almacenar la lista de paquetes instalados.", + "Perform a cloud backup now": "Realizar copia de seguridad en la nube ahora.", + "Backup": "Respaldar", + "Restore a backup from the cloud": "Restaurar copia de seguridad desde la nube.", + "Begin the process to select a cloud backup and review which packages to restore": "Inicia el proceso para seleccionar una copia de seguridad en la nube y revisar qué paquetes restaurar.", + "Periodically perform a local backup of the installed packages": "Realizar periódicamente copia de seguridad local de los paquetes instalados.", + "Perform a local backup now": "Realizar copia de seguridad local ahora.", + "Change backup output directory": "Cambiar carpeta de salida", + "Set a custom backup file name": "Establecer un nombre personalizado para el archivo de respaldo", + "Leave empty for default": "Dejar vacío por defecto", + "Add a timestamp to the backup file names": "Añadir una marca de tiempo a los nombres de los archivos de copia de seguridad", + "Backup and Restore": "Copia de seguridad y restauración.", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Habilitar API en segundo plano (Widgets de UniGetUI y Compartir, puerto 7058)", + "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Esperar a que el dispositivo esté conectado a internet antes de ejecutar qualquier tarea que requiera conexión a internet.", + "Disable the 1-minute timeout for package-related operations": "Desactiva el tiempo de espera de 1-minuto para operaciones de paquete relacionadas", + "Use installed GSudo instead of UniGetUI Elevator": "Usar GSudo instalado en lugar de UniGetUI Elevator.", + "Use a custom icon and screenshot database URL": "Usar una URL personalizada de base de datos de íconos y capturas de pantalla", + "Enable background CPU Usage optimizations (see Pull Request #3278)": "Activar las optimizaciones de CPU en fondo (ver Pull Request #3278)", + "Perform integrity checks at startup": "Llevar a cabo chequeos de integridad al inicio", + "When batch installing packages from a bundle, install also packages that are already installed": "Al instalar paquetes en lote desde un paquete, también instalar los que ya están presentes.", + "Experimental settings and developer options": "Configuraciones y opciones de desarrollador experimentales", + "Show UniGetUI's version and build number on the titlebar.": "Mostrar la versión de UniGetUI en la barra de título", + "Language": "Idioma", + "UniGetUI updater": "Actualizador de UniGetUI", + "Telemetry": "Telemetría", + "Manage UniGetUI settings": "Administrar la configuración de UniGetUI", + "Related settings": "Configuraciones relacionadas", + "Update UniGetUI automatically": "Actualizar UniGetUI automáticamente", + "Check for updates": "Buscar actualizaciones", + "Install prerelease versions of UniGetUI": "Instalar versiones prerelease de UniGetUI", + "Manage telemetry settings": "Administrar las preferencias de la telemetria", + "Manage": "Administrar", + "Import settings from a local file": "Importar la configuración desde un archivo local", + "Import": "Importar", + "Export settings to a local file": "Exportar la configuración a un archivo local", + "Export": "Exportar", + "Reset UniGetUI": "Reiniciar UniGetUI", + "User interface preferences": "Preferencias de interfaz de usuario", + "Application theme, startup page, package icons, clear successful installs automatically": "Tema de la aplicación, página de inicio, iconos en los paquetes, quita las operaciones exitosas automáticamente", + "General preferences": "Preferencias generales", + "UniGetUI display language:": "Idioma de presentación de UniGetUI:", + "Is your language missing or incomplete?": "¿Falta tu idioma o está incompleto?", + "Appearance": "Apariencia", + "UniGetUI on the background and system tray": "UniGetUI en segundo plano y en la bandeja del sistema", + "Package lists": "Listas de paquetes", + "Close UniGetUI to the system tray": "Cerrar UniGetUI a la bandeja del sistema", + "Manage UniGetUI autostart behaviour": "Administrar el inicio automático de UniGetUI", + "Show package icons on package lists": "Mostrar iconos de paquete en las listas de paquete", + "Clear cache": "Borrar caché", + "Select upgradable packages by default": "Seleccione los paquetes actualizables por defecto", + "Light": "Claro", + "Dark": "Oscuro", + "Follow system color scheme": "Seguir el esquema de colores del sistema", + "Application theme:": "Tema de la aplicación:", + "Discover Packages": "Descubrir Paquetes", + "Software Updates": "Actualizaciones de Software", + "Installed Packages": "Paquetes Instalados", + "Package Bundles": "Grupos de Paquetes", + "Settings": "Configuración", + "UniGetUI startup page:": "Página principal de UniGetUI:", + "Proxy settings": "Configuración de proxy", + "Other settings": "Otras configuraciones", + "Connect the internet using a custom proxy": "Conectar a internet usando un proxy personalizado", + "Please note that not all package managers may fully support this feature": "Por favor note que no todos los administradores de paquetes soportan esta característica", + "Proxy URL": "URL del proxy", + "Enter proxy URL here": "Entre la URL del proxy aquí", + "Authenticate to the proxy with a user and a password": "Autenticarse en el proxy con un usuario y una contraseña", + "Internet and proxy settings": "Configuración de Internet y proxy", + "Package manager preferences": "Preferencias de los gestores de paquetes", + "Ready": "Preparado", + "Not found": "No encontrado", + "Notification preferences": "Preferencias de las notificaciones", + "Notification types": "Tipos de notificación", + "The system tray icon must be enabled in order for notifications to work": "El ícono de la bandeja de sistema debe estar habilitado para que funcionen las notificaciones", + "Enable UniGetUI notifications": "Activar las notificaciones de UniGetUI", + "Show a notification when there are available updates": "Mostrar una notificación cuando haya actualizaciones disponibles", + "Show a silent notification when an operation is running": "Mostrar una notificación silenciosa cuando una operación está en ejecución", + "Show a notification when an operation fails": "Mostrar una notificación cuando una operación falla", + "Show a notification when an operation finishes successfully": "Mostrar una notificación cuando una operación se completa exitosamente", + "Concurrency and execution": "Concurrencia y ejecución", + "Automatic desktop shortcut remover": "Eliminador del acceso directo del escritorio automático", + "Choose how many operations should be performed in parallel": "Elegir cuántas operaciones deben realizarse en paralelo", + "Clear successful operations from the operation list after a 5 second delay": "Eliminar las operaciones exitosas de la lista de operaciones después de 5 segundos", + "Download operations are not affected by this setting": "Las operaciones de descarga no se ven afectadas por esta configuración.", + "Try to kill the processes that refuse to close when requested to": "Intentar cerrar los procesos que no responden.", + "You may lose unsaved data": "Podrías perder datos no guardados.", + "Ask to delete desktop shortcuts created during an install or upgrade.": "Pregunta para eliminar accesos directos del escritorio creados durante la instalación o actualización", + "Package update preferences": "Preferencias de actualización de paquetes", + "Update check frequency, automatically install updates, etc.": "Frecuencia del chequeo de actualizaciones, instalar actualizaciones automáticamente, etc.", + "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Reducir avisos de UAC, elevar instalaciones por defecto, desbloquear funciones peligrosas, etc.", + "Package operation preferences": "Preferencias de operaciones de paquetes", + "Enable {pm}": "Habilitar {pm}", + "Not finding the file you are looking for? Make sure it has been added to path.": "¿No encuentras el archivo? Asegúrate de que esté en la variable PATH.", + "For security reasons, changing the executable file is disabled by default": "Por motivos de seguridad, cambiar el ejecutable está deshabilitado por defecto.", + "Change this": "Cambiar esto.", + "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecciona el ejecutable a usar. La siguiente lista muestra los ejecutables que UniGetUI ha encontrado en el sistema.", + "Current executable file:": "Ejecutable actual:", + "Ignore packages from {pm} when showing a notification about updates": "Ignorar los paquetes de {pm} al mostrar una notificación sobre actualizaciones", + "Update security": "Seguridad de las actualizaciones", + "Use global setting": "Usar la configuración global", + "e.g. 10": "p. ej., 10", + "{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", + "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", + "Minimum age for updates": "Antigüedad mínima de las actualizaciones", + "Custom minimum age (days)": "Antigüedad mínima personalizada (días)", + "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, ", + "Advanced options": "Opciones avanzadas", + "Reset WinGet": "Restablecer WinGet", + "This may help if no packages are listed": "Esto puede ayudar si no se lista ningún paquete", + "Force install location parameter when updating packages with custom locations": "Forzar el parámetro de ubicación de instalación al actualizar paquetes con ubicaciones personalizadas", + "Use bundled WinGet instead of system WinGet": "Usar el WinGet incorporado en lugar del WinGet del sistema", + "This may help if WinGet packages are not shown": "Esto puede ayudar si no se muestran los paquetes de WinGet", + "Install Scoop": "Instalar Scoop", + "Uninstall Scoop (and its packages)": "Desinstalar Scoop (y sus paquetes)", + "Run cleanup and clear cache": "Ejecutar limpieza y limpiar caché", + "Run": "Ejecutar", + "Enable Scoop cleanup on launch": "Habilitar la limpieza de Scoop al iniciar", + "Use system Chocolatey": "Usar el Chocolatey del sistema", + "Default vcpkg triplet": "Tripleta predeterminada de vcpkg", + "Change vcpkg root location": "Cambiar la ubicación raíz de vcpkg", + "Language, theme and other miscellaneous preferences": "Idioma, tema y otras preferencias varias", + "Show notifications on different events": "Muestra notificaciones en diferentes situaciones", + "Change how UniGetUI checks and installs available updates for your packages": "Cambia cómo UniGetUI comprueba e instala las actualizaciones de tus paquetes", + "Automatically save a list of all your installed packages to easily restore them.": "Salvar automáticamente una lista de todos tus paquetes instalados para fácilmente restaurarlos.", + "Enable and disable package managers, change default install options, etc.": "Habilitar y deshabilitar gestores de paquetes, cambiar opciones de instalación predeterminadas, etc.", + "Internet connection settings": "Configuración de conexión a Internet", + "Proxy settings, etc.": "Configuración de proxy, etc.", + "Beta features and other options that shouldn't be touched": "Funciones beta y otras opciones que no deberían tocarse", + "Update checking": "Comprobación de actualizaciones", + "Automatic updates": "Actualizaciones automáticas", + "Check for package updates periodically": "Comprobar actualizaciones de paquetes periódicamente", + "Check for updates every:": "Buscar actualizaciones cada:", + "Install available updates automatically": "Instala las actualizaciones disponibles automáticamente", + "Do not automatically install updates when the network connection is metered": "No instalar actualizaciones automáticamente cuando se esté en una conexión de red medida", + "Do not automatically install updates when the device runs on battery": "No instalar actualizaciones automáticamente mientras el dispositivo no esté enchufado.", + "Do not automatically install updates when the battery saver is on": "No instalar actualizaciones automáticamente cuando está activo el ahorro de batería", + "Only show updates that are at least the specified number of days old": "Mostrar solo actualizaciones que tengan al menos la antigüedad especificada en días", + "Change how UniGetUI handles install, update and uninstall operations.": "Cambiar cómo UniGetUI maneja las operaciones de instalación, actualización y desinstalación.", + "Package Managers": "Admin. de Paquetes", + "More": "Más", + "Package Manager logs": "Registros del administrador de paquetes", + "Operation history": "Historial de operaciones", + "Help": "Ayuda", + "Quit UniGetUI": "Salir de UniGetUI", + "Order by:": "Ordenar por:", + "Name": "Nombre", + "Id": "ID", + "Ascendant": "Ascendente", + "Descendant": "Descendente", + "View mode:": "Modo de visualización:", + "Filters": "Filtros", + "Sources": "Orígenes", + "Search for packages to start": "Busque paquetes para empezar", + "Select all": "Seleccionar todo", + "Clear selection": "Limpiar la selección", + "Instant search": "Búsqueda instantánea", + "Distinguish between uppercase and lowercase": "Distinguir entre mayúsculas y minúsculas", + "Ignore special characters": "Ignorar caracteres especiales", + "Search mode": "Modo de búsqueda", + "Both": "Ambos", + "Exact match": "Coincidencia exacta", + "Show similar packages": "Mostrar paquetes similares", + "Nothing to share": "No hay nada que compartir", + "Please select a package first.": "Selecciona primero un paquete.", + "Share link copied": "Enlace para compartir copiado", + "The share link for {0} has been copied to the clipboard.": "El enlace para compartir de {0} se ha copiado al portapapeles.", + "No results were found matching the input criteria": "No se encontraron resultados para el criterio ingresado", + "No packages were found": "No se encontraron paquetes", + "Loading packages": "Cargando paquetes", + "Skip integrity checks": "Saltear chequeos de integridad", + "Download selected installers": "Descargar instaladores seleccionados.", + "Install selection": "Instalar selección", + "Install options": "Opciones de instalación.", + "Share": "Compartir", + "Add selection to bundle": "Añadir la selección al grupo", + "Download installer": "Descargar instalador", + "Share this package": "Compartir este paquete", + "Uninstall selection": "Desinstalar selección", + "Uninstall options": "Opciones de desinstalación.", + "Ignore selected packages": "Ignorar los paquetes seleccionados", + "Open install location": "Abrir directorio de instalación", + "Reinstall package": "Reinstalar paquete", + "Uninstall package, then reinstall it": "Desinstalar paquete, y luego reinstalarlo", + "Ignore updates for this package": "Ignorar actualizaciones para este paquete", + "Do not ignore updates for this package anymore": "No ignores actualizaciones de este paquete", + "Add packages or open an existing package bundle": "Añadir paquetes o abrir un grupo de paquetes existente", + "Add packages to start": "Añadir algunos paquetes para empezar", + "The current bundle has no packages. Add some packages to get started": "El grupo actual no contiene paquetes. Añade algunos para comenzar", + "New": "Nuevo.", + "Save as": "Guardar como", + "Remove selection from bundle": "Eliminar selección de grupo", + "Skip hash checks": "Saltar las verificaciones de hash", + "The package bundle is not valid": "El grupo de paquetes no es válido", + "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "El grupo de paquetes que intentas cargar parece ser inválido. Por favor, comprueba el archivo e inténtalo de nuevo.", + "Package bundle": "Grupo de paquetes", + "Could not create bundle": "No se pudo crear el grupo de paquetes", + "The package bundle could not be created due to an error.": "El grupo de paquetes no se pudo crear debido a error.", + "Unsaved changes": "Cambios sin guardar", + "Discard changes": "Descartar cambios", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Hay cambios sin guardar en el paquete actual. ¿Quieres descartarlos?", + "Bundle security report": "Informe de seguridad del paquete.", + "The bundle contained restricted content": "El paquete contenía contenido restringido", + "Hooray! No updates were found.": "¡Hurra! ¡No se han encontrado actualizaciones!", + "Everything is up to date": "Todo está actualizado", + "Uninstall selected packages": "Desinstalar los paquetes seleccionados", + "Update selection": "Actualizar seleccionados", + "Update options": "Opciones de actualización.", + "Uninstall package, then update it": "Desinstalar paquete, y luego actualizarlo", + "Uninstall package": "Desinstalar paquete", + "Skip this version": "Omitir esta versión", + "Pause updates for": "Pausar actualizaciones por", + "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "El administrador de paquetes de Rust.
Contiene: Librerías de Rust y programas escritos en Rust", + "The classical package manager for windows. You'll find everything there.
Contains: General Software": "El gestor de paquetes clásico para Windows. Encontrarás de todo ahí.
Contiene: Software general", + "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repositorio lleno de herramientas y ejecutables diseñados con el ecosistema .NET de Microsoft en mente.
Contiene: Herramientas y scripts relacionados con .NET", + "NuPkg (zipped manifest)": "NuPkg (manifiesto comprimido con zip)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "El gestor de paquetes que faltaba para macOS (o Linux).
Contiene: Formulae, Casks", + "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Administrador de paquetes de Node JS. Lleno de bibliotecas y otras utilidades del mundo de Javascript
Contiene: Bibliotecas de Javascript de Node y otras utilidades relacionadas", + "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Administrador de librerías de Python. Lleno de bibliotecas python y otras utilidades relacionadas con python.
Contiene: Librerías python y utilidades relacionadas", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "El administrador de paquetes de PowerShell. Encuentre librerías y scripts para expandir las capacidades de PowerShell
Contiene: Módulos, Scripts, Cmdlets", + "extracted": "extraído", + "Scoop package": "Paquete de Scoop", + "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "Gran repositorio lleno de utilidades desconocidas pero útiles y otros paquetes interesantes.
Contiene: Utilidades, Programas de línea de comandos, Software general (se requiere el bucket de extras)", + "library": "librería", + "feature": "característica", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "Un gestor popular de librerías de C/C++. Lleno de liberías de C/C++ y otras utilidades relacionadas con C/C++
Contiene: Librerías de C/C++ y utilidades relacionadas.", + "option": "opción", + "This package cannot be installed from an elevated context.": "Este paquete no ser puede instalar desde un contexto elevado", + "Please run UniGetUI as a regular user and try again.": "Por favor, ejecuta UniGetUI como un usuario normal e inténtelo de nuevo", + "Please check the installation options for this package and try again": "Por favor, verifique las opciones de instalación de este paquete e inténtelo de nuevo", + "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "Administrador de paquetes oficial de Microsoft. Lleno de paquetes conocidos y verificados
Contiene: Software en general, aplicaciones de Microsoft Store", + "Local PC": "PC Local", + "Android Subsystem": "Subsistema de Android", + "Operation on queue (position {0})...": "Operación en cola (posición {0})...", + "Click here for more details": "Haga click aquí para más detalles", + "Operation canceled by user": "Operación cancelada por el usuario", + "Running PreOperation ({0}/{1})...": "Ejecutando PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} de {1} falló y estaba marcada como necesaria. Abortando...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} de {1} finalizó con el resultado {2}", + "Starting operation...": "Empezando operación...", + "Running PostOperation ({0}/{1})...": "Ejecutando PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} de {1} falló y estaba marcada como necesaria. Abortando...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} de {1} finalizó con el resultado {2}", + "{package} installer download": "Descarga del instalador de {package}", + "{0} installer is being downloaded": "Se está descargando el instalador de {0}", + "Download succeeded": "Descarga exitosa", + "{package} installer was downloaded successfully": "El instalador de {package} se ha descargado correctamente", + "Download failed": "La descarga ha fallado", + "{package} installer could not be downloaded": "No se pudo descargar el instalador de {package} ", + "{package} Installation": "Instalación de {package}", + "{0} is being installed": "{0} está siendo instalado", + "Installation succeeded": "Instalación exitosa", + "{package} was installed successfully": "{package} se instaló correctamente", + "Installation failed": "La instalación falló", + "{package} could not be installed": "{package} no se pudo instalar", + "{package} Update": "Actualización de {package}", + "{0} is being updated to version {1}": "{0} está siendo actualizado a la versión {1}", + "Update succeeded": "Actualización exitosa", + "{package} was updated successfully": "{package} se actualizó correctamente", + "Update failed": "La actualización falló", + "{package} could not be updated": "{package} no se pudo actualizar", + "{package} Uninstall": "Desinstalación de {package}", + "{0} is being uninstalled": "{0} está siendo desinstalado", + "Uninstall succeeded": "Desinstalación exitosa", + "{package} was uninstalled successfully": "{package} se desinstaló correctamente", + "Uninstall failed": "La desinstalación falló", + "{package} could not be uninstalled": "{package} no se pudo desinstalar", + "Adding source {source}": "Añadiendo fuente {source}", + "Adding source {source} to {manager}": "Agregando origen {source} a {manager}", + "Source added successfully": "Fuente añadida exitosamente", + "The source {source} was added to {manager} successfully": "El origen {source} se agregó a {manager} exitosamente.", + "Could not add source": "No se ha podido añadir la fuente", + "Could not add source {source} to {manager}": "No se pudo agregar el origen {source} a {manager}", + "Removing source {source}": "Eliminando la fuente {source}", + "Removing source {source} from {manager}": "Eliminando origen {source} from {manager}", + "Source removed successfully": "Fuente eliminada exitosamente", + "The source {source} was removed from {manager} successfully": "El origen {source} fue eliminado de {manager} exitosamente.", + "Could not remove source": "No se ha podido eliminar la fuente", + "Could not remove source {source} from {manager}": "No se pudo eliminar el origen {source} de {manager}", + "The package manager \"{0}\" was not found": "No se encontró el administrador de paquetes \"{0}\"", + "The package manager \"{0}\" is disabled": "El administrador de paquetes \"{0}\" está desactivado", + "There is an error with the configuration of the package manager \"{0}\"": "Hay un error en la configuración del administrador de paquetes \"{0}\"", + "The package \"{0}\" was not found on the package manager \"{1}\"": "No se encontró el paquete \"{0}\" en el administrador de paquetes \"{1}\"", + "{0} is disabled": "{0} está deshabilitado", + "Something went wrong": "Algo salió mal", + "An interal error occurred. Please view the log for further details.": "Se ha producido un error interno. Por favor, consulta el registro para obtener más detalles.", + "No applicable installer was found for the package {0}": "No se ha encontrado ningún instalador para el paquete {0}", + "We are checking for updates.": "Estamos buscando atualizaciones", + "Please wait": "Por favor espere", + "UniGetUI version {0} is being downloaded.": "La versión {0} de UniGetUI se está descargando", + "This may take a minute or two": "Esto puede tomar un minuto o dos", + "The installer authenticity could not be verified.": "La autenticidad del instalador no se ha podido verificar", + "The update process has been aborted.": "El proceso de actualización ha sido abortado.", + "Great! You are on the latest version.": "¡Perfecto! Estás en la ultima versión.", + "There are no new UniGetUI versions to be installed": "No hay nuevas versiones de UniGetUI para instalar", + "An error occurred when checking for updates: ": "Ocurrió un error al buscar actualizaciones:", + "UniGetUI is being updated...": "UniGetUI se está actualizando...", + "Something went wrong while launching the updater.": "Algo salió mal mientras se iniciaba el actualizador.", + "Please try again later": "Por favor, inténtelo de nuevo después", + "Integrity checks will not be performed during this operation": "No se hará ningún tipo de comprovación de integridad durante esta operación", + "This is not recommended.": "Esto no se recomienda.", + "Run now": "Ejecutar ahora", + "Run next": "Ejecutar la siguiente", + "Run last": "Ejecutar la última", + "Retry as administrator": "Reintentar como administrador", + "Retry interactively": "Reintentar de forma interactiva", + "Retry skipping integrity checks": "Reintentar omitiendo los chequeos de integridad", + "Installation options": "Opciones de instalación", + "Show in explorer": "Mostrar en el explorador", + "This package is already installed": "Este paquete ya está instalado", + "This package can be upgraded to version {0}": "Este paquete se puede actualizar a la versión \"{0}\"", + "Updates for this package are ignored": "Las actualizaciones de este paquete se ignoran", + "This package is being processed": "Este paquete está siendo procesado", + "This package is not available": "Este paquete no está disponible", + "Select the source you want to add:": "Seleccione el origen que desea agregar:", + "Source name:": "Nombre de la fuente:", + "Source URL:": "URL de Fuente:", + "An error occurred": "Ocurrió un error", + "An error occurred when adding the source: ": "Ocurrió un error al agregar el origen", + "Package management made easy": "Administración de paquetes hecha fácil", + "version {0}": "versión {0}", + "[RAN AS ADMINISTRATOR]": "EJECUTADO COMO ADMINISTRADOR", + "Portable mode": "Modo portátil\n", + "DEBUG BUILD": "COMPILACIÓN DE DEPURACIÓN", + "Available Updates": "Actualizaciones disponibles", + "Show UniGetUI": "Mostrar UniGetUI", + "Quit": "Salir", + "Attention required": "Se requiere atención", + "Restart required": "Se requiere un reinicio", + "1 update is available": "Hay 1 actualización disponible", + "{0} updates are available": "{0} paquetes disponibles", + "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aquí puedes cambiar cómo UniGetUI se comporta respecto a los siguientes accesos directos. Si marcas uno, UniGetUI lo eliminará si se crea en una futura actualización. Si lo desmarcas, se mantendrá intacto", + "Manual scan": "Escaneo manual", + "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Los accesos directos existentes de tu escritorio serán analizados, y necesitarás elegir cuáles mantener y cuáles eliminar.", + "Continue": "Continuar", + "Delete?": "¿Eliminar?", + "Missing dependency": "Falta una dependencia", + "Not right now": "Ahora no", + "Install {0}": "Instalar {0}", + "UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI necesita {0} para funcionar correctamente, pero no se encontró en tu sistema.", + "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Haz click en Instalar para iniciar el proceso de instalación. Si te saltas el proceso de instalación, puede que UniGetUI no funcione como se espera", + "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Alternativamente, también puedes instalar {0} ejecutando el siguiente comando en una ventana de comandos de Windows Powershell:", + "Do not show this dialog again for {0}": "No volver a mostrar este diálogo para {0}", + "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Por favor, espera mientras {0} se instala. Puede que se abra una ventana negra. Por favor, espera hasta que se cierre.", + "{0} has been installed successfully.": "{0} se instaló exitosamente.", + "Please click on \"Continue\" to continue": "Seleccione \"Continuar\" para continuar", + "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} se instaló exitosamente. Se recomienda reiniciar UniGetUI para finalizar con la instalación", + "Restart later": "Reiniciar más tarde", + "An error occurred:": "Ha ocurrido un error:", + "I understand": "Entiendo", + "WinGet was repaired successfully": "Se reparó WinGet exitosamente", + "It is recommended to restart UniGetUI after WinGet has been repaired": "Se recomienda reiniciar UniGetUI después de que WinGet haya sido reparado", + "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Este solucionador de problemas puede ser desactivado desde los ajustes de UniGetUI, en la sección de WinGet", + "Restart": "Reiniciar", + "WinGet could not be repaired": "No se pudo reparar WinGet", + "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Se ha producido un problema inesperado al intentar reparar WinGet. Por favor, inténtalo de nuevo más tarde", + "Are you sure you want to delete all shortcuts?": "¿Estás seguro de que quieres eliminar todos los accesos directos?", + "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "Cualquier acceso directo nuevo creado durante una instalación o actualización se eliminará automáticamente, en lugar de mostrar un aviso de confirmación la primera vez que se detecte.", + "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Cualquier acceso directo creado o modificado fuera de UniGetUI será ignorado. Podrás añadirlos manualmente usando el botón {0}.", + "Are you really sure you want to enable this feature?": "¿Estás seguro de que quieres habilitar esta característica?", + "No new shortcuts were found during the scan.": "No se han encontrado nuevos atajos durante el escaneo.", + "How to add packages to a bundle": "Cómo agregar paquetes a un grupo", + "In order to add packages to a bundle, you will need to: ": "Para agregar paquetes a este grupo, necesitarás:", + "1. Navigate to the \"{0}\" or \"{1}\" page.": "Navega a la página \"{0}\" o \"{1}\".", + "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "Localiza el/los paquete(s) que quiere agregar al grupo y selecciona su casilla a la izquierda.", + "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "Cuando los paquetes que quieras agregar al grupo estén seleccionados, encuentra y clickea la opción \"{0}\" en la barra de herramientas.", + "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "Tus paquetes se han añadido al grupo. Puedes seguir añadiendo paquetes o exportar el grupo.", + "Which backup do you want to open?": "¿Qué copia de seguridad deseas abrir?", + "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecciona la copia de seguridad que quieres abrir. Luego podrás revisar qué paquetes instalar.", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Hay operaciones en curso. Salir de UniGetUI puede causar que fallen. ¿Quiere continuar?", + "UniGetUI or some of its components are missing or corrupt.": "UniGetUI o alguno de sus componentes faltan o están dañados", + "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Se recomienda encarecidamente reinstalar UniGetUI para solucionar la situación.", + "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Refiérase a los Registros de UniGetUI para tener más detalles acerca de el/los archivos afectado(s)", + "Integrity checks can be disabled from the Experimental Settings": "Los chequeos de integridad se pueden deshabilitar desde las Configuraciones Experimentals.", + "Repair UniGetUI": "Reparar UniGetUI", + "Live output": "Salida en tiempo real", + "Package not found": "Paquete no encontrado", + "An error occurred when attempting to show the package with Id {0}": "Ocurrió un error al intentar mostrar el paquete con ID {0} ", + "Package": "Paquete", + "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "Este paquete tiene configuraciones potencialmente peligrosas que podrían ser ignoradas por defecto.", + "Entries that show in YELLOW will be IGNORED.": "Las entradas en AMARILLO serán IGNORADAS.", + "Entries that show in RED will be IMPORTED.": "Las entradas en ROJO serán IMPORTADAS.", + "You can change this behavior on UniGetUI security settings.": "Puedes cambiar este comportamiento en la configuración de seguridad de UniGetUI.", + "Open UniGetUI security settings": "Abrir configuración de seguridad de UniGetUI.", + "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Si modificas la configuración de seguridad, deberás abrir el paquete de nuevo para aplicar los cambios.", + "Details of the report:": "Detalles del informe:", + "\"{0}\" is a local package and can't be shared": "\"{0}\" es un paquete local y no puede compartirse", + "Are you sure you want to create a new package bundle? ": "¿Estás seguro de que quieres crear un nuevo grupo de paquetes?", + "Any unsaved changes will be lost": "Cualquier cambió no guardado se perderá", + "Warning!": "¡Atención!", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "Por seguridad, los argumentos personalizados en la línea de comandos están desactivados. Ve a la configuración de seguridad de UniGetUI para cambiarlo. ", + "Change default options": "Cambiar opciones predeterminadas.", + "Ignore future updates for this package": "Ignorar futuras actualizaciones de este paquete", + "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "Por seguridad, los scripts previos y posteriores a las operaciones están desactivados. Ve a la configuración de seguridad de UniGetUI para activarlos. ", + "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "Puedes definir los comandos que se ejecutarán antes o después de instalar, actualizar o desinstalar este paquete. Se ejecutarán en una consola CMD, por lo que los scripts CMD funcionarán.", + "Change this and unlock": "Cambiar esto y desbloquear.", + "{0} Install options are currently locked because {0} follows the default install options.": "Las opciones de instalación de {0} están bloqueadas porque {0} sigue las opciones predeterminadas.", + "Select the processes that should be closed before this package is installed, updated or uninstalled.": "Selecciona los procesos que deben cerrarse antes de instalar, actualizar o desinstalar este paquete.", + "Write here the process names here, separated by commas (,)": "Escribe aquí los nombres de procesos, separados por comas (,)", + "Unset or unknown": "No especificado o desconocido", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Por favor vea la Salida de Línea de Comandos o diríjase a la Historia de Operaciones para más información sobre el problema.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "¿Este paquete no tiene capturas de pantalla o le falta el icono? Contribuye a UniGetUI agregando los iconos y capturas de pantalla que faltan a nuestra base de datos abierta y pública.", + "Become a contributor": "Conviértete en contribuidor", + "Save": "Guardar", + "Update to {0} available": "Actualización a {0} disponible", + "Reinstall": "Reinstalar", + "Installer not available": "Instalador no disponible", + "Version:": "Versión:", + "Performing backup, please wait...": "Haciendo copia de seguridad. Por favor espere...", + "An error occurred while logging in: ": "Ocurrió un error al iniciar sesión: ", + "Fetching available backups...": "Buscando copias de seguridad disponibles...", + "Done!": "¡Hecho!", + "The cloud backup has been loaded successfully.": "La copia de seguridad en la nube se ha cargado correctamente.", + "An error occurred while loading a backup: ": "Ocurrió un error al cargar una copia de seguridad: ", + "Backing up packages to GitHub Gist...": "Haciendo copia de seguridad de paquetes en GitHub Gist...", + "Backup Successful": "Copia de seguridad realizada con éxito.", + "The cloud backup completed successfully.": "La copia de seguridad en la nube se completó correctamente.", + "Could not back up packages to GitHub Gist: ": "No se pudieron guardar los paquetes en GitHub Gist: ", + "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "No se garantiza que las credenciales provistas se almacenen seguramente, por lo que tal vez prefiera no usar las credenciales de su cuenta bancaria", + "Enable the automatic WinGet troubleshooter": "Activar el solucionador de problemas automático de WinGet", + "Enable an [experimental] improved WinGet troubleshooter": "Habilitar una versión [experimental] mejorada del solucionador de problemas de WinGet", + "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Añadir las actualizaciones que fallen con \"no se encontró una actualización aplicable\" a la lista de actualizaciones ignoradas.", + "Invalid selection": "Selección no válida", + "No package was selected": "No se seleccionó ningún paquete", + "More than 1 package was selected": "Se seleccionó más de 1 paquete", + "List": "Lista", + "Grid": "Grilla", + "Icons": "Íconos", + "\"{0}\" is a local package and does not have available details": "\"{0}\" es un paquete local y no tiene detalles disponibles", + "\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" es un paquete local y no es compatible con esta característica", + "WinGet malfunction detected": "Malfunción de Winget detectada", + "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Parece que WinGet no está funcionando correctamente. ¿Quieres intentar reparar WinGet?", + "Repair WinGet": "Reparar WinGet", + "Create .ps1 script": "Crear script .ps1", + "Add packages to bundle": "Añadir paquetes al conjunto", + "Preparing packages, please wait...": "Preparando paquetes. Por favor espere...", + "Loading packages, please wait...": "Cargando paquetes. Por favor espere...", + "Saving packages, please wait...": "Salvando los paquetes. Por favor espere...", + "The bundle was created successfully on {0}": "La colección se ha guardado en {0}", + "Install script": "Script de instalación", + "The installation script saved to {0}": "El script de instalación se ha guardado en {0}", + "An error occurred while attempting to create an installation script:": "Ha habido un error mientras se creaba el script de instalación:", + "{0} packages are being updated": "{0} paquetes estan siendo actualizados", + "Error": "Error", + "Log in failed: ": "Error al iniciar sesión: ", + "Log out failed: ": "Error al cerrar sesión: ", + "Package backup settings": "Configuración de copia de seguridad del paquete.", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", - "(Number {0} in the queue)": "", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "", - "0 packages found": "", - "0 updates found": "", - "1 month": "", - "1 package was found": "", - "1 year": "", - "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "", - "A restart is required": "", - "About Qt6": "", - "About WingetUI version {0}": "", - "About the dev": "", - "Action when double-clicking packages, hide successful installations": "", - "Add a source to {0}": "", - "Add a timestamp to the backup files": "", - "Add packages or open an existing bundle": "", - "Addition succeeded": "", - "Administrator privileges preferences": "", - "Administrator rights": "", - "All files": "", - "Allow package operations to be performed in parallel": "", - "Allow parallel installs (NOT RECOMMENDED)": "", - "Allow {pm} operations to be performed in parallel": "", - "Always elevate {pm} installations by default": "", - "Always run {pm} operations with administrator rights": "", - "An unexpected error occurred:": "", - "Another source": "", - "App Name": "", - "Are these screenshots wron or blurry?": "", - "Ask for administrator rights when required": "", - "Ask once or always for administrator rights, elevate installations by default": "", - "Ask only once for administrator privileges (not recommended)": "", - "Authenticate to the proxy with an user and a password": "", - "Automatically save a list of your installed packages on your computer.": "", - "Autostart WingetUI in the notifications area": "", - "Available updates: {0}": "", - "Available updates: {0}, not finished yet...": "", - "Backup installed packages": "", - "Backup location": "", - "But here are other things you can do to learn about WingetUI even more:": "", - "By toggling a package manager off, you will no longer be able to see or update its packages.": "", - "Cache administrator rights and elevate installers by default": "", - "Cache administrator rights, but elevate installers only when required": "", - "Cache was reset successfully!": "", - "Can't {0} {1}": "", - "Cancel all operations": "", - "Change how UniGetUI installs packages, and checks and installs available updates": "", - "Change install location": "", - "Check for updates periodically": "", - "Check for updates regularly, and ask me what to do when updates are found.": "", - "Check for updates regularly, and automatically install available ones.": "", - "Check out my {0} and my {1}!": "", - "Check out some WingetUI overviews": "", - "Checking for other running instances...": "", - "Checking for updates...": "", - "Checking found instace(s)...": "", - "Choose how many operations shouls be performed in parallel": "", - "Clear finished operations": "", - "Clear successful operations": "", - "Clear the local icon cache": "", - "Clearing Scoop cache...": "", - "Close WingetUI to the notification area": "", - "Command-line Output": "", - "Compare query against": "", - "Component Information": "", - "Contribute to the icon and screenshot repository": "", - "Copy": "", - "Could not load announcements - ": "", - "Could not load announcements - HTTP status code is $CODE": "", - "Could not remove {source} from {manager}": "", - "Current Version": "", - "Current user": "", - "Custom arguments:": "", - "Custom command-line arguments:": "", - "Customize WingetUI - for hackers and advanced users only": "", - "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "", - "Default preferences - suitable for regular users": "", - "Description:": "", - "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "", - "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "", - "Disable new share API (port 7058)": "", - "Discover packages": "", - "Distinguish between\nuppercase and lowercase": "", - "Do NOT check for updates": "", - "Do an interactive install for the selected packages": "", - "Do an interactive uninstall for the selected packages": "", - "Do an interactive update for the selected packages": "", - "Do not download new app translations from GitHub automatically": "", - "Do not remove successful operations from the list automatically": "", - "Do not update package indexes on launch": "", - "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "", - "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "", - "Do you really want to uninstall {0} packages?": "", - "Do you want to restart your computer now?": "", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "", - "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "", - "Donate": "", - "Download updated language files from GitHub automatically": "", - "Downloading": "", - "Downloading installer for {package}": "", - "Downloading package metadata...": "", - "Enable the new UniGetUI-Branded UAC Elevator": "", - "Enable the new process input handler (StdIn automated closer)": "", - "Export log as a file": "", - "Export packages": "", - "Export selected packages to a file": "", - "Fetching latest announcements, please wait...": "", - "Finish": "", - "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "", - "Formerly known as WingetUI": "", - "Found": "", - "Found packages: ": "", - "Found packages: {0}": "", - "Found packages: {0}, not finished yet...": "", - "GitHub profile": "", - "Global": "", - "Help and documentation": "", - "Hide details": "", - "How should installations that require administrator privileges be treated?": "", - "Ignore updates for the selected packages": "", - "Ignored updates": "", - "Import packages": "", - "Import packages from a file": "", - "Initializing WingetUI...": "", - "Install and more": "", - "Install and update preferences": "", - "Install packages from a file": "", - "Install selected packages": "", - "Install selected packages with administrator privileges": "", - "Install the latest prerelease version": "", - "Install updates automatically": "", - "Installation canceled by the user!": "", - "Installed packages": "", - "Instance {0} responded, quitting...": "", - "Is this package missing the icon?": "", - "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "", - "Latest Version": "", - "Latest Version:": "", - "Latest details...": "", - "Launching subprocess...": "", - "Licenses": "", - "Live command-line output": "", - "Loading UI components...": "", - "Loading WingetUI...": "", - "Local machine": "", - "Locating {pm}...": "", - "Looking for packages...": "", - "Machine | Global": "", - "Manage WingetUI autostart behaviour from the Settings app": "", - "Manage ignored packages": "", - "Manifests": "", - "New Version": "", - "New bundle": "", - "No packages found": "", - "No packages found matching the input criteria": "", - "No packages have been added yet": "", - "No packages selected": "", - "No sources found": "", - "No sources were found": "", - "No updates are available": "", - "Notes:": "", - "Notification tray options": "", - "Ok": "", - "Open GitHub": "", - "Open WingetUI": "", - "Open backup location": "", - "Open existing bundle": "", - "Open the welcome wizard": "", - "Operation cancelled": "", - "Options saved": "", - "Package Manager": "", - "Package managers": "", - "Package {name} from {manager}": "", - "Packages": "", - "Packages found: {0}": "", - "Paste a valid URL to the database": "", - "Perform a backup now": "", - "Periodically perform a backup of the installed packages": "", - "Please enter at least 3 characters": "", - "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "", - "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "", - "Please select how you want to configure WingetUI": "", - "Please type at least two characters": "", - "Portable": "", - "Publication date:": "", - "Quit WingetUI": "", - "Release notes URL:": "", - "Release notes:": "", - "Reload": "", - "Removal failed": "", - "Removal succeeded": "", - "Remove permanent data": "", - "Remove successful installs/uninstalls/updates from the installation list": "", - "Repository": "", - "Reset Scoop's global app cache": "", - "Reset Winget sources (might help if no packages are listed)": "", - "Reset WingetUI and its preferences": "", - "Reset WingetUI icon and screenshot cache": "", - "Resetting Winget sources - WingetUI": "", - "Restart now": "", - "Restart your PC to finish installation": "", - "Restart your computer to finish the installation": "", - "Retry failed operations": "", - "Retrying, please wait...": "", - "Return to top": "", - "Running the installer...": "", - "Running the uninstaller...": "", - "Running the updater...": "", - "Save File": "", - "Save bundle as": "", - "Save now": "", - "Search": "", - "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "", - "Search on available updates": "", - "Search on your software": "", - "Searching for installed packages...": "", - "Searching for packages...": "", - "Searching for updates...": "", - "Select \"{item}\" to add your custom bucket": "", - "Select a folder": "", - "Select all packages": "", - "Select only if you know what you are doing.": "", - "Select package file": "", - "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "", - "Sent handshake. Waiting for instance listener's answer... ({0}%)": "", - "Set custom backup file name": "", - "Share WingetUI": "", - "Show UniGetUI on the system tray": "", - "Show a notification when an installation fails": "", - "Show a notification when an installation finishes successfully": "", - "Show details": "", - "Show info about the package on the Updates tab": "", - "Show missing translation strings": "", - "Show package details": "", - "Show the live output": "", - "Skip": "", - "Skip the hash check when installing the selected packages": "", - "Skip the hash check when updating the selected packages": "", - "Source addition failed": "", - "Source removal failed": "", - "Source:": "", - "Start": "", - "Starting daemons...": "", - "Startup options": "", - "Status": "", - "Stuck here? Skip initialization": "", - "Suport the developer": "", - "Support me": "", - "Support the developer": "", - "Systems are now ready to go!": "", - "Text file": "", - "Thank you 😉": "", - "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "", - "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "", - "The following packages are going to be installed on your system.": "", - "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "", - "The icons and screenshots are maintained by users like you!": "", - "The installer has an invalid checksum": "", - "The installer hash does not match the expected value.": "", - "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "", - "The package {0} from {1} was not found.": "", - "The selected packages have been blacklisted": "", - "The update will be installed upon closing WingetUI": "", - "The update will not continue.": "", - "The user has canceled {0}, that was a requirement for {1} to be run": "", - "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "", - "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "", - "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "", - "They are the programs in charge of installing, updating and removing packages.": "", - "This could represent a security risk.": "", - "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "", - "This is the default choice.": "", - "This package can be updated": "", - "This package can be updated to version {0}": "", - "This process is running with administrator privileges": "", - "This setting is disabled": "", - "This wizard will help you configure and customize WingetUI!": "", - "Toggle search filters pane": "", - "Type here the name and the URL of the source you want to add, separed by a space.": "", - "Unable to find package": "", - "Unable to load informarion": "", - "Uninstall and more": "", - "Uninstall canceled by the user!": "", - "Uninstall the selected packages with administrator privileges": "", - "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "", - "Update and more": "", - "Update date": "", - "Update found!": "", - "Update package indexes on launch": "", - "Update packages automatically": "", - "Update selected packages": "", - "Update selected packages with administrator privileges": "", - "Update vcpkg's Git portfiles automatically (requires Git installed)": "", - "Updates": "", - "Updates available!": "", - "Updates preferences": "", - "Updating WingetUI": "", - "Url": "", - "Use Legacy bundled WinGet instead of PowerShell CMDLets": "", - "Use bundled WinGet instead of PowerShell CMDlets": "", - "Use installed GSudo instead of the bundled one": "", - "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "", - "Use system Chocolatey (Needs a restart)": "", - "Use system Winget (Needs a restart)": "", - "Use system Winget (System language must be set to english)": "", - "Use the WinGet COM API to fetch packages": "", - "Use the WinGet PowerShell Module instead of the WinGet COM API": "", - "User": "", - "User | Local": "", - "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "", - "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "", - "Vcpkg was not found on your system.": "", - "View WingetUI on GitHub": "", - "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "", - "Waiting for other installations to finish...": "", - "Waiting for {0} to complete...": "", - "We could not load detailed information about this package, because it was not found in any of your package sources": "", - "We could not load detailed information about this package, because it was not installed from an available package manager.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "", - "We couldn't find any package": "", - "Welcome to WingetUI": "", - "Which package managers do you want to use?": "", - "Which source do you want to add?": "", - "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "", - "WingetUI": "", - "WingetUI - Everything is up to date": "", - "WingetUI - {0} updates are available": "", - "WingetUI - {0} {1}": "", - "WingetUI Homepage - Share this link!": "", - "WingetUI Settings File": "", - "WingetUI autostart behaviour, application launch settings": "", - "WingetUI can check if your software has available updates, and install them automatically if you want to": "", - "WingetUI has not been machine translated. The following users have been in charge of the translations:": "", - "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "", - "WingetUI is being updated. When finished, WingetUI will restart itself": "", - "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "", - "WingetUI log": "", - "WingetUI tray application preferences": "", - "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "WingetUI version {0} is being downloaded.": "", - "WingetUI will become {newname} soon!": "", - "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "", - "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "", - "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "", - "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "", - "WingetUI {0} is ready to be installed.": "", - "You may restart your computer later if you wish": "", - "You will be prompted only once, and administrator rights will be granted to packages that request them.": "", - "You will be prompted only once, and every future installation will be elevated automatically.": "", - "buy me a coffee": "", - "formerly WingetUI": "", - "homepage": "", - "install": "", - "installation": "", - "uninstall": "", - "uninstallation": "", - "uninstalled": "", - "update(noun)": "", - "update(verb)": "", - "updated": "", - "{0} Uninstallation": "", - "{0} aborted": "", - "{0} can be updated": "", - "{0} failed": "", - "{0} has failed, that was a requirement for {1} to be run": "", - "{0} installation": "", - "{0} is being updated": "", - "{0} months": "", - "{0} packages found": "", - "{0} packages were found": "", - "{0} succeeded": "", - "{0} update": "", - "{0} was {1} successfully!": "", - "{0} weeks": "", - "{0} years": "", - "{0} {1} failed": "", - "{package} installation failed": "", - "{package} uninstall failed": "", - "{package} update failed": "", - "{package} update failed. Click here for more details.": "", - "{pm} could not be found": "", - "{pm} found: {state}": "", - "{pm} package manager specific preferences": "", - "{pm} preferences": "", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "", - "Thank you ❤": "", - "This project has no connection with the official {0} project — it's completely unofficial.": "" + "About WingetUI": "Acerca de UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI es una aplicación que hace administrar tu software más fácil, proporcionando una interfaz gráfica unificada para todos tus administradores de paquetes de línea de comandos.", + "You have installed WingetUI Version {0}": "Tienes instalado UniGetUI versión {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI no habría sido posible sin la ayuda de los contribuidores. Gracias a todos 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ha sido traducido a más de 40 idiomas gracias a traductores voluntarios. Gracias 🤝", + "WingetUI Settings": "Configuración de UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Tal vez necesites instalar {pm} para usarlo con UniGetUI.", + "Scoop Installer - WingetUI": "Instalador de Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Desinstalador de Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Limpiando caché de Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Versión {0}", + "WingetUI License": "Licencia de UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Usar UniGetUI implica la aceptación de la Licencia MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Habilitar API en segundo plano (Widgets de UniGetUI y Compartir, puerto 7058)", + "Update WingetUI automatically": "Actualizar UniGetUI automáticamente", + "Reset WingetUI": "Restablecer UniGetUI", + "WingetUI display language:": "Idioma de presentación de UniGetUI:", + "Manage WingetUI autostart behaviour": "Administrar el inicio automático de UniGetUI", + "Enable WingetUI notifications": "Activar las notificaciones de UniGetUI", + "WingetUI Log": "Registro de UniGetUI", + "Show WingetUI": "Mostrar UniGetUI", + "WingetUI Homepage": "Página Oficial de UniGetUI", + "WingetUI Repository": "Repositorio de UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ha sido ejecutado como administrador, lo cual no es recomendado. Al ejecutar UniGetUI como administrador, TODAS las operaciones lanzadas desde UniGetUI tendrán privilegios de administrador. Puede usar el programa de todas formas, pero recomendamos altamente no ejecutar UniGetUI con privilegios de administrador.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Hay operaciones en curso. Salir de UniGetUI puede causar que fallen. ¿Quiere continuar?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "¿Este paquete no tiene capturas de pantalla o le falta el icono? Contribuye a UniGetUI agregando los iconos y capturas de pantalla que faltan a nuestra base de datos abierta y pública.", + "Restart WingetUI to fully apply changes": "Reiniciar UniGetUI para aplicar completamente los cambios", + "Restart WingetUI": "Reiniciar UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Administrar el comportamiento de inicio automático de UniGetUI desde la aplicación de Configuración", + "(Number {0} in the queue)": "(Número {0} en la cola)", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@rubnium, @JMoreno97, @dalbitresb12, @marticliment, @apazga, @evaneliasyoung, @guplem, @uKER, @P10Designs", + "0 packages found": "0 paquetes encontrados", + "0 updates found": "0 actualizaciones encontradas", + "1 month": "1 mes", + "1 package was found": "Se encontró 1 paquete", + "1 year": "1 año", + "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "Un repositorio lleno de herramientas diseñadas con el ecosistema .NET de Microsoft en mente.
Contiene: Herramientas relacionadas con .NET", + "A restart is required": "Es necesario reiniciar", + "About Qt6": "Acerca de Qt6", + "About WingetUI version {0}": "Acerca de UniGetUI versión {0}", + "About the dev": "Acerca del desarrollador", + "Action when double-clicking packages, hide successful installations": "Acción al hacer doble clic en los paquetes, ocultar las instalaciones exitosas", + "Add a source to {0}": "Agregar un origen a {0}", + "Add a timestamp to the backup files": "Añadir una marca de tiempo a los archivos de copia de seguridad", + "Add packages or open an existing bundle": "Añadir paquetes o abrir un grupo existente", + "Addition succeeded": "Se agregó exitosamente", + "Administrator privileges preferences": "Preferencias de privilegios de administrador", + "Administrator rights": "Privilegios de administrador", + "All files": "Todos los archivos", + "Allow package operations to be performed in parallel": "Permitir que las operaciones se ejecuten en paralelo", + "Allow parallel installs (NOT RECOMMENDED)": "Permitir instalaciones en paralelo (NO RECOMENDADO)", + "Allow {pm} operations to be performed in parallel": "Permitir que las operaciones de {pm} se ejecuten en paralelo", + "Always elevate {pm} installations by default": "Elevar siempre las instalaciones de {pm} por defecto", + "Always run {pm} operations with administrator rights": "Siempre ejecutar las operaciones de {pm} con privilegios de administrador", + "An unexpected error occurred:": "Ocurrió un error inesperado:", + "Another source": "Otro origen", + "App Name": "Nombre de la Aplicación", + "Are these screenshots wron or blurry?": "¿Estas capturas de pantalla son incorrectas o borrosas?", + "Ask for administrator rights when required": "Solicitar privilegios de administrador cuando se requiera", + "Ask once or always for administrator rights, elevate installations by default": "Pedir una vez o siempre permiso para ejecutar con privilegios de administrador, elevar las instalaciones por defecto.", + "Ask only once for administrator privileges (not recommended)": "Solicitar sólo una vez los privilegios de administrador (no recomendado)", + "Authenticate to the proxy with an user and a password": "Autenticarse en el proxy con un usuario y una contraseña", + "Automatically save a list of your installed packages on your computer.": "Salvar automáticamente una lista de tus paquetes instalados en tu computador.", + "Autostart WingetUI in the notifications area": "Iniciar UniGetUI automáticamente en el área de notificaciones", + "Available updates: {0}": "Actualizaciones disponibles: {0}", + "Available updates: {0}, not finished yet...": "Actualizaciones disponibles: {0}, no ha acabado todavía...", + "Backup installed packages": "Respaldar paquetes instalados", + "Backup location": "Ubicación del respaldo", + "But here are other things you can do to learn about WingetUI even more:": "Pero aquí hay otras cosas que puedes hacer para aprender aún más de UniGetUI:", + "By toggling a package manager off, you will no longer be able to see or update its packages.": "Desactivando un administrador de paquetes, no se mostrarán ni sus paquetes ni sus actualizaciones disponibles", + "Cache administrator rights and elevate installers by default": "Almacenar privilegios de administrador en caché y elevar instaladores por defecto", + "Cache administrator rights, but elevate installers only when required": "Almacenar privilegios de administrador en caché, pero elevar instaladores sólo cuando se requiera", + "Cache was reset successfully!": "¡La caché se restableció con éxito!", + "Can't {0} {1}": "No es posible {0} {1}", + "Cancel all operations": "Cancelar todas las operaciones", + "Change how UniGetUI installs packages, and checks and installs available updates": "Cambia cómo UniGetUI instala paquetes y comprueba y instala las actualizaciones disponibles", + "Change install location": "Cambiar ubicación para la instalación", + "Check for updates periodically": "Comprobar actualizaciones periódicamente.", + "Check for updates regularly, and ask me what to do when updates are found.": "Buscar actualizaciones regularmente y preguntarme qué hacer cuando se encuentren.", + "Check for updates regularly, and automatically install available ones.": "Comprobar actualizaciones diariamente, e instalar automáticamente las disponibles.", + "Check out my {0} and my {1}!": "¡Echa un vistazo a mi {0} y a mi {1}!", + "Check out some WingetUI overviews": "Échales un vistazo a algunos análisis de UniGetUI", + "Checking for other running instances...": "Comprobando otras instancias en ejecución...", + "Checking for updates...": "Buscando actualizaciones...", + "Checking found instace(s)...": "Comprobando la(s) instancia(s) encontrada(s)...", + "Choose how many operations shouls be performed in parallel": "Selecciona cuántas operaciones deben ejecutarse en paralelo", + "Clear finished operations": "Limpiar operaciones finalizadas.", + "Clear successful operations": "Quita las operaciones exitosas", + "Clear the local icon cache": "Borrar el caché de iconos local", + "Clearing Scoop cache...": "Limpiando caché de Scoop...", + "Close WingetUI to the notification area": "Cerrar UniGetUI al área de notificaciones", + "Command-line Output": "Salida de Línea de Comandos", + "Compare query against": "Comparar consulta contra", + "Component Information": "Información del Componente", + "Contribute to the icon and screenshot repository": "Contribuir al repositorio de íconos y capturas de pantalla", + "Copy": "Copiar", + "Could not load announcements - ": "No se pudieron cargar los anuncios -", + "Could not load announcements - HTTP status code is $CODE": "No se pudieron cargar los anuncios - El código de estado de HTTP es $CODE", + "Could not remove {source} from {manager}": "No se pudo eliminar {source} de {manager}", + "Current Version": "Versión actual", + "Current user": "Usuario actual", + "Custom arguments:": "Argumentos personalizados:", + "Custom command-line arguments:": "Argumentos de línea de comandos personalizados", + "Customize WingetUI - for hackers and advanced users only": "Personalizar UniGetUI - solo para hackers y usuarios avanzados", + "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "ADVERTENCIA: NO NOS HACEMOS RESPONSABLES DE LOS PAQUETES DESCARGADOS. POR FAVOR ASEGÚRATE DE INSTALAR SÓLO SOFTWARE CONFIADO.", + "Default preferences - suitable for regular users": "Preferencias por defecto - aptas para usuarios regulares", + "Description:": "Descripción:", + "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "Programar es difícil, y esta aplicación es gratuita. Pero si te gustó la aplicación, siempre puedes comprarme un café :)", + "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Instalar directamente al hacer doble clic en un elemento de la pestaña \"{discoveryTab}\" (en lugar de mostrar la información del paquete)", + "Disable new share API (port 7058)": "Desactivar la nueva API de compartición (puerto 7058)", + "Discover packages": "Descubrir paquetes", + "Distinguish between\nuppercase and lowercase": "Distinguir entre mayúsculas y minúsculas", + "Do NOT check for updates": "NO buscar actualizaciones", + "Do an interactive install for the selected packages": "Realizar una instalación interactiva para los paquetes seleccionados", + "Do an interactive uninstall for the selected packages": "Realizar una desinstalación interactiva para los paquetes seleccionados", + "Do an interactive update for the selected packages": "Realizar una actualización interactiva para los paquetes seleccionados", + "Do not download new app translations from GitHub automatically": "No descargar nuevas traducciones de la aplicación desde GitHub automáticamente", + "Do not remove successful operations from the list automatically": "No remover operaciones exitosas de la lista automáticamente", + "Do not update package indexes on launch": "No actualizar los índices de paquetes al iniciar", + "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "¿Encuentras UniGetUI útil? Si puedes, tal vez quieras apoyar mi trabajo, para que pueda seguir haciendo a UniGetUI la interfaz definitiva de administración de paquetes.", + "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "¿UniGetUI te parece útil? ¿Te gustaría apoyar al desarrollador? Si es así, puedes {0}. ¡Se agradece mucho!", + "Do you really want to uninstall {0} packages?": "¿Realmente quieres desinstalar {0} paquetes?", + "Do you want to restart your computer now?": "¿Quieres reiniciar tu equipo ahora?", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "¿Quieres traducir UniGetUI a tu idioma? Mira como contribuir AQUÍ.", + "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "¿No quieres donar? No te preocupes. Siempre puedes compartir UniGetUI con tus amigos. Corre la voz acerca de UniGetUI.", + "Donate": "Donar", + "Download updated language files from GitHub automatically": "Descargar archivos de idioma actualizados de GitHub automáticamente", + "Downloading": "Descargando", + "Downloading installer for {package}": "Descargando el instalador para {package}", + "Downloading package metadata...": "Descargando metadatos del paquete...", + "Enable the new UniGetUI-Branded UAC Elevator": "Activar el nuevo elevador UAC marca UniGetUI", + "Enable the new process input handler (StdIn automated closer)": "Activar el nuevo manejador de entrada de procesos (cierre automático de StdIn).", + "Export log as a file": "Exportar el registro como un archivo", + "Export packages": "Exportar paquetes", + "Export selected packages to a file": "Exportar los paquetes seleccionados a un archivo", + "Fetching latest announcements, please wait...": "Obteniendo los últimos anuncios. Por favor espere...", + "Finish": "Finalizar", + "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Utilizar la versión winget compilada para ARM (SOLO PARA SISTEMAS ARM64)", + "Formerly known as WingetUI": "Antes conocido como WingetUI", + "Found": "Encontrado", + "Found packages: ": "Paquetes encontrados:", + "Found packages: {0}": "Paquetes encontrados: {0}", + "Found packages: {0}, not finished yet...": "Paquetes encontrados: {0}. No se ha terminado aún...", + "GitHub profile": "Perfil de GitHub", + "Global": "Global", + "Help and documentation": "Ayuda y documentación", + "Hide details": "Ocultar detalles", + "How should installations that require administrator privileges be treated?": "¿Cómo deberían tratarse las instalaciones que requieren privilegios de administrador?", + "Ignore updates for the selected packages": "Ignorar actualizaciones para los paquetes seleccionados", + "Ignored updates": "Actualizaciones ignoradas", + "Import packages": "Importar paquetes", + "Import packages from a file": "Importar paquetes desde un archivo", + "Initializing WingetUI...": "Inicializando UniGetUI...", + "Install and more": "Instalar y más.", + "Install and update preferences": "Preferencias de instalación y actualización", + "Install packages from a file": "Instalar paquetes desde un archivo", + "Install selected packages": "Instalar los paquetes seleccionados", + "Install selected packages with administrator privileges": "Instalar los paquetes seleccionados con privilegios de administrador", + "Install the latest prerelease version": "Instalar la última versión preliminar", + "Install updates automatically": "Instalar actualizaciones automáticamente", + "Installation canceled by the user!": "¡Instalación cancelada por el usuario!", + "Installed packages": "Paquetes instalados", + "Instance {0} responded, quitting...": "La instancia {0} ha respondido, saliendo...", + "Is this package missing the icon?": "¿A este paquete le falta el ícono?", + "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "Parece que has ejecutado UniGetUI como administrador, lo cual no es recomendado. Puedes seguir usando el programa, pero recomendamos fuertemente no ejecutar UniGetUI como administrador. Haz click en \"{showDetails}\" para ver el porqué.", + "Latest Version": "Última Versión", + "Latest Version:": "Última Versión:", + "Latest details...": "Últimos detalles...", + "Launching subprocess...": "Iniciando subproceso...", + "Licenses": "Licencias", + "Live command-line output": "Salida de línea de comandos en tiempo real", + "Loading UI components...": "Cargando componentes de la interfaz...", + "Loading WingetUI...": "Cargando UniGetUI...", + "Local machine": "Equipo local", + "Locating {pm}...": "Buscando {pm}...", + "Looking for packages...": "Buscando paquetes...", + "Machine | Global": "Máquina | Global", + "Manage WingetUI autostart behaviour from the Settings app": "Administrar el comportamiento de inicio automático de UniGetUI desde la aplicación de Configuración", + "Manage ignored packages": "Administrar paquetes ignorados", + "Manifests": "Manifiestos", + "New Version": "Versión Nueva", + "New bundle": "Nuevo grupo", + "No packages found": "No se han encontrado paquetes", + "No packages found matching the input criteria": "No se han encontrado paquetes con los criterios ingresados", + "No packages have been added yet": "No se han agregado paquetes", + "No packages selected": "No hay paquetes seleccionados", + "No sources found": "No se encontraron orígenes", + "No sources were found": "No se encontraron orígenes", + "No updates are available": "No hay actualizaciones disponibles", + "Notes:": "Notas:", + "Notification tray options": "Opciones de la bandeja de notificaciones", + "Ok": "Aceptar", + "Open GitHub": "Abrir GitHub", + "Open WingetUI": "Abrir UniGetUI", + "Open backup location": "Abrir ubicación de respaldo", + "Open existing bundle": "Abrir grupo existente", + "Open the welcome wizard": "Abrir el asistente de bienvenida", + "Operation cancelled": "Operación cancelada", + "Options saved": "Opciones guardadas", + "Package Manager": "Administrador de Paquetes", + "Package managers": "Admin. de paquetes", + "Package {name} from {manager}": "Paquete {name} de {manager} ", + "Packages": "Paquetes", + "Packages found: {0}": "Paquetes encontrados: {0}", + "Paste a valid URL to the database": "Pegue una URL válida de la base de datos", + "Perform a backup now": "Hacer una copia de seguridad ahora", + "Periodically perform a backup of the installed packages": "Hacer periódicamente una copia de seguridad de los paquetes instalados", + "Please enter at least 3 characters": "Por favor ingrese al menos 3 caracteres", + "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Por favor ten en cuenta que algunos paquetes pueden no ser instalables, debido a los administradores de paquetes habilitados en este sistema.", + "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Por favor ten en cuenta que los paquetes de determinadas fuentes pueden no ser exportables. Se han marcado en gris y no se exportarán.", + "Please select how you want to configure WingetUI": "Por favor selecciona como quieres configurar UniGetUI", + "Please type at least two characters": "Por favor escribe al menos dos caracteres", + "Portable": "Portátil", + "Publication date:": "Fecha de publicación:", + "Quit WingetUI": "Salir de UniGetUI", + "Release notes URL:": "URL de las notas de publicación:", + "Release notes:": "Notas de publicación:", + "Reload": "Recargar", + "Removal failed": "Falló la eliminación", + "Removal succeeded": "Eliminación exitosa", + "Remove permanent data": "Elimina datos permanentes", + "Remove successful installs/uninstalls/updates from the installation list": "Quitar las instalaciones/desinstalaciones/actualizaciones exitosas de la lista de instalaciones", + "Repository": "Repositorio", + "Reset Scoop's global app cache": "Restablecer la caché global de aplicaciones de Scoop", + "Reset Winget sources (might help if no packages are listed)": "Restablecer los orígenes de WinGet (puede ayudar si no se muestran paquetes)", + "Reset WingetUI and its preferences": "Restablecer UniGetUI y sus preferencias", + "Reset WingetUI icon and screenshot cache": "Restablecer la caché de los íconos y capturas de pantalla de UniGetUI", + "Resetting Winget sources - WingetUI": "Restableciendo los orígenes de WinGet - UniGetUI", + "Restart now": "Reiniciar ahora", + "Restart your PC to finish installation": "Reinicia tu PC para finalizar la instalación", + "Restart your computer to finish the installation": "Reinicia tu equipo para finalizar la instalación", + "Retry failed operations": "Reintentar las operaciones fallidas", + "Retrying, please wait...": "Reintentando. Por favor espere...", + "Return to top": "Volver arriba", + "Running the installer...": "Corriendo el instalador...", + "Running the uninstaller...": "Corriendo el desinstalador...", + "Running the updater...": "Corriendo el instalador de actualización...", + "Save File": "Guardar Archivo", + "Save bundle as": "Guardar grupo como", + "Save now": "Guardar ahora", + "Search": "Buscar", + "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "Buscar aplicaciones, avisarme de actualizaciones cuando estén disponibles y no hacer cosas de nerds. No quiero que UniGetUI me complique demasiado, sólo quiero una simple tienda de aplicaciones", + "Search on available updates": "Buscar en las actualizaciones encontradas", + "Search on your software": "Buscar en tus programas", + "Searching for installed packages...": "Buscando paquetes instalados...", + "Searching for packages...": "Buscando paquetes...", + "Searching for updates...": "Buscando actualizaciones...", + "Select \"{item}\" to add your custom bucket": "Seleccione \"{item}\" para añadir tu bucket personalizado", + "Select a folder": "Seleccionar una carpeta", + "Select all packages": "Seleccionar todos los paquetes", + "Select only if you know what you are doing.": "Seleccionar sólo si sabes lo que estás haciendo.", + "Select package file": "Selecciona el archivo de paquetes", + "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Selecciona qué gestores de paquetes usar ({0}), configura cómo se instalan los paquetes, gestiona cómo se manejan los privilegios de administrador, etc.", + "Sent handshake. Waiting for instance listener's answer... ({0}%)": "Se ha enviado el handshake. Esperando respuesta de la instancia... ({0}%)", + "Set custom backup file name": "Establecer nombre personalizado para el respaldo", + "Share WingetUI": "Compartir UniGetUI", + "Show UniGetUI on the system tray": "Mostrar UniGetUI en la bandeja del sistema", + "Show a notification when an installation fails": "Mostrar una notificación cuando una instalación falle", + "Show a notification when an installation finishes successfully": "Mostrar una notificación cuando una instalación se complete exitosamente", + "Show details": "Mostrar detalles", + "Show info about the package on the Updates tab": "Mostrar información del paquete en la pestaña de Actualizaciones", + "Show missing translation strings": "Mostrar cadenas de traducción faltantes", + "Show package details": "Mostrar detalles del paquete", + "Show the live output": "Muestra la salida en tiempo real", + "Skip": "Saltar", + "Skip the hash check when installing the selected packages": "Omitir la comprobación del hash al instalar los paquetes seleccionados", + "Skip the hash check when updating the selected packages": "Omitir la comprobación del hash al actualizar los paquetes seleccionados", + "Source addition failed": "Error al agregar la fuente", + "Source removal failed": "Error al eliminar la fuente", + "Source:": "Origen:", + "Start": "Comenzar", + "Starting daemons...": "Iniciando daemons...", + "Startup options": "Opciones de inicio", + "Status": "Estado", + "Stuck here? Skip initialization": "¿Atascado aquí? Saltar la inicialización", + "Suport the developer": "Apoyar al desarrollador", + "Support me": "Apóyame", + "Support the developer": "Apoya al desarrollador", + "Systems are now ready to go!": "¡Los sistemas están ahora listos para empezar!", + "Text file": "Archivo de texto", + "Thank you 😉": "Gracias 😉", + "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "El hash del instalador no coincide con el valor esperado, por lo que no se puede garantizar la autenticidad del instalador. Si realmente confías en el publicador, {0} el paquete otra vez, omitiendo la comprobación del hash.", + "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "Los siguientes paquetes van a ser exportados a un archivo JSON. No se guardarán datos de usuario ni binarios.", + "The following packages are going to be installed on your system.": "Los siguientes paquetes van a ser instalados en tu sistema.", + "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "Lsa siguientes configuraciones se aplicarán cada vez que este paquete se instale, actualice o elimine. Serán salvadas automáticamente.", + "The icons and screenshots are maintained by users like you!": "¡Los íconos y las capturas de pantalla son mantenidos por usuarios como tú!", + "The installer has an invalid checksum": "El instalador tiene un hash inválido", + "The installer hash does not match the expected value.": "El hash del instalador no coincide con el valor esperado.", + "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "El objetivo principal de este proyecto es proveer al usuario de una forma rápida de administrar los instaladores de paquetes de línea de comandos para Windows, como Winget o Scoop.", + "The package {0} from {1} was not found.": "El paquete {0} de {1} no se encontró.", + "The selected packages have been blacklisted": "Los paquetes seleccionados se han excluido", + "The update will be installed upon closing WingetUI": "La actualización se instalará al cerrar UniGetUI.", + "The update will not continue.": "La actualización no continuará.", + "The user has canceled {0}, that was a requirement for {1} to be run": "El usuario ha cancelado la {0}, que era un requerimiento para la ejecución de la {1}", + "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "Hay algunos videos geniales en YouTube que muestran UniGetUI y sus capacidades. ¡Podrías aprender trucos y consejos útiles!", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "Hay dos razones principales para no ejecutar UniGetUI como administrador:\nLa primera es que el gestor de paquetes Scoop puede causar problemas con algunos comandos si se ejecutan con privilegios de administrador.\nLa segunda es que ejecutar UniGetUI como administrador implica que cualquier paquete que descargues a través de UniGetUI se ejecutará también como administrador (y esto no es seguro).\nRecuerda que si necesitas instalar un paquete concreto como administrador, siempre puedes hacer clic derecho en él -> Instalar/Actualizar/Desinstalar como administrador.", + "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "Hay una inatalación en progreso. Si cierras UniGetUI, la instalación podría fallar y tener resultados inesperados. ¿Todavía quieres cerrar UniGetUI?", + "They are the programs in charge of installing, updating and removing packages.": "Son los programas encargados de instalar, actualizar y eliminar paquetes.", + "This could represent a security risk.": "Esto podría representar un riesgo de seguridad.", + "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "Esto probablemente se deba al hecho de que el paquete que te enviaron se eliminó o se publicó en un administrador de paquetes que no tienes habilitado. El ID recibido es {0}", + "This is the default choice.": "Esta es la opción por defecto.", + "This package can be updated": "Este paquete puede actualizarse", + "This package can be updated to version {0}": "Este paquete puede actualizarse a la versión {0}.", + "This process is running with administrator privileges": "Este proceso se está ejecutando con privilegios de administrador", + "This setting is disabled": "Esta configuración está deshabilitada", + "This wizard will help you configure and customize WingetUI!": "¡Este asistente te ayudará a configurar y personalizar UniGetUI!", + "Toggle search filters pane": "Activar o desactivar el panel de filtros de búsqueda", + "Type here the name and the URL of the source you want to add, separed by a space.": "Escribe aquí el nombre y la URL del origen que quieras añadir, separados por un espacio.", + "Unable to find package": "No se pudo encontrar el paquete", + "Unable to load informarion": "No se pudo cargar la información", + "Uninstall and more": "Desinstalar y más.", + "Uninstall canceled by the user!": "¡Desinstalación cancelada por el usuario!", + "Uninstall the selected packages with administrator privileges": "Desinstalar los paquetes seleccionados con privilegios de administrador", + "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Los paquetes desinstalables que provienen de la fuente \"{0}\" no han sido publicados en ningún administrador de paquetes, por lo que no hay información disponible sobre ellos.", + "Update and more": "Actualizar y más.", + "Update date": "Fecha de actualización", + "Update found!": "Actualización disponible", + "Update package indexes on launch": "Actualizar los índices de paquetes al inicio", + "Update packages automatically": "Actualizar los paquetes automáticamente", + "Update selected packages": "Actualizar los paquetes seleccionados", + "Update selected packages with administrator privileges": "Actualizar los paquetes seleccionados con privilegios de administrador", + "Update vcpkg's Git portfiles automatically (requires Git installed)": "Actualizar automáticamente los portfiles de Git de vcpkg (requiere tener Git instalado)", + "Updates": "Actualizaciones", + "Updates available!": "¡Actualizaciones disponibles!", + "Updates preferences": "Preferencias de las actualizaciones", + "Updating WingetUI": "Actualizando UniGetUI", + "Url": "URL", + "Use Legacy bundled WinGet instead of PowerShell CMDLets": "Usar el WinGet legado incorporado en vez de los CMDLets de PowerShell", + "Use bundled WinGet instead of PowerShell CMDlets": "Usa el WinGet incorporado en vez de los CMDlets de PowerShell", + "Use installed GSudo instead of the bundled one": "Utilizar el GSudo instalado en lugar del incorporado", + "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Usar el UniGetUI Elevator legado (puede ayudar en caso de problemas con el Elevator)", + "Use system Chocolatey (Needs a restart)": "Usar el Chocolatey del sistema (Requiere un reinicio)", + "Use system Winget (Needs a restart)": "Utilizar el Winget del sistema (Requiere un reinicio)", + "Use system Winget (System language must be set to english)": "Usar el WinGet del sistema (el idioma del sistema debe estar configurado en inglés)", + "Use the WinGet COM API to fetch packages": "Usa la API COM de WinGet para cargar los paquetes", + "Use the WinGet PowerShell Module instead of the WinGet COM API": "Usar el Módulo de Powershell de WinGet en lugar de la API COM de WinGet", + "User": "Usuario", + "User | Local": "Usuario | Local", + "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Usar UniGetUI implica la aceptación de la Licencia Pública Menor de GNU v2.1", + "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg root no se ha encontrado. Por favor, defina la variable de entorno %VCPKG_ROOT% o defínelo en la configuración de UniGetUI", + "Vcpkg was not found on your system.": "Vcpkg no se ha encontrado en el sistema", + "View WingetUI on GitHub": "Ver UniGetUI en GitHub", + "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "er el código fuente de UniGetUI. Desde allí, puedes informar de errores, sugerir características o incluso contribuir directamente al proyecto UniGetUI.", + "Waiting for other installations to finish...": "Esperando que terminen otras instalaciones...", + "Waiting for {0} to complete...": "Esperando a que se acabe la {0}...", + "We could not load detailed information about this package, because it was not found in any of your package sources": "No pudimos cargar información detallada sobre este paquete, porque no se lo encontró en ninguno de sus orígenes de paquetes.", + "We could not load detailed information about this package, because it was not installed from an available package manager.": "No pudimos cargar información detallada sobre este paquete, porque no fue instalado desde un administrador de paquetes disponible.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "No pudimos {action} {package}. Inténtelo más tarde. Haga click en \"{showDetails}\" para ver el registro del instalador.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "No pudimos {action} {package}. Inténtelo más tarde. Haga click en \"{showDetails}\" para ver el registro del desinstalador.", + "We couldn't find any package": "No pudimos encontrar ningún paquete", + "Welcome to WingetUI": "Bienvenido a UniGetUI", + "Which package managers do you want to use?": "¿Qué gestores de paquetes deseas utilizar?", + "Which source do you want to add?": "¿Qué orígenes deseas agregar?", + "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "Aunque WinGet puede utilizarse dentro de UniGetUI, UniGetUI también puede usarse con otros gestores de paquetes, lo que puede resultar confuso. En el pasado, UniGetUI se diseñó para funcionar solo con WinGet, pero esto ya no es así, por lo que UniGetUI ya no refleja lo que este proyecto aspira a ser.", + "WingetUI": "UniGetUI", + "WingetUI - Everything is up to date": "WingetUI - Todo está actualizado", + "WingetUI - {0} updates are available": "UniGetUI - hay {0} actualizaciones disponibles", + "WingetUI - {0} {1}": "UniGetUI - {1} de {0}", + "WingetUI Homepage - Share this link!": "Página Oficial de UniGetUI - ¡Comparte este link!", + "WingetUI Settings File": "Archivo del configuración de WingetUI", + "WingetUI autostart behaviour, application launch settings": "Comportamiento de inicio automático de UniGetUI, configuración de inicio de la aplicación", + "WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI puede comprobar si tu software tiene actualizaciones disponibles, e instalarlas automáticamente si quieres", + "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI no ha sido traducido automáticamente. Los siguientes usuarios se han encargado de las traducciones:", + "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI está siendo renombrado para enfatizar la diferencia entre WingetUI (la interfaz que estás usando en este momento) y Winget (un administrador de paquetes desarrollado por Microsoft con el cual no estoy relacionado)", + "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI está siendo actualizado. Al finalizar, WingetUI se reiniciará automáticamente", + "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "WingetUI es gratis, y será gratis para siempre. Sin anuncios, sin tarjeta de crédito, sin versión premium. 100% gratis, para siempre.", + "WingetUI log": "Registro de UniGetUI", + "WingetUI tray application preferences": "Preferencias de la bandeja de notificaciones de UniGetUI", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", + "WingetUI version {0} is being downloaded.": "Se está descargando WingetUI versión {0}.", + "WingetUI will become {newname} soon!": "¡UniGetUI se convertirá en {newname} pronto!", + "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI no buscará actualizaciones periódicamente. Seguirán siendo comprobadas al iniciarse, pero no se te advertirá de ellas.", + "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI mostrará un aviso de UAC cada vez que un paquete requiera elevación para instalarse.", + "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI pronto se llamará {newname}. Esto no representa ningún cambio en la aplicación. Yo (el desarrollador) continuaré el desarrollo de este proyecto de la misma forma que ahora, pero bajo un nombre diferente.", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "UniGetUI no sería posible sin la ayuda de nuestros queridos contribuidores. Revisa sus perfiles de GitHub ¡WingetUI no sería posible sin ellos!", + "WingetUI {0} is ready to be installed.": "UniGetUI {0} está listo para instalarse.", + "You may restart your computer later if you wish": "Puedes reiniciar tu computadora más tarde si lo deseas", + "You will be prompted only once, and administrator rights will be granted to packages that request them.": "Sólo se te preguntará una vez, y se concederán privilegios de administrador a los paquetes que lo soliciten.", + "You will be prompted only once, and every future installation will be elevated automatically.": "Sólo se te preguntará una vez, y cada instalación futura se elevará automáticamente.", + "buy me a coffee": "comprarme un café", + "formerly WingetUI": "antes WingetUI", + "homepage": "sitio web", + "install": "instalar", + "installation": "instalación", + "uninstall": "desinstalar", + "uninstallation": "desinstalación", + "uninstalled": "desinstalado", + "update(noun)": "actualización", + "update(verb)": "actualizar", + "updated": "actualizado", + "{0} Uninstallation": "Desinstalación de {0}", + "{0} aborted": "{0} cancelada", + "{0} can be updated": "{0} puede actualizarse", + "{0} failed": "{0} ha fallado", + "{0} has failed, that was a requirement for {1} to be run": "La {0} ha fallado, y era un requerimiento para que se ejecutase la {1}", + "{0} installation": "Instalación de {0}", + "{0} is being updated": "{0} se está actualizando", + "{0} months": "{0} meses", + "{0} packages found": "{0} paquetes encontrados", + "{0} packages were found": "Se han encontrado {0} paquetes", + "{0} succeeded": "{0} realizado correctamente", + "{0} update": "Actualización de {0}", + "{0} was {1} successfully!": "{0} se ha {1} correctamente.", + "{0} weeks": "{0} semanas", + "{0} years": "{0} años", + "{0} {1} failed": "{0} {1} ha fallado", + "{package} installation failed": "Falló la instalación de {package}", + "{package} uninstall failed": "Falló la desinstalación de {package}", + "{package} update failed": "Falló la actualización de {package}", + "{package} update failed. Click here for more details.": "La actualización de {package} falló. Haca click aquí por más detalles.", + "{pm} could not be found": "{pm} no se encontró", + "{pm} found: {state}": "{pm} encontrado: {state}", + "{pm} package manager specific preferences": "Preferencias específicas de administrador de paquetes {pm}", + "{pm} preferences": "Preferencias de {pm}" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json index 43a0e7a4f5..5e08187f4b 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_es.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Cancelar la desinstalación si falla el comando previo.", "Command-line to run:": "Línea de comandos a ejecutar:", "Save and close": "Salvar y salir", + "General": "Generales", + "Architecture & Location": "Arquitectura y ubicación", + "Command-line": "Línea de comandos", + "Pre/Post install": "Pre/Postinstalación", "Run as admin": "Ejecutar como admin", "Interactive installation": "Instalación interactiva", "Skip hash check": "Omitir comprobación de hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Administrar actualizaciones ignoradas", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Los paquetes listados aquí no se tendrán en cuenta cuando se compruebe si hay actualizaciones disponibles. Haga doble click en ellos o pulse el botón a su derecha para dejar de ignorar sus actualizaciones.", "Reset list": "Reiniciar lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "¿Realmente quieres restablecer la lista de actualizaciones ignoradas? Esta acción no se puede revertir.", + "No ignored updates": "No hay actualizaciones ignoradas", "Package Name": "Nombre de Paquete", "Package ID": "ID de Paquete", "Ignored version": "Versión Ignorada", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Esta operación se está ejecutando de forma interactiva.", "You will likely need to interact with the installer.": "Es muy probable que sea necesario interactuar con el instalador", "Integrity checks skipped": "Comprobaciones de integridad omitidas", + "Integrity checks will not be performed during this operation.": "No se realizarán comprobaciones de integridad durante esta operación.", "Proceed at your own risk.": "Proceda bajo su responsabilidad", "Close": "Cerrar", "Loading...": "Cargando...", @@ -120,16 +127,17 @@ "optional": "opcional", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} esta listo para ser instalado", "The update process will start after closing UniGetUI": "El proceso de actualización comenzará cuando se cierre UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI se ha ejecutado como administrador, lo cual no se recomienda. Cuando UniGetUI se ejecuta como administrador, TODA operación iniciada desde UniGetUI tendrá privilegios de administrador. Aun así puedes usar el programa, pero recomendamos encarecidamente no ejecutar UniGetUI con privilegios de administrador.", "Share anonymous usage data": "Compartir datos de uso anónimos", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI recoge datos de uso anónimos con el único fin de mejorar la experiencia del usuario.", "Accept": "Aceptar", - "You have installed WingetUI Version {0}": "Tienes instalado UniGetUI versión {0}", + "You have installed UniGetUI Version {0}": "Tienes instalado UniGetUI versión {0}", "Disclaimer": "Descargo de responsabilidad", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI no está relacionado con los administradores de paquetes compatibles. UniGetUI es un proyecto independiente.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI no habría sido posible sin la ayuda de los contribuidores. Gracias a todos 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI no habría sido posible sin la ayuda de los contribuidores. Gracias a todos 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", "{0} homepage": "Página oficial de {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ha sido traducido a más de 40 idiomas gracias a traductores voluntarios. Gracias 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ha sido traducido a más de 40 idiomas gracias a traductores voluntarios. Gracias 🤝", "Verbose": "Verboso", "1 - Errors": "1 - Errores", "2 - Warnings": "2 - Advertencias", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Has iniciado sesión como {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "¡Genial! Las copias de seguridad se subirán como un Gist privado en tu cuenta.", "Select backup": "Seleccionar copia de seguridad.", - "WingetUI Settings": "Configuración de UniGetUI", + "UniGetUI Settings": "Configuración de UniGetUI", "Allow pre-release versions": "Permitir versiones preliminares.", "Apply": "Aplicar", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por motivos de seguridad, los argumentos personalizados de la línea de comandos están deshabilitados de forma predeterminada. Ve a la configuración de seguridad de UniGetUI para cambiarlo.", "Go to UniGetUI security settings": "Ir a la configuración de seguridad de UniGetUI.", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Las siguientes opciones se aplicarán por defecto cada vez que se instale, actualice o desinstale un paquete {0}.", "Package's default": "Predeterminado del paquete.", @@ -160,6 +169,7 @@ "Username": "Nombre de usuario", "Password": "Contraseña", "Credentials": "Credenciales", + "It is not guaranteed that the provided credentials will be stored safely": "No se garantiza que las credenciales proporcionadas se almacenen de forma segura", "Partially": "Parcialmente", "Package manager": "Administrador de paquetes", "Compatible with proxy": "Compatible con proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} está habilitado y listo para usarse", "{pm} version:": "Versión de {pm}:", "{pm} was not found!": "¡Se encontró {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "Tal vez necesites instalar {pm} para usarlo con UniGetUI.", - "Scoop Installer - WingetUI": "Instalador de Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Desinstalador de Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Limpiando caché de Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Tal vez necesites instalar {pm} para usarlo con UniGetUI.", + "Scoop Installer - UniGetUI": "Instalador de Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstalador de Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Limpiando caché de Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicia UniGetUI para aplicar los cambios por completo", "Restart UniGetUI": "Reiniciar UniGetUI", "Manage {0} sources": "Administrar orígenes de {0}", "Add source": "Añadir origen", "Add": "Agregar", + "Source name": "Nombre del origen", + "Source URL": "URL del origen", "Other": "Otro", + "No minimum age": "Sin antigüedad mínima", "1 day": "1 día", "{0} days": "{0} días", + "Custom...": "Personalizado...", "{0} minutes": "{0} minutos", "1 hour": "1 hora", "{0} hours": "{0} horas", "1 week": "1 semana", - "WingetUI Version {0}": "UniGetUI Versión {0}", + "Supports release dates": "Admite fechas de lanzamiento", + "Release date support per package manager": "Compatibilidad de fechas de lanzamiento por gestor de paquetes", + "UniGetUI Version {0}": "UniGetUI Versión {0}", "Search for packages": "Buscar paquetes", "Local": "Local", "OK": "Aceptar", @@ -200,11 +217,13 @@ "Enabled": "Habilitado", "Disabled": "Desactivado", "More info": "Más información", + "GitHub account": "Cuenta de GitHub", "Log in with GitHub to enable cloud package backup.": "Inicia sesión con GitHub para habilitar la copia de seguridad de paquetes en la nube.", "More details": "Más detalles", "Log in": "Iniciar sesión.", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Si tienes activada la copia en la nube, se guardará como un Gist de GitHub en esta cuenta.", "Log out": "Cerrar sesión.", + "About UniGetUI": "Acerca de UniGetUI", "About": "Acerca de", "Third-party licenses": "Licencias de terceros", "Contributors": "Contribuidores", @@ -212,6 +231,7 @@ "Manage shortcuts": "Gestionar atajos", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ha detectado los siguientes accesos directos en el escritorio que se pueden eliminar automáticamente en las siguientes actualizaciones", "Do you really want to reset this list? This action cannot be reverted.": "¿Realmente quieres restablecer esta lista? Esta acción no puede revertirse.", + "Open in explorer": "Abrir en el explorador de archivos", "Remove from list": "Eliminar de la lista", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Cuando se detectan nuevos accesos directos, eliminarlos automáticamente en lugar de mostrar este diálogo.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI recoge datos de uso anónimos con el único fin de entender y mejorar la experiencia del usuario.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aceptas que UniGetUI recoja y envie estadísticas anónimas de uso, con el único propósito de entender y mejorar la experiencia del usuario?", "Decline": "Declinar", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "No se recogen datos personales, y los datos enviados están anonimizados, de forma que no se pueden relacionar con ud.", - "About WingetUI": "Acerca de UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI es una aplicación que hace administrar tu software más fácil, proporcionando una interfaz gráfica unificada para todos tus administradores de paquetes de línea de comandos.", + "Toggle navigation panel": "Mostrar u ocultar el panel de navegación", + "Minimize": "Minimizar", + "Maximize": "Maximizar", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI es una aplicación que hace administrar tu software más fácil, proporcionando una interfaz gráfica unificada para todos tus administradores de paquetes de línea de comandos.", "Useful links": "Links útiles", + "UniGetUI Homepage": "Sitio web de UniGetUI", "Report an issue or submit a feature request": "Reportar un problema o enviar una solicitud de característica", + "UniGetUI Repository": "Repositorio de UniGetUI", "View GitHub Profile": "Ver Perfil GitHub", - "WingetUI License": "Licencia de UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Usar UniGetUI implica la aceptación de la Licencia MIT", + "UniGetUI License": "Licencia de UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Usar UniGetUI implica la aceptación de la Licencia MIT", "Become a translator": "Conviértete en traductor", "View page on browser": "Ver página en navegador", "Copy to clipboard": "Copiar al portapapeles", "Export to a file": "Exportar a un archivo", "Log level:": "Nivel del registro:", "Reload log": "Recargar el registro", + "Export log": "Exportar registro", + "UniGetUI Log": "Registro de UniGetUI", "Text": "Texto", "Change how operations request administrator rights": "Cambiar cómo las operaciones solicitan derechos de administrador.", "Restrictions on package operations": "Restricciones sobre operaciones de paquetes.", @@ -271,7 +297,7 @@ "Leave empty for default": "Dejar vacío por defecto", "Add a timestamp to the backup file names": "Añadir una marca de tiempo a los nombres de los archivos de copia de seguridad", "Backup and Restore": "Copia de seguridad y restauración.", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Habilitar API en segundo plano (Widgets de UniGetUI y Compartir, puerto 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Habilitar API en segundo plano (Widgets de UniGetUI y Compartir, puerto 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Esperar a que el dispositivo esté conectado a internet antes de ejecutar qualquier tarea que requiera conexión a internet.", "Disable the 1-minute timeout for package-related operations": "Desactiva el tiempo de espera de 1-minuto para operaciones de paquete relacionadas", "Use installed GSudo instead of UniGetUI Elevator": "Usar GSudo instalado en lugar de UniGetUI Elevator.", @@ -286,7 +312,7 @@ "Telemetry": "Telemetría", "Manage UniGetUI settings": "Administrar la configuración de UniGetUI", "Related settings": "Configuraciones relacionadas", - "Update WingetUI automatically": "Actualizar UniGetUI automáticamente", + "Update UniGetUI automatically": "Actualizar UniGetUI automáticamente", "Check for updates": "Buscar actualizaciones", "Install prerelease versions of UniGetUI": "Instalar versiones prerelease de UniGetUI", "Manage telemetry settings": "Administrar las preferencias de la telemetria", @@ -295,17 +321,17 @@ "Import": "Importar", "Export settings to a local file": "Exportar la configuración a un archivo local", "Export": "Exportar", - "Reset WingetUI": "Restablecer UniGetUI", "Reset UniGetUI": "Reiniciar UniGetUI", "User interface preferences": "Preferencias de interfaz de usuario", "Application theme, startup page, package icons, clear successful installs automatically": "Tema de la aplicación, página de inicio, iconos en los paquetes, quita las operaciones exitosas automáticamente", "General preferences": "Preferencias generales", - "WingetUI display language:": "Idioma de presentación de UniGetUI:", + "UniGetUI display language:": "Idioma de presentación de UniGetUI:", "Is your language missing or incomplete?": "¿Falta tu idioma o está incompleto?", "Appearance": "Apariencia", "UniGetUI on the background and system tray": "UniGetUI en segundo plano y en la bandeja del sistema", "Package lists": "Listas de paquetes", "Close UniGetUI to the system tray": "Cerrar UniGetUI a la bandeja del sistema", + "Manage UniGetUI autostart behaviour": "Administrar el inicio automático de UniGetUI", "Show package icons on package lists": "Mostrar iconos de paquete en las listas de paquete", "Clear cache": "Borrar caché", "Select upgradable packages by default": "Seleccione los paquetes actualizables por defecto", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Por favor note que no todos los administradores de paquetes soportan esta característica", "Proxy URL": "URL del proxy", "Enter proxy URL here": "Entre la URL del proxy aquí", + "Authenticate to the proxy with a user and a password": "Autenticarse en el proxy con un usuario y una contraseña", + "Internet and proxy settings": "Configuración de Internet y proxy", "Package manager preferences": "Preferencias de los gestores de paquetes", "Ready": "Preparado", "Not found": "No encontrado", "Notification preferences": "Preferencias de las notificaciones", "Notification types": "Tipos de notificación", "The system tray icon must be enabled in order for notifications to work": "El ícono de la bandeja de sistema debe estar habilitado para que funcionen las notificaciones", - "Enable WingetUI notifications": "Activar las notificaciones de UniGetUI", + "Enable UniGetUI notifications": "Activar las notificaciones de UniGetUI", "Show a notification when there are available updates": "Mostrar una notificación cuando haya actualizaciones disponibles", "Show a silent notification when an operation is running": "Mostrar una notificación silenciosa cuando una operación está en ejecución", "Show a notification when an operation fails": "Mostrar una notificación cuando una operación falla", "Show a notification when an operation finishes successfully": "Mostrar una notificación cuando una operación se completa exitosamente", "Concurrency and execution": "Concurrencia y ejecución", "Automatic desktop shortcut remover": "Eliminador del acceso directo del escritorio automático", + "Choose how many operations should be performed in parallel": "Elegir cuántas operaciones deben realizarse en paralelo", "Clear successful operations from the operation list after a 5 second delay": "Eliminar las operaciones exitosas de la lista de operaciones después de 5 segundos", "Download operations are not affected by this setting": "Las operaciones de descarga no se ven afectadas por esta configuración.", "Try to kill the processes that refuse to close when requested to": "Intentar cerrar los procesos que no responden.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecciona el ejecutable a usar. La siguiente lista muestra los ejecutables que UniGetUI ha encontrado en el sistema.", "Current executable file:": "Ejecutable actual:", "Ignore packages from {pm} when showing a notification about updates": "Ignorar los paquetes de {pm} al mostrar una notificación sobre actualizaciones", + "Update security": "Seguridad de las actualizaciones", + "Use global setting": "Usar la configuración global", + "e.g. 10": "p. ej., 10", + "{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", + "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", + "Minimum age for updates": "Antigüedad mínima de las actualizaciones", + "Custom minimum age (days)": "Antigüedad mínima personalizada (días)", "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, ", "Advanced options": "Opciones avanzadas", "Reset WinGet": "Restablecer WinGet", "This may help if no packages are listed": "Esto puede ayudar si no se lista ningún paquete", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Habilitar la limpieza de Scoop al iniciar", "Use system Chocolatey": "Usar el Chocolatey del sistema", "Default vcpkg triplet": "Tripleta predeterminada de vcpkg", + "Change vcpkg root location": "Cambiar la ubicación raíz de vcpkg", "Language, theme and other miscellaneous preferences": "Idioma, tema y otras preferencias varias", "Show notifications on different events": "Muestra notificaciones en diferentes situaciones", "Change how UniGetUI checks and installs available updates for your packages": "Cambia cómo UniGetUI comprueba e instala las actualizaciones de tus paquetes", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "No instalar actualizaciones automáticamente cuando se esté en una conexión de red medida", "Do not automatically install updates when the device runs on battery": "No instalar actualizaciones automáticamente mientras el dispositivo no esté enchufado.", "Do not automatically install updates when the battery saver is on": "No instalar actualizaciones automáticamente cuando está activo el ahorro de batería", + "Only show updates that are at least the specified number of days old": "Mostrar solo actualizaciones que tengan al menos la antigüedad especificada en días", "Change how UniGetUI handles install, update and uninstall operations.": "Cambiar cómo UniGetUI maneja las operaciones de instalación, actualización y desinstalación.", "Package Managers": "Admin. de Paquetes", "More": "Más", - "WingetUI Log": "Registro de UniGetUI", "Package Manager logs": "Registros del administrador de paquetes", "Operation history": "Historial de operaciones", "Help": "Ayuda", + "Quit UniGetUI": "Salir de UniGetUI", "Order by:": "Ordenar por:", "Name": "Nombre", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Ambos", "Exact match": "Coincidencia exacta", "Show similar packages": "Mostrar paquetes similares", + "Nothing to share": "No hay nada que compartir", + "Please select a package first.": "Selecciona primero un paquete.", + "Share link copied": "Enlace para compartir copiado", + "The share link for {0} has been copied to the clipboard.": "El enlace para compartir de {0} se ha copiado al portapapeles.", "No results were found matching the input criteria": "No se encontraron resultados para el criterio ingresado", "No packages were found": "No se encontraron paquetes", "Loading packages": "Cargando paquetes", @@ -440,7 +483,11 @@ "Package bundle": "Grupo de paquetes", "Could not create bundle": "No se pudo crear el grupo de paquetes", "The package bundle could not be created due to an error.": "El grupo de paquetes no se pudo crear debido a error.", + "Unsaved changes": "Cambios sin guardar", + "Discard changes": "Descartar cambios", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Hay cambios sin guardar en el paquete actual. ¿Quieres descartarlos?", "Bundle security report": "Informe de seguridad del paquete.", + "The bundle contained restricted content": "El paquete contenía contenido restringido", "Hooray! No updates were found.": "¡Hurra! ¡No se han encontrado actualizaciones!", "Everything is up to date": "Todo está actualizado", "Uninstall selected packages": "Desinstalar los paquetes seleccionados", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "El gestor de paquetes clásico para Windows. Encontrarás de todo ahí.
Contiene: Software general", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repositorio lleno de herramientas y ejecutables diseñados con el ecosistema .NET de Microsoft en mente.
Contiene: Herramientas y scripts relacionados con .NET", "NuPkg (zipped manifest)": "NuPkg (manifiesto comprimido con zip)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "El gestor de paquetes que faltaba para macOS (o Linux).
Contiene: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Administrador de paquetes de Node JS. Lleno de bibliotecas y otras utilidades del mundo de Javascript
Contiene: Bibliotecas de Javascript de Node y otras utilidades relacionadas", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Administrador de librerías de Python. Lleno de bibliotecas python y otras utilidades relacionadas con python.
Contiene: Librerías python y utilidades relacionadas", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "El administrador de paquetes de PowerShell. Encuentre librerías y scripts para expandir las capacidades de PowerShell
Contiene: Módulos, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operación en cola (posición {0})...", "Click here for more details": "Haga click aquí para más detalles", "Operation canceled by user": "Operación cancelada por el usuario", + "Running PreOperation ({0}/{1})...": "Ejecutando PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} de {1} falló y estaba marcada como necesaria. Abortando...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} de {1} finalizó con el resultado {2}", "Starting operation...": "Empezando operación...", + "Running PostOperation ({0}/{1})...": "Ejecutando PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} de {1} falló y estaba marcada como necesaria. Abortando...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} de {1} finalizó con el resultado {2}", "{package} installer download": "Descarga del instalador de {package}", "{0} installer is being downloaded": "Se está descargando el instalador de {0}", "Download succeeded": "Descarga exitosa", @@ -556,14 +610,12 @@ "Portable mode": "Modo portátil", "DEBUG BUILD": "COMPILACIÓN DE DEPURACIÓN", "Available Updates": "Actualizaciones disponibles", - "Show WingetUI": "Mostrar UniGetUI", + "Show UniGetUI": "Mostrar UniGetUI", "Quit": "Salir", "Attention required": "Se requiere atención", "Restart required": "Se requiere un reinicio", "1 update is available": "Hay 1 actualización disponible", "{0} updates are available": "{0} paquetes disponibles", - "WingetUI Homepage": "Página Oficial de UniGetUI", - "WingetUI Repository": "Repositorio de UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aquí puedes cambiar cómo UniGetUI se comporta respecto a los siguientes accesos directos. Si marcas uno, UniGetUI lo eliminará si se crea en una futura actualización. Si lo desmarcas, se mantendrá intacto", "Manual scan": "Escaneo manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Los accesos directos existentes de tu escritorio serán analizados, y necesitarás elegir cuáles mantener y cuáles eliminar.", @@ -583,7 +635,6 @@ "Restart later": "Reiniciar más tarde", "An error occurred:": "Ha ocurrido un error:", "I understand": "Entiendo", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ha sido ejecutado como administrador, lo cual no es recomendado. Al ejecutar UniGetUI como administrador, TODAS las operaciones lanzadas desde UniGetUI tendrán privilegios de administrador. Puede usar el programa de todas formas, pero recomendamos altamente no ejecutar UniGetUI con privilegios de administrador.", "WinGet was repaired successfully": "Se reparó WinGet exitosamente", "It is recommended to restart UniGetUI after WinGet has been repaired": "Se recomienda reiniciar UniGetUI después de que WinGet haya sido reparado", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Este solucionador de problemas puede ser desactivado desde los ajustes de UniGetUI, en la sección de WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "Tus paquetes se han añadido al grupo. Puedes seguir añadiendo paquetes o exportar el grupo.", "Which backup do you want to open?": "¿Qué copia de seguridad deseas abrir?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecciona la copia de seguridad que quieres abrir. Luego podrás revisar qué paquetes instalar.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Hay operaciones en curso. Salir de UniGetUI puede causar que fallen. ¿Quiere continuar?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Hay operaciones en curso. Salir de UniGetUI puede causar que fallen. ¿Quiere continuar?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI o alguno de sus componentes faltan o están dañados", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Se recomienda encarecidamente reinstalar UniGetUI para solucionar la situación.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Refiérase a los Registros de UniGetUI para tener más detalles acerca de el/los archivos afectado(s)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Escribe aquí los nombres de procesos, separados por comas (,)", "Unset or unknown": "No especificado o desconocido", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Por favor vea la Salida de Línea de Comandos o diríjase a la Historia de Operaciones para más información sobre el problema.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "¿Este paquete no tiene capturas de pantalla o le falta el icono? Contribuye a UniGetUI agregando los iconos y capturas de pantalla que faltan a nuestra base de datos abierta y pública.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "¿Este paquete no tiene capturas de pantalla o le falta el icono? Contribuye a UniGetUI agregando los iconos y capturas de pantalla que faltan a nuestra base de datos abierta y pública.", "Become a contributor": "Conviértete en contribuidor", "Save": "Guardar", "Update to {0} available": "Actualización a {0} disponible", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Activar el solucionador de problemas automático de WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Habilitar una versión [experimental] mejorada del solucionador de problemas de WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Añadir las actualizaciones que fallen con \"no se encontró una actualización aplicable\" a la lista de actualizaciones ignoradas.", - "Restart WingetUI to fully apply changes": "Reiniciar UniGetUI para aplicar completamente los cambios", - "Restart WingetUI": "Reiniciar UniGetUI", "Invalid selection": "Selección no válida", "No package was selected": "No se seleccionó ningún paquete", "More than 1 package was selected": "Se seleccionó más de 1 paquete", @@ -684,6 +733,37 @@ "Log out failed: ": "Error al cerrar sesión: ", "Package backup settings": "Configuración de copia de seguridad del paquete.", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Acerca de UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI es una aplicación que hace administrar tu software más fácil, proporcionando una interfaz gráfica unificada para todos tus administradores de paquetes de línea de comandos.", + "You have installed WingetUI Version {0}": "Tienes instalado UniGetUI versión {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI no habría sido posible sin la ayuda de los contribuidores. Gracias a todos 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI usa las siguientes librerías. Sin ellas, UniGetUI no habría sido posible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ha sido traducido a más de 40 idiomas gracias a traductores voluntarios. Gracias 🤝", + "WingetUI Settings": "Configuración de UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Tal vez necesites instalar {pm} para usarlo con UniGetUI.", + "Scoop Installer - WingetUI": "Instalador de Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Desinstalador de Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Limpiando caché de Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Versión {0}", + "WingetUI License": "Licencia de UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Usar UniGetUI implica la aceptación de la Licencia MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Habilitar API en segundo plano (Widgets de UniGetUI y Compartir, puerto 7058)", + "Update WingetUI automatically": "Actualizar UniGetUI automáticamente", + "Reset WingetUI": "Restablecer UniGetUI", + "WingetUI display language:": "Idioma de presentación de UniGetUI:", + "Manage WingetUI autostart behaviour": "Administrar el inicio automático de UniGetUI", + "Enable WingetUI notifications": "Activar las notificaciones de UniGetUI", + "WingetUI Log": "Registro de UniGetUI", + "Show WingetUI": "Mostrar UniGetUI", + "WingetUI Homepage": "Página Oficial de UniGetUI", + "WingetUI Repository": "Repositorio de UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ha sido ejecutado como administrador, lo cual no es recomendado. Al ejecutar UniGetUI como administrador, TODAS las operaciones lanzadas desde UniGetUI tendrán privilegios de administrador. Puede usar el programa de todas formas, pero recomendamos altamente no ejecutar UniGetUI con privilegios de administrador.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Hay operaciones en curso. Salir de UniGetUI puede causar que fallen. ¿Quiere continuar?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "¿Este paquete no tiene capturas de pantalla o le falta el icono? Contribuye a UniGetUI agregando los iconos y capturas de pantalla que faltan a nuestra base de datos abierta y pública.", + "Restart WingetUI to fully apply changes": "Reiniciar UniGetUI para aplicar completamente los cambios", + "Restart WingetUI": "Reiniciar UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Administrar el comportamiento de inicio automático de UniGetUI desde la aplicación de Configuración", "(Number {0} in the queue)": "(Número {0} en la cola)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@rubnium, @JMoreno97, @dalbitresb12, @marticliment, @apazga, @evaneliasyoung, @guplem, @uKER, @P10Designs", "0 packages found": "0 paquetes encontrados", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json index 00673307b5..5e53e6014b 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_et.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Katkesta eemaldamine kui eelne käsk nurjub", "Command-line to run:": "Käitatav käsurea rida:", "Save and close": "Salvesta ja sule", + "General": "Üldine", + "Architecture & Location": "Arhitektuur ja asukoht", + "Command-line": "Käsurida", + "Pre/Post install": "Enne/pärast paigaldamist", "Run as admin": "Käivita administraatori nimelt", "Interactive installation": "Interaktiivne paigaldus", "Skip hash check": "Jäta räsikontroll vahele", @@ -71,6 +75,8 @@ "Manage ignored updates": "Halda eiratavad uuendused", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Siin loetletud pakette ei võeta arvesse uuenduste kontrollimisel. Topeltvajutage neid või vajutage nende paremal olevat nuppu, et lõpetada nende uuenduste ignoreerimine.", "Reset list": "Lähtesta nimekirja", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Kas soovite tõesti eiratud uuenduste loendi lähtestada? Seda toimingut ei saa tagasi võtta.", + "No ignored updates": "Eiratud uuendusi pole", "Package Name": "Paketi nimetus", "Package ID": "Paketi ID", "Ignored version": "Eiratav versioon", @@ -86,6 +92,7 @@ "This operation is running interactively.": "See toiming käivitatakse interaktiivselt.", "You will likely need to interact with the installer.": "Tõenäoliselt peate paigaldajaga suhtlema.", "Integrity checks skipped": "Terviklikkuskontrollid vahele jäetud", + "Integrity checks will not be performed during this operation.": "Selle toimingu ajal tervikluskontrolle ei tehta.", "Proceed at your own risk.": "Toimige omal riskil.", "Close": "Sule", "Loading...": "Laeb...", @@ -120,16 +127,17 @@ "optional": "valikuline", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} on paigaldamiseks valmis.", "The update process will start after closing UniGetUI": "Uuendamisprotsess algab UniGetUI sulgemise järel", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI on käivitatud administraatorina, mis ei ole soovitatav. Kui käivitate UniGetUI administraatorina, on KÕIGIL UniGetUI-st käivitatud toimingutel administraatoriõigused. Saate programmi endiselt kasutada, kuid soovitame tungivalt UniGetUI-d mitte administraatoriõigustega käivitada.", "Share anonymous usage data": "Jaga anonüümset kasutusstatistika", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI kogub kasutaja kogemuse parandamiseks anonüümset kasutusstatistika.", "Accept": "Nõustu", - "You have installed WingetUI Version {0}": "Te olete paigaldanud WingetUI versiooni {0}", + "You have installed UniGetUI Version {0}": "Te olete paigaldanud UniGetUI versiooni {0}", "Disclaimer": "Lahtiütlus", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ei ole seotud ühegi ühilduva paketihalduriga. UniGetUI on iseseisev projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI poleks olnud võimalik ilma panustajate abita. Tänan teid kõiki 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI kasutab järgmisi teeke. Ilma nendeta ei oleks UniGetUI võimalik.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI poleks olnud võimalik ilma panustajate abita. Tänan teid kõiki 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI kasutab järgmisi teeke. Ilma nendeta ei oleks UniGetUI võimalik.", "{0} homepage": "{0} kodulehekülg", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Tänu vabatahtlikele tõlkijatele on WingetUI tõlgitud rohkem kui 40 keelde. Tänan teid 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Tänu vabatahtlikele tõlkijatele on UniGetUI tõlgitud rohkem kui 40 keelde. Tänan teid 🤝", "Verbose": "Paljusõnaline", "1 - Errors": "1 - Vead", "2 - Warnings": "2 - Hoiatused", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Te olete sisse logitud kui {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Tore! Varukoopiad laaditakse üles teie konto privaatsesse gisti.", "Select backup": "Valige varundus", - "WingetUI Settings": "WingetUI seaded", + "UniGetUI Settings": "UniGetUI seaded", "Allow pre-release versions": "Luba väljalaske-eelsed versioonid", "Apply": "Rakenda", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Turvakaalutlustel on kohandatud käsureaargumendid vaikimisi keelatud. Selle muutmiseks avage UniGetUI turvaseaded.", "Go to UniGetUI security settings": "Avage UniGetUI turvaseaded", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Järgmised valikud rakendatakse vaikimisi iga kord, kui {0} pakett paigaldatakse, uuendatakse või eemaldatakse.", "Package's default": "Paketi vaikepositsioon", @@ -160,6 +169,7 @@ "Username": "Kasutajanimi", "Password": "Parool", "Credentials": "Kasutajatunnused", + "It is not guaranteed that the provided credentials will be stored safely": "Pole garanteeritud, et esitatud mandaadid salvestatakse turvaliselt.", "Partially": "Osaliselt", "Package manager": "Packagemanager", "Compatible with proxy": "Ühilduv puhverservega", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} on lubatud ja valmis", "{pm} version:": "{pm} versioon:", "{pm} was not found!": "{pm} ei leitud!", - "You may need to install {pm} in order to use it with WingetUI.": "Peate võib-olla paigaldama {pm}, et seda UniGetUI-ga kasutada.", - "Scoop Installer - WingetUI": "Scoopi paigaldaja - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoopi eemaldaja - WingetUI", - "Clearing Scoop cache - WingetUI": "Scoop'i vahemälu kustutamine - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Peate võib-olla paigaldama {pm}, et seda UniGetUI-ga kasutada.", + "Scoop Installer - UniGetUI": "Scoopi paigaldaja - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoopi eemaldaja - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop'i vahemälu kustutamine - UniGetUI", + "Restart UniGetUI to fully apply changes": "Muudatuste täielikuks rakendamiseks taaskäivitage UniGetUI", "Restart UniGetUI": "Taaskäivita UniGetUI", "Manage {0} sources": "Halda {0} allikat", "Add source": "Lisa allikas", "Add": "Lisa", + "Source name": "Allika nimi", + "Source URL": "Allika URL", "Other": "Muu", + "No minimum age": "Minimaalne vanus puudub", "1 day": "Üks päev", "{0} days": "{0} {0, plural,\n=0 {päeva}\none {päev}\nother {päeva}\n}", + "Custom...": "Kohandatud...", "{0} minutes": "{0} {0, plural,\n=0 {minutit}\none {minut}\nother {minutit}\n}", "1 hour": "Üks tund", "{0} hours": "{0} {0, plural,\n=0 {tundi}\none {tund}\nother {tundi}\n}", "1 week": "Üks nädal", - "WingetUI Version {0}": "WingetUI versioon {0}", + "Supports release dates": "Toetab väljalaskekuupäevi", + "Release date support per package manager": "Väljalaskekuupäevade tugi paketihalduri kaupa", + "UniGetUI Version {0}": "UniGetUI versioon {0}", "Search for packages": "Otsi paketid", "Local": "Lokaalne", "OK": "Okei", @@ -200,11 +217,13 @@ "Enabled": "Lubatud", "Disabled": "Keelatud", "More info": "Lisainfo", + "GitHub account": "GitHubi konto", "Log in with GitHub to enable cloud package backup.": "Logige sisse GitHub-ga, et lubada pilvepaketikambaaeg.", "More details": "Rohkem detaile", "Log in": "Logi sisse", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Kui teil on pilvevarundus aktiveeritud, salvestatakse see GitHub Gistina sellele kontole.", "Log out": "Logi välja", + "About UniGetUI": "UniGetUI teave", "About": "Rakendusest", "Third-party licenses": "Kolmandate osapoolte litsentsid", "Contributors": "Panustajad", @@ -212,6 +231,7 @@ "Manage shortcuts": "Halda otseteid", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI tootas järgmisi töölauale otseteed, mida saab tulevaste uuenduste puhul automaatselt eemaldada", "Do you really want to reset this list? This action cannot be reverted.": "Kas te tõesti soovite seda loendit lähtestada? Seda toimingut ei saa tagasi pöörata.", + "Open in explorer": "Ava Exploreris", "Remove from list": "Eemalda nimekirjast", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kui uued otseteed tuvastatakse, kustutatakse nad automaatselt selle dialoogi kuvamise asemel.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI kogub anonüümset kasutusstatistika ainuüksi kasutajakogemuse mõistmise ja parandamise eesmärgil.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Kas nõustute, et UniGetUI kogub ja saadab anonüümseid kasutamisstatistikaid, mille ainus eesmärk on kasutajakogemuse mõistmine ja parandamine?", "Decline": "Keeldu", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Isikuandmeid ei koguta ega saadeta ja kogutud andmetele on antud pseudonüüm, nii et neid ei saa tagasi jäljendada.", - "About WingetUI": "WingetUI`ist", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on rakendus, mis muudab teie tarkvara haldamise lihtsamaks, pakkudes ühte graafilist kasutajaliidest teie käsurea packagemanageritele.", + "Toggle navigation panel": "Lülita navigeerimispaneel sisse või välja", + "Minimize": "Minimeeri", + "Maximize": "Maksimeeri", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on rakendus, mis muudab teie tarkvara haldamise lihtsamaks, pakkudes ühte graafilist kasutajaliidest teie käsurea packagemanageritele.", "Useful links": "Kasulikud lingid", + "UniGetUI Homepage": "UniGetUI koduleht", "Report an issue or submit a feature request": "Teatage probleemist või esitage funktsiooni taotlus", + "UniGetUI Repository": "UniGetUI hoidla", "View GitHub Profile": "Kuva GitHub profiili", - "WingetUI License": "UniGetUI litsents", - "Using WingetUI implies the acceptation of the MIT License": "WingetUI kasutades nõustute MIT litsentsiga", + "UniGetUI License": "UniGetUI litsents", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI kasutades nõustute MIT litsentsiga", "Become a translator": "Saage tõlkijaks", "View page on browser": "Vaata lehekülg brauseris", "Copy to clipboard": "Kopeeri lõikepuhvrisse", "Export to a file": "Ekspordi faili", "Log level:": "Logide tase:", "Reload log": "Laadi logid uuesti", + "Export log": "Ekspordi logi", + "UniGetUI Log": "UniGetUI logi", "Text": "Tekst", "Change how operations request administrator rights": "Muuda, kuidas toimingud nõuavad administraatori õiguseid", "Restrictions on package operations": "Pakettide toimingute piirangud", @@ -271,7 +297,7 @@ "Leave empty for default": "Jäta tühjaks vaikimisi jaoks", "Add a timestamp to the backup file names": "Lisa ajatempel varukoopiafailinimedele", "Backup and Restore": "Varukoopia ja taastumine", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Lülita tausta API sisse (WingetUI vidinad ja jagamine, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Lülita tausta API sisse (UniGetUI vidinad ja jagamine, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Oodake, kuni seade ühendub internet'iga, enne kui proovite ülesandeid, mis nõuavad interneti-ühendust.", "Disable the 1-minute timeout for package-related operations": "Keelustan 1-minutilise aja piirangu pakettide operatsioonidele", "Use installed GSudo instead of UniGetUI Elevator": "Kasuta paigaldatud GSudot UniGetUI Lifti asemel", @@ -286,7 +312,7 @@ "Telemetry": "Telemetriaandmete", "Manage UniGetUI settings": "Halda UniGetUI seadeid", "Related settings": "Seotud seaded", - "Update WingetUI automatically": "Uuenda WingetUI automaatselt", + "Update UniGetUI automatically": "Uuenda UniGetUI automaatselt", "Check for updates": "Kontrolli uuendusi", "Install prerelease versions of UniGetUI": "Paigalda UniGetUI väljalaske-eelsed versioonid", "Manage telemetry settings": "Halda telemetriaandmete seadeid", @@ -295,17 +321,17 @@ "Import": "Impordi", "Export settings to a local file": "Ekspordi seaded faili", "Export": "Ekspordi", - "Reset WingetUI": "Lähtesta WingetUI", "Reset UniGetUI": "Lähtesta UniGetUI", "User interface preferences": "Kasutajaliidese eelistused", "Application theme, startup page, package icons, clear successful installs automatically": "Rakenduse teema, käivitamisleht, paketi ikoonid, kustuta edukad paigaldused automaatselt", "General preferences": "Üldised seaded", - "WingetUI display language:": "WingetUI kuvamiskeel:", + "UniGetUI display language:": "UniGetUI kuvamiskeel:", "Is your language missing or incomplete?": "Kas teie keel on puudu või puudulik?", "Appearance": "Välimus", "UniGetUI on the background and system tray": "UniGetUI taustale ja tegumiriidale", "Package lists": "Pakettide nimekirjad", "Close UniGetUI to the system tray": "Sule UniGetUI tegumiribi", + "Manage UniGetUI autostart behaviour": "Halda UniGetUI automaatkäivituse käitumist", "Show package icons on package lists": "Näita paketi ikoonid pakettide nimekirjades", "Clear cache": "Tühjenda vahemälu", "Select upgradable packages by default": "Vaikimisi valige täienduspakettid", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Pange tähele, et mitte kõik packagemanagerid ei pruugi seda funktsiooni täielikult toetada", "Proxy URL": "Puhvri URL", "Enter proxy URL here": "Sisestage puhvri URL siin", + "Authenticate to the proxy with a user and a password": "Autendi puhverserveris kasutajanime ja parooliga", + "Internet and proxy settings": "Interneti- ja puhverserveri seaded", "Package manager preferences": "Paketihalduri eelistused", "Ready": "Valmis", "Not found": "Ei leitud", "Notification preferences": "Teavitamise eelistused", "Notification types": "Teavituste tüübid", "The system tray icon must be enabled in order for notifications to work": "Tegumiriba ikoon tuleb lubada, et teavitused töötaksid", - "Enable WingetUI notifications": "Lülita sisse WingetUI teavitused", + "Enable UniGetUI notifications": "Lülita sisse UniGetUI teavitused", "Show a notification when there are available updates": "Näita teate, kui saadaolevad uuendused", "Show a silent notification when an operation is running": "Näita vaikiv teavitus toimingu käivitamisel", "Show a notification when an operation fails": "Näita teavitus, kui toiming ebaõnnestub", "Show a notification when an operation finishes successfully": "Näita teatis, kui toiming lõpeb edukalt", "Concurrency and execution": "Samaaegne ja täitmine", "Automatic desktop shortcut remover": "Automaatne töölauakohase otsetee eemalda", + "Choose how many operations should be performed in parallel": "Valige, mitu toimingut tehakse paralleelselt", "Clear successful operations from the operation list after a 5 second delay": "Puhasta edukad operatsioonid operatsioonide loendist 5 sekundi viivitusega", "Download operations are not affected by this setting": "Allalaadimistoiminguid see säte ei mõjuta", "Try to kill the processes that refuse to close when requested to": "Proovige tappa protsessid, mida sulgemisele kutsutakse eitavad", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Valige kasutatav käivitatav fail. Järgmine nimekirja näitab UniGetUI-ga leitud käivitatavaid faile", "Current executable file:": "Praegune käivitatav fail:", "Ignore packages from {pm} when showing a notification about updates": "Eira pakette {pm}-st, kui näidatakse teavitust uuenduste kohta", + "Update security": "Uuenduste turvalisus", + "Use global setting": "Kasuta globaalset sätet", + "e.g. 10": "nt 10", + "{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.", + "Override the global minimum update age for this package manager": "Alista selle paketihalduri jaoks globaalne uuenduste minimaalne vanus", + "Minimum age for updates": "Uuenduste minimaalne vanus", + "Custom minimum age (days)": "Kohandatud minimaalne vanus (päevades)", "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, ", "Advanced options": "Täpsemad valikud", "Reset WinGet": "Lähtesta WinGet", "This may help if no packages are listed": "See võib aidata, kui pakette pole loetletud", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Luba Scoopi puhastamine käivitamisel", "Use system Chocolatey": "Kasuta süsteemi Chocolatey", "Default vcpkg triplet": "Vaikimisi vcpkg kolmainsamblik", + "Change vcpkg root location": "Muuda vcpkg juurasukohta", "Language, theme and other miscellaneous preferences": "Keel, teema ja muud eelistused", "Show notifications on different events": "Näita teavitusi erinevatel sündmustel", "Change how UniGetUI checks and installs available updates for your packages": "Muuda, kuidas UniGetUI kontrollib ja paigaldab pakettide saadaolevaid uuendusi", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ära paigalda uuendusi automaatselt, kui võrguühendus on piiratud", "Do not automatically install updates when the device runs on battery": "Ära paigalda uuendusi automaatselt, kui seade käib akul", "Do not automatically install updates when the battery saver is on": "Ära paigalda uuendusi automaatselt, kui aku sääst on sisse lülitatud", + "Only show updates that are at least the specified number of days old": "Kuva ainult uuendused, mis on vähemalt määratud arvu päevi vanad", "Change how UniGetUI handles install, update and uninstall operations.": "Muuda, kuidas UniGetUI käsitleb paigaldamise, uuendamise ja eemaldamise toiminguid.", "Package Managers": "Packagemanagerid", "More": "Rohkem", - "WingetUI Log": "WingetUI logi", "Package Manager logs": "Paketihalduri logid", "Operation history": "Toiminguajalugu", "Help": "Abi", + "Quit UniGetUI": "Välju UniGetUI-st", "Order by:": "Järjestamine:", "Name": "Nimi", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Mõlemad", "Exact match": "Täpne vaste", "Show similar packages": "Näita sarnased paketid", + "Nothing to share": "Pole midagi jagada", + "Please select a package first.": "Valige esmalt pakett.", + "Share link copied": "Jagamislink kopeeritud", + "The share link for {0} has been copied to the clipboard.": "Rakenduse {0} jagamislink on lõikelauale kopeeritud.", "No results were found matching the input criteria": "Sisendkriteeriumidele vastavaid tulemusi ei leitud", "No packages were found": "Pakette pole leitud", "Loading packages": "Pakettide laadimine", @@ -440,7 +483,11 @@ "Package bundle": "Pakettide kimp", "Could not create bundle": "Kimbu loomine nurjus", "The package bundle could not be created due to an error.": "Pakettide kimbu loomine nurjus vea tõttu", + "Unsaved changes": "Salvestamata muudatused", + "Discard changes": "Loobu muudatustest", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Praeguses kogumis on salvestamata muudatusi. Kas soovite neist loobuda?", "Bundle security report": "Kimbu turvaseadused aruanne", + "The bundle contained restricted content": "Kogum sisaldas piiratud sisu", "Hooray! No updates were found.": "Hurraa! Uuendusi pole leitud.", "Everything is up to date": "Kõik on ajakohane", "Uninstall selected packages": "Kustuta valitud paketid", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windowsi klassikaline packagemanager. Leiate sealt kõik.
Sisaldab: Üldine tarkvara", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repositoorium, mis on täis Microsofti .NET ökosüsteemi silmas pidades loodud tööriistu ja käivitatavaid faile.
Sisaldab: .NETiga seotud tööriistu ja skripte", "NuPkg (zipped manifest)": "NuPkg (tihendatud manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Puuduv paketihaldur macOS-ile (või Linuxile).
Sisaldab: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS-i packagemanager. Täis teeke ja muud utiliite, mis orbiidist JavaScript-i maailm
Sisaldab: Node JavaScript teegid ja muud seotud utiliidid", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Pythoni teekide haldur. Täis Pythoni teeke ja muud Pythoniga seotud utiliite
Sisaldab: Pythoni teegid ja seotud utiliidid", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShelli packagemanager. Leia teegid ja skriptid PowerShelli võimaluste laiendamiseks
Sisaldab: Moodulid, skriptid, käsulauakohased utiliidid", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Toiming järjekorras (positsioon {0})...", "Click here for more details": "Klõpsake siin rohkema teabe saamiseks", "Operation canceled by user": "Toiming tühistatud kasutaja poolt ", + "Running PreOperation ({0}/{1})...": "Käivitan PreOperationi ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0}/{1} nurjus ja oli märgitud vajalikuks. Katkestan...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0}/{1} lõppes tulemusega {2}", "Starting operation...": "Toimingu käivitamine...", + "Running PostOperation ({0}/{1})...": "Käivitan PostOperationi ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0}/{1} nurjus ja oli märgitud vajalikuks. Katkestan...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0}/{1} lõppes tulemusega {2}", "{package} installer download": "{package} paigaldaja allalaadimine", "{0} installer is being downloaded": "{0} paigaldaja laaditakse alla", "Download succeeded": "Allalaadimine õnnestus", @@ -556,14 +610,12 @@ "Portable mode": "Kantaline režiim\n", "DEBUG BUILD": "SILUMISE KOOSTAMINE", "Available Updates": "Kättesaadavad uuendused", - "Show WingetUI": "Näita WingetUI", + "Show UniGetUI": "Näita UniGetUI", "Quit": "Välju", "Attention required": "Tähelepanu nõutud", "Restart required": "Taaskäivitamine on vajalik", "1 update is available": "Üks uuendus on kättesaadav", "{0} updates are available": "{0} {0, plural, one {uuendus} few {uuendust} other {uuendust}} on kättesaadaval", - "WingetUI Homepage": "UniGetUI kodulehekülg", - "WingetUI Repository": "UniGetUI repositoorium", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Siin saate muuta UniGetUI käitumist järgmiste otseotsingute suhtes. Lühiteeotsingule klõpsamine põhjustab UniGetUI selle kustutamisele, kui see luuakse tulevases uuenduses. Märkuse eemaldamine hoiab otsetee puutumata", "Manual scan": "Käsitsemisvahendite skaneerimine", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Teie töölaua olemasolevaid otseteid skannitakse ja peate valima, millised jätta ja millised eemaldada.", @@ -583,7 +635,6 @@ "Restart later": "Taaskäivita hiljem", "An error occurred:": "Tekkis viga:", "I understand": "Saan aru", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI on administraatori õigustega tööle käivitatud, mis ei ole soovitatav. WingetUI administraatori nimelt käivitamisel on IGAL WingetUI-st käivitatud operatsioonil administraatori õigused. Saate programmi veel kasutada, kuid tungivalt soovitame mitte käivitada WingetUI administraatori õigustega.", "WinGet was repaired successfully": "WinGet parandati edukalt", "It is recommended to restart UniGetUI after WinGet has been repaired": "Pärast WinGeti parandamist on soovitatav UniGetUI taaskäivitada", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "MÄRKUS: seda tõrkeotsijat saab keelata UniGetUI seadetes WinGeti osas", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Te paketid saavad kimpu lisatud. Te saate jätkata pakettide lisamist või eksportida kimp.", "Which backup do you want to open?": "Millist varundust soovite avada?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Valige varundus, mida soovite avada. Hiljem saate vaadata, milliseid pakette soovite paigaldada.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Käimas on toimingud. WingetUI-ist väljumine võib põhjustada nende ebaõnnestumist. Kas Te tahate jätkata?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Käimas on toimingud. UniGetUI-ist väljumine võib põhjustada nende ebaõnnestumist. Kas Te tahate jätkata?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI või mõned selle komponendid on puudu või kahjustunud.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "On tungivalt soovitatav UniGetUI taaspaigaldada, et lahendada olukord.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Viitake UniGetUI logidele, et saada rohkem teavet mõjutatud faili(de) kohta", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Kirjutage siia protsesside nimed, eraldatuna komadega (,)", "Unset or unknown": "Määramata või teadmata", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Palun vaadake käsurea väljundit või vaadake probleemi kohta lisateavet toiminguajaloost.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Kas sellel paketil pole ekraanipilte või puudub ikoon? Aita kaasa WingetUI-le, lisades puuduolevad ikoonid ja pildid meie avatud avalikku andmebaasi.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Kas sellel paketil pole ekraanipilte või puudub ikoon? Aita kaasa UniGetUI-le, lisades puuduolevad ikoonid ja pildid meie avatud avalikku andmebaasi.", "Become a contributor": "Saa panustajaks", "Save": "Salvesta", "Update to {0} available": "{0} uuendus leitud", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Luba automaatne WinGeti tõrkeotsija", "Enable an [experimental] improved WinGet troubleshooter": "Luba [eksperimentaalne] parandatud WinGeti tõrkeotsija", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Lisa ebaõnnestunud uuendused, mille puhul kuvatakse teade \"sobivat uuendust ei leitud\", ignoreeritavate uuenduste loendisse", - "Restart WingetUI to fully apply changes": "Taaskäivita WingetUI muudatuste täielikuks rakendamiseks", - "Restart WingetUI": "Taaskäivita WingetUI", "Invalid selection": "Sobimatu valik", "No package was selected": "Ühtegi paketti pole valitud", "More than 1 package was selected": "Valiti rohkem kui 1 pakett", @@ -684,6 +733,37 @@ "Log out failed: ": "Väljalogimine nurjus:", "Package backup settings": "Paketi varundamise seaded", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI`ist", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on rakendus, mis muudab teie tarkvara haldamise lihtsamaks, pakkudes ühte graafilist kasutajaliidest teie käsurea packagemanageritele.", + "You have installed WingetUI Version {0}": "Te olete paigaldanud WingetUI versiooni {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI poleks olnud võimalik ilma panustajate abita. Tänan teid kõiki 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI kasutab järgmisi teeke. Ilma nendeta ei oleks UniGetUI võimalik.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Tänu vabatahtlikele tõlkijatele on WingetUI tõlgitud rohkem kui 40 keelde. Tänan teid 🤝", + "WingetUI Settings": "WingetUI seaded", + "You may need to install {pm} in order to use it with WingetUI.": "Peate võib-olla paigaldama {pm}, et seda UniGetUI-ga kasutada.", + "Scoop Installer - WingetUI": "Scoopi paigaldaja - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoopi eemaldaja - WingetUI", + "Clearing Scoop cache - WingetUI": "Scoop'i vahemälu kustutamine - WingetUI", + "WingetUI Version {0}": "WingetUI versioon {0}", + "WingetUI License": "UniGetUI litsents", + "Using WingetUI implies the acceptation of the MIT License": "WingetUI kasutades nõustute MIT litsentsiga", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Lülita tausta API sisse (WingetUI vidinad ja jagamine, port 7058)", + "Update WingetUI automatically": "Uuenda WingetUI automaatselt", + "Reset WingetUI": "Lähtesta WingetUI", + "WingetUI display language:": "WingetUI kuvamiskeel:", + "Manage WingetUI autostart behaviour": "Halda WingetUI automaatkäivituse käitumist", + "Enable WingetUI notifications": "Lülita sisse WingetUI teavitused", + "WingetUI Log": "WingetUI logi", + "Show WingetUI": "Näita WingetUI", + "WingetUI Homepage": "UniGetUI kodulehekülg", + "WingetUI Repository": "UniGetUI repositoorium", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI on administraatori õigustega tööle käivitatud, mis ei ole soovitatav. WingetUI administraatori nimelt käivitamisel on IGAL WingetUI-st käivitatud operatsioonil administraatori õigused. Saate programmi veel kasutada, kuid tungivalt soovitame mitte käivitada WingetUI administraatori õigustega.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Käimas on toimingud. WingetUI-ist väljumine võib põhjustada nende ebaõnnestumist. Kas Te tahate jätkata?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Kas sellel paketil pole ekraanipilte või puudub ikoon? Aita kaasa WingetUI-le, lisades puuduolevad ikoonid ja pildid meie avatud avalikku andmebaasi.", + "Restart WingetUI to fully apply changes": "Taaskäivita WingetUI muudatuste täielikuks rakendamiseks", + "Restart WingetUI": "Taaskäivita WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Halda UniGetUI automaatilise käivitamise käitumine rakendusest \"Seaded\"", "(Number {0} in the queue)": "(Positsioon {0} järjekorras)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@artjom3729", "0 packages found": "Pole pakette leitud", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json index 69a99ddf30..352b0d4f58 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fa.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "اگر اجرای دستور پیش نیاز حذف نصب شکست خورد، حذف نصب انجام نشه", "Command-line to run:": "فرمان برای اجرا:", "Save and close": "ذخیره و بستن", + "General": "عمومی", + "Architecture & Location": "معماری و محل", + "Command-line": "خط فرمان", + "Pre/Post install": "پیش‌نصب/پس‌نصب", "Run as admin": "اجرا به عنوان ادمین", "Interactive installation": "نصب تعاملی", "Skip hash check": "رد کردن بررسی Hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "مدیریت بروزرسانی های نادیده گرفته شده", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "بسته‌های فهرست‌شده اینجا هنگام بررسی به‌روزرسانی‌ها در نظر گرفته نمی‌شوند. برای متوقف کردن نادیده گرفتن به‌روزرسانی آن‌ها، روی هر کدام دوبار کلیک کنید یا دکمه سمت راست‌شان را بزنید.", "Reset list": "بازنشانی لیست", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "آیا واقعاً می‌خواهید فهرست به‌روزرسانی‌های نادیده‌گرفته‌شده را بازنشانی کنید؟ این عمل قابل بازگشت نیست", + "No ignored updates": "هیچ به‌روزرسانی نادیده‌گرفته‌شده‌ای وجود ندارد", "Package Name": "نام بسته\n\n", "Package ID": "شناسه (ID) بسته", "Ignored version": "نسخه های نادیده گرفته شده", @@ -86,6 +92,7 @@ "This operation is running interactively.": "این عملیات به صورت تعاملی در حال اجرا است.", "You will likely need to interact with the installer.": "احتمالاً نیاز خواهید داشت با نصب‌کننده تعامل کنید.", "Integrity checks skipped": "بررسی‌های یکپارچگی رد شد", + "Integrity checks will not be performed during this operation.": "در طول این عملیات، بررسی‌های یکپارچگی انجام نخواهند شد.", "Proceed at your own risk.": "با مسئولیت خود ادامه دهید.", "Close": "بستن", "Loading...": "بارگذاری...", @@ -120,16 +127,17 @@ "optional": "اختیاری", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} آماده نصب است.", "The update process will start after closing UniGetUI": "فرآیند به‌روزرسانی پس از بستن UniGetUI شروع خواهد شد", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI به‌صورت مدیر سیستم اجرا شده است که توصیه نمی‌شود. وقتی UniGetUI را به‌صورت مدیر سیستم اجرا می‌کنید، همهٔ عملیات‌هایی که از UniGetUI شروع می‌شوند دارای دسترسی مدیر سیستم خواهند بود. همچنان می‌توانید از برنامه استفاده کنید، اما اکیداً توصیه می‌کنیم UniGetUI را با دسترسی مدیر سیستم اجرا نکنید.", "Share anonymous usage data": "به‌اشتراک‌گذاری داده‌های استفاده به‌صورت ناشناس", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI داده‌های استفاده ناشناس جمع‌آوری می‌کند تا تجربه کاربری را بهبود بخشد.", "Accept": "تایید", - "You have installed WingetUI Version {0}": "شما UniGetUI نسخه {0} نصب کرده‌اید", + "You have installed UniGetUI Version {0}": "شما UniGetUI نسخه {0} نصب کرده‌اید", "Disclaimer": "توجه", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI به هیچ یک از مدیران بسته سازگار مرتبط نیست. UniGetUI یک پروژه مستقل است.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI بدون کمک مشارکت کنندگان ممکن نبود. ممنون از همه 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI از کتابخانه های زیر استفاده می کند. بدون آنها، UniGetUI ممکن نبود.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI بدون کمک مشارکت کنندگان ممکن نبود. ممنون از همه 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI از کتابخانه های زیر استفاده می کند. بدون آنها، UniGetUI ممکن نبود.", "{0} homepage": "{0} صفحه اصلی", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI به لطف مترجمان داوطلب به بیش از 40 زبان ترجمه شده است. ممنون 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI به لطف مترجمان داوطلب به بیش از 40 زبان ترجمه شده است. ممنون 🤝", "Verbose": "مفصل", "1 - Errors": "1 - خطاها", "2 - Warnings": "۲ - هشدارها", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "شما به عنوان {0} (@{1} ) وارد شده اید", "Nice! Backups will be uploaded to a private gist on your account": "خوبه! پشتیبان ها به یک gist خصوصی روی حساب شما آپلود خواهند شد", "Select backup": "انتخاب پشتیبان", - "WingetUI Settings": "تنظیمات UniGetUI", + "UniGetUI Settings": "تنظیمات UniGetUI", "Allow pre-release versions": "اجازه نسخه های پیش از انتشار داده شود", "Apply": "اعمال", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "به دلایل امنیتی، آرگومان‌های سفارشی خط فرمان به‌طور پیش‌فرض غیرفعال هستند. برای تغییر این مورد به تنظیمات امنیتی UniGetUI بروید.", "Go to UniGetUI security settings": "برو به تنظیمات امنیتی UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "هربار که یک {0} بسته نصب، بروزرسانی یا حذف نصب شد تنظیمات زیر بصورت پیشفرض اعمال میشوند.", "Package's default": "پیشفرض بسته", @@ -160,6 +169,7 @@ "Username": "نام کاربری", "Password": "رمز عبور", "Credentials": "اطلاعات ورود", + "It is not guaranteed that the provided credentials will be stored safely": "تضمینی وجود ندارد که اطلاعات ورود ارائه‌شده به‌صورت امن ذخیره شوند", "Partially": "تا حدی", "Package manager": "مدیر بسته", "Compatible with proxy": "سازگار با پروکسی", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} فعال و آماده به کار است", "{pm} version:": "نسخه {pm}:", "{pm} was not found!": "{pm} یافت نشد!", - "You may need to install {pm} in order to use it with WingetUI.": "ممکن است نیاز داشته باشید {pm} را نصب کنید تا بتوانید آن را با UniGetUI استفاده کنید.", - "Scoop Installer - WingetUI": "نصب‌کننده UniGetUI - Scoop", - "Scoop Uninstaller - WingetUI": "حذف کننده UniGetUI - Scoop", - "Clearing Scoop cache - WingetUI": "پاک کردن حافظه پنهان UniGetUI - Scoop", + "You may need to install {pm} in order to use it with UniGetUI.": "ممکن است نیاز داشته باشید {pm} را نصب کنید تا بتوانید آن را با UniGetUI استفاده کنید.", + "Scoop Installer - UniGetUI": "نصب‌کننده UniGetUI - Scoop", + "Scoop Uninstaller - UniGetUI": "حذف کننده UniGetUI - Scoop", + "Clearing Scoop cache - UniGetUI": "پاک کردن حافظه پنهان UniGetUI - Scoop", + "Restart UniGetUI to fully apply changes": "برای اعمال کامل تغییرات، UniGetUI را دوباره راه‌اندازی کنید", "Restart UniGetUI": "UniGetUI را مجددا راه اندازی کنید", "Manage {0} sources": "منابع {0} را مدیریت کنید", "Add source": "افزودن منبع", "Add": "اضافه کردن", + "Source name": "نام منبع", + "Source URL": "نشانی منبع", "Other": "دیگر", + "No minimum age": "بدون حداقل مدت", "1 day": "۱ روز", "{0} days": "{0} روز", + "Custom...": "سفارشی...", "{0} minutes": "{0} دقیقه", "1 hour": "۱ ساعت", "{0} hours": "{0} ساعت", "1 week": "۱ هفته", - "WingetUI Version {0}": "UniGetUI نسخه {0}", + "Supports release dates": "از تاریخ انتشار پشتیبانی می‌کند", + "Release date support per package manager": "پشتیبانی از تاریخ انتشار برای هر مدیر بسته", + "UniGetUI Version {0}": "UniGetUI نسخه {0}", "Search for packages": "جستجوی بسته ها", "Local": "محلی", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "فعال", "Disabled": "غیرفعال", "More info": "اطلاعات بیشتر", + "GitHub account": "حساب GitHub", "Log in with GitHub to enable cloud package backup.": "با Github وارد شوید تا پشتیبان ابری فعال شود.", "More details": "جزئیات بیشتر", "Log in": "ورود کاربر", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "اگر شما پشتیبان گیری ابری را فعال کرده باشید، بصورت Github Gist روی این اکانت ذخیره خواهد شد", "Log out": "خروج کاربر", + "About UniGetUI": "درباره UniGetUI", "About": "درباره", "Third-party licenses": "مجوزهای نرم‌افزارهای جانبی", "Contributors": "مشارکت کنندگان", @@ -212,6 +231,7 @@ "Manage shortcuts": "مدیریت میانبرها", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI میانبرهای دسکتاپ زیر را تشخیص داده که می‌توانند در ارتقاهای آینده به طور خودکار حذف شوند", "Do you really want to reset this list? This action cannot be reverted.": "آیا واقعاً می‌خواهید این فهرست را بازنشانی کنید؟ این عمل قابل بازگشت نیست.", + "Open in explorer": "باز کردن در اکسپلورر", "Remove from list": "حذف از لیست", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "هنگام تشخیص میانبرهای جدید، آن‌ها را به طور خودکار حذف کنید به جای نمایش این دیالوگ.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI داده‌های استفاده ناشناس را با هدف صرف درک و بهبود تجربه کاربری جمع‌آوری می‌کند.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "آیا قبول دارید که UniGetUI آمار استفاده ناشناس جمع‌آوری و ارسال کند، با هدف تنها درک و بهبود تجربه کاربری؟", "Decline": "رد کردن", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "هیچ اطلاعات شخصی جمع‌آوری یا ارسال نمی‌شود و داده‌های جمع‌آوری شده ناشناس‌سازی شده‌اند، بنابراین قابل ردیابی به شما نیستند.", - "About WingetUI": "درباره UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI برنامه‌ای است که مدیریت نرم‌افزار شما را با ارائه یک رابط گرافیکی همه‌جانبه برای مدیران بسته خط فرمان شما آسان‌تر می‌کند.", + "Toggle navigation panel": "نمایش/پنهان کردن پنل ناوبری", + "Minimize": "کمینه‌سازی", + "Maximize": "بیشینه‌سازی", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI برنامه‌ای است که مدیریت نرم‌افزار شما را با ارائه یک رابط گرافیکی همه‌جانبه برای مدیران بسته خط فرمان شما آسان‌تر می‌کند.", "Useful links": "لینک های مفید ", + "UniGetUI Homepage": "صفحه اصلی UniGetUI", "Report an issue or submit a feature request": "گزارش یک مشکل یا ارسال درخواست ویژگی", + "UniGetUI Repository": "مخزن UniGetUI", "View GitHub Profile": "مشاهده پروفایل GitHub", - "WingetUI License": "لایسنس UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "استفاده از UniGetUI به معنای پذیرش مجوز MIT است", + "UniGetUI License": "لایسنس UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "استفاده از UniGetUI به معنای پذیرش مجوز MIT است", "Become a translator": "مترجم شوید", "View page on browser": "نمایش صفحه در مرورگر", "Copy to clipboard": "کپی به کلیپ بورد", "Export to a file": "استخراج به یک فایل", "Log level:": "سطح گزارش:", "Reload log": "بارگیری مجدد گزارش", + "Export log": "خروجی گرفتن از گزارش", + "UniGetUI Log": "گزارش UniGetUI", "Text": "متن", "Change how operations request administrator rights": "تغییر نحوهٔ درخواست مجوز ادمین برای عملیات ها", "Restrictions on package operations": "محدودیت ها روی عملیات بسته ها", @@ -271,7 +297,7 @@ "Leave empty for default": "پیش فرض خالی بگذارید", "Add a timestamp to the backup file names": " یک مهره زمانی به اسم فایل پشتیبان گیری اضافه شود", "Backup and Restore": "پشتیبان گیری و بازگردانی", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "فعال کردن api پس زمینه (WingetUI Widgets and Sharing، پورت 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "فعال کردن api پس زمینه (UniGetUI Widgets and Sharing، پورت 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "قبل از تلاش برای انجام کارهایی که نیاز به اتصال اینترنت دارند، منتظر بمانید تا دستگاه به اینترنت متصل شود.", "Disable the 1-minute timeout for package-related operations": "غیرفعال‌کردن زمان‌توقف ۱ دقیقه‌ای برای عملیات مرتبط با بسته‌ها", "Use installed GSudo instead of UniGetUI Elevator": "برای افزایش سطح دسترسی، بجای افزاینده UniGetUI از GSudo نصب شده استفاده کن", @@ -286,7 +312,7 @@ "Telemetry": "تله‌متری", "Manage UniGetUI settings": "مدیریت تنظیمات UniGetUI", "Related settings": "تنظیمات مرتبط", - "Update WingetUI automatically": "به‌روزرسانی خودکار UniGetUI", + "Update UniGetUI automatically": "به‌روزرسانی خودکار UniGetUI", "Check for updates": "بررسی برای به‌روز رسانی ها", "Install prerelease versions of UniGetUI": "نصب نسخه‌های پیش‌انتشار UniGetUI", "Manage telemetry settings": "مدیریت تنظیمات تله‌متری", @@ -295,17 +321,17 @@ "Import": "وارد کردن", "Export settings to a local file": "استخراج تنظیمات از یک فایل محلی", "Export": "استخراج", - "Reset WingetUI": "بازنشانی UniGetUI", "Reset UniGetUI": "بازنشانی UniGetUI", "User interface preferences": "تنظیمات رابط کاربری", "Application theme, startup page, package icons, clear successful installs automatically": " تم برنامه، صفحهٔ شروع، آیکون‌های بسته‌ها، پاک‌سازی خودکار نصب‌های موفق", "General preferences": "تنظیمات دلخواه کلی", - "WingetUI display language:": "زبان نمایشی UniGetUI:", + "UniGetUI display language:": "زبان نمایشی UniGetUI:", "Is your language missing or incomplete?": "آیا زبان شما گم شده است یا ناقص است؟", "Appearance": "ظاهر", "UniGetUI on the background and system tray": "UniGetUI در پس‌زمینه و نوار سیستم", "Package lists": "لیست‌های بسته", "Close UniGetUI to the system tray": "بستن UniGetUI و انتقال به نوار سیستم", + "Manage UniGetUI autostart behaviour": "مدیریت رفتار اجرای خودکار UniGetUI", "Show package icons on package lists": "نمایش آیکون‌های بسته در لیست‌های بسته", "Clear cache": "پاک کردن حافظه پنهان", "Select upgradable packages by default": "بسته‌های قابل ارتقا را به طور پیش‌فرض انتخاب کنید", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "لطفاً توجه داشته باشید که همه مدیران بسته ممکن است کاملاً از این ویژگی پشتیبانی نکنند", "Proxy URL": "URL پروکسی", "Enter proxy URL here": "URL پروکسی را اینجا وارد کنید", + "Authenticate to the proxy with a user and a password": "برای پراکسی با نام کاربری و گذرواژه احراز هویت کنید", + "Internet and proxy settings": "تنظیمات اینترنت و پراکسی", "Package manager preferences": "تنظیمات مدیریت بسته", "Ready": "آماده", "Not found": "پیدا نشد\n", "Notification preferences": "تنظیمات اعلان", "Notification types": "انواع اعلان", "The system tray icon must be enabled in order for notifications to work": "آیکون نوار سیستم باید فعال باشد تا اعلان‌ها کار کنند", - "Enable WingetUI notifications": "فعال سازی اعلان های UniGetUI", + "Enable UniGetUI notifications": "فعال سازی اعلان های UniGetUI", "Show a notification when there are available updates": "در صورت وجود بروزرسانی یک اعلان نشان داده شود ", "Show a silent notification when an operation is running": "نمایش اعلان بی‌صدا هنگام اجرای عملیات", "Show a notification when an operation fails": "نمایش اعلان هنگام شکست عملیات", "Show a notification when an operation finishes successfully": "نمایش اعلان هنگام اتمام موفق عملیات", "Concurrency and execution": "همزمانی و اجرا", "Automatic desktop shortcut remover": "حذف‌کنندهٔ خودکار میان‌برهای دسکتاپ", + "Choose how many operations should be performed in parallel": "انتخاب کنید چند عملیات به‌صورت هم‌زمان انجام شوند", "Clear successful operations from the operation list after a 5 second delay": "عملیات های موفق پس از ۵ ثانیه تاخیر از فهرست عملیات پاک می‌شوند", "Download operations are not affected by this setting": "این مورد روی عملیات دانلود تاثیر ندارد", "Try to kill the processes that refuse to close when requested to": "سعی کن پروسه هایی که درخواست پایان یافتن رو رد میکنن، به اجبار پایان بدی", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "فایل اجرایی مورد استفاده را انتخاب کنید. فهرست زیر فایل‌های اجرایی پیدا شده توسط UniGetUI را نشان می‌دهد", "Current executable file:": "فایل اجرایی فعلی:", "Ignore packages from {pm} when showing a notification about updates": "نادیده گرفتن بسته‌ها از {pm} هنگام نمایش اعلان درباره به‌روزرسانی‌ها", + "Update security": "امنیت به‌روزرسانی", + "Use global setting": "استفاده از تنظیمات سراسری", + "e.g. 10": "مثلاً 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} برای بسته‌های خود تاریخ انتشار ارائه نمی‌کند، بنابراین این تنظیم اثری نخواهد داشت", + "Override the global minimum update age for this package manager": "برای این مدیر بسته، حداقل عمر سراسری به‌روزرسانی را بازنویسی کن", + "Minimum age for updates": "حداقل عمر به‌روزرسانی‌ها", + "Custom minimum age (days)": "حداقل عمر سفارشی (روز)", "View {0} logs": "مشاهده لاگ‌های {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "اگر Python پیدا نمی‌شود یا با اینکه روی سیستم نصب است بسته‌ها را فهرست نمی‌کند، ", "Advanced options": "تنظیمات پیشرفته", "Reset WinGet": "بازنشانی WinGet", "This may help if no packages are listed": "این ممکن است کمک کند اگر هیچ بسته‌ای فهرست نشده", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "فعال کردن پاکسازی Scoop هنگام راه اندازی ", "Use system Chocolatey": "استفاده از Chocolatey سیستم", "Default vcpkg triplet": "سه‌تایی پیش‌فرض vcpkg", + "Change vcpkg root location": "تغییر محل ریشه vcpkg", "Language, theme and other miscellaneous preferences": "زبان، تم و تنظیمات گوناگون دیگر ", "Show notifications on different events": "نمایش اعلان‌ها در رویدادهای مختلف", "Change how UniGetUI checks and installs available updates for your packages": "نحوهٔ بررسی و نصب به‌روزرسانی‌های موجود برای بسته‌های شما توسط UniGetUI را تغییر دهید", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "هنگامی که اتصال شبکه محدود است، به‌روزرسانی‌ها را به طور خودکار نصب نکن", "Do not automatically install updates when the device runs on battery": "هنگامی که دستگاه با باتری کار می‌کند، به‌روزرسانی‌ها را به‌طور خودکار نصب نکن", "Do not automatically install updates when the battery saver is on": "هنگامی که صرفه‌جویی باتری روشن است، به‌روزرسانی‌ها را به طور خودکار نصب نکن", + "Only show updates that are at least the specified number of days old": "فقط به‌روزرسانی‌هایی را نشان بده که دست‌کم به تعداد روزهای مشخص‌شده قدیمی باشند", "Change how UniGetUI handles install, update and uninstall operations.": "تغییر نحوهٔ عملکرد UniGetUI در نصب، به‌روزرسانی و حذف", "Package Managers": "مدیران بسته", "More": "بیشتر", - "WingetUI Log": "لاگ UniGetUI", "Package Manager logs": "لاگ های مدیریت بسته", "Operation history": "تاریخچه عملیات", "Help": "راهنما", + "Quit UniGetUI": "خروج از UniGetUI", "Order by:": "مرتب‌سازی بر اساس:", "Name": "نام", "Id": "شناسه", @@ -409,6 +448,10 @@ "Both": "هر دو", "Exact match": "تطابق کامل", "Show similar packages": "نمایش بسته های مشابه", + "Nothing to share": "چیزی برای اشتراک‌گذاری وجود ندارد", + "Please select a package first.": "لطفاً ابتدا یک بسته را انتخاب کنید.", + "Share link copied": "پیوند اشتراک‌گذاری کپی شد", + "The share link for {0} has been copied to the clipboard.": "پیوند اشتراک‌گذاری {0} در کلیپ‌بورد کپی شد.", "No results were found matching the input criteria": "هیچ نتیجه ای مطابق با معیارهای ورودی یافت نشد", "No packages were found": "هیچ بسته ای پیدا نشد", "Loading packages": "در حال بارگیری بسته ها", @@ -440,7 +483,11 @@ "Package bundle": "باندل بسته", "Could not create bundle": "امکان ایجاد بسته وجود ندارد", "The package bundle could not be created due to an error.": "مجموعه بسته به دلیل خطا ایجاد نشد.", + "Unsaved changes": "تغییرات ذخیره‌نشده", + "Discard changes": "نادیده گرفتن تغییرات", + "You have unsaved changes in the current bundle. Do you want to discard them?": "در بستهٔ فعلی تغییرات ذخیره‌نشده دارید. می‌خواهید آن‌ها را نادیده بگیرید؟", "Bundle security report": "گزارش امنیت مجموعه", + "The bundle contained restricted content": "بسته شامل محتوای محدودشده بود", "Hooray! No updates were found.": "هورا! هیچ به روز رسانی پیدا نشد!", "Everything is up to date": "همه چیز به روز است", "Uninstall selected packages": "حذف بسته های انتخاب شده", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "مدیر بسته کلاسیک برای ویندوز. همه چیز را آنجا پیدا خواهید کرد.
شامل: نرم افزار عمومی", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "یک مخزن پر از ابزار ها و فایل های اجرایی طراحی شده با در نظر گرفتن اکوسیستم مایکروسافت دات نت.
دارای: ابزار ها و اسکریپت های مربوط به دات نت\n", "NuPkg (zipped manifest)": "NuPkg (مشخصات فشرده شده)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "مدیر بستهٔ گمشده برای macOS (یا Linux).
شامل: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "مدیر بسته Node JS. پر از کتابخانه ها و سایر ابزارهای کاربردی که در مدار جهان جاوا اسکریپت می گردند
شامل: کتابخانه های جاوا اسکریپت گره و سایر ابزارهای مرتبط", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "مدیر کتابخانه پایتون پر از کتابخانه‌های پایتون و سایر ابزارهای مرتبط با پایتون
شامل: کتابخانه‌های پایتون و ابزارهای مرتبط", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "مدیر بسته PowerShell. یافتن کتابخانه ها و اسکریپت ها برای گسترش قابلیت های PowerShell
شامل: ماژول ها، اسکریپت ها، Cmdlet ها", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "عملیات در صف (موقعیت {0})...", "Click here for more details": "برای اطلاعات بیشتر کلیک کنید", "Operation canceled by user": "عملیات توسط کاربر لغو شد", + "Running PreOperation ({0}/{1})...": "در حال اجرای PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} از {1} ناموفق بود و به‌عنوان ضروری علامت‌گذاری شده بود. در حال لغو...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} از {1} با نتیجهٔ {2} پایان یافت", "Starting operation...": "شروع عملیات...", + "Running PostOperation ({0}/{1})...": "در حال اجرای PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} از {1} ناموفق بود و به‌عنوان ضروری علامت‌گذاری شده بود. در حال لغو...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} از {1} با نتیجهٔ {2} پایان یافت", "{package} installer download": "دانلود نصب‌کننده بسته {package}", "{0} installer is being downloaded": "{0} در حال نصب است", "Download succeeded": "بارگیری با موفقیت انجام شد", @@ -556,14 +610,12 @@ "Portable mode": "حالت قابل حمل", "DEBUG BUILD": "نسخه دیباگ", "Available Updates": "به روزرسانی ها موجود است", - "Show WingetUI": "نمایش UniGetUI", + "Show UniGetUI": "نمایش UniGetUI", "Quit": "خروج", "Attention required": "توجه! توجه!", "Restart required": "راه اندازی مجدد لازم است", "1 update is available": "۱ به روزرسانی در دسترس است", "{0} updates are available": "به روز رسانی های موجود: {0}", - "WingetUI Homepage": "صفحه اصلی UniGetUI", - "WingetUI Repository": "مخزن UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "اینجا می‌توانید رفتار UniGetUI را در مورد میانبرهای زیر تغییر دهید. علامت زدن یک میانبر باعث می‌شود UniGetUI آن را حذف کند اگر در ارتقای آینده ایجاد شود. برداشتن علامت آن را دست نخورده نگه می‌دارد", "Manual scan": "اسکن دستی", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "میان‌برهای موجود روی دسکتاپ شما اسکن می‌شوند و باید انتخاب کنید کدام را نگه دارید و کدام را حذف کنید", @@ -583,7 +635,6 @@ "Restart later": "بعداً راه‌اندازی مجدد کن", "An error occurred:": "خطایی رخ داد:", "I understand": "فهمیدم", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI با دسترسی ادمین اجرا شده است، که توصیه نمی‌شود. وقتی UniGetUI را با دسترسی ادمین اجرا می‌کنید، همه عملیات انجام شده توسط برنامه با دسترسی ادمین اجرا می‌شوند.\nشما همچنان می‌توانید از برنامه استفاده کنید، اما به‌شدت توصیه می‌کنیم UniGetUI را با دسترسی ادمین اجرا نکنید.", "WinGet was repaired successfully": "WinGet با موفقیت تعمیر شد", "It is recommended to restart UniGetUI after WinGet has been repaired": "توصیه می‌شود پس از تعمیر WinGet، UniGetUI را مجدداً راه‌اندازی کنید.", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "توجه: این عیب‌یاب را می‌توان از تنظیمات UniGetUI، در بخش WinGet غیرفعال کرد", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "۴. بسته‌های شما به مجموعه اضافه شده‌اند. می‌توانید به اضافه کردن بسته‌های بیشتر ادامه دهید یا مجموعه را از برنامه خارج کنید", "Which backup do you want to open?": "کدوم پشتیبان رو میخوای باز کنی؟", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "پشتیبانی که میخوای باز کنی رو انتخاب کن. بعدش، میتونی بسته/برنامه ای که میخوای رو بازگردانی کنی", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "برخی عملیات در حال انجام هستند. بستن UniGetUI ممکن است باعث شکست آن‌ها شود. آیا مایلید ادامه دهید؟", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "برخی عملیات در حال انجام هستند. بستن UniGetUI ممکن است باعث شکست آن‌ها شود. آیا مایلید ادامه دهید؟", "UniGetUI or some of its components are missing or corrupt.": "برخی از کامپوننت های UniGetUI یا کل آن از دست رفته یا خراب شده اند.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "نصب مجدد UniGetUI عمیقا پیشنهاد میشه تا وضعیت آدرس دهی بشه.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "به لاگ های UniGetUI رجوع شود برای جزئیات بیشتر درمورد فایل(های) تحت تاثیر", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "نام پروسه ها رو اینجا بنویس، بصورت جدا شده با کاما (,)", "Unset or unknown": "تنظیم نشده یا ناشناخته", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "لطفاً خروجی خط فرمان را ببینید یا برای اطلاعات بیشتر در مورد این مشکل به سابقه عملیات مراجعه کنید.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "این بسته اسکرین‌شات یا آیکن ندارد؟ با اضافه کردن آیکن‌ها و اسکرین‌شات‌های گم‌شده به پایگاه‌داده عمومی و آزاد UniGetUI در بهبود آن مشارکت کنید.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "این بسته اسکرین‌شات یا آیکن ندارد؟ با اضافه کردن آیکن‌ها و اسکرین‌شات‌های گم‌شده به پایگاه‌داده عمومی و آزاد UniGetUI در بهبود آن مشارکت کنید.", "Become a contributor": "یک شریک شوید", "Save": "ذخیره", "Update to {0} available": "بروزرسانی به {0} موجود است", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "فعال کردن عیب‌یاب خودکار WinGet", "Enable an [experimental] improved WinGet troubleshooter": "فعال کردن عیب‌یاب بهبود یافته WinGet [آزمایشی]", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "به‌روزرسانی‌هایی که با خطای «به‌روزرسانی سازگاری پیدا نشد» شکست می‌خورند را به فهرست به‌روزرسانی‌های نادیده‌گرفته‌شده اضافه کن", - "Restart WingetUI to fully apply changes": "برای اعمال کامل تغییرات، UniGetUI را مجدداً راه‌اندازی کنید.", - "Restart WingetUI": "راه اندازی مجدد UniGetUI", "Invalid selection": "انتخاب نامعتبر", "No package was selected": "هیچ بسته‌ای انتخاب نشد", "More than 1 package was selected": "بیش از ۱ بسته انتخاب شد", @@ -684,6 +733,37 @@ "Log out failed: ": "خروج کاربر شکست خورد:", "Package backup settings": "تنظیمات پشتیبان گیری بسته", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "درباره UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI برنامه‌ای است که مدیریت نرم‌افزار شما را با ارائه یک رابط گرافیکی همه‌جانبه برای مدیران بسته خط فرمان شما آسان‌تر می‌کند.", + "You have installed WingetUI Version {0}": "شما UniGetUI نسخه {0} نصب کرده‌اید", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI بدون کمک مشارکت کنندگان ممکن نبود. ممنون از همه 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI از کتابخانه های زیر استفاده می کند. بدون آنها، UniGetUI ممکن نبود.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI به لطف مترجمان داوطلب به بیش از 40 زبان ترجمه شده است. ممنون 🤝", + "WingetUI Settings": "تنظیمات UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "ممکن است نیاز داشته باشید {pm} را نصب کنید تا بتوانید آن را با UniGetUI استفاده کنید.", + "Scoop Installer - WingetUI": "نصب‌کننده UniGetUI - Scoop", + "Scoop Uninstaller - WingetUI": "حذف کننده UniGetUI - Scoop", + "Clearing Scoop cache - WingetUI": "پاک کردن حافظه پنهان UniGetUI - Scoop", + "WingetUI Version {0}": "UniGetUI نسخه {0}", + "WingetUI License": "لایسنس UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "استفاده از UniGetUI به معنای پذیرش مجوز MIT است", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "فعال کردن api پس زمینه (WingetUI Widgets and Sharing، پورت 7058)", + "Update WingetUI automatically": "به‌روزرسانی خودکار UniGetUI", + "Reset WingetUI": "بازنشانی UniGetUI", + "WingetUI display language:": "زبان نمایشی UniGetUI:", + "Manage WingetUI autostart behaviour": "مدیریت رفتار اجرای خودکار UniGetUI", + "Enable WingetUI notifications": "فعال سازی اعلان های UniGetUI", + "WingetUI Log": "لاگ UniGetUI", + "Show WingetUI": "نمایش UniGetUI", + "WingetUI Homepage": "صفحه اصلی UniGetUI", + "WingetUI Repository": "مخزن UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI با دسترسی ادمین اجرا شده است، که توصیه نمی‌شود. وقتی UniGetUI را با دسترسی ادمین اجرا می‌کنید، همه عملیات انجام شده توسط برنامه با دسترسی ادمین اجرا می‌شوند.\nشما همچنان می‌توانید از برنامه استفاده کنید، اما به‌شدت توصیه می‌کنیم UniGetUI را با دسترسی ادمین اجرا نکنید.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "برخی عملیات در حال انجام هستند. بستن UniGetUI ممکن است باعث شکست آن‌ها شود. آیا مایلید ادامه دهید؟", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "این بسته اسکرین‌شات یا آیکن ندارد؟ با اضافه کردن آیکن‌ها و اسکرین‌شات‌های گم‌شده به پایگاه‌داده عمومی و آزاد UniGetUI در بهبود آن مشارکت کنید.", + "Restart WingetUI to fully apply changes": "برای اعمال کامل تغییرات، UniGetUI را مجدداً راه‌اندازی کنید.", + "Restart WingetUI": "راه اندازی مجدد UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "مدیریت رفتار شروع خودکار UniGetUI از طریق برنامه Settings", "(Number {0} in the queue)": "(شماره {0} در صف)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@MobinMardi, @ehinium", "0 packages found": "بسته‌ای پیدا نشد", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json index 8c3490dfbb..04703e9ec5 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fi.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Keskeytä asennuksen poisto, jos asennuksen poistoa edeltävä komento epäonnistuu", "Command-line to run:": "Suoritettava komentorivi:", "Save and close": "Tallenna ja sulje", + "General": "Yleiset", + "Architecture & Location": "Arkkitehtuuri ja sijainti", + "Command-line": "Komentorivi", + "Pre/Post install": "Ennen/jälkeen asennusta", "Run as admin": "Suorita ylläpitäjänä", "Interactive installation": "Interaktiivinen asennus", "Skip hash check": "Ohita hash-tarkistus", @@ -71,6 +75,8 @@ "Manage ignored updates": "Hallinnoi ohitettuja päivityksiä", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Tässä lueteltuja paketteja ei oteta huomioon päivityksiä tarkistettaessa. Kaksoisnapsauta niitä tai napsauta niiden oikealla puolella olevaa painiketta lopettaaksesi niiden päivitysten huomioimisen.", "Reset list": "Nollaa lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Haluatko varmasti nollata ohitettujen päivitysten luettelon? Tätä toimintoa ei voi kumota", + "No ignored updates": "Ei ohitettuja päivityksiä", "Package Name": "Paketin nimi", "Package ID": "Paketin ID", "Ignored version": "Ohitetut versiot", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Tämä toiminto ajetaan interaktiivisesti.", "You will likely need to interact with the installer.": "Sinun on todennäköisesti oltava vuorovaikutuksessa asennusohjelman kanssa.", "Integrity checks skipped": "Eheystarkastukset ohitettiin", + "Integrity checks will not be performed during this operation.": "Eheystarkistuksia ei suoriteta tämän toimenpiteen aikana.", "Proceed at your own risk.": "Jatka omalla vastuullasi.", "Close": "Sulje", "Loading...": "Ladataan...", @@ -120,16 +127,17 @@ "optional": "valinnainen", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} on valmis asennettavaksi.", "The update process will start after closing UniGetUI": "Päivitysprosessi alkaa UniGetUI:n sulkemisen jälkeen", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI:ta on suoritettu järjestelmänvalvojana, mitä ei suositella. Kun UniGetUI:ta suoritetaan järjestelmänvalvojana, KAIKILLA UniGetUI:sta käynnistetyillä toiminnoilla on järjestelmänvalvojan oikeudet. Voit silti käyttää ohjelmaa, mutta suosittelemme vahvasti, ettet suorita UniGetUI:ta järjestelmänvalvojan oikeuksilla.", "Share anonymous usage data": "Jaa anonyymiä käyttötietoa", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI kerää anonyymejä käyttötietoja parantaakseen käyttökokemusta.", "Accept": "Hyväksy", - "You have installed WingetUI Version {0}": "Asennettu UniGetUI versio: {0}", + "You have installed UniGetUI Version {0}": "Asennettu UniGetUI versio: {0}", "Disclaimer": "Vastuuvapauslauseke", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ei liity yhteensopiviin paketinhallintaohjelmiin. UniGetUI on itsenäinen projekti.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ei olisi ollut mahdollinen ilman avustajien apua. Kiitos kaikille 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI käyttää seuraavia kirjastoja. Ilman niitä UniGetUI ei olisi ollut mahdollinen.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ei olisi ollut mahdollinen ilman avustajien apua. Kiitos kaikille 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI käyttää seuraavia kirjastoja. Ilman niitä UniGetUI ei olisi ollut mahdollinen.", "{0} homepage": "{0} kotisivu", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI on käännetty yli 40 kielelle vapaaehtoisten kääntäjien ansiosta. Kiitos 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI on käännetty yli 40 kielelle vapaaehtoisten kääntäjien ansiosta. Kiitos 🤝", "Verbose": "Monisanainen", "1 - Errors": "1 - Virheet", "2 - Warnings": "2 - Varoitukset", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Olet kirjautunut sisään nimellä {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Hienoa! Varmuuskopiot ladataan tilisi yksityiseen Gist-kansioon.", "Select backup": "Valitse varmuuskopio", - "WingetUI Settings": "UniGetUI Asetukset", + "UniGetUI Settings": "UniGetUI-asetukset", "Allow pre-release versions": "Salli esijulkaisuversiot", "Apply": "Käytä", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Tietoturvasyistä mukautetut komentoriviargumentit ovat oletusarvoisesti poissa käytöstä. Muuta tätä UniGetUI:n turvallisuusasetuksissa.", "Go to UniGetUI security settings": "Siirry UniGetUI turvallisuus asetuksiin", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Seuraavat asetukset otetaan käyttöön oletusarvoisesti aina, kun {0}-paketti asennetaan, päivitetään tai poistetaan.", "Package's default": "Pakettien oletukset", @@ -160,6 +169,7 @@ "Username": "Käyttäjätunnus", "Password": "Salasana", "Credentials": "Valtuustiedot", + "It is not guaranteed that the provided credentials will be stored safely": "Ei voida taata, että annetut kirjautumistiedot tallennetaan turvallisesti", "Partially": "Osittain", "Package manager": "Pakettien hallinta", "Compatible with proxy": "Yhteensopiva välityspalvelimen kanssa", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} on käytössä ja valmis käyttöön", "{pm} version:": "{pm} versio:", "{pm} was not found!": "{pm} ei löytynyt!", - "You may need to install {pm} in order to use it with WingetUI.": "Sinun on ehkä asennettava {pm} käyttääksesi sitä UniGetUI:n kanssa.", - "Scoop Installer - WingetUI": "Scoop asennusohjelma - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop asennuksen poisto - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop-välimuistin tyhjennys - UniGetUI ", + "You may need to install {pm} in order to use it with UniGetUI.": "Sinun on ehkä asennettava {pm} käyttääksesi sitä UniGetUI:n kanssa.", + "Scoop Installer - UniGetUI": "Scoop asennusohjelma - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop asennuksen poisto - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop-välimuistin tyhjennys - UniGetUI ", + "Restart UniGetUI to fully apply changes": "Käynnistä UniGetUI uudelleen, jotta muutokset tulevat kokonaan voimaan", "Restart UniGetUI": "Uudelleenkäynnistä UniGetUI", "Manage {0} sources": "Hallinnoi {0} lähteitä", "Add source": "Lisää lähde", "Add": "Lisäys", + "Source name": "Lähteen nimi", + "Source URL": "Lähteen URL-osoite", "Other": "Muut", + "No minimum age": "Ei vähimmäisikää", "1 day": "1 päivä", "{0} days": "{0} päivää", + "Custom...": "Mukautettu...", "{0} minutes": "{0} minuuttia", "1 hour": "1 tunti", "{0} hours": "{0} tuntia", "1 week": "1 viikko", - "WingetUI Version {0}": "UniGetUI Versio {0}", + "Supports release dates": "Tukee julkaisupäiviä", + "Release date support per package manager": "Julkaisupäivätuki pakettienhallinnoittain", + "UniGetUI Version {0}": "UniGetUI Versio {0}", "Search for packages": "Hae paketteja", "Local": "Paikallinen", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Käytössä", "Disabled": "Pois käytöstä", "More info": "Lisää tietoa", + "GitHub account": "GitHub-tili", "Log in with GitHub to enable cloud package backup.": "Kirjaudu sisään GitHubilla ottaaksesi käyttöön pilvipakettien varmuuskopioinnin.", "More details": "Lisää yksityiskohtia", "Log in": "Kirjaudu", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Jos pilvivarmuuskopiointi on käytössä, se tallennetaan GitHub Gist -tiedostona tälle tilille.", "Log out": "Uloskirjaudu", + "About UniGetUI": "Tietoja UniGetUI:sta", "About": "Tietoja", "Third-party licenses": "Kolmannen osapuolen lisenssit", "Contributors": "Osallistujat", @@ -212,6 +231,7 @@ "Manage shortcuts": "Hallitse pikanäppäimiä", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI on havainnut seuraavat työpöydän pikakuvakkeet, jotka voidaan poistaa automaattisesti tulevien päivitysten yhteydessä", "Do you really want to reset this list? This action cannot be reverted.": "Haluatko todella nollata tämän luettelon? Tätä toimintoa ei voi peruuttaa.", + "Open in explorer": "Avaa resurssienhallinnassa", "Remove from list": "Poista listalta", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kun uusia pikakuvakkeita havaitaan, poista ne automaattisesti tämän valintaikkunan näyttämisen sijaan.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI kerää anonyymejä käyttötietoja, joiden ainoa tarkoitus on ymmärtää ja parantaa käyttökokemusta.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Hyväksytkö että UniGetUI kerää ja lähettää anonyymejä käyttötilastoja, joiden ainoa tarkoitus on ymmärtää ja parantaa käyttökokemusta?", "Decline": "Hylkää", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Henkilökohtaisia ​​tietoja ei kerätä eikä lähetetä, ja kerätyt tiedot anonymisoidaan, joten niitä ei voida palauttaa sinulle.", - "About WingetUI": "Tietoja UniGetUI:sta", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on sovellus, joka helpottaa ohjelmistojen hallintaa tarjoamalla all-in-one graafisen käyttöliittymän komentorivipakettien hallintaa varten.", + "Toggle navigation panel": "Näytä tai piilota siirtymispaneeli", + "Minimize": "Pienennä", + "Maximize": "Suurenna", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on sovellus, joka helpottaa ohjelmistojen hallintaa tarjoamalla all-in-one graafisen käyttöliittymän komentorivipakettien hallintaa varten.", "Useful links": "Hyödyllisiä linkkejä", + "UniGetUI Homepage": "UniGetUI:n kotisivu", "Report an issue or submit a feature request": "Ilmoita ongelmasta tai lähetä ominaisuuspyyntö", + "UniGetUI Repository": "UniGetUI:n lähdekoodivarasto", "View GitHub Profile": "Näytä GitHub profiili", - "WingetUI License": "UniGetUI Lisenssi", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI:n käyttö edellyttää MIT-lisenssin hyväksymistä", + "UniGetUI License": "UniGetUI Lisenssi", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI:n käyttö edellyttää MIT-lisenssin hyväksymistä", "Become a translator": "Liity kääntäjäksi", "View page on browser": "Näytä sivu selaimessa", "Copy to clipboard": "Kopioi leikepöydälle", "Export to a file": "Vie tiedostoon", "Log level:": "Lokin taso:", "Reload log": "Lataa loki uudelleen", + "Export log": "Vie loki", + "UniGetUI Log": "UniGetUI-loki", "Text": "Teksti", "Change how operations request administrator rights": "Muuta tapaa, jolla toiminnot pyytävät järjestelmänvalvojan oikeuksia", "Restrictions on package operations": "Pakettitoimintojen rajoitukset", @@ -271,7 +297,7 @@ "Leave empty for default": "Jätä tyhjäksi oletuksena", "Add a timestamp to the backup file names": "Lisää aikaleima varmuuskopioiden nimiin", "Backup and Restore": "Varmuuskopiointi ja palautus", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ota taustasovellusliittymä käyttöön (UniGetUI-widgetit ja jakaminen, portti 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Ota taustasovellusliittymä käyttöön (UniGetUI-widgetit ja jakaminen, portti 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Odota, että laite muodostaa yhteyden Internetiin, ennen kuin yrität tehdä tehtäviä, jotka edellyttävät Internet-yhteyttä.", "Disable the 1-minute timeout for package-related operations": "Poista käytöstä minuutin aikakatkaisu pakettikohtaisissa toimissa", "Use installed GSudo instead of UniGetUI Elevator": "Käytä asennettua GSudoa UniGetUI Elevator -sovelluksen sijaan", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Hallinnoi UniGetUI-asetuksia", "Related settings": "Aiheeseen liittyvät asetukset", - "Update WingetUI automatically": "Päivitä UniGetUI automaattisesti", + "Update UniGetUI automatically": "Päivitä UniGetUI automaattisesti", "Check for updates": "Tarkista päivitykset", "Install prerelease versions of UniGetUI": "Asenna UniGetUI:n esiversioita", "Manage telemetry settings": "Hallitse telemetria asetuksia", @@ -295,17 +321,17 @@ "Import": "Tuonti", "Export settings to a local file": "Vie asetukset paikalliseen tiedostoon", "Export": "Vienti", - "Reset WingetUI": "Nollaa UniGetUI", "Reset UniGetUI": "Nollaa UniGetUI", "User interface preferences": "Käyttöliittymä asetukset", "Application theme, startup page, package icons, clear successful installs automatically": "Sovelluksen teema, aloitussivu, pakettikuvakkeet, tyhjennä onnistuneet asennukset automaattisesti", "General preferences": "Yleiset asetukset", - "WingetUI display language:": "UniGetUI näytettävä kieli:", + "UniGetUI display language:": "UniGetUI näytettävä kieli:", "Is your language missing or incomplete?": "Puuttuuko käännöksesi vai onko se puutteellinen?", "Appearance": "Ulkonäkö", "UniGetUI on the background and system tray": "UniGetUI taustalla ja ilmaisinalueella", "Package lists": "Pakettilista", "Close UniGetUI to the system tray": "Pienennä UniGetUI ilmoitusalueelle", + "Manage UniGetUI autostart behaviour": "Hallitse UniGetUI:n automaattisen käynnistyksen toimintaa", "Show package icons on package lists": "Näytä paketin ikonit pakettilistassa", "Clear cache": "Tyhjennä välimuisti", "Select upgradable packages by default": "Valitse oletuksena päivitettävät paketit", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Huomaa, että kaikki paketinhallintaohjelmat eivät välttämättä tue tätä ominaisuutta täysin", "Proxy URL": "Välityspalvelimen URL-osoite", "Enter proxy URL here": "Kirjoita välityspalvelimen URL-osoite tähän", + "Authenticate to the proxy with a user and a password": "Todenna välityspalvelimeen käyttäjätunnuksella ja salasanalla", + "Internet and proxy settings": "Internet- ja välityspalvelinasetukset", "Package manager preferences": "Paketinhallinnan asetukset", "Ready": "Valmis", "Not found": "Ei löytynyt", "Notification preferences": "Ilmoitusasetukset", "Notification types": "Ilmoitustyypit", "The system tray icon must be enabled in order for notifications to work": "Ilmaisinalueen kuvakkeen on oltava käytössä, jotta ilmoitukset toimivat", - "Enable WingetUI notifications": "Ota UniGetUI-ilmoitukset käyttöön", + "Enable UniGetUI notifications": "Ota UniGetUI-ilmoitukset käyttöön", "Show a notification when there are available updates": "Näytä ilmoitus, kun päivityksiä on saatavilla", "Show a silent notification when an operation is running": "Näytä äänetön ilmoitus, kun toiminto on käynnissä", "Show a notification when an operation fails": "Näytä ilmoitus, kun toiminto epäonnistuu", "Show a notification when an operation finishes successfully": "Näytä ilmoitus, kun toiminto päättyy onnistuneesti", "Concurrency and execution": "Samanaikaisuus ja toteutus", "Automatic desktop shortcut remover": "Automaattinen työpöydän pikakuvakkeiden poisto", + "Choose how many operations should be performed in parallel": "Valitse, kuinka monta toimintoa suoritetaan rinnakkain", "Clear successful operations from the operation list after a 5 second delay": "Poista onnistuneet toiminnot toimintoluettelosta 5 sekunnin viiveen jälkeen", "Download operations are not affected by this setting": "Tämä asetus ei vaikuta lataustoimintoihin", "Try to kill the processes that refuse to close when requested to": "Yritä lopettaa prosessit, jotka kieltäytyvät sulkeutumasta pyydettäessä", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Valitse käytettävä suoritettava tiedosto. Seuraavassa luettelossa näkyvät UniGetUI:n löytämät suoritettavat tiedostot.", "Current executable file:": "Nykyinen suoritettava tiedosto:", "Ignore packages from {pm} when showing a notification about updates": "Ohita paketit alkaen {pm}, kun näet ilmoituksen päivityksistä", + "Update security": "Päivitysturvallisuus", + "Use global setting": "Käytä yleistä asetusta", + "e.g. 10": "esim. 10", + "{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", + "Override the global minimum update age for this package manager": "Ohita tämän pakettienhallinnan yleinen päivitysten vähimmäisikä", + "Minimum age for updates": "Päivitysten vähimmäisikä", + "Custom minimum age (days)": "Mukautettu vähimmäisikä (päivää)", "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, ", "Advanced options": "Lisäasetukset", "Reset WinGet": "Nollaa UniGetUI", "This may help if no packages are listed": "Tämä voi auttaa, jos luettelossa ei ole paketteja", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Ota Scoop-puhdistus käyttöön käynnistyksen yhteydessä", "Use system Chocolatey": "Käytä järjestelmän Chocolateytä", "Default vcpkg triplet": "Oletus vcpkg tripletti", + "Change vcpkg root location": "Muuta vcpkg:n juurisijaintia", "Language, theme and other miscellaneous preferences": "Kieli, teema ja muista sekalaisia asetuksia", "Show notifications on different events": "Näytä ilmoitukset eri tapahtumista", "Change how UniGetUI checks and installs available updates for your packages": "Muuta tapaa, jolla UniGetUI tarkistaa ja asentaa paketteihisi saatavilla olevat päivitykset", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Älä asenna päivityksiä automaattisesti, kun verkkoyhteys on mitattu", "Do not automatically install updates when the device runs on battery": "Älä asenna päivityksiä automaattisesti, kun laite toimii akkuvirralla", "Do not automatically install updates when the battery saver is on": "Älä asenna päivityksiä automaattisesti, kun virransäästö on päällä", + "Only show updates that are at least the specified number of days old": "Näytä vain päivitykset, jotka ovat vähintään määritetyn määrän päiviä vanhoja", "Change how UniGetUI handles install, update and uninstall operations.": "Muuta tapaa, jolla UniGetUI käsittelee asennus-, päivitys- ja asennuksen poistotoiminnot.", "Package Managers": "Paketinhallinnat", "More": "Lisää", - "WingetUI Log": "UniGetUI loki", "Package Manager logs": "Paketinhallinta logit", "Operation history": "Toimintojen historia", "Help": "Ohjeet", + "Quit UniGetUI": "Sulje UniGetUI", "Order by:": "Järjestä mukaan:", "Name": "Nimi", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Molemmat", "Exact match": "Täydellinen osuma", "Show similar packages": "Näytä samankaltaiset paketit", + "Nothing to share": "Ei jaettavaa", + "Please select a package first.": "Valitse ensin paketti.", + "Share link copied": "Jakolinkki kopioitu", + "The share link for {0} has been copied to the clipboard.": "Paketin {0} jakolinkki on kopioitu leikepöydälle.", "No results were found matching the input criteria": "Syöttöehtoja vastaavia tuloksia ei löytynyt", "No packages were found": "Paketteja ei löytynyt", "Loading packages": "Ladataan paketteja", @@ -440,7 +483,11 @@ "Package bundle": "Pakettinippu", "Could not create bundle": "Nippua ei voitu luoda", "The package bundle could not be created due to an error.": "Pakettinippua ei voitu luoda virheen takia.", + "Unsaved changes": "Tallentamattomat muutokset", + "Discard changes": "Hylkää muutokset", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Nykyisessä paketissa on tallentamattomia muutoksia. Haluatko hylätä ne?", "Bundle security report": "Paketin turvallisuusraportti", + "The bundle contained restricted content": "Paketti sisälsi rajoitettua sisältöä", "Hooray! No updates were found.": "Hurraa! Päivityksiä ei löytynyt.", "Everything is up to date": "Kaikki on ajantasalla", "Uninstall selected packages": "Poista valitut paketit", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klassinen pakettien hallinta Windowsille. Sieltä löydät kaiken.
Sisältää: Yleiset ohjelmistot\n", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Arkisto täynnä työkaluja ja suoritettavia tiedostoja, jotka on suunniteltu Microsoftin .NET-ekosysteemiä silmällä pitäen.
Sisältää: .NETiin liittyvät työkalut ja komentosarjat", "NuPkg (zipped manifest)": "NuPkg (pakattu luettelo)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Puuttuva paketinhallinta macOS:lle (tai Linuxille).
Sisältää: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS:n paketinhallinta. Täynnä kirjastoja ja muita apuohjelmia, jotka kiertävät JavaScript-maailmaa.
Sisältää: Node JS ja muut niihin liittyvät apuohjelmat", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Pythonin kirjaston johtaja. Täynnä python-kirjastoja ja muita python-apuohjelmia
Sisältää:Python-kirjastot ja niihin liittyvät apuohjelmat", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShellin paketinhallinta. Etsi kirjastoja ja komentosarjoja laajentaaksesi PowerShell-ominaisuuksia.
Sisältää: Moduulit, Komentosarjat, Cmdletit", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Toiminto jonossa (järjestysnumero {0})...", "Click here for more details": "Napsauta tätä saadaksesi lisätietoja", "Operation canceled by user": "Toiminto keskeytetty käyttäjän toimesta", + "Running PreOperation ({0}/{1})...": "Suoritetaan PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0}/{1} epäonnistui ja se merkittiin pakolliseksi. Keskeytetään...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0}/{1} päättyi tulokseen {2}", "Starting operation...": "Aloitetaan toiminto...", + "Running PostOperation ({0}/{1})...": "Suoritetaan PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0}/{1} epäonnistui ja se merkittiin pakolliseksi. Keskeytetään...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0}/{1} päättyi tulokseen {2}", "{package} installer download": "{package} asennusohjelma ladattu", "{0} installer is being downloaded": "{0} asennusohjelmaa ladataan", "Download succeeded": "Lataus onnistui", @@ -556,14 +610,12 @@ "Portable mode": "Itsenäinen tila", "DEBUG BUILD": "DEBUG VERSIO", "Available Updates": "Saatavilla olevat päivitykset", - "Show WingetUI": "Näytä UniGetUI", + "Show UniGetUI": "Näytä UniGetUI", "Quit": "Poistu", "Attention required": "Huomiota tarvitaan", "Restart required": "Uudelleenkäynnistys vaaditaan", "1 update is available": "1 päivitys valmiina", "{0} updates are available": "{0} päivitystä on saatavilla", - "WingetUI Homepage": "UniGetUI Kotisivu", - "WingetUI Repository": "UniGetUI Arkisto", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Täällä voit muuttaa UniGetUI:n käyttäytymistä seuraavien pikanäppäinten suhteen. Pikakuvakkeen tarkistaminen saa UniGetUI:n poistamaan sen, jos se luodaan tulevassa päivityksessä. Jos poistat valinnan, pikakuvake pysyy ennallaan", "Manual scan": "Manuaalinen skannaus", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Työpöydälläsi olevat pikakuvakkeet tarkistetaan, ja sinun on valittava, mitkä niistä haluat säilyttää ja mitkä poistaa.", @@ -583,7 +635,6 @@ "Restart later": "Uudelleenkäynnistä myöhemmin", "An error occurred:": "Tapahtui virhe:", "I understand": "Ymmärrän", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI on ajettu järjestelmänvalvojana, mikä ei ole suositeltavaa. Käytettäessä UniGetUI:ta järjestelmänvalvojana, KAIKKI UniGetUI:sta käynnistetyt toiminnot saavat järjestelmänvalvojan oikeudet. Voit edelleen käyttää ohjelmaa, mutta suosittelemme, että et käytä UniGetUI:ta järjestelmänvalvojan oikeuksilla.", "WinGet was repaired successfully": "WinGet korjattiin onnistuneesti", "It is recommended to restart UniGetUI after WinGet has been repaired": "On suositeltavaa käynnistää UniGetUI uudelleen WinGetin korjauksen jälkeen", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "HUOMAUTUS: Tämä vianmääritys voidaan poistaa käytöstä UniGetUI-asetuksista WinGet-osiossa", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Pakettisi on lisätty nippuun. Voit jatkaa pakettien lisäämistä tai viedä paketin.", "Which backup do you want to open?": "Minkä varmuuskopion haluat avata?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Valitse avattava varmuuskopio. Myöhemmin voit tarkistaa, mitkä paketit haluat asentaa.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Toimintaa on meneillään. UniGetUI:n sulkeminen voi aiheuttaa niiden epäonnistumisen. Haluatko jatkaa?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Toimintaa on meneillään. UniGetUI:n sulkeminen voi aiheuttaa niiden epäonnistumisen. Haluatko jatkaa?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI tai jotkin sen komponenteista puuttuvat tai ovat vioittuneet.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "On erittäin suositeltavaa asentaa UniGetUI uudelleen tilanteen korjaamiseksi.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Katso UniGetUI-lokeista lisätietoja kyseisistä tiedostoista.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Kirjoita tähän prosessien nimet pilkuilla (,) erotettuina.", "Unset or unknown": "Ei asetettu tai tuntematon", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Katso komentorivilähdöstä tai käyttöhistoriasta saadaksesi lisätietoja ongelmasta.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Tässä paketissa ei ole kuvakaappauksia tai siitä puuttuu kuvake? Auta UniGetUI:ta lisäämällä puuttuvat kuvakkeet ja kuvakaappaukset avoimeen julkiseen tietokantaamme.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Tässä paketissa ei ole kuvakaappauksia tai siitä puuttuu kuvake? Auta UniGetUI:ta lisäämällä puuttuvat kuvakkeet ja kuvakaappaukset avoimeen julkiseen tietokantaamme.", "Become a contributor": "Liity jakelijaksi", "Save": "Tallenna", "Update to {0} available": "{0} päivitys saatavilla", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Ota käyttöön automaattinen WinGet-vianmääritys", "Enable an [experimental] improved WinGet troubleshooter": "Ota käyttöön [kokeellinen] parannettu UniGetUI-vianmääritys", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Lisää ohitettujen päivitysten luetteloon päivitykset, jotka epäonnistuvat, kun ilmoitus ei löydy", - "Restart WingetUI to fully apply changes": "Ota muutokset käyttöön kokonaan käynnistämällä UniGetUI uudelleen", - "Restart WingetUI": "Uudelleen käynnistä UniGetUI", "Invalid selection": "Virheellinen valinta", "No package was selected": "Yhtään pakettia ei ole valittu", "More than 1 package was selected": "Useampi kuin yksi paketti on valittu", @@ -684,6 +733,37 @@ "Log out failed: ": "Uloskirjautuminen epäonnistui:", "Package backup settings": "Pakettien varmuuskopiointiasetukset", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Tietoja UniGetUI:sta", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI on sovellus, joka helpottaa ohjelmistojen hallintaa tarjoamalla all-in-one graafisen käyttöliittymän komentorivipakettien hallintaa varten.", + "You have installed WingetUI Version {0}": "Asennettu UniGetUI versio: {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ei olisi ollut mahdollinen ilman avustajien apua. Kiitos kaikille 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI käyttää seuraavia kirjastoja. Ilman niitä UniGetUI ei olisi ollut mahdollinen.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI on käännetty yli 40 kielelle vapaaehtoisten kääntäjien ansiosta. Kiitos 🤝", + "WingetUI Settings": "UniGetUI Asetukset", + "You may need to install {pm} in order to use it with WingetUI.": "Sinun on ehkä asennettava {pm} käyttääksesi sitä UniGetUI:n kanssa.", + "Scoop Installer - WingetUI": "Scoop asennusohjelma - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop asennuksen poisto - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop-välimuistin tyhjennys - UniGetUI ", + "WingetUI Version {0}": "UniGetUI Versio {0}", + "WingetUI License": "UniGetUI Lisenssi", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI:n käyttö edellyttää MIT-lisenssin hyväksymistä", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ota taustasovellusliittymä käyttöön (UniGetUI-widgetit ja jakaminen, portti 7058)", + "Update WingetUI automatically": "Päivitä UniGetUI automaattisesti", + "Reset WingetUI": "Nollaa UniGetUI", + "WingetUI display language:": "UniGetUI näytettävä kieli:", + "Manage WingetUI autostart behaviour": "Hallitse UniGetUI:n automaattisen käynnistyksen toimintaa", + "Enable WingetUI notifications": "Ota UniGetUI-ilmoitukset käyttöön", + "WingetUI Log": "UniGetUI loki", + "Show WingetUI": "Näytä UniGetUI", + "WingetUI Homepage": "UniGetUI Kotisivu", + "WingetUI Repository": "UniGetUI Arkisto", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI on ajettu järjestelmänvalvojana, mikä ei ole suositeltavaa. Käytettäessä UniGetUI:ta järjestelmänvalvojana, KAIKKI UniGetUI:sta käynnistetyt toiminnot saavat järjestelmänvalvojan oikeudet. Voit edelleen käyttää ohjelmaa, mutta suosittelemme, että et käytä UniGetUI:ta järjestelmänvalvojan oikeuksilla.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Toimintaa on meneillään. UniGetUI:n sulkeminen voi aiheuttaa niiden epäonnistumisen. Haluatko jatkaa?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Tässä paketissa ei ole kuvakaappauksia tai siitä puuttuu kuvake? Auta UniGetUI:ta lisäämällä puuttuvat kuvakkeet ja kuvakaappaukset avoimeen julkiseen tietokantaamme.", + "Restart WingetUI to fully apply changes": "Ota muutokset käyttöön kokonaan käynnistämällä UniGetUI uudelleen", + "Restart WingetUI": "Uudelleen käynnistä UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Hallitse UniGetUI:n automaattista käynnistystä Asetukset-sovelluksesta", "(Number {0} in the queue)": "(Numero {0} jonossa)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@simakuutio", "0 packages found": "0 pakettia löytyi", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json index f6fe1fc91c..99c75a8e57 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fil.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Ihinto ang pag-uninstall kapag ang command ng pre-uninstall ay nabigo", "Command-line to run:": "Command-line na patakbuhin:", "Save and close": "I-save at isara", + "General": "Pangkalahatan", + "Architecture & Location": "Arkitektura at Lokasyon", + "Command-line": "Linya ng command", + "Pre/Post install": "Bago/Pagkatapos ng pag-install", "Run as admin": "Magpatakbo bilang admin", "Interactive installation": "Interactive na pag-install", "Skip hash check": "Laktawan ang pagsusuri ng hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Pamahalaan ang mga hindi pinapansin na update", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Ang mga package na nakalista dito ay hindi isasaalang-alang kapag tumitingin ng mga update. I-double-click ang mga ito o i-click ang button sa kanilang kanan upang ihinto ang pagbalewala sa kanilang mga update.", "Reset list": "I-reset ang listahan", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Gusto mo ba talagang i-reset ang listahan ng mga binalewalang update? Hindi na maibabalik ang pagkilos na ito.", + "No ignored updates": "Walang binalewalang update", "Package Name": "Pangalan ng Package", "Package ID": "ID ng Package", "Ignored version": "Binalewala ang bersyon", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Interactive na tumatakbo ang operasyong ito.", "You will likely need to interact with the installer.": "Malamang na kakailanganin mong makipag-iteract sa installer.", "Integrity checks skipped": "Nilaktawan ang mga pagsusuri sa integridad", + "Integrity checks will not be performed during this operation.": "Hindi isasagawa ang mga pagsusuri sa integridad sa operasyong ito.", "Proceed at your own risk.": "Magpatuloy sa sarili mong pananagutan.", "Close": "Isara", "Loading...": "Naglo-load...", @@ -120,16 +127,17 @@ "optional": "opsyonal", "UniGetUI {0} is ready to be installed.": "Handa nang i-install ang UniGetUI {0}.", "The update process will start after closing UniGetUI": "Magsisimula ang proseso ng pag-update pagkatapos isara ang UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "Ang UniGetUI ay pinatakbo bilang administrator, na hindi inirerekomenda. Kapag pinatakbo mo ang UniGetUI bilang administrator, BAWAT operasyong ilulunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang programa, ngunit mahigpit naming inirerekomenda na huwag patakbuhin ang UniGetUI nang may mga pribilehiyo ng administrator.", "Share anonymous usage data": "Ibahagi ang hindi kilalang data ng paggamit", "UniGetUI collects anonymous usage data in order to improve the user experience.": "Kinokolekta ng UniGetUI ang hindi kilalang data ng paggamit upang mapabuti ang karanasan ng user.", "Accept": "Tanggapin", - "You have installed WingetUI Version {0}": "Naka-install ang Bersyon ng UniGetUI {0}", + "You have installed UniGetUI Version {0}": "Naka-install ang Bersyon ng UniGetUI {0}", "Disclaimer": "Paalala", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "Ang UniGetUI ay hindi nauugnay sa alinman sa mga compatible na package manager. Ang UniGetUI ay isang independiyenteng proyekto.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga kontribyutor. Salamat sa inyong lahat 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala sila, hindi magiging posible ang UniGetUI.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga kontribyutor. Salamat sa inyong lahat 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala sila, hindi magiging posible ang UniGetUI.", "{0} homepage": "Homepage ng {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Ang UniGetUI ay isinalin sa higit sa 40 mga wika salamat sa mga boluntaryong tagasalin. Salamat 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Ang UniGetUI ay isinalin sa higit sa 40 mga wika salamat sa mga boluntaryong tagasalin. Salamat 🤝", "Verbose": "Verbose", "1 - Errors": "1 - Mga Error", "2 - Warnings": "2 - Mga Babala", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Naka-log in ka bilang {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Ayos! Ang mga backup ay ia-upload sa pribadong gist sa iyong account", "Select backup": "Pumili ng backup", - "WingetUI Settings": "Mga Setting ng UniGetUI", + "UniGetUI Settings": "Mga Setting ng UniGetUI", "Allow pre-release versions": "Payagan ang mga pre-release na bersyon", "Apply": "Ilapat", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Dahil sa mga kadahilanang pangseguridad, ang mga custom na argumento sa command-line ay naka-disable bilang default. Pumunta sa mga setting ng seguridad ng UniGetUI upang baguhin ito.", "Go to UniGetUI security settings": "Pumunta sa setting ng seguridad ng UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Ang mga sumusunod na opsyon ay ilalapat bilang default sa tuwing ang isang {0} na package ay na-install, na-upgrade o na-uninstall.", "Package's default": "Default ng package", @@ -160,6 +169,7 @@ "Username": "Username", "Password": "Password", "Credentials": "Mga kredensyal", + "It is not guaranteed that the provided credentials will be stored safely": "Hindi ginagarantiya na ligtas na maiimbak ang mga ibinigay na kredensyal", "Partially": "Bahagyang", "Package manager": "Tagapamahala ng package", "Compatible with proxy": "Compatible sa proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} ay naka-enable at handa na", "{pm} version:": "Bersyon ng {pm}:", "{pm} was not found!": "Hindi mahanap ang {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "Maaaring kailanganin mong i-install ang {pm} upang magamit ito sa UniGetUI.", - "Scoop Installer - WingetUI": "Installer ng Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Uninstaller ng Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Linilinis ang Scoop cache - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Maaaring kailanganin mong i-install ang {pm} upang magamit ito sa UniGetUI.", + "Scoop Installer - UniGetUI": "Installer ng Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Uninstaller ng Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Linilinis ang Scoop cache - UniGetUI", + "Restart UniGetUI to fully apply changes": "I-restart ang UniGetUI upang ganap na mailapat ang mga pagbabago", "Restart UniGetUI": "I-restart ang UniGetUI", "Manage {0} sources": "Pamahalaan ang {0} mga source", "Add source": "Magdagdag ng source", "Add": "Idagdag", + "Source name": "Pangalan ng source", + "Source URL": "URL ng source", "Other": "Iba pa", + "No minimum age": "Walang minimum na tagal", "1 day": "kada araw", "{0} days": "{0} na araw", + "Custom...": "Pasadya...", "{0} minutes": "{0} (na) minuto", "1 hour": "kada oras", "{0} hours": "{0} (na) oras", "1 week": "1 linggo", - "WingetUI Version {0}": "Bersyon ng UniGetUI {0}", + "Supports release dates": "Sinusuportahan ang mga petsa ng release", + "Release date support per package manager": "Suporta sa petsa ng release ayon sa package manager", + "UniGetUI Version {0}": "Bersyon ng UniGetUI {0}", "Search for packages": "Maghanap ng mga package", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Pinagana", "Disabled": "Naka-disable", "More info": "Higit pang impormasyon", + "GitHub account": "Account sa GitHub", "Log in with GitHub to enable cloud package backup.": "Mag-log in gamit ang GitHub para mapagana ang pag-backup ng cloud package", "More details": "Higit pang mga detalye", "Log in": "Mag-log in", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Kung napagana ang cloud backup, ito ay ise-save bilang isang GitHub Gist sa account na ito", "Log out": "Mag-log out", + "About UniGetUI": "Tungkol sa UniGetUI", "About": "Patungkol", "Third-party licenses": "Mga lisensya ng third-party", "Contributors": "Mga kontribyutor", @@ -212,6 +231,7 @@ "Manage shortcuts": "Pamahalaan ang mga shortcut", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Natukoy ng UniGetUI ang mga sumusunod na desktop shortcut na maaaring awtomatikong alisin sa mga pag-upgrade sa hinaharap", "Do you really want to reset this list? This action cannot be reverted.": "Gusto mo ba talagang i-reset ang listahang ito? Hindi na maibabalik ang pagkilos na ito.", + "Open in explorer": "Buksan sa explorer", "Remove from list": "Alisin sa listahan", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kapag may nakitang mga bagong shortcut, awtomatikong tanggalin ang mga ito sa halip na ipakita ang dialog na ito.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "Kinokolekta ng UniGetUI ang hindi kilalang data ng paggamit na may tanging layunin ng pag-unawa at pagpapabuti ng karanasan ng user.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Tinatanggap mo ba na ang UniGetUI ay nangongolekta at nagpapadala ng mga hindi kilalang istatistika ng paggamit, na may tanging layunin na maunawaan at mapabuti ang karanasan ng user?", "Decline": "Tanggihan", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Walang personal na impormasyon ang kinokolekta o ipinadala, at ang nakolektang data ay hindi nagpapakilala, kaya hindi ito maibabalik sa iyo.", - "About WingetUI": "Tungkol sa UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang aplikasyon na nagpapadali sa pamamahala ng iyong software, sa pamamagitan ng pagbibigay ng isahang graphical na interface para sa iyong mga command-line package manager.", + "Toggle navigation panel": "Ipakita/itago ang navigation panel", + "Minimize": "I-minimize", + "Maximize": "I-maximize", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang aplikasyon na nagpapadali sa pamamahala ng iyong software, sa pamamagitan ng pagbibigay ng isahang graphical na interface para sa iyong mga command-line package manager.", "Useful links": "Mga kapaki-pakinabang na link", + "UniGetUI Homepage": "Homepage ng UniGetUI", "Report an issue or submit a feature request": "Mag-ulat ng isyu o magsumite ng kahilingan sa feature", + "UniGetUI Repository": "Repository ng UniGetUI", "View GitHub Profile": "Tingnan ang GitHub Profile", - "WingetUI License": "Lisensya ng UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nagpapahiwatig ng pagtanggap ng MIT License", + "UniGetUI License": "Lisensya ng UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nagpapahiwatig ng pagtanggap ng MIT License", "Become a translator": "Maging isang tagasalin", "View page on browser": "Tingnan ang page sa browser", "Copy to clipboard": "Kopyahin sa clipboard", "Export to a file": "I-export sa isang file", "Log level:": "Antas ng log:", "Reload log": "I-reload ang log", + "Export log": "I-export ang log", + "UniGetUI Log": "Log ng UniGetUI", "Text": "Text", "Change how operations request administrator rights": "Baguhin kung paano humihiling ang mga pagpapatakbo ng mga karapatan ng administrator", "Restrictions on package operations": "Mga restriksyon sa mga operasyon ng package", @@ -271,7 +297,7 @@ "Leave empty for default": "Iwanang walang laman para sa default", "Add a timestamp to the backup file names": "Magdagdag ng timestamp sa mga pangalan ng mga backup file", "Backup and Restore": "Pag-backup at Pag-restore", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Mga Widget para sa UniGetUI at Pagbabahagi, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Mga Widget para sa UniGetUI at Pagbabahagi, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Hintaying makakonekta ang device sa internet bago subukang gawin ang mga gawain na nangangailangan ng koneksyon sa internet.", "Disable the 1-minute timeout for package-related operations": "I-disable ang 1 minutong timeout para sa mga operasyong nauugnay sa package", "Use installed GSudo instead of UniGetUI Elevator": "Gamitin ang na-install na GSudo sa halip ng UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetry", "Manage UniGetUI settings": "Pamahalaan ang mga setting ng UniGetUI", "Related settings": "Mga kaugnay na setting", - "Update WingetUI automatically": "Awtomatikong i-update ang UniGetUI", + "Update UniGetUI automatically": "Awtomatikong i-update ang UniGetUI", "Check for updates": "Tingnan ang mga update", "Install prerelease versions of UniGetUI": "Mag-install ng mga prerelease na bersyon ng UniGetUI", "Manage telemetry settings": "Pamahalaan ang mga setting ng telemetry", @@ -295,17 +321,17 @@ "Import": "I-import", "Export settings to a local file": "I-export ang mga setting sa isang lokal na file", "Export": "I-export", - "Reset WingetUI": "I-reset ang UniGetUI", "Reset UniGetUI": "I-reset ang UniGetUI", "User interface preferences": "Mga kagustuhan sa interface ng user", "Application theme, startup page, package icons, clear successful installs automatically": "Tema ng aplikasyon, startup page, mga icon ng package, awtomatikong i-clear ang matagumpay na pag-install", "General preferences": "Pangkalahatang kagustuhan", - "WingetUI display language:": "Ipinapakitang wika ng UniGetUI:", + "UniGetUI display language:": "Ipinapakitang wika ng UniGetUI:", "Is your language missing or incomplete?": "Nawawala ba o hindi kumpleto ang iyong wika?", "Appearance": "Hitsura", "UniGetUI on the background and system tray": "UniGetUI sa background at system tray", "Package lists": "Mga listahan ng package", "Close UniGetUI to the system tray": "Isara ang UniGetUI sa system tray", + "Manage UniGetUI autostart behaviour": "Pamahalaan ang awtomatikong pagsisimula ng UniGetUI", "Show package icons on package lists": "Ipakita ang mga icon ng package sa mga listahan ng package", "Clear cache": "Linisin ang cache", "Select upgradable packages by default": "Pumili ng mga naa-upgrade na package bilang default", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Pakitandaan na hindi lahat ng package manager ay maaaring ganap na suportahan ang feature na ito", "Proxy URL": "URL ng proxy", "Enter proxy URL here": "Ilagay ang proxy URL dito", + "Authenticate to the proxy with a user and a password": "Mag-authenticate sa proxy gamit ang user at password", + "Internet and proxy settings": "Mga setting ng internet at proxy", "Package manager preferences": "Mga kagustuhan sa mga package manager", "Ready": "Handa", "Not found": "Hindi mahanap", "Notification preferences": "Mga kagustuhan sa notification", "Notification types": "Mga uri ng notification", "The system tray icon must be enabled in order for notifications to work": "Dapat na pinagana ang icon ng system tray upang gumana ang mga notification", - "Enable WingetUI notifications": "Paganahin ang mga notification ng UniGetUI", + "Enable UniGetUI notifications": "Paganahin ang mga notification ng UniGetUI", "Show a notification when there are available updates": "Magpakita ng notification kapag may mga available na update", "Show a silent notification when an operation is running": "Magpakita ng tahimik na notification kapag tumatakbo ang isang operasyon", "Show a notification when an operation fails": "Magpakita ng notification kapag nabigo ang isang operasyon", "Show a notification when an operation finishes successfully": "Magpakita ng notification kapag matagumpay na natapos ang isang operasyon", "Concurrency and execution": "Concurrency at pag-execute", "Automatic desktop shortcut remover": "Awtomatikong pagtanggal ng desktop shortcut", + "Choose how many operations should be performed in parallel": "Piliin kung ilang operasyon ang dapat isagawa nang sabay-sabay", "Clear successful operations from the operation list after a 5 second delay": "Linisin ang matagumpay na operasyon mula sa listahan ng operasyon pagkatapos ng 5 segundong pagkaantala", "Download operations are not affected by this setting": "Ang mga operasyon sa pag-download ay hindi apektado ng setting na ito", "Try to kill the processes that refuse to close when requested to": "Subukang patayin ang mga prosesong tumatangging magsara kapag hiniling", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Piliin ang executable na gagamitin. Ipinapakita ng sumusunod na listahan ang mga executable na natagpuan ng UniGetUI", "Current executable file:": "Kasalukuyang executable file:", "Ignore packages from {pm} when showing a notification about updates": "Huwag pansinin ang mga package mula {pm} kapag nagpapakita ng notification tungkol sa mga update", + "Update security": "Seguridad sa pag-update", + "Use global setting": "Gamitin ang global na setting", + "e.g. 10": "hal. 10", + "{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", + "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", + "Minimum age for updates": "Minimum na tagal para sa mga update", + "Custom minimum age (days)": "Custom na minimum na tagal (araw)", "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, ", "Advanced options": "Mga advanced na opsyon", "Reset WinGet": "I-reset ang WinGet", "This may help if no packages are listed": "Maaaring makatulong ito kung walang nakalistang mga package", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Paganahin ang paglilinis ng Scoop sa pagbubukas", "Use system Chocolatey": "Gamitin ang system na Chocolatey", "Default vcpkg triplet": "Default na vcpkg triplet", + "Change vcpkg root location": "Baguhin ang root na lokasyon ng vcpkg", "Language, theme and other miscellaneous preferences": "Wika, tema at iba pang mga kagustuhan", "Show notifications on different events": "Ipakita ang mga abiso sa iba't ibang mga kaganapan", "Change how UniGetUI checks and installs available updates for your packages": "Baguhin kung paano sinusuri at ini-install ng UniGetUI ang mga available na update para sa iyong mga package", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Huwag awtomatikong mag-install ng mga update kapag ang koneksyon sa network ay nakametro", "Do not automatically install updates when the device runs on battery": "Huwag awtomatikong mag-install ng mga update kapag ang device ay tumatakbo sa battery", "Do not automatically install updates when the battery saver is on": "Huwag awtomatikong mag-install ng mga update kapag naka-on ang battery saver", + "Only show updates that are at least the specified number of days old": "Ipakita lamang ang mga update na hindi bababa sa tinukoy na bilang ng araw na ang nakalipas", "Change how UniGetUI handles install, update and uninstall operations.": "Baguhin kung paano pinangangasiwaan ng UniGetUI ang pag-install, pag-update at pag-uninstall ng mga operasyon.", "Package Managers": "Mga Package Manager", "More": "Higit pa", - "WingetUI Log": "Log ng UniGetUI", "Package Manager logs": "Mga log ng Package Manager", "Operation history": "Kasaysayan ng operasyon", "Help": "Tulong", + "Quit UniGetUI": "Lumabas sa UniGetUI", "Order by:": "Mag-order sa pamamagitan ng:", "Name": "Pangalan", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Pareho", "Exact match": "Eksaktong tugma", "Show similar packages": "Magkatulad na mga package", + "Nothing to share": "Walang maibabahagi", + "Please select a package first.": "Mangyaring pumili muna ng package.", + "Share link copied": "Nakopya ang share link", + "The share link for {0} has been copied to the clipboard.": "Nakopya na sa clipboard ang share link para sa {0}.", "No results were found matching the input criteria": "Walang nahanap (na) mga resulta na tumutugma sa pamantayan sa pag-input", "No packages were found": "Walang nahanap na mga package", "Loading packages": "Naglo-load ng mga package", @@ -440,7 +483,11 @@ "Package bundle": "Bundle ng package", "Could not create bundle": "Hindi makagawa ng bundle", "The package bundle could not be created due to an error.": "Hindi magawa ang package bundle dahil sa isang error.", + "Unsaved changes": "Mga hindi na-save na pagbabago", + "Discard changes": "Huwag i-save ang mga pagbabago", + "You have unsaved changes in the current bundle. Do you want to discard them?": "May mga hindi na-save na pagbabago sa kasalukuyang bundle. Gusto mo bang huwag i-save ang mga ito?", "Bundle security report": "Ulat sa seguridad ng bundle", + "The bundle contained restricted content": "Naglaman ang bundle ng pinaghihigpitang nilalaman", "Hooray! No updates were found.": "Hooray! Walang nahanap (na) mga update.", "Everything is up to date": "Ang lahat ay napapanahon", "Uninstall selected packages": "I-uninstall ang mga napiling package", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Ang klasikong manager ng package para sa Windows. Makikita mo ang lahat doon.
Naglalaman ng: Pangkalahatang Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Isang repository na puno ng mga tool at executable na idinisenyo nang nasa isip ang .NET ecosystem ng Microsoft.
Naglalaman ng: Mga tool at script na nauugnay sa .NET", "NuPkg (zipped manifest)": "NuPkg (naka-zip na manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Ang Nawawalang Package Manager para sa macOS (o Linux).
Naglalaman ng: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Ang manager ng package ng Node JS. Puno ng mga library at iba pang mga utility na umiikot sa mundo ng javascript
Naglalaman ng: Mga library ng javascript ng node at iba pang nauugnay na mga utility", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Tagapamahala ng library ng Python. Puno ng mga library ng python at iba pang mga kagamitang nauugnay sa python
Naglalaman ng: Mga library ng Python at mga nauugnay na kagamitan", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Package manager ng PowerShell. Maghanap ng mga library at script para palawakin ang mga kakayahan ng PowerShell
Naglalaman ng: Mga Module, Script, Cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operasyon sa queue (posisyon {0})...", "Click here for more details": "Mag-click dito para sa higit pang mga detalye", "Operation canceled by user": "Kinansela ng user ang operasyon", + "Running PreOperation ({0}/{1})...": "Pinapatakbo ang PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Nabigo ang PreOperation {0} sa {1}, at minarkahang kinakailangan. Ina-abort...", + "PreOperation {0} out of {1} finished with result {2}": "Natapos ang PreOperation {0} sa {1} na may resultang {2}", "Starting operation...": "Sinisimulan ang operasyon...", + "Running PostOperation ({0}/{1})...": "Pinapatakbo ang PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Nabigo ang PostOperation {0} sa {1}, at minarkahang kinakailangan. Ina-abort...", + "PostOperation {0} out of {1} finished with result {2}": "Natapos ang PostOperation {0} sa {1} na may resultang {2}", "{package} installer download": "Pag-download ng installer ng {package}", "{0} installer is being downloaded": "Ang {0} installer ay dina-download", "Download succeeded": "Nagtagumpay ang pag-download", @@ -556,14 +610,12 @@ "Portable mode": "Portable na mode\n", "DEBUG BUILD": "Build na pang-debug", "Available Updates": "Available na Mga Update", - "Show WingetUI": "Ipakita ng UniGetUI", + "Show UniGetUI": "Ipakita ng UniGetUI", "Quit": "Lumabas", "Attention required": "Kailangan ng atensyon", "Restart required": "Kinakailangang i-restart", "1 update is available": "1 update ang available", "{0} updates are available": "{0} (na) mga update ay available", - "WingetUI Homepage": "Homepage ng UniGetUI", - "WingetUI Repository": "Repository ng UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Dito mo mababago ang kilos ng UniGetUI patungkol sa mga sumusunod na shortcut. Ang pag-check sa isang shortcut ay magbubura nito kung ito ay gagawin sa isang pag-upgrade sa hinaharap. Ang pag-uncheck dito ay magpapanatili ang shortcut.", "Manual scan": "Mano-manong i-scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Ii-scan ang mga kasalukuyang shortcut sa iyong desktop, at kakailanganin mong pumili kung alin ang dapat panatilihin at kung alin ang aalisin.", @@ -583,7 +635,6 @@ "Restart later": "I-restart mamaya", "An error occurred:": "May naganap na error", "I understand": "Naiintindihan ko", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Ang UniGetUI ay pinatakbo bilang administrator, na hindi inirerekomenda. Kapag nagpapatakbo ng UniGetUI bilang administrator, BAWAT operasyon na inilunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang program, ngunit lubos naming inirerekomenda na huwag patakbuhin ang UniGetUI na may mga pribilehiyo ng administrator.", "WinGet was repaired successfully": "Matagumpay na naayos ang WinGet", "It is recommended to restart UniGetUI after WinGet has been repaired": "Inirerekomenda na i-restart ang UniGetUI pagkatapos ayusin ang WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "TANDAAN: Maaaring hindi paganahin ang troubleshooter na ito mula sa Mga Setting ng UniGetUI, sa seksyong WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Ang iyong mga package ay naidagdag na sa bundle. Maaari kang magpatuloy sa pagdaragdag ng mga package, o i-export ang bundle.", "Which backup do you want to open?": "Anong backup ang gusto mong buksan?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Piliin ang backup na gusto mong buksan. Sa ibang pagkakataon, magagawa mong suriin kung aling mga package/program ang gusto mong i-restore.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "May mga patuloy na operasyon. Ang paghinto sa UniGetUI ay maaaring maging sanhi ng pagkabigo sa kanila. Gusto mo bang magpatuloy?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "May mga patuloy na operasyon. Ang paghinto sa UniGetUI ay maaaring maging sanhi ng pagkabigo sa kanila. Gusto mo bang magpatuloy?", "UniGetUI or some of its components are missing or corrupt.": "Ang UniGetUI o ang ilan sa mga bahagi nito ay nawawala o na-corrupt.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Lubos na inirerekomendang ang pag-reinstall ng UniGetUI upang matugunan ang sitwasyon.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Sumangguni sa mga log ng UniGetUI para makakuha ng higit pang mga detalye tungkol sa (mga) apektadong file", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Isulat dito ang mga pangalan ng mga proseso dito, pinaghihiwalay ng kuwit (,)", "Unset or unknown": "Hindi nakatakda o hindi alam", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Pakitingnan ang Output ng Command-line o sumangguni sa Kasaysayan ng Operasyon para sa karagdagang impormasyon tungkol sa isyu.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ang package na ito ay walang mga screenshot o nawawala ang icon? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng mga nawawalang icon at screenshot sa aming bukas, pampublikong database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ang package na ito ay walang mga screenshot o nawawala ang icon? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng mga nawawalang icon at screenshot sa aming bukas, pampublikong database.", "Become a contributor": "Maging isang kontribyutor", "Save": "I-save", "Update to {0} available": "Available ang update sa {0}.", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Paganahin ang awtomatikong WinGet troubleshooter", "Enable an [experimental] improved WinGet troubleshooter": "Paganahin ang isang [pang-eksperimentong] pinahusay na troubleshooter ng WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Idagdag ang mga update na nabigo na may 'walang nahanap na naaangkop na update' sa listahan ng mga hindi pinansin na update.", - "Restart WingetUI to fully apply changes": "I-restart ang UniGetUI upang ganap na mailapat ang mga pagbabago", - "Restart WingetUI": "I-restart ang UniGetUI", "Invalid selection": "Hindi wastong pagpili", "No package was selected": "Walang napiling package", "More than 1 package was selected": "Mahigit 1 package ang napili", @@ -684,6 +733,37 @@ "Log out failed: ": "Bigong mag-log out:", "Package backup settings": "Mga setting ng pag-backup ng package", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Tungkol sa UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang aplikasyon na nagpapadali sa pamamahala ng iyong software, sa pamamagitan ng pagbibigay ng isahang graphical na interface para sa iyong mga command-line package manager.", + "You have installed WingetUI Version {0}": "Naka-install ang Bersyon ng UniGetUI {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga kontribyutor. Salamat sa inyong lahat 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala sila, hindi magiging posible ang UniGetUI.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Ang UniGetUI ay isinalin sa higit sa 40 mga wika salamat sa mga boluntaryong tagasalin. Salamat 🤝", + "WingetUI Settings": "Mga Setting ng UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Maaaring kailanganin mong i-install ang {pm} upang magamit ito sa UniGetUI.", + "Scoop Installer - WingetUI": "Installer ng Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Uninstaller ng Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Linilinis ang Scoop cache - UniGetUI", + "WingetUI Version {0}": "Bersyon ng UniGetUI {0}", + "WingetUI License": "Lisensya ng UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nagpapahiwatig ng pagtanggap ng MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Mga Widget para sa UniGetUI at Pagbabahagi, port 7058)", + "Update WingetUI automatically": "Awtomatikong i-update ang UniGetUI", + "Reset WingetUI": "I-reset ang UniGetUI", + "WingetUI display language:": "Ipinapakitang wika ng UniGetUI:", + "Manage WingetUI autostart behaviour": "Pamahalaan ang awtomatikong pagsisimula ng UniGetUI", + "Enable WingetUI notifications": "Paganahin ang mga notification ng UniGetUI", + "WingetUI Log": "Log ng UniGetUI", + "Show WingetUI": "Ipakita ng UniGetUI", + "WingetUI Homepage": "Homepage ng UniGetUI", + "WingetUI Repository": "Repository ng UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Ang UniGetUI ay pinatakbo bilang administrator, na hindi inirerekomenda. Kapag nagpapatakbo ng UniGetUI bilang administrator, BAWAT operasyon na inilunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang program, ngunit lubos naming inirerekomenda na huwag patakbuhin ang UniGetUI na may mga pribilehiyo ng administrator.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "May mga patuloy na operasyon. Ang paghinto sa UniGetUI ay maaaring maging sanhi ng pagkabigo sa kanila. Gusto mo bang magpatuloy?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ang package na ito ay walang mga screenshot o nawawala ang icon? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng mga nawawalang icon at screenshot sa aming bukas, pampublikong database.", + "Restart WingetUI to fully apply changes": "I-restart ang UniGetUI upang ganap na mailapat ang mga pagbabago", + "Restart WingetUI": "I-restart ang UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Pamahalaan ang UniGetUI autostart na gawi mula sa Mga Setting na app", "(Number {0} in the queue)": "(Numero {0} sa queue)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@infyProductions", "0 packages found": "0 package ang nahanap", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json index bc896241f8..a26296fa85 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_fr.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Abandonner la désinstallation si la commande de pré-désinstallation échoue", "Command-line to run:": "Ligne de commande à exécuter :", "Save and close": "Enregistrer et fermer", + "General": "Général", + "Architecture & Location": "Architecture et emplacement", + "Command-line": "Ligne de commande", + "Pre/Post install": "Pré/post-installation", "Run as admin": "Exécuter en tant qu'administrateur", "Interactive installation": "Installation interactive", "Skip hash check": "Passer la vérification du hachage", @@ -71,6 +75,8 @@ "Manage ignored updates": "Gérer les mises à jour ignorées", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Les paquets listés ici ne seront pas pris en compte lors de la vérification des mises à jour. Double-cliquez dessus ou cliquez sur le bouton à leur droite pour ne plus ignorer leurs mises à jour.", "Reset list": "Réinitialiser la liste", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Voulez-vous vraiment réinitialiser la liste des mises à jour ignorées ? Cette action ne peut pas être annulée.", + "No ignored updates": "Aucune mise à jour ignorée", "Package Name": "Nom du paquet", "Package ID": "ID du paquet", "Ignored version": "Version ignorée", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Cette opération s'exécute de manière interactive.", "You will likely need to interact with the installer.": "Vous devrez probablement interagir avec le programme d'installation.", "Integrity checks skipped": "Contrôles d'intégrité ignorés", + "Integrity checks will not be performed during this operation.": "Les contrôles d'intégrité ne seront pas effectués pendant cette opération.", "Proceed at your own risk.": "Procédez à vos propres risques.", "Close": "Fermer", "Loading...": "Chargement...", @@ -120,16 +127,17 @@ "optional": "optionnel", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} est prêt à être installé.", "The update process will start after closing UniGetUI": "Le processus de mise à jour démarrera après la fermeture d'UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI a été exécuté en tant qu'administrateur, ce qui n'est pas recommandé. Lorsque UniGetUI est exécuté en tant qu'administrateur, TOUTE opération lancée depuis UniGetUI disposera des privilèges d'administrateur. Vous pouvez toujours utiliser le programme, mais nous vous recommandons vivement de ne pas exécuter UniGetUI avec des privilèges d'administrateur.", "Share anonymous usage data": "Partager les données d'utilisation anonymes", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI recueille des données d'utilisation anonymes afin d'améliorer l'expérience utilisateur.", "Accept": "Accepter", - "You have installed WingetUI Version {0}": "Vous avez installé WingetUI Version {0}", + "You have installed UniGetUI Version {0}": "Vous avez installé UniGetUI Version {0}", "Disclaimer": "Avertissement", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI n'est lié à aucun des gestionnaires de paquets compatibles. UniGetUI est un projet indépendant.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI n'aurait pas été possible sans l'aide des contributeurs. Merci à tous 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI utilise les bibliothèques suivantes. Sans elles, WingetUI n'aurait pas pu exister.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI n'aurait pas été possible sans l'aide des contributeurs. Merci à tous 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI utilise les bibliothèques suivantes. Sans elles, UniGetUI n'aurait pas pu exister.", "{0} homepage": "Page d'accueil de {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI a été traduit dans plus de 40 langues grâce aux traducteurs bénévoles. Merci 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI a été traduit dans plus de 40 langues grâce aux traducteurs bénévoles. Merci 🤝", "Verbose": "Verbose", "1 - Errors": "1 - Erreurs", "2 - Warnings": "2 - Avertissements", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Vous êtes connecté en tant que {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Super ! Les sauvegardes seront téléchargées dans un Gist privé de votre compte.", "Select backup": "Sélectionner la sauvegarde", - "WingetUI Settings": "Paramètres de WingetUI", + "UniGetUI Settings": "Paramètres d'UniGetUI", "Allow pre-release versions": "Autoriser les pré-versions", "Apply": "Appliquer", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Pour des raisons de sécurité, les arguments de ligne de commande personnalisés sont désactivés par défaut. Accédez aux paramètres de sécurité d'UniGetUI pour modifier cela.", "Go to UniGetUI security settings": "Aller dans les paramètres de sécurité d'UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Les options suivantes seront appliquées par défaut chaque fois qu'un paquet {0} est installé, mis à niveau ou désinstallé.", "Package's default": "Valeur par défaut du paquet", @@ -160,6 +169,7 @@ "Username": "Nom d'utilisateur", "Password": "Mot de passe", "Credentials": "Informations d'identification", + "It is not guaranteed that the provided credentials will be stored safely": "Il n'est pas garanti que les identifiants fournis seront stockés de manière sécurisée", "Partially": "Partiellement", "Package manager": "Gestionnaire de paquets", "Compatible with proxy": "Compatible avec le proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} est activé et prêt à être utilisé", "{pm} version:": "Version de {pm} :", "{pm} was not found!": "{pm} n'a pas été trouvé !", - "You may need to install {pm} in order to use it with WingetUI.": "Il est possible que vous ayez besoin d'installer {pm} pour pouvoir l'utiliser avec WingetUI.", - "Scoop Installer - WingetUI": "Installateur de Scoop - WingetUI", - "Scoop Uninstaller - WingetUI": "Déinstallateur de Scoop - WingetUI", - "Clearing Scoop cache - WingetUI": "Vidage du cache de Scoop - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Il est possible que vous ayez besoin d'installer {pm} pour pouvoir l'utiliser avec UniGetUI.", + "Scoop Installer - UniGetUI": "Installateur de Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Déinstallateur de Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Vidage du cache de Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Redémarrer UniGetUI pour appliquer entièrement les modifications", "Restart UniGetUI": "Redémarrer UniGetUI", "Manage {0} sources": "Gérer les sources {0}", "Add source": "Ajouter une source", "Add": "Ajouter", + "Source name": "Nom de la source", + "Source URL": "URL de la source", "Other": "Autre", + "No minimum age": "Aucun âge minimum", "1 day": "1 jour", "{0} days": "{0} jours", + "Custom...": "Personnalisé...", "{0} minutes": "{0} minutes", "1 hour": "1 heure", "{0} hours": "{0} heures", "1 week": "1 semaine", - "WingetUI Version {0}": "WingetUI Version {0}", + "Supports release dates": "Prend en charge les dates de publication", + "Release date support per package manager": "Prise en charge des dates de publication par gestionnaire de paquets", + "UniGetUI Version {0}": "Version {0} d'UniGetUI", "Search for packages": "Rechercher des paquets", "Local": "Local", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Activé", "Disabled": "Désactivé", "More info": "Plus d'informations", + "GitHub account": "Compte GitHub", "Log in with GitHub to enable cloud package backup.": "Connectez-vous à GitHub pour activer la sauvegarde des paquets dans le cloud.", "More details": "Plus de détails", "Log in": "Connexion", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Si vous avez activé la sauvegarde dans le cloud, il sera sauvegardé en tant que Gist GitHub sur ce compte.", "Log out": "Déconnexion", + "About UniGetUI": "À propos d'UniGetUI", "About": "À propos", "Third-party licenses": "Licences tiers", "Contributors": "Contributeurs", @@ -212,6 +231,7 @@ "Manage shortcuts": "Gérer les raccourcis", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI a détecté les raccourcis sur le bureau suivants qui peuvent être supprimés automatiquement lors de futures mises à jours", "Do you really want to reset this list? This action cannot be reverted.": "Voulez-vous vraiment réinitialiser cette liste ? Cette action ne peut pas être annulée.", + "Open in explorer": "Ouvrir dans l'Explorateur", "Remove from list": "Supprimer de la liste", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Lorsque de nouveaux raccourcis sont détectés, supprimez-les automatiquement au lieu d'afficher cette boîte de dialogue.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI recueille des données d'utilisation anonymes dans le seul but de comprendre et d'améliorer l'expérience utilisateur.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Acceptez-vous que UniGetUI recueille et envoie des statistiques d'utilisation anonymes, dans le seul but de comprendre et d'améliorer l'expérience utilisateur ?", "Decline": "Refuser", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Aucune information personnelle n'est collectée ni envoyée, et les données collectées sont anonymisées, de sorte qu'il est impossible de remonter jusqu'à vous.", - "About WingetUI": "À propos de WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI est une application qui vous permet de gérer vos logiciels plus facilement, en fournissant une interface graphique tout-en-un pour vos gestionnaires de paquets en ligne de commandes.", + "Toggle navigation panel": "Afficher/masquer le panneau de navigation", + "Minimize": "Réduire", + "Maximize": "Agrandir", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI est une application qui vous permet de gérer vos logiciels plus facilement, en fournissant une interface graphique tout-en-un pour vos gestionnaires de paquets en ligne de commandes.", "Useful links": "Liens utiles", + "UniGetUI Homepage": "Page d'accueil d'UniGetUI", "Report an issue or submit a feature request": "Signaler un problème ou soumettre une demande de fonctionnalité", + "UniGetUI Repository": "Dépôt d'UniGetUI", "View GitHub Profile": "Voir le profil GitHub", - "WingetUI License": "Licence de WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "Utiliser WingetUI implique l'acceptation de la licence MIT (MIT License)", + "UniGetUI License": "Licence de UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Utiliser UniGetUI implique l'acceptation de la licence MIT (MIT License)", "Become a translator": "Devenir un traducteur", "View page on browser": "Voir la page dans le navigateur", "Copy to clipboard": "Copier dans le presse-papiers", "Export to a file": "Exporter dans un fichier", "Log level:": "Niveau de journalisation :", "Reload log": "Recharger les journaux", + "Export log": "Exporter le journal", + "UniGetUI Log": "Journal d'UniGetUI", "Text": "Texte", "Change how operations request administrator rights": "Modifier la façon dont les opérations demandent des droits d'administrateur", "Restrictions on package operations": "Restrictions sur les opérations sur les paquets", @@ -271,7 +297,7 @@ "Leave empty for default": "Laisser vide pour utiliser la valeur par défaut", "Add a timestamp to the backup file names": "Ajouter un horodatage aux noms des fichiers de sauvegarde", "Backup and Restore": "Sauvegarde et restauration", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activer l'API en arrière-plan (Widgets et Partage WingetUI, port 7058) ", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Activer l'API en arrière-plan (Widgets et Partage UniGetUI, port 7058) ", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Attendez que l'appareil soit connecté à Internet avant d'effectuer des tâches nécessitant une connexion à Internet", "Disable the 1-minute timeout for package-related operations": "Désactiver le délai d'attente de 1 minute pour les opérations liées aux paquets", "Use installed GSudo instead of UniGetUI Elevator": "Utiliser GSudo (si installé) à la place du UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Télémétrie", "Manage UniGetUI settings": "Gérer les paramètres d'UniGetUI", "Related settings": "Paramètres associés", - "Update WingetUI automatically": "Mettre à jour WingetUI automatiquement", + "Update UniGetUI automatically": "Mettre à jour UniGetUI automatiquement", "Check for updates": "Vérifier les mises à jour", "Install prerelease versions of UniGetUI": "Installer les préversions d'UniGetUI", "Manage telemetry settings": "Gérer les paramètres de télémétrie", @@ -295,17 +321,17 @@ "Import": "Importer", "Export settings to a local file": "Exporter les paramètres dans un fichier local", "Export": "Exporter", - "Reset WingetUI": "Réinitialiser UniGetUI", "Reset UniGetUI": "Réinitialiser UniGetUI", "User interface preferences": "Paramètres de l'interface utilisateur", "Application theme, startup page, package icons, clear successful installs automatically": "Thème de l'application, page de démarrage, icônes des paquets, nettoyage automatique des installations réussies", "General preferences": "Paramètres généraux", - "WingetUI display language:": "Langue d'affichage de WingetUI :", + "UniGetUI display language:": "Langue d'affichage de UniGetUI :", "Is your language missing or incomplete?": "Votre langue est-elle manquante ou incomplète ?", "Appearance": "Apparence", "UniGetUI on the background and system tray": "UniGetUI en arrière-plan et dans la barre des tâches", "Package lists": "Listes de paquets", "Close UniGetUI to the system tray": "Fermer UniGetUI dans la barre d'état système", + "Manage UniGetUI autostart behaviour": "Gérer le comportement de démarrage automatique de UniGetUI", "Show package icons on package lists": "Afficher les icônes des paquets dans la liste des paquets", "Clear cache": "Vider le cache", "Select upgradable packages by default": "Sélectionner les paquets à mettre à jour par défaut", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Veuillez noter que tous les gestionnaires de paquets ne prennent pas toujours en charge cette fonctionnalité", "Proxy URL": "URL du proxy", "Enter proxy URL here": "Entrez l'URL du proxy ici", + "Authenticate to the proxy with a user and a password": "S'authentifier auprès du proxy avec un nom d'utilisateur et un mot de passe", + "Internet and proxy settings": "Paramètres Internet et du proxy", "Package manager preferences": "Gestionnaires de paquets", "Ready": "Prêt", "Not found": "Non trouvé", "Notification preferences": "Préférences de notification", "Notification types": "Types de notification", "The system tray icon must be enabled in order for notifications to work": "L'icône de la barre d'état système doit être activée pour que les notifications fonctionnent", - "Enable WingetUI notifications": "Activer les notifications de WingetUI", + "Enable UniGetUI notifications": "Activer les notifications de UniGetUI", "Show a notification when there are available updates": "Afficher une notification quand des mises à jour sont disponibles", "Show a silent notification when an operation is running": "Afficher une notification silencieuse lorsqu'une opération est en cours", "Show a notification when an operation fails": "Afficher une notification lorsqu'une opération échoue", "Show a notification when an operation finishes successfully": "Afficher une notification lorsqu'une opération se termine avec succès", "Concurrency and execution": "Concurrence et exécution", "Automatic desktop shortcut remover": "Suppression automatique des raccourcis sur le bureau", + "Choose how many operations should be performed in parallel": "Choisissez combien d'opérations doivent être effectuées en parallèle", "Clear successful operations from the operation list after a 5 second delay": "Effacer les opérations réussies de la liste des opérations après un délai de 5 secondes", "Download operations are not affected by this setting": "Les opérations de téléchargement ne sont pas affectées par ce paramètre", "Try to kill the processes that refuse to close when requested to": "Essayer de tuer les processus qui refusent de se fermer lorsqu'on le leur demande.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Sélectionnez l'exécutable à utiliser. La liste suivante répertorie les exécutables trouvés par UniGetUI", "Current executable file:": "Fichier exécutable actuel :", "Ignore packages from {pm} when showing a notification about updates": "Ignorer les paquets de {pm} lors de l'affichage d'une notification de mise à jour", + "Update security": "Sécurité des mises à jour", + "Use global setting": "Utiliser le paramètre global", + "e.g. 10": "p. ex. 10", + "{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", + "Override the global minimum update age for this package manager": "Remplacer l'âge minimum global des mises à jour pour ce gestionnaire de paquets", + "Minimum age for updates": "Âge minimum des mises à jour", + "Custom minimum age (days)": "Âge minimum personnalisé (jours)", "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, ", "Advanced options": "Options avancées", "Reset WinGet": "Réinitialiser WinGet", "This may help if no packages are listed": "ceci peut aider si aucun paquet n'est listé", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Activer le nettoyage de Scoop au démarrage", "Use system Chocolatey": "Utiliser Chocolatey du système", "Default vcpkg triplet": "Triplet vcpkg par défaut", + "Change vcpkg root location": "Modifier l'emplacement racine de vcpkg", "Language, theme and other miscellaneous preferences": "Langue, thème et autres préférences diverses", "Show notifications on different events": "Afficher des notifications sur différents événements", "Change how UniGetUI checks and installs available updates for your packages": "Modifier comment UniGetUI vérifie et installe les mises à jour disponibles pour vos paquets", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ne pas installer automatiquement les mises à jour lorsque la connexion réseau est mesurée", "Do not automatically install updates when the device runs on battery": "Ne pas installer automatiquement les mises à jour lorsque l'appareil fonctionne sur batterie", "Do not automatically install updates when the battery saver is on": "Ne pas installer automatiquement les mises à jour lorsque l'économiseur de batterie est activé", + "Only show updates that are at least the specified number of days old": "Afficher uniquement les mises à jour âgées d'au moins le nombre de jours indiqué", "Change how UniGetUI handles install, update and uninstall operations.": "Modifier la façon dont UniGetUI gère les opérations d'installation, de mise à jour et de désinstallation.", "Package Managers": "Gestionnaires de paquets", "More": "Plus", - "WingetUI Log": "Journaux de WingetUI", "Package Manager logs": "Journaux du gestionnaire de paquets", "Operation history": "Historique des opérations", "Help": "Aide", + "Quit UniGetUI": "Quitter UniGetUI", "Order by:": "Trier par :", "Name": "Nom", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Les deux", "Exact match": "Correspondance exacte", "Show similar packages": "Afficher des paquets similaires", + "Nothing to share": "Rien à partager", + "Please select a package first.": "Veuillez d'abord sélectionner un paquet.", + "Share link copied": "Lien de partage copié", + "The share link for {0} has been copied to the clipboard.": "Le lien de partage pour {0} a été copié dans le presse-papiers.", "No results were found matching the input criteria": "Aucun résultat correspondant aux critères n'a été trouvé", "No packages were found": "Aucun paquet n'a été trouvé", "Loading packages": "Chargement des paquets", @@ -440,7 +483,11 @@ "Package bundle": "Lot de paquets", "Could not create bundle": "Impossible de créer un lot", "The package bundle could not be created due to an error.": "Le lot de paquets n'a pas pu être créé en raison d'une erreur", + "Unsaved changes": "Modifications non enregistrées", + "Discard changes": "Ignorer les modifications", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Vous avez des modifications non enregistrées dans le bundle actuel. Voulez-vous les ignorer ?", "Bundle security report": "Rapport de sécurité du lot", + "The bundle contained restricted content": "Le bundle contenait du contenu restreint", "Hooray! No updates were found.": "Félicitations ! Toutes vos applications sont à jour !", "Everything is up to date": "Tout est à jour", "Uninstall selected packages": "Désinstaller les paquets sélectionnés", @@ -454,9 +501,10 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Le gestionnaire de paquets classique pour Windows. Vous y trouverez tout.
Contient : Logiciels généraux", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un dépôt plein d'outils et d'exécutables conçus pour l'écosystème Microsoft .NET.
Contient : Outils et scripts liés à .NET", "NuPkg (zipped manifest)": "NuPkg (manifeste compressé)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Le gestionnaire de paquets manquant pour macOS (ou Linux).
Contient : Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Le gestionnaire de paquets de Node JS. Plein de bibliothèques et d'autres utilitaires qui tournent autour du monde de JavaScript.
Contient : Bibliothèques JavaScript Node et autres utilitaires associés", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Le gestionnaire de bibliothèques de Python. Plein de bibliothèques Python et d'autres utilitaires liés à Python.
Contient : Bibliothèques Python et autres utilitaires associés", - "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Le gestionnaire de paquets de PowerShell. Bibliothèques et scripts pour étendre les capacités de PowerShell.
Contient : Modules, Scripts, Cmdlets\n", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Le gestionnaire de paquets de PowerShell. Bibliothèques et scripts pour étendre les capacités de PowerShell.
Contient : Modules, Scripts, Cmdlets", "extracted": "extrait", "Scoop package": "Paquet Scoop", "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "Excellent dépôt d'utilitaires peu connus mais utiles et d'autres paquets intéressants.
Contient : Utilitaires, Programmes en ligne de commande, Logiciels généraux (bucket extras requis)", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Opération dans la file d'attente (position {0})...", "Click here for more details": "Cliquez ici pour plus de détails", "Operation canceled by user": "Opération annulée par l'utilisateur", + "Running PreOperation ({0}/{1})...": "Exécution de PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} sur {1} a échoué et était marquée comme nécessaire. Abandon...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} sur {1} s'est terminée avec le résultat {2}", "Starting operation...": "Démarrage de l'opération...", + "Running PostOperation ({0}/{1})...": "Exécution de PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} sur {1} a échoué et était marquée comme nécessaire. Abandon...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} sur {1} s'est terminée avec le résultat {2}", "{package} installer download": "Téléchargement du programme d'installation de {package}", "{0} installer is being downloaded": "Le programme d'installation {0} est en cours de téléchargement", "Download succeeded": "Téléchargement réussi", @@ -553,17 +607,15 @@ "Package management made easy": "Gestion des paquets facilitée", "version {0}": "version {0}", "[RAN AS ADMINISTRATOR]": "EXÉCUTÉ EN TANT QU'ADMINISTRATEUR", - "Portable mode": "Mode portable", + "Portable mode": "Mode portable\n", "DEBUG BUILD": "VERSION DE DÉBOGAGE", "Available Updates": "Mises à jour disponibles", - "Show WingetUI": "Afficher WingetUI", + "Show UniGetUI": "Afficher UniGetUI", "Quit": "Quitter", "Attention required": "Attention requise", "Restart required": "Redémarrage requis", "1 update is available": "1 mise à jour est disponible", "{0} updates are available": "{0} mises à jour sont disponibles", - "WingetUI Homepage": "Page d'accueil de WingetUI", - "WingetUI Repository": "Dépôt de WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Ici vous pouvez changer le comportement d'UniGetUI en ce qui concerne les raccourcis suivants. En cochant un raccourci, UniGetUI le supprimera s'il est créé lors d'une prochaine mise à jour. Si vous ne le cochez pas, cela conservera le raccourci intact.", "Manual scan": "Analyse manuelle", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Les raccourcis existants sur votre bureau seront analysés et vous devrez choisir ceux qui doivent être conservés et ceux qui doivent être supprimés.", @@ -583,7 +635,6 @@ "Restart later": "Redémarrer plus tard", "An error occurred:": "Une erreur s'est produite :", "I understand": "Je comprends", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI a été exécuté en tant qu'administrateur, ce qui n'est pas recommandé. Lorsque WingetUI est exécuté en tant qu'administrateur, TOUTES les opérations lancées depuis WingetUI auront des privilèges d'administrateur. Vous pouvez toujours utiliser le programme, mais nous recommandons fortement de ne pas exécuter WingetUI avec les privilèges d'administrateur.", "WinGet was repaired successfully": "WinGet a été réparé avec succès", "It is recommended to restart UniGetUI after WinGet has been repaired": "Il est recommandé de redémarrer UniGetUI après que WinGet a été réparé", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTE : Ce programme de dépannage peut être désactivé depuis les paramètres d'UniGetUI, dans la section WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Vos paquets auront été ajoutés au lot. Vous pouvez continuer à ajouter des paquets ou exporter le lot.", "Which backup do you want to open?": "Quelle sauvegarde voulez-vous ouvrir ?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Sélectionnez la sauvegarde que vous souhaitez ouvrir. Plus tard, vous pourrez revoir les paquets/programmes que vous souhaitez restaurer.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Il y a des opérations en cours. Quitter WingetUI pourrait les faire échouer. Voulez-vous continuer ?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Il y a des opérations en cours. Quitter UniGetUI pourrait les faire échouer. Voulez-vous continuer ?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ou certains de ses composants sont manquants ou corrompus.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Il est fortement recommandé de réinstaller UniGetUI pour remédier à la situation.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Consultez les journaux UniGetUI pour obtenir plus de détails sur les fichiers concernés.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Saisissez ici les noms des processus, séparés par des virgules (,)", "Unset or unknown": "Non défini ou inconnu", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Consultez la sortie de la ligne de commande ou référez-vous à l'historique des opérations pour plus d'informations sur le problème.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ce paquet n'a pas de capture d'écran ou l'icône est manquante ? Contribuez à WingetUI en ajoutant les icônes manquantes et les captures d'écran à notre base de données ouverte et publique.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ce paquet n'a pas de capture d'écran ou l'icône est manquante ? Contribuez à UniGetUI en ajoutant les icônes manquantes et les captures d'écran à notre base de données ouverte et publique.", "Become a contributor": "Devenir un contributeur", "Save": "Enregistrer", "Update to {0} available": "Mise à jour vers {0} disponible", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Activer le dépannage automatique de WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Activation d'un dépanneur WinGet [expérimental] amélioré", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Ajouter les mises à jour qui échouent avec un message « aucune mise à jour applicable trouvée » à la liste des mises à jour ignorées.", - "Restart WingetUI to fully apply changes": "Redémarrer WingetUI pour appliquer les changements", - "Restart WingetUI": "Redémarrer WingetUI", "Invalid selection": "Sélection invalide", "No package was selected": "Aucun package n'a été sélectionné", "More than 1 package was selected": "Plus d'un package a été sélectionné", @@ -684,6 +733,37 @@ "Log out failed: ": "Échec de la déconnexion :", "Package backup settings": "Paramètres de sauvegarde des paquets", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "À propos de WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI est une application qui vous permet de gérer vos logiciels plus facilement, en fournissant une interface graphique tout-en-un pour vos gestionnaires de paquets en ligne de commandes.", + "You have installed WingetUI Version {0}": "Vous avez installé WingetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI n'aurait pas été possible sans l'aide des contributeurs. Merci à tous 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI utilise les bibliothèques suivantes. Sans elles, WingetUI n'aurait pas pu exister.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI a été traduit dans plus de 40 langues grâce aux traducteurs bénévoles. Merci 🤝", + "WingetUI Settings": "Paramètres de WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Il est possible que vous ayez besoin d'installer {pm} pour pouvoir l'utiliser avec WingetUI.", + "Scoop Installer - WingetUI": "Installateur de Scoop - WingetUI", + "Scoop Uninstaller - WingetUI": "Déinstallateur de Scoop - WingetUI", + "Clearing Scoop cache - WingetUI": "Vidage du cache de Scoop - WingetUI", + "WingetUI Version {0}": "WingetUI Version {0}", + "WingetUI License": "Licence de WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "Utiliser WingetUI implique l'acceptation de la licence MIT (MIT License)", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activer l'API en arrière-plan (Widgets et Partage WingetUI, port 7058) ", + "Update WingetUI automatically": "Mettre à jour WingetUI automatiquement", + "Reset WingetUI": "Réinitialiser UniGetUI", + "WingetUI display language:": "Langue d'affichage de WingetUI :", + "Manage WingetUI autostart behaviour": "Gérer le comportement de démarrage automatique de WingetUI", + "Enable WingetUI notifications": "Activer les notifications de WingetUI", + "WingetUI Log": "Journaux de WingetUI", + "Show WingetUI": "Afficher WingetUI", + "WingetUI Homepage": "Page d'accueil de WingetUI", + "WingetUI Repository": "Dépôt de WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI a été exécuté en tant qu'administrateur, ce qui n'est pas recommandé. Lorsque WingetUI est exécuté en tant qu'administrateur, TOUTES les opérations lancées depuis WingetUI auront des privilèges d'administrateur. Vous pouvez toujours utiliser le programme, mais nous recommandons fortement de ne pas exécuter WingetUI avec les privilèges d'administrateur.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Il y a des opérations en cours. Quitter WingetUI pourrait les faire échouer. Voulez-vous continuer ?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ce paquet n'a pas de capture d'écran ou l'icône est manquante ? Contribuez à WingetUI en ajoutant les icônes manquantes et les captures d'écran à notre base de données ouverte et publique.", + "Restart WingetUI to fully apply changes": "Redémarrer WingetUI pour appliquer les changements", + "Restart WingetUI": "Redémarrer WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Gérer le comportement de démarrage automatique de UniGetUI depuis les paramètres de l'application", "(Number {0} in the queue)": "(Numéro {0} dans la file d'attente)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Evans Costa, Rémi Guerrero, @W1L7dev, BreatFR, @PikPakPik, @Entropiness", "0 packages found": "Aucun paquet trouvé", @@ -1068,8 +1148,5 @@ "{pm} could not be found": "{pm} n'a pas pu être trouvé", "{pm} found: {state}": "{pm} a trouvé : {state}", "{pm} package manager specific preferences": "Paramètres spécifiques au gestionnaire de paquets {pm}", - "{pm} preferences": "Paramètres de {pm}", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Salut, mon nom est Martí, et je suis le développeur de WingetUI. WingetUI a été entièrement réalisé durant mon temps libre !", - "Thank you ❤": "Merci ❤", - "This project has no connection with the official {0} project — it's completely unofficial.": "Ce projet n'a aucun lien avec le projet officiel {0} — c'est complètement non officiel." + "{pm} preferences": "Paramètres de {pm}" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gl.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gl.json index c220edf243..2d0775d60a 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gl.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gl.json @@ -1,1075 +1,1155 @@ { - "Operation in progress": "", - "Please wait...": "", - "Success!": "", - "Failed": "", - "An error occurred while processing this package": "", - "Log in to enable cloud backup": "", - "Backup Failed": "", - "Downloading backup...": "", - "An update was found!": "", - "{0} can be updated to version {1}": "", - "Updates found!": "", - "{0} packages can be updated": "", - "You have currently version {0} installed": "", - "Desktop shortcut created": "", - "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "", - "{0} desktop shortcuts created": "", - "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "", - "Are you sure?": "", - "Do you really want to uninstall {0}?": "", - "Do you really want to uninstall the following {0} packages?": "", - "No": "", - "Yes": "", - "View on UniGetUI": "", - "Update": "", - "Open UniGetUI": "", - "Update all": "", - "Update now": "", - "This package is on the queue": "", - "installing": "", - "updating": "", - "uninstalling": "", - "installed": "", - "Retry": "", - "Install": "", - "Uninstall": "", - "Open": "", - "Operation profile:": "", - "Follow the default options when installing, upgrading or uninstalling this package": "", - "The following settings will be applied each time this package is installed, updated or removed.": "", - "Version to install:": "", - "Architecture to install:": "", - "Installation scope:": "", - "Install location:": "", - "Select": "", - "Reset": "", - "Custom install arguments:": "", - "Custom update arguments:": "", - "Custom uninstall arguments:": "", - "Pre-install command:": "", - "Post-install command:": "", - "Abort install if pre-install command fails": "", - "Pre-update command:": "", - "Post-update command:": "", - "Abort update if pre-update command fails": "", - "Pre-uninstall command:": "", - "Post-uninstall command:": "", - "Abort uninstall if pre-uninstall command fails": "", - "Command-line to run:": "", - "Save and close": "", - "Run as admin": "", - "Interactive installation": "", - "Skip hash check": "", - "Uninstall previous versions when updated": "", - "Skip minor updates for this package": "", - "Automatically update this package": "", - "{0} installation options": "", - "Latest": "", - "PreRelease": "", - "Default": "", - "Manage ignored updates": "", - "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "", - "Reset list": "", - "Package Name": "", - "Package ID": "", - "Ignored version": "", - "New version": "", - "Source": "", - "All versions": "", - "Unknown": "", - "Up to date": "", - "Cancel": "", - "Administrator privileges": "", - "This operation is running with administrator privileges.": "", - "Interactive operation": "", - "This operation is running interactively.": "", - "You will likely need to interact with the installer.": "", - "Integrity checks skipped": "", - "Proceed at your own risk.": "", - "Close": "", - "Loading...": "", - "Installer SHA256": "", - "Homepage": "", - "Author": "", - "Publisher": "", - "License": "", - "Manifest": "", - "Installer Type": "", - "Size": "", - "Installer URL": "", - "Last updated:": "", - "Release notes URL": "", - "Package details": "", - "Dependencies:": "", - "Release notes": "", - "Version": "", - "Install as administrator": "", - "Update to version {0}": "", - "Installed Version": "", - "Update as administrator": "", - "Interactive update": "", - "Uninstall as administrator": "", - "Interactive uninstall": "", - "Uninstall and remove data": "", - "Not available": "", - "Installer SHA512": "", - "Unknown size": "", - "No dependencies specified": "", - "mandatory": "", - "optional": "", - "UniGetUI {0} is ready to be installed.": "", - "The update process will start after closing UniGetUI": "", - "Share anonymous usage data": "", - "UniGetUI collects anonymous usage data in order to improve the user experience.": "", - "Accept": "", - "You have installed WingetUI Version {0}": "", - "Disclaimer": "", - "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "{0} homepage": "", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "", - "Verbose": "", - "1 - Errors": "", - "2 - Warnings": "", - "3 - Information (less)": "", - "4 - Information (more)": "", - "5 - information (debug)": "", - "Warning": "", - "The following settings may pose a security risk, hence they are disabled by default.": "", - "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "", - "The settings will list, in their descriptions, the potential security issues they may have.": "", - "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "", - "The backup will NOT include any binary file nor any program's saved data.": "", - "The size of the backup is estimated to be less than 1MB.": "", - "The backup will be performed after login.": "", - "{pcName} installed packages": "", - "Current status: Not logged in": "", - "You are logged in as {0} (@{1})": "", - "Nice! Backups will be uploaded to a private gist on your account": "", - "Select backup": "", - "WingetUI Settings": "", - "Allow pre-release versions": "", - "Apply": "", - "Go to UniGetUI security settings": "", - "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "", - "Package's default": "", - "Install location can't be changed for {0} packages": "", - "The local icon cache currently takes {0} MB": "", - "Username": "", - "Password": "", - "Credentials": "", - "Partially": "", - "Package manager": "", - "Compatible with proxy": "", - "Compatible with authentication": "", - "Proxy compatibility table": "", - "{0} settings": "", - "{0} status": "", - "Default installation options for {0} packages": "", - "Expand version": "", - "The executable file for {0} was not found": "", - "{pm} is disabled": "", - "Enable it to install packages from {pm}.": "", - "{pm} is enabled and ready to go": "", - "{pm} version:": "", - "{pm} was not found!": "", - "You may need to install {pm} in order to use it with WingetUI.": "", - "Scoop Installer - WingetUI": "", - "Scoop Uninstaller - WingetUI": "", - "Clearing Scoop cache - WingetUI": "", - "Restart UniGetUI": "", - "Manage {0} sources": "", - "Add source": "", - "Add": "", - "Other": "", - "1 day": "", - "{0} days": "", - "{0} minutes": "", - "1 hour": "", - "{0} hours": "", - "1 week": "", - "WingetUI Version {0}": "", - "Search for packages": "", - "Local": "", - "OK": "", - "{0} packages were found, {1} of which match the specified filters.": "", - "{0} selected": "", - "(Last checked: {0})": "", - "Enabled": "", - "Disabled": "", - "More info": "", - "Log in with GitHub to enable cloud package backup.": "", - "More details": "", - "Log in": "", - "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "", - "Log out": "", - "About": "", - "Third-party licenses": "", - "Contributors": "", - "Translators": "", - "Manage shortcuts": "", - "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "", - "Do you really want to reset this list? This action cannot be reverted.": "", - "Remove from list": "", - "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "", - "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "", - "More details about the shared data and how it will be processed": "", - "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "", - "Decline": "", - "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "", - "About WingetUI": "", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "", - "Useful links": "", - "Report an issue or submit a feature request": "", - "View GitHub Profile": "", - "WingetUI License": "", - "Using WingetUI implies the acceptation of the MIT License": "", - "Become a translator": "", - "View page on browser": "", - "Copy to clipboard": "", - "Export to a file": "", - "Log level:": "", - "Reload log": "", - "Text": "", - "Change how operations request administrator rights": "", - "Restrictions on package operations": "", - "Restrictions on package managers": "", - "Restrictions when importing package bundles": "", - "Ask for administrator privileges once for each batch of operations": "", - "Ask only once for administrator privileges": "", - "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "", - "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "", - "Allow custom command-line arguments": "", - "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "", - "Allow changing the paths for package manager executables": "", - "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "", - "Allow importing custom command-line arguments when importing packages from a bundle": "", - "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "", - "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "", - "Administrator rights and other dangerous settings": "", - "Package backup": "", - "Cloud package backup": "", - "Local package backup": "", - "Local backup advanced options": "", - "Log in with GitHub": "", - "Log out from GitHub": "", - "Periodically perform a cloud backup of the installed packages": "", - "Cloud backup uses a private GitHub Gist to store a list of installed packages": "", - "Perform a cloud backup now": "", - "Backup": "", - "Restore a backup from the cloud": "", - "Begin the process to select a cloud backup and review which packages to restore": "", - "Periodically perform a local backup of the installed packages": "", - "Perform a local backup now": "", - "Change backup output directory": "", - "Set a custom backup file name": "", - "Leave empty for default": "", - "Add a timestamp to the backup file names": "", - "Backup and Restore": "", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "", - "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "", - "Disable the 1-minute timeout for package-related operations": "", - "Use installed GSudo instead of UniGetUI Elevator": "", - "Use a custom icon and screenshot database URL": "", - "Enable background CPU Usage optimizations (see Pull Request #3278)": "", - "Perform integrity checks at startup": "", - "When batch installing packages from a bundle, install also packages that are already installed": "", - "Experimental settings and developer options": "", - "Show UniGetUI's version and build number on the titlebar.": "", - "Language": "", - "UniGetUI updater": "", - "Telemetry": "", - "Manage UniGetUI settings": "", - "Related settings": "", - "Update WingetUI automatically": "", - "Check for updates": "", - "Install prerelease versions of UniGetUI": "", - "Manage telemetry settings": "", - "Manage": "", - "Import settings from a local file": "", - "Import": "", - "Export settings to a local file": "", - "Export": "", - "Reset WingetUI": "", - "Reset UniGetUI": "", - "User interface preferences": "", - "Application theme, startup page, package icons, clear successful installs automatically": "", - "General preferences": "", - "WingetUI display language:": "", - "Is your language missing or incomplete?": "", - "Appearance": "", - "UniGetUI on the background and system tray": "", - "Package lists": "", - "Close UniGetUI to the system tray": "", - "Show package icons on package lists": "", - "Clear cache": "", - "Select upgradable packages by default": "", - "Light": "", - "Dark": "", - "Follow system color scheme": "", - "Application theme:": "", - "Discover Packages": "", - "Software Updates": "", - "Installed Packages": "", - "Package Bundles": "", - "Settings": "", - "UniGetUI startup page:": "", - "Proxy settings": "", - "Other settings": "", - "Connect the internet using a custom proxy": "", - "Please note that not all package managers may fully support this feature": "", - "Proxy URL": "", - "Enter proxy URL here": "", - "Package manager preferences": "", - "Ready": "", - "Not found": "", - "Notification preferences": "", - "Notification types": "", - "The system tray icon must be enabled in order for notifications to work": "", - "Enable WingetUI notifications": "", - "Show a notification when there are available updates": "", - "Show a silent notification when an operation is running": "", - "Show a notification when an operation fails": "", - "Show a notification when an operation finishes successfully": "", - "Concurrency and execution": "", - "Automatic desktop shortcut remover": "", - "Clear successful operations from the operation list after a 5 second delay": "", - "Download operations are not affected by this setting": "", - "Try to kill the processes that refuse to close when requested to": "", - "You may lose unsaved data": "", - "Ask to delete desktop shortcuts created during an install or upgrade.": "", - "Package update preferences": "", - "Update check frequency, automatically install updates, etc.": "", - "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "", - "Package operation preferences": "", - "Enable {pm}": "", - "Not finding the file you are looking for? Make sure it has been added to path.": "", - "For security reasons, changing the executable file is disabled by default": "", - "Change this": "", - "Select the executable to be used. The following list shows the executables found by UniGetUI": "", - "Current executable file:": "", - "Ignore packages from {pm} when showing a notification about updates": "", - "View {0} logs": "", - "Advanced options": "", - "Reset WinGet": "", - "This may help if no packages are listed": "", - "Force install location parameter when updating packages with custom locations": "", - "Use bundled WinGet instead of system WinGet": "", - "This may help if WinGet packages are not shown": "", - "Install Scoop": "", - "Uninstall Scoop (and its packages)": "", - "Run cleanup and clear cache": "", - "Run": "", - "Enable Scoop cleanup on launch": "", - "Use system Chocolatey": "", - "Default vcpkg triplet": "", - "Language, theme and other miscellaneous preferences": "", - "Show notifications on different events": "", - "Change how UniGetUI checks and installs available updates for your packages": "", - "Automatically save a list of all your installed packages to easily restore them.": "", - "Enable and disable package managers, change default install options, etc.": "", - "Internet connection settings": "", - "Proxy settings, etc.": "", - "Beta features and other options that shouldn't be touched": "", - "Update checking": "", - "Automatic updates": "", - "Check for package updates periodically": "", - "Check for updates every:": "", - "Install available updates automatically": "", - "Do not automatically install updates when the network connection is metered": "", - "Do not automatically install updates when the device runs on battery": "", - "Do not automatically install updates when the battery saver is on": "", - "Change how UniGetUI handles install, update and uninstall operations.": "", - "Package Managers": "", - "More": "", - "WingetUI Log": "", - "Package Manager logs": "", - "Operation history": "", - "Help": "", - "Order by:": "", - "Name": "", - "Id": "", - "Ascendant": "", - "Descendant": "", - "View mode:": "", - "Filters": "", - "Sources": "", - "Search for packages to start": "", - "Select all": "", - "Clear selection": "", - "Instant search": "", - "Distinguish between uppercase and lowercase": "", - "Ignore special characters": "", - "Search mode": "", - "Both": "", - "Exact match": "", - "Show similar packages": "", - "No results were found matching the input criteria": "", - "No packages were found": "", - "Loading packages": "", - "Skip integrity checks": "", - "Download selected installers": "", - "Install selection": "", - "Install options": "", - "Share": "", - "Add selection to bundle": "", - "Download installer": "", - "Share this package": "", - "Uninstall selection": "", - "Uninstall options": "", - "Ignore selected packages": "", - "Open install location": "", - "Reinstall package": "", - "Uninstall package, then reinstall it": "", - "Ignore updates for this package": "", - "Do not ignore updates for this package anymore": "", - "Add packages or open an existing package bundle": "", - "Add packages to start": "", - "The current bundle has no packages. Add some packages to get started": "", - "New": "", - "Save as": "", - "Remove selection from bundle": "", - "Skip hash checks": "", - "The package bundle is not valid": "", - "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "", - "Package bundle": "", - "Could not create bundle": "", - "The package bundle could not be created due to an error.": "", - "Bundle security report": "", - "Hooray! No updates were found.": "", - "Everything is up to date": "", - "Uninstall selected packages": "", - "Update selection": "", - "Update options": "", - "Uninstall package, then update it": "", - "Uninstall package": "", - "Skip this version": "", - "Pause updates for": "", - "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "", - "The classical package manager for windows. You'll find everything there.
Contains: General Software": "", - "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "", - "NuPkg (zipped manifest)": "", - "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "", - "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "", - "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "", - "extracted": "", - "Scoop package": "", - "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "", - "library": "", - "feature": "", - "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "", - "option": "", - "This package cannot be installed from an elevated context.": "", - "Please run UniGetUI as a regular user and try again.": "", - "Please check the installation options for this package and try again": "", - "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "", - "Local PC": "", - "Android Subsystem": "", - "Operation on queue (position {0})...": "", - "Click here for more details": "", - "Operation canceled by user": "", - "Starting operation...": "", - "{package} installer download": "", - "{0} installer is being downloaded": "", - "Download succeeded": "", - "{package} installer was downloaded successfully": "", - "Download failed": "", - "{package} installer could not be downloaded": "", - "{package} Installation": "", - "{0} is being installed": "", - "Installation succeeded": "", - "{package} was installed successfully": "", - "Installation failed": "", - "{package} could not be installed": "", - "{package} Update": "", - "{0} is being updated to version {1}": "", - "Update succeeded": "", - "{package} was updated successfully": "", - "Update failed": "", - "{package} could not be updated": "", - "{package} Uninstall": "", - "{0} is being uninstalled": "", - "Uninstall succeeded": "", - "{package} was uninstalled successfully": "", - "Uninstall failed": "", - "{package} could not be uninstalled": "", - "Adding source {source}": "", - "Adding source {source} to {manager}": "", - "Source added successfully": "", - "The source {source} was added to {manager} successfully": "", - "Could not add source": "", - "Could not add source {source} to {manager}": "", - "Removing source {source}": "", - "Removing source {source} from {manager}": "", - "Source removed successfully": "", - "The source {source} was removed from {manager} successfully": "", - "Could not remove source": "", - "Could not remove source {source} from {manager}": "", - "The package manager \"{0}\" was not found": "", - "The package manager \"{0}\" is disabled": "", - "There is an error with the configuration of the package manager \"{0}\"": "", - "The package \"{0}\" was not found on the package manager \"{1}\"": "", - "{0} is disabled": "", - "Something went wrong": "", - "An interal error occurred. Please view the log for further details.": "", - "No applicable installer was found for the package {0}": "", - "We are checking for updates.": "", - "Please wait": "", - "UniGetUI version {0} is being downloaded.": "", - "This may take a minute or two": "", - "The installer authenticity could not be verified.": "", - "The update process has been aborted.": "", - "Great! You are on the latest version.": "", - "There are no new UniGetUI versions to be installed": "", - "An error occurred when checking for updates: ": "", - "UniGetUI is being updated...": "", - "Something went wrong while launching the updater.": "", - "Please try again later": "", - "Integrity checks will not be performed during this operation": "", - "This is not recommended.": "", - "Run now": "", - "Run next": "", - "Run last": "", - "Retry as administrator": "", - "Retry interactively": "", - "Retry skipping integrity checks": "", - "Installation options": "", - "Show in explorer": "", - "This package is already installed": "", - "This package can be upgraded to version {0}": "", - "Updates for this package are ignored": "", - "This package is being processed": "", - "This package is not available": "", - "Select the source you want to add:": "", - "Source name:": "", - "Source URL:": "", - "An error occurred": "", - "An error occurred when adding the source: ": "", - "Package management made easy": "", - "version {0}": "", - "[RAN AS ADMINISTRATOR]": "", - "Portable mode": "", - "DEBUG BUILD": "", - "Available Updates": "", - "Show WingetUI": "", - "Quit": "", - "Attention required": "", - "Restart required": "", - "1 update is available": "", - "{0} updates are available": "", - "WingetUI Homepage": "", - "WingetUI Repository": "", - "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "", - "Manual scan": "", - "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "", - "Continue": "", - "Delete?": "", - "Missing dependency": "", - "Not right now": "", - "Install {0}": "", - "UniGetUI requires {0} to operate, but it was not found on your system.": "", - "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "", - "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "", - "Do not show this dialog again for {0}": "", - "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "", - "{0} has been installed successfully.": "", - "Please click on \"Continue\" to continue": "", - "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "", - "Restart later": "", - "An error occurred:": "", - "I understand": "", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "", - "WinGet was repaired successfully": "", - "It is recommended to restart UniGetUI after WinGet has been repaired": "", - "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "", - "Restart": "", - "WinGet could not be repaired": "", - "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "", - "Are you sure you want to delete all shortcuts?": "", - "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "", - "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "", - "Are you really sure you want to enable this feature?": "", - "No new shortcuts were found during the scan.": "", - "How to add packages to a bundle": "", - "In order to add packages to a bundle, you will need to: ": "", - "1. Navigate to the \"{0}\" or \"{1}\" page.": "", - "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "", - "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "", - "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "", - "Which backup do you want to open?": "", - "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "", - "UniGetUI or some of its components are missing or corrupt.": "", - "It is strongly recommended to reinstall UniGetUI to adress the situation.": "", - "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "", - "Integrity checks can be disabled from the Experimental Settings": "", - "Repair UniGetUI": "", - "Live output": "", - "Package not found": "", - "An error occurred when attempting to show the package with Id {0}": "", - "Package": "", - "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "", - "Entries that show in YELLOW will be IGNORED.": "", - "Entries that show in RED will be IMPORTED.": "", - "You can change this behavior on UniGetUI security settings.": "", - "Open UniGetUI security settings": "", - "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "", - "Details of the report:": "", - "\"{0}\" is a local package and can't be shared": "", - "Are you sure you want to create a new package bundle? ": "", - "Any unsaved changes will be lost": "", - "Warning!": "", - "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "", - "Change default options": "", - "Ignore future updates for this package": "", - "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "", - "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "", - "Change this and unlock": "", - "{0} Install options are currently locked because {0} follows the default install options.": "", - "Select the processes that should be closed before this package is installed, updated or uninstalled.": "", - "Write here the process names here, separated by commas (,)": "", - "Unset or unknown": "", - "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "", - "Become a contributor": "", - "Save": "", - "Update to {0} available": "", - "Reinstall": "", - "Installer not available": "", - "Version:": "", - "Performing backup, please wait...": "", - "An error occurred while logging in: ": "", - "Fetching available backups...": "", - "Done!": "", - "The cloud backup has been loaded successfully.": "", - "An error occurred while loading a backup: ": "", - "Backing up packages to GitHub Gist...": "", - "Backup Successful": "", - "The cloud backup completed successfully.": "", - "Could not back up packages to GitHub Gist: ": "", - "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "", - "Enable the automatic WinGet troubleshooter": "", - "Enable an [experimental] improved WinGet troubleshooter": "", - "Add updates that fail with a 'no applicable update found' to the ignored updates list": "", - "Restart WingetUI to fully apply changes": "", - "Restart WingetUI": "", - "Invalid selection": "", - "No package was selected": "", - "More than 1 package was selected": "", - "List": "", - "Grid": "", - "Icons": "", - "\"{0}\" is a local package and does not have available details": "", - "\"{0}\" is a local package and is not compatible with this feature": "", - "WinGet malfunction detected": "", - "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "", - "Repair WinGet": "", - "Create .ps1 script": "", - "Add packages to bundle": "", - "Preparing packages, please wait...": "", - "Loading packages, please wait...": "", - "Saving packages, please wait...": "", - "The bundle was created successfully on {0}": "", - "Install script": "", - "The installation script saved to {0}": "", - "An error occurred while attempting to create an installation script:": "", - "{0} packages are being updated": "", - "Error": "", - "Log in failed: ": "", - "Log out failed: ": "", - "Package backup settings": "", + "Operation in progress": "Operación en progreso", + "Please wait...": "Agarde...", + "Success!": "Éxito!", + "Failed": "Fallou", + "An error occurred while processing this package": "Produciuse un erro ao procesar este paquete", + "Log in to enable cloud backup": "Inicie sesión para activar a copia de seguranza na nube", + "Backup Failed": "A copia de seguranza fallou", + "Downloading backup...": "Descargando a copia de seguranza...", + "An update was found!": "Atopouse unha actualización!", + "{0} can be updated to version {1}": "{0} pódese actualizar á versión {1}", + "Updates found!": "Atopáronse actualizacións!", + "{0} packages can be updated": "{0} paquetes pódense actualizar", + "You have currently version {0} installed": "Ten instalada actualmente a versión {0}", + "Desktop shortcut created": "Creouse o atallo do escritorio", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI detectou un novo atallo do escritorio que se pode eliminar automaticamente.", + "{0} desktop shortcuts created": "Creáronse {0} atallos do escritorio", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI detectou {0} novos atallos do escritorio que se poden eliminar automaticamente.", + "Are you sure?": "Está seguro?", + "Do you really want to uninstall {0}?": "Realmente quere desinstalar {0}?", + "Do you really want to uninstall the following {0} packages?": "Realmente quere desinstalar os seguintes {0} paquetes?", + "No": "Non", + "Yes": "Si", + "View on UniGetUI": "Ver en UniGetUI", + "Update": "Actualizar", + "Open UniGetUI": "Abrir UniGetUI", + "Update all": "Actualizar todo", + "Update now": "Actualizar agora", + "This package is on the queue": "Este paquete está na cola", + "installing": "instalando", + "updating": "actualizando", + "uninstalling": "desinstalando", + "installed": "instalado", + "Retry": "Reintentar", + "Install": "Instalar", + "Uninstall": "Desinstalar", + "Open": "Abrir", + "Operation profile:": "Perfil da operación:", + "Follow the default options when installing, upgrading or uninstalling this package": "Siga as opcións predeterminadas ao instalar, actualizar ou desinstalar este paquete", + "The following settings will be applied each time this package is installed, updated or removed.": "A seguinte configuración aplicarase cada vez que este paquete se instale, actualice ou elimine.", + "Version to install:": "Versión para instalar:", + "Architecture to install:": "Arquitectura para instalar:", + "Installation scope:": "Ámbito da instalación:", + "Install location:": "Localización da instalación:", + "Select": "Seleccionar", + "Reset": "Restablecer", + "Custom install arguments:": "Argumentos personalizados de instalación:", + "Custom update arguments:": "Argumentos personalizados de actualización:", + "Custom uninstall arguments:": "Argumentos personalizados de desinstalación:", + "Pre-install command:": "Comando previo á instalación:", + "Post-install command:": "Comando posterior á instalación:", + "Abort install if pre-install command fails": "Abortar a instalación se falla o comando previo á instalación", + "Pre-update command:": "Comando previo á actualización:", + "Post-update command:": "Comando posterior á actualización:", + "Abort update if pre-update command fails": "Abortar a actualización se falla o comando previo á actualización", + "Pre-uninstall command:": "Comando previo á desinstalación:", + "Post-uninstall command:": "Comando posterior á desinstalación:", + "Abort uninstall if pre-uninstall command fails": "Abortar a desinstalación se falla o comando previo á desinstalación", + "Command-line to run:": "Liña de ordes para executar:", + "Save and close": "Gardar e pechar", + "General": "Xeral", + "Architecture & Location": "Arquitectura e localización", + "Command-line": "Liña de ordes", + "Pre/Post install": "Pre/Post instalación", + "Run as admin": "Executar como administrador", + "Interactive installation": "Instalación interactiva", + "Skip hash check": "Omitir a comprobación do hash", + "Uninstall previous versions when updated": "Desinstalar as versións anteriores ao actualizar", + "Skip minor updates for this package": "Omitir as actualizacións menores deste paquete", + "Automatically update this package": "Actualizar este paquete automaticamente", + "{0} installation options": "Opcións de instalación de {0}", + "Latest": "Última", + "PreRelease": "Prelanzamento", + "Default": "Predeterminado", + "Manage ignored updates": "Xestionar as actualizacións ignoradas", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Os paquetes listados aquí non se terán en conta ao comprobar actualizacións. Faga dobre clic neles ou prema no botón da dereita para deixar de ignorar as súas actualizacións.", + "Reset list": "Restablecer lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Realmente quere restablecer a lista de actualizacións ignoradas? Esta acción non se pode desfacer", + "No ignored updates": "Non hai actualizacións ignoradas", + "Package Name": "Nome do paquete", + "Package ID": "ID do paquete", + "Ignored version": "Versión ignorada", + "New version": "Nova versión", + "Source": "Orixe", + "All versions": "Todas as versións", + "Unknown": "Descoñecido", + "Up to date": "Actualizado", + "Cancel": "Cancelar", + "Administrator privileges": "Privilexios de administrador", + "This operation is running with administrator privileges.": "Esta operación estase executando con privilexios de administrador.", + "Interactive operation": "Operación interactiva", + "This operation is running interactively.": "Esta operación estase executando de forma interactiva.", + "You will likely need to interact with the installer.": "Probablemente terá que interactuar co instalador.", + "Integrity checks skipped": "Omitíronse as comprobacións de integridade", + "Integrity checks will not be performed during this operation.": "Non se realizarán comprobacións de integridade durante esta operación.", + "Proceed at your own risk.": "Continúe baixo a súa responsabilidade.", + "Close": "Pechar", + "Loading...": "Cargando...", + "Installer SHA256": "SHA256 do instalador", + "Homepage": "Páxina principal", + "Author": "Autor", + "Publisher": "Publicador", + "License": "Licenza", + "Manifest": "Manifesto", + "Installer Type": "Tipo de instalador", + "Size": "Tamaño", + "Installer URL": "URL do instalador", + "Last updated:": "Última actualización:", + "Release notes URL": "URL das notas da versión", + "Package details": "Detalles do paquete", + "Dependencies:": "Dependencias:", + "Release notes": "Notas da versión", + "Version": "Versión", + "Install as administrator": "Instalar como administrador", + "Update to version {0}": "Actualizar á versión {0}", + "Installed Version": "Versión instalada", + "Update as administrator": "Actualizar como administrador", + "Interactive update": "Actualización interactiva", + "Uninstall as administrator": "Desinstalar como administrador", + "Interactive uninstall": "Desinstalación interactiva", + "Uninstall and remove data": "Desinstalar e eliminar os datos", + "Not available": "Non dispoñible", + "Installer SHA512": "SHA512 do instalador", + "Unknown size": "Tamaño descoñecido", + "No dependencies specified": "Non se especificaron dependencias", + "mandatory": "obrigatorio", + "optional": "opcional", + "UniGetUI {0} is ready to be installed.": "UniGetUI {0} está listo para instalarse.", + "The update process will start after closing UniGetUI": "O proceso de actualización iniciarase despois de pechar UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI executouse como administrador, o que non se recomenda. Ao executar UniGetUI como administrador, TODAS as operacións iniciadas desde UniGetUI terán privilexios de administrador. Aínda pode usar o programa, pero recomendámoslle encarecidamente non executar UniGetUI con privilexios de administrador.", + "Share anonymous usage data": "Compartir datos de uso anónimos", + "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI recolle datos de uso anónimos para mellorar a experiencia de usuario.", + "Accept": "Aceptar", + "You have installed UniGetUI Version {0}": "Instalou UniGetUI versión {0}", + "Disclaimer": "Exención de responsabilidade", + "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI non está relacionado con ningún dos xestores de paquetes compatibles. UniGetUI é un proxecto independente.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI usa as seguintes bibliotecas. Sen elas, UniGetUI non sería posible.", + "{0} homepage": "Páxina principal de {0}", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "Verbose": "Detallado", + "1 - Errors": "1 - Erros", + "2 - Warnings": "2 - Avisos", + "3 - Information (less)": "3 - Información (menos)", + "4 - Information (more)": "4 - Información (máis)", + "5 - information (debug)": "5 - Información (depuración)", + "Warning": "Aviso", + "The following settings may pose a security risk, hence they are disabled by default.": "Os seguintes axustes poden supoñer un risco de seguranza, polo que están desactivados por defecto.", + "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Active os axustes seguintes se e só se entende completamente o que fan e as implicacións que poden ter.", + "The settings will list, in their descriptions, the potential security issues they may have.": "Os axustes indicarán, nas súas descricións, os posibles problemas de seguranza que poden ter.", + "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "A copia de seguranza incluirá a lista completa dos paquetes instalados e as súas opcións de instalación. Tamén se gardarán as actualizacións ignoradas e as versións omitidas.", + "The backup will NOT include any binary file nor any program's saved data.": "A copia de seguranza NON incluirá ningún ficheiro binario nin os datos gardados de ningún programa.", + "The size of the backup is estimated to be less than 1MB.": "Estímase que o tamaño da copia de seguranza será inferior a 1 MB.", + "The backup will be performed after login.": "A copia de seguranza realizarase despois de iniciar sesión.", + "{pcName} installed packages": "Paquetes instalados en {pcName}", + "Current status: Not logged in": "Estado actual: sesión non iniciada", + "You are logged in as {0} (@{1})": "Iniciou sesión como {0} (@{1})", + "Nice! Backups will be uploaded to a private gist on your account": "Xenial! As copias de seguranza cargaranse nun gist privado da súa conta", + "Select backup": "Seleccionar copia de seguranza", + "UniGetUI Settings": "Axustes de UniGetUI", + "Allow pre-release versions": "Permitir versións preliminares", + "Apply": "Aplicar", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por motivos de seguranza, os argumentos personalizados da liña de comandos están desactivados por defecto. Vaia aos axustes de seguranza de UniGetUI para cambialo.", + "Go to UniGetUI security settings": "Ir aos axustes de seguranza de UniGetUI", + "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "As seguintes opcións aplicaranse por defecto cada vez que se instale, actualice ou desinstale un paquete de {0}.", + "Package's default": "Predeterminado do paquete", + "Install location can't be changed for {0} packages": "A localización de instalación non se pode cambiar para os paquetes de {0}", + "The local icon cache currently takes {0} MB": "A caché local de iconas ocupa actualmente {0} MB", + "Username": "Nome de usuario", + "Password": "Contrasinal", + "Credentials": "Credenciais", + "It is not guaranteed that the provided credentials will be stored safely": "Non se garante que as credenciais proporcionadas se almacenen de forma segura", + "Partially": "Parcialmente", + "Package manager": "Xestor de paquetes", + "Compatible with proxy": "Compatible con proxy", + "Compatible with authentication": "Compatible con autenticación", + "Proxy compatibility table": "Táboa de compatibilidade con proxy", + "{0} settings": "Axustes de {0}", + "{0} status": "Estado de {0}", + "Default installation options for {0} packages": "Opcións de instalación predeterminadas para os paquetes de {0}", + "Expand version": "Expandir versión", + "The executable file for {0} was not found": "Non se atopou o ficheiro executable de {0}", + "{pm} is disabled": "{pm} está desactivado", + "Enable it to install packages from {pm}.": "Actíveo para instalar paquetes de {pm}.", + "{pm} is enabled and ready to go": "{pm} está activado e listo para usar", + "{pm} version:": "Versión de {pm}:", + "{pm} was not found!": "Non se atopou {pm}!", + "You may need to install {pm} in order to use it with UniGetUI.": "Pode que necesite instalar {pm} para usalo con UniGetUI.", + "Scoop Installer - UniGetUI": "Instalador de Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstalador de Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Limpando a caché de Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicie UniGetUI para aplicar completamente os cambios", + "Restart UniGetUI": "Reiniciar UniGetUI", + "Manage {0} sources": "Xestionar fontes de {0}", + "Add source": "Engadir fonte", + "Add": "Engadir", + "Source name": "Nome da fonte", + "Source URL": "URL da fonte", + "Other": "Outro", + "No minimum age": "Sen antigüidade mínima", + "1 day": "1 día", + "{0} days": "{0} días", + "Custom...": "Personalizado...", + "{0} minutes": "{0} minutos", + "1 hour": "unha hora", + "{0} hours": "{0} horas", + "1 week": "1 semana", + "Supports release dates": "Admite datas de lanzamento", + "Release date support per package manager": "Compatibilidade con datas de lanzamento por xestor de paquetes", + "UniGetUI Version {0}": "Versión de UniGetUI {0}", + "Search for packages": "Buscar paquetes", + "Local": "Local", + "OK": "OK", + "{0} packages were found, {1} of which match the specified filters.": "Atopáronse {0} paquetes, dos que {1} coinciden cos filtros especificados.", + "{0} selected": "{0} seleccionados", + "(Last checked: {0})": "(Última comprobación: {0})", + "Enabled": "Activado", + "Disabled": "Desactivado", + "More info": "Máis información", + "GitHub account": "Conta de GitHub", + "Log in with GitHub to enable cloud package backup.": "Inicia sesión con GitHub para activar a copia de seguridade na nube dos paquetes.", + "More details": "Máis detalles", + "Log in": "Iniciar sesión", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se a copia de seguridade na nube está activada, gardarase como un GitHub Gist nesta conta", + "Log out": "Pechar sesión", + "About UniGetUI": "Acerca de UniGetUI", + "About": "Acerca de", + "Third-party licenses": "Licenzas de terceiros", + "Contributors": "Colaboradores", + "Translators": "Tradutores", + "Manage shortcuts": "Xestionar accesos directos", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI detectou os seguintes accesos directos do escritorio que se poden eliminar automaticamente en futuras actualizacións", + "Do you really want to reset this list? This action cannot be reverted.": "Queres realmente restablecer esta lista? Esta acción non se pode desfacer.", + "Open in explorer": "Abrir no explorador", + "Remove from list": "Eliminar da lista", + "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Cando se detecten novos accesos directos, elimínaos automaticamente en vez de mostrar este diálogo.", + "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI recolle datos de uso anónimos co único propósito de comprender e mellorar a experiencia de usuario.", + "More details about the shared data and how it will be processed": "Máis detalles sobre os datos compartidos e como se procesarán", + "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aceptas que UniGetUI recolla e envíe estatísticas de uso anónimas, co único propósito de comprender e mellorar a experiencia de usuario?", + "Decline": "Rexeitar", + "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Non se recolle nin se envía información persoal, e os datos recollidos están anonimizados, polo que non se poden rastrexar ata ti.", + "Toggle navigation panel": "Mostrar ou ocultar o panel de navegación", + "Minimize": "Minimizar", + "Maximize": "Maximizar", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI é unha aplicación que facilita a xestión do software, ofrecendo unha interface gráfica todo en un para os xestores de paquetes de liña de comandos.", + "Useful links": "Ligazóns útiles", + "UniGetUI Homepage": "Páxina principal de UniGetUI", + "Report an issue or submit a feature request": "Informar dun problema ou enviar unha solicitude de nova funcionalidade", + "UniGetUI Repository": "Repositorio de UniGetUI", + "View GitHub Profile": "Ver o perfil de GitHub", + "UniGetUI License": "Licenza de UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Usar UniGetUI implica a aceptación da licenza MIT", + "Become a translator": "Convértete en tradutor", + "View page on browser": "Ver a páxina no navegador", + "Copy to clipboard": "Copiar ao portapapeis", + "Export to a file": "Exportar a un ficheiro", + "Log level:": "Nivel de rexistro:", + "Reload log": "Recargar rexistro", + "Export log": "Exportar rexistro", + "UniGetUI Log": "Rexistro de UniGetUI", + "Text": "Texto", + "Change how operations request administrator rights": "Cambiar como as operacións solicitan permisos de administrador", + "Restrictions on package operations": "Restricións nas operacións de paquetes", + "Restrictions on package managers": "Restricións nos xestores de paquetes", + "Restrictions when importing package bundles": "Restricións ao importar lotes de paquetes", + "Ask for administrator privileges once for each batch of operations": "Solicitar privilexios de administrador unha vez por cada lote de operacións", + "Ask only once for administrator privileges": "Solicitar privilexios de administrador só unha vez", + "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Prohibir calquera tipo de elevación mediante UniGetUI Elevator ou GSudo", + "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Esta opción CAUSARÁ problemas. Calquera operación que non poida elevarse por si mesma FALLARÁ. Instalar/actualizar/desinstalar como administrador NON FUNCIONARÁ.", + "Allow custom command-line arguments": "Permitir argumentos personalizados da liña de comandos", + "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Os argumentos personalizados da liña de comandos poden cambiar a forma en que se instalan, actualizan ou desinstalan os programas, dun xeito que UniGetUI non pode controlar. O uso de liñas de comandos personalizadas pode causar fallos nos paquetes. Procede con cautela.", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Ignorar os comandos personalizados previos e posteriores á instalación ao importar paquetes desde un lote", + "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Os comandos previos e posteriores á instalación executaranse antes e despois de que un paquete se instale, actualice ou desinstale. Ten en conta que poden causar problemas se non se usan con coidado", + "Allow changing the paths for package manager executables": "Permitir cambiar as rutas dos executables dos xestores de paquetes", + "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Ao activar isto, permítese cambiar o ficheiro executable usado para interactuar cos xestores de paquetes. Aínda que isto permite unha personalización máis detallada dos procesos de instalación, tamén pode ser perigoso", + "Allow importing custom command-line arguments when importing packages from a bundle": "Permitir importar argumentos personalizados da liña de comandos ao importar paquetes desde un lote", + "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "Os argumentos da liña de comandos malformados poden causar fallos nos paquetes, ou incluso permitir que un actor malicioso obteña execución privilexiada. Por iso, a importación de argumentos personalizados da liña de comandos está desactivada por defecto", + "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Permitir importar comandos personalizados previos e posteriores á instalación ao importar paquetes desde un lote", + "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "Os comandos previos e posteriores á instalación poden facer cousas moi prexudiciais no dispositivo, se están deseñados para iso. Pode ser moi perigoso importar os comandos desde un lote, a menos que se confíe na orixe dese lote de paquetes", + "Administrator rights and other dangerous settings": "Permisos de administrador e outras configuracións perigosas", + "Package backup": "Copia de seguridade de paquetes", + "Cloud package backup": "Copia de seguridade na nube dos paquetes", + "Local package backup": "Copia de seguridade local dos paquetes", + "Local backup advanced options": "Opcións avanzadas da copia de seguridade local", + "Log in with GitHub": "Iniciar sesión con GitHub", + "Log out from GitHub": "Pechar sesión en GitHub", + "Periodically perform a cloud backup of the installed packages": "Realizar periodicamente unha copia de seguridade na nube dos paquetes instalados", + "Cloud backup uses a private GitHub Gist to store a list of installed packages": "A copia de seguridade na nube usa un GitHub Gist privado para gardar unha lista dos paquetes instalados", + "Perform a cloud backup now": "Realizar agora unha copia de seguridade na nube", + "Backup": "Copia de seguridade", + "Restore a backup from the cloud": "Restaurar unha copia de seguridade desde a nube", + "Begin the process to select a cloud backup and review which packages to restore": "Iniciar o proceso para seleccionar unha copia de seguridade na nube e revisar que paquetes restaurar", + "Periodically perform a local backup of the installed packages": "Realizar periodicamente unha copia de seguridade local dos paquetes instalados", + "Perform a local backup now": "Realizar agora unha copia de seguridade local", + "Change backup output directory": "Cambiar o directorio de destino da copia de seguridade", + "Set a custom backup file name": "Establecer un nome personalizado para o ficheiro de copia de seguridade", + "Leave empty for default": "Deixar baleiro para usar o predeterminado", + "Add a timestamp to the backup file names": "Engadir unha marca temporal aos nomes dos ficheiros de copia de seguridade", + "Backup and Restore": "Copia de seguridade e restauración", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Activar a API en segundo plano (Widgets de UniGetUI e Sharing, porto 7058)", + "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Agardar a que o dispositivo estea conectado a internet antes de tentar realizar tarefas que requiran conexión a internet.", + "Disable the 1-minute timeout for package-related operations": "Desactivar o tempo límite de 1 minuto para as operacións relacionadas con paquetes", + "Use installed GSudo instead of UniGetUI Elevator": "Usar o GSudo instalado en vez de UniGetUI Elevator", + "Use a custom icon and screenshot database URL": "Usar un URL personalizado para a base de datos de iconas e capturas de pantalla", + "Enable background CPU Usage optimizations (see Pull Request #3278)": "Activar as optimizacións de uso da CPU en segundo plano (consulta a Pull Request #3278)", + "Perform integrity checks at startup": "Realizar comprobacións de integridade ao iniciar", + "When batch installing packages from a bundle, install also packages that are already installed": "Ao instalar paquetes en lote desde un conxunto, instalar tamén os paquetes que xa están instalados", + "Experimental settings and developer options": "Configuración experimental e opcións de desenvolvedor", + "Show UniGetUI's version and build number on the titlebar.": "Mostrar a versión de UniGetUI na barra de título.", + "Language": "Idioma", + "UniGetUI updater": "Actualizador de UniGetUI", + "Telemetry": "Telemetría", + "Manage UniGetUI settings": "Xestionar a configuración de UniGetUI", + "Related settings": "Configuración relacionada", + "Update UniGetUI automatically": "Actualizar UniGetUI automaticamente", + "Check for updates": "Comprobar actualizacións", + "Install prerelease versions of UniGetUI": "Instalar versións preliminares de UniGetUI", + "Manage telemetry settings": "Xestionar a configuración da telemetría", + "Manage": "Xestionar", + "Import settings from a local file": "Importar a configuración desde un ficheiro local", + "Import": "Importar", + "Export settings to a local file": "Exportar a configuración a un ficheiro local", + "Export": "Exportar", + "Reset UniGetUI": "Restablecer UniGetUI", + "User interface preferences": "Preferencias da interface de usuario", + "Application theme, startup page, package icons, clear successful installs automatically": "Tema da aplicación, páxina de inicio, iconas dos paquetes, limpar automaticamente as instalacións completadas correctamente", + "General preferences": "Preferencias xerais", + "UniGetUI display language:": "Idioma da interface de UniGetUI:", + "Is your language missing or incomplete?": "Falta o teu idioma ou está incompleto?", + "Appearance": "Aparencia", + "UniGetUI on the background and system tray": "UniGetUI en segundo plano e na bandexa do sistema", + "Package lists": "Listas de paquetes", + "Close UniGetUI to the system tray": "Pechar UniGetUI na bandexa do sistema", + "Manage UniGetUI autostart behaviour": "Xestionar o comportamento de inicio automático de UniGetUI", + "Show package icons on package lists": "Mostrar iconas dos paquetes nas listas de paquetes", + "Clear cache": "Limpar a caché", + "Select upgradable packages by default": "Seleccionar por defecto os paquetes actualizables", + "Light": "Claro", + "Dark": "Escuro", + "Follow system color scheme": "Seguir o esquema de cores do sistema", + "Application theme:": "Tema da aplicación:", + "Discover Packages": "Descubrir paquetes", + "Software Updates": "Actualizacións de software", + "Installed Packages": "Paquetes instalados", + "Package Bundles": "Conxuntos de paquetes", + "Settings": "Configuración", + "UniGetUI startup page:": "Páxina de inicio de UniGetUI:", + "Proxy settings": "Configuración do proxy", + "Other settings": "Outras opcións", + "Connect the internet using a custom proxy": "Conectarse a internet usando un proxy personalizado", + "Please note that not all package managers may fully support this feature": "Ten en conta que non todos os xestores de paquetes poden admitir completamente esta función", + "Proxy URL": "URL do proxy", + "Enter proxy URL here": "Introduce aquí a URL do proxy", + "Authenticate to the proxy with a user and a password": "Autenticarse no proxy cun usuario e un contrasinal", + "Internet and proxy settings": "Configuración de internet e do proxy", + "Package manager preferences": "Preferencias dos xestores de paquetes", + "Ready": "Listo", + "Not found": "Non atopado", + "Notification preferences": "Preferencias de notificacións", + "Notification types": "Tipos de notificación", + "The system tray icon must be enabled in order for notifications to work": "A icona da bandexa do sistema debe estar activada para que as notificacións funcionen", + "Enable UniGetUI notifications": "Activar as notificacións de UniGetUI", + "Show a notification when there are available updates": "Mostrar unha notificación cando haxa actualizacións dispoñibles", + "Show a silent notification when an operation is running": "Mostrar unha notificación silenciosa cando unha operación estea en execución", + "Show a notification when an operation fails": "Mostrar unha notificación cando falle unha operación", + "Show a notification when an operation finishes successfully": "Mostrar unha notificación cando unha operación remate correctamente", + "Concurrency and execution": "Concorrencia e execución", + "Automatic desktop shortcut remover": "Eliminador automático de accesos directos do escritorio", + "Choose how many operations should be performed in parallel": "Escolle cantas operacións se deben realizar en paralelo", + "Clear successful operations from the operation list after a 5 second delay": "Eliminar da lista de operacións as operacións completadas correctamente tras un atraso de 5 segundos", + "Download operations are not affected by this setting": "As operacións de descarga non se ven afectadas por esta configuración", + "Try to kill the processes that refuse to close when requested to": "Tentar finalizar os procesos que se negan a pecharse cando se lles solicita", + "You may lose unsaved data": "Podes perder datos sen gardar", + "Ask to delete desktop shortcuts created during an install or upgrade.": "Preguntar se se deben eliminar os accesos directos do escritorio creados durante unha instalación ou actualización.", + "Package update preferences": "Preferencias de actualización de paquetes", + "Update check frequency, automatically install updates, etc.": "Frecuencia de comprobación de actualizacións, instalación automática de actualizacións, etc.", + "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Reducir os avisos do UAC, elevar as instalacións por defecto, desbloquear determinadas funcións perigosas, etc.", + "Package operation preferences": "Preferencias das operacións de paquetes", + "Enable {pm}": "Activar {pm}", + "Not finding the file you are looking for? Make sure it has been added to path.": "Non atopas o ficheiro que procuras? Asegúrate de que se engadiu ao PATH.", + "For security reasons, changing the executable file is disabled by default": "Por razóns de seguridade, cambiar o ficheiro executábel está desactivado por defecto", + "Change this": "Cambiar isto", + "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecciona o executábel que se vai usar. A seguinte lista mostra os executábeis atopados por UniGetUI", + "Current executable file:": "Ficheiro executábel actual:", + "Ignore packages from {pm} when showing a notification about updates": "Ignorar os paquetes de {pm} ao mostrar unha notificación sobre actualizacións", + "Update security": "Seguridade das actualizacións", + "Use global setting": "Usar a configuración global", + "e.g. 10": "p. ex. 10", + "{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", + "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", + "Minimum age for updates": "Antigüidade mínima das actualizacións", + "Custom minimum age (days)": "Antigüidade mínima personalizada (días)", + "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, ", + "Advanced options": "Opcións avanzadas", + "Reset WinGet": "Restablecer WinGet", + "This may help if no packages are listed": "Isto pode axudar se non se listan paquetes", + "Force install location parameter when updating packages with custom locations": "Forzar o parámetro de localización de instalación ao actualizar paquetes con localizacións personalizadas", + "Use bundled WinGet instead of system WinGet": "Usar o WinGet incluído en vez do WinGet do sistema", + "This may help if WinGet packages are not shown": "Isto pode axudar se non se mostran os paquetes de WinGet", + "Install Scoop": "Instalar Scoop", + "Uninstall Scoop (and its packages)": "Desinstalar Scoop (e os seus paquetes)", + "Run cleanup and clear cache": "Executar a limpeza e limpar a caché", + "Run": "Executar", + "Enable Scoop cleanup on launch": "Activar a limpeza de Scoop ao iniciar", + "Use system Chocolatey": "Usar o Chocolatey do sistema", + "Default vcpkg triplet": "Triplete predeterminado de vcpkg", + "Change vcpkg root location": "Cambiar a localización raíz de vcpkg", + "Language, theme and other miscellaneous preferences": "Idioma, tema e outras preferencias diversas", + "Show notifications on different events": "Mostrar notificacións en distintos eventos", + "Change how UniGetUI checks and installs available updates for your packages": "Cambiar como UniGetUI comproba e instala as actualizacións dispoñibles para os teus paquetes", + "Automatically save a list of all your installed packages to easily restore them.": "Gardar automaticamente unha lista de todos os paquetes instalados para poder restauralos facilmente.", + "Enable and disable package managers, change default install options, etc.": "Activar e desactivar xestores de paquetes, cambiar as opcións predeterminadas de instalación, etc.", + "Internet connection settings": "Configuración da conexión a Internet", + "Proxy settings, etc.": "Configuración do proxy, etc.", + "Beta features and other options that shouldn't be touched": "Funcións beta e outras opcións que non se deberían tocar", + "Update checking": "Comprobación de actualizacións", + "Automatic updates": "Actualizacións automáticas", + "Check for package updates periodically": "Comprobar periodicamente as actualizacións dos paquetes", + "Check for updates every:": "Comprobar actualizacións cada:", + "Install available updates automatically": "Instalar automaticamente as actualizacións dispoñibles", + "Do not automatically install updates when the network connection is metered": "Non instalar automaticamente as actualizacións cando a conexión de rede sexa de uso medido", + "Do not automatically install updates when the device runs on battery": "Non instalar automaticamente as actualizacións cando o dispositivo estea funcionando con batería", + "Do not automatically install updates when the battery saver is on": "Non instalar automaticamente as actualizacións cando o aforro de batería estea activado", + "Only show updates that are at least the specified number of days old": "Mostrar só as actualizacións que teñan polo menos o número especificado de días de antigüidade", + "Change how UniGetUI handles install, update and uninstall operations.": "Cambiar como UniGetUI xestiona as operacións de instalación, actualización e desinstalación.", + "Package Managers": "Xestores de paquetes", + "More": "Máis", + "Package Manager logs": "Rexistros dos xestores de paquetes", + "Operation history": "Historial de operacións", + "Help": "Axuda", + "Quit UniGetUI": "Saír de UniGetUI", + "Order by:": "Ordenar por:", + "Name": "Nome", + "Id": "ID", + "Ascendant": "Ascendente", + "Descendant": "Descendente", + "View mode:": "Modo de vista:", + "Filters": "Filtros", + "Sources": "Fontes", + "Search for packages to start": "Busca paquetes para comezar", + "Select all": "Seleccionar todo", + "Clear selection": "Limpar a selección", + "Instant search": "Busca instantánea", + "Distinguish between uppercase and lowercase": "Distinguir entre maiúsculas e minúsculas", + "Ignore special characters": "Ignorar os caracteres especiais", + "Search mode": "Modo de busca", + "Both": "Ambos", + "Exact match": "Coincidencia exacta", + "Show similar packages": "Mostrar paquetes semellantes", + "Nothing to share": "Nada para compartir", + "Please select a package first.": "Selecciona primeiro un paquete.", + "Share link copied": "Ligazón para compartir copiada", + "The share link for {0} has been copied to the clipboard.": "A ligazón para compartir de {0} copiouse no portapapeis.", + "No results were found matching the input criteria": "Non se atoparon resultados que coincidan cos criterios introducidos", + "No packages were found": "Non se atoparon paquetes", + "Loading packages": "Cargando paquetes", + "Skip integrity checks": "Omitir as comprobacións de integridade", + "Download selected installers": "Descargar os instaladores seleccionados", + "Install selection": "Instalar a selección", + "Install options": "Opcións de instalación", + "Share": "Compartir", + "Add selection to bundle": "Engadir a selección ao lote", + "Download installer": "Descargar o instalador", + "Share this package": "Compartir este paquete", + "Uninstall selection": "Desinstalar a selección", + "Uninstall options": "Opcións de desinstalación", + "Ignore selected packages": "Ignorar os paquetes seleccionados", + "Open install location": "Abrir a localización da instalación", + "Reinstall package": "Reinstalar o paquete", + "Uninstall package, then reinstall it": "Desinstalar o paquete e despois reinstalalo", + "Ignore updates for this package": "Ignorar as actualizacións deste paquete", + "Do not ignore updates for this package anymore": "Deixar de ignorar as actualizacións deste paquete", + "Add packages or open an existing package bundle": "Engadir paquetes ou abrir un lote de paquetes existente", + "Add packages to start": "Engadir paquetes para comezar", + "The current bundle has no packages. Add some packages to get started": "O lote actual non ten paquetes. Engade algúns paquetes para comezar", + "New": "Novo", + "Save as": "Gardar como", + "Remove selection from bundle": "Eliminar a selección do lote", + "Skip hash checks": "Omitir as comprobacións de hash", + "The package bundle is not valid": "O lote de paquetes non é válido", + "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "O lote que intentas cargar parece non ser válido. Comproba o ficheiro e téntao de novo.", + "Package bundle": "Lote de paquetes", + "Could not create bundle": "Non se puido crear o lote", + "The package bundle could not be created due to an error.": "Non se puido crear o lote de paquetes debido a un erro.", + "Unsaved changes": "Cambios sen gardar", + "Discard changes": "Descartar os cambios", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Tes cambios sen gardar no lote actual. Queres descartalos?", + "Bundle security report": "Informe de seguridade do lote", + "The bundle contained restricted content": "O lote contiña contido restrinxido", + "Hooray! No updates were found.": "Hurra! Non se atoparon actualizacións.", + "Everything is up to date": "Todo está ao día", + "Uninstall selected packages": "Desinstalar os paquetes seleccionados", + "Update selection": "Actualizar a selección", + "Update options": "Opcións de actualización", + "Uninstall package, then update it": "Desinstalar o paquete e despois actualizalo", + "Uninstall package": "Desinstalar o paquete", + "Skip this version": "Omitir esta versión", + "Pause updates for": "Pausar as actualizacións durante", + "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "O xestor de paquetes de Rust.
Contén: Bibliotecas de Rust e programas escritos en Rust", + "The classical package manager for windows. You'll find everything there.
Contains: General Software": "O xestor de paquetes clásico para Windows. Atoparás de todo alí.
Contén: Software xeral", + "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repositorio cheo de ferramentas e executables deseñados pensando no ecosistema .NET de Microsoft.
Contén: Ferramentas e scripts relacionados con .NET", + "NuPkg (zipped manifest)": "NuPkg (manifesto comprimido)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "O xestor de paquetes que lle faltaba a macOS (ou a Linux).
Contén: Fórmulas, Casks", + "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "O xestor de paquetes de Node JS. Cheo de bibliotecas e outras utilidades que orbitan o mundo de JavaScript
Contén: Bibliotecas JavaScript de Node e outras utilidades relacionadas", + "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "O xestor de bibliotecas de Python. Cheo de bibliotecas de Python e doutras utilidades relacionadas con Python
Contén: Bibliotecas de Python e utilidades relacionadas", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "O xestor de paquetes de PowerShell. Atopa bibliotecas e scripts para ampliar as capacidades de PowerShell
Contén: Módulos, scripts, cmdlets", + "extracted": "extraído", + "Scoop package": "paquete de Scoop", + "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "Gran repositorio de utilidades descoñecidas pero útiles e doutros paquetes interesantes.
Contén: Utilidades, programas de liña de comandos, software xeral (requírese o bucket extras)", + "library": "biblioteca", + "feature": "característica", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "Un popular xestor de bibliotecas de C/C++. Cheo de bibliotecas de C/C++ e doutras utilidades relacionadas con C/C++
Contén: Bibliotecas de C/C++ e utilidades relacionadas", + "option": "opción", + "This package cannot be installed from an elevated context.": "Este paquete non pode instalarse desde un contexto elevado.", + "Please run UniGetUI as a regular user and try again.": "Executa UniGetUI como usuario normal e téntao de novo.", + "Please check the installation options for this package and try again": "Comproba as opcións de instalación deste paquete e téntao de novo", + "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "O xestor de paquetes oficial de Microsoft. Cheo de paquetes coñecidos e verificados
Contén: Software xeral, aplicacións de Microsoft Store", + "Local PC": "PC local", + "Android Subsystem": "Subsistema Android", + "Operation on queue (position {0})...": "Operación na cola (posición {0})...", + "Click here for more details": "Fai clic aquí para máis detalles", + "Operation canceled by user": "Operación cancelada polo usuario", + "Running PreOperation ({0}/{1})...": "Executando PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} de {1} fallou e estaba marcada como necesaria. Abortando...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} de {1} rematou co resultado {2}", + "Starting operation...": "Iniciando operación...", + "Running PostOperation ({0}/{1})...": "Executando PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} de {1} fallou e estaba marcada como necesaria. Abortando...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} de {1} rematou co resultado {2}", + "{package} installer download": "Descarga do instalador de {package}", + "{0} installer is being downloaded": "Estase descargando o instalador de {0}", + "Download succeeded": "Descarga completada correctamente", + "{package} installer was downloaded successfully": "O instalador de {package} descargouse correctamente", + "Download failed": "Fallou a descarga", + "{package} installer could not be downloaded": "Non foi posible descargar o instalador de {package}", + "{package} Installation": "Instalación de {package}", + "{0} is being installed": "Estase instalando {0}", + "Installation succeeded": "Instalación completada correctamente", + "{package} was installed successfully": "{package} instalouse correctamente", + "Installation failed": "Fallou a instalación", + "{package} could not be installed": "Non foi posible instalar {package}", + "{package} Update": "Actualización de {package}", + "{0} is being updated to version {1}": "Estase actualizando {0} á versión {1}", + "Update succeeded": "Actualización completada correctamente", + "{package} was updated successfully": "{package} actualizouse correctamente", + "Update failed": "Fallou a actualización", + "{package} could not be updated": "Non foi posible actualizar {package}", + "{package} Uninstall": "Desinstalación de {package}", + "{0} is being uninstalled": "Estase desinstalando {0}", + "Uninstall succeeded": "Desinstalación completada correctamente", + "{package} was uninstalled successfully": "{package} desinstalouse correctamente", + "Uninstall failed": "Fallou a desinstalación", + "{package} could not be uninstalled": "Non foi posible desinstalar {package}", + "Adding source {source}": "Engadindo a fonte {source}", + "Adding source {source} to {manager}": "Engadindo a fonte {source} a {manager}", + "Source added successfully": "Fonte engadida correctamente", + "The source {source} was added to {manager} successfully": "A fonte {source} engadiuse a {manager} correctamente", + "Could not add source": "Non foi posible engadir a fonte", + "Could not add source {source} to {manager}": "Non foi posible engadir a fonte {source} a {manager}", + "Removing source {source}": "Eliminando a fonte {source}", + "Removing source {source} from {manager}": "Eliminando a fonte {source} de {manager}", + "Source removed successfully": "Fonte eliminada correctamente", + "The source {source} was removed from {manager} successfully": "A fonte {source} eliminouse de {manager} correctamente", + "Could not remove source": "Non foi posible eliminar a fonte", + "Could not remove source {source} from {manager}": "Non foi posible eliminar a fonte {source} de {manager}", + "The package manager \"{0}\" was not found": "Non se atopou o xestor de paquetes \"{0}\"", + "The package manager \"{0}\" is disabled": "O xestor de paquetes \"{0}\" está desactivado", + "There is an error with the configuration of the package manager \"{0}\"": "Hai un erro na configuración do xestor de paquetes \"{0}\"", + "The package \"{0}\" was not found on the package manager \"{1}\"": "O paquete \"{0}\" non se atopou no xestor de paquetes \"{1}\"", + "{0} is disabled": "{0} está desactivado", + "Something went wrong": "Algo saíu mal", + "An interal error occurred. Please view the log for further details.": "Produciuse un erro interno. Consulta o rexistro para máis detalles.", + "No applicable installer was found for the package {0}": "Non se atopou ningún instalador aplicable para o paquete {0}", + "We are checking for updates.": "Estamos comprobando se hai actualizacións.", + "Please wait": "Agarda, por favor", + "UniGetUI version {0} is being downloaded.": "Estase descargando UniGetUI versión {0}.", + "This may take a minute or two": "Isto pode levar un ou dous minutos", + "The installer authenticity could not be verified.": "Non foi posible verificar a autenticidade do instalador.", + "The update process has been aborted.": "O proceso de actualización foi abortado.", + "Great! You are on the latest version.": "Xenial! Tes a versión máis recente.", + "There are no new UniGetUI versions to be installed": "Non hai novas versións de UniGetUI para instalar", + "An error occurred when checking for updates: ": "Produciuse un erro ao comprobar as actualizacións: ", + "UniGetUI is being updated...": "UniGetUI estase actualizando...", + "Something went wrong while launching the updater.": "Algo saíu mal ao iniciar o actualizador.", + "Please try again later": "Téntao de novo máis tarde", + "Integrity checks will not be performed during this operation": "Non se realizarán comprobacións de integridade durante esta operación", + "This is not recommended.": "Isto non se recomenda.", + "Run now": "Executar agora", + "Run next": "Executar a continuación", + "Run last": "Executar ao final", + "Retry as administrator": "Tentar de novo como administrador", + "Retry interactively": "Tentar de novo de forma interactiva", + "Retry skipping integrity checks": "Tentar de novo omitindo as comprobacións de integridade", + "Installation options": "Opcións de instalación", + "Show in explorer": "Mostrar no explorador", + "This package is already installed": "Este paquete xa está instalado", + "This package can be upgraded to version {0}": "Este paquete pode actualizarse á versión {0}", + "Updates for this package are ignored": "As actualizacións deste paquete están ignoradas", + "This package is being processed": "Este paquete estase procesando", + "This package is not available": "Este paquete non está dispoñible", + "Select the source you want to add:": "Selecciona a fonte que queres engadir:", + "Source name:": "Nome da fonte:", + "Source URL:": "URL da fonte:", + "An error occurred": "Produciuse un erro", + "An error occurred when adding the source: ": "Produciuse un erro ao engadir a fonte: ", + "Package management made easy": "Xestión de paquetes sinxela", + "version {0}": "versión {0}", + "[RAN AS ADMINISTRATOR]": "[EXECUTADO COMO ADMINISTRADOR]", + "Portable mode": "Modo portátil\n", + "DEBUG BUILD": "COMPILACIÓN DE DEPURACIÓN", + "Available Updates": "Actualizacións dispoñibles", + "Show UniGetUI": "Mostrar UniGetUI", + "Quit": "Saír", + "Attention required": "Requírese atención", + "Restart required": "Requírese reinicio", + "1 update is available": "Hai 1 actualización dispoñible", + "{0} updates are available": "Hai {0} actualizacións dispoñibles", + "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aquí podes cambiar o comportamento de UniGetUI con respecto aos seguintes atallos. Se marcas un atallo, UniGetUI eliminararao se se crea nunha futura actualización. Se o desmarcas, o atallo conservarase", + "Manual scan": "Análise manual", + "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Analizaranse os atallos existentes no teu escritorio e terás que escoller cales queres conservar e cales queres eliminar.", + "Continue": "Continuar", + "Delete?": "Eliminar?", + "Missing dependency": "Dependencia que falta", + "Not right now": "Agora non", + "Install {0}": "Instalar {0}", + "UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI require {0} para funcionar, pero non se atopou no teu sistema.", + "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Fai clic en Instalar para comezar o proceso de instalación. Se omites a instalación, é posible que UniGetUI non funcione como se espera.", + "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Como alternativa, tamén podes instalar {0} executando o seguinte comando nunha ventá de Windows PowerShell:", + "Do not show this dialog again for {0}": "Non volver mostrar este diálogo para {0}", + "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Agarda mentres se instala {0}. Pode aparecer unha xanela negra (ou azul). Agarda ata que se peche.", + "{0} has been installed successfully.": "{0} instalouse correctamente.", + "Please click on \"Continue\" to continue": "Fai clic en \"Continuar\" para continuar", + "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} instalouse correctamente. Recoméndase reiniciar UniGetUI para completar a instalación", + "Restart later": "Reiniciar máis tarde", + "An error occurred:": "Produciuse un erro:", + "I understand": "Entendo", + "WinGet was repaired successfully": "WinGet reparouse correctamente", + "It is recommended to restart UniGetUI after WinGet has been repaired": "Recoméndase reiniciar UniGetUI despois de reparar WinGet", + "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Este solucionador de problemas pódese desactivar na Configuración de UniGetUI, na sección de WinGet", + "Restart": "Reiniciar", + "WinGet could not be repaired": "Non se puido reparar WinGet", + "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Produciuse un problema inesperado ao tentar reparar WinGet. Téntao de novo máis tarde", + "Are you sure you want to delete all shortcuts?": "Seguro que queres eliminar todos os atallos?", + "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "Calquera atallo novo creado durante unha instalación ou unha actualización eliminarase automaticamente, en vez de mostrar unha mensaxe de confirmación a primeira vez que se detecte.", + "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Ignoraranse os atallos creados ou modificados fóra de UniGetUI. Poderás engadilos mediante o botón {0}.", + "Are you really sure you want to enable this feature?": "Seguro de verdade que queres activar esta función?", + "No new shortcuts were found during the scan.": "Non se atopou ningún atallo novo durante a análise.", + "How to add packages to a bundle": "Como engadir paquetes a un lote", + "In order to add packages to a bundle, you will need to: ": "Para engadir paquetes a un lote, terás que: ", + "1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Vai á páxina \"{0}\" ou \"{1}\".", + "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. Localiza o(s) paquete(s) que queres engadir ao lote e selecciona a súa caixa da esquerda.", + "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. Cando estean seleccionados os paquetes que queres engadir ao lote, busca e fai clic na opción \"{0}\" da barra de ferramentas.", + "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Os teus paquetes xa estarán engadidos ao lote. Podes seguir engadindo paquetes ou exportar o lote.", + "Which backup do you want to open?": "Que copia de seguranza queres abrir?", + "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecciona a copia de seguranza que queres abrir. Máis tarde poderás revisar que paquetes queres restaurar.", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Hai operacións en curso. Saír de UniGetUI pode facer que fallen. Queres continuar?", + "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ou algún dos seus compoñentes non está ou está danado.", + "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Recoméndase encarecidamente reinstalar UniGetUI para resolver a situación.", + "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Consulta os rexistros de UniGetUI para obter máis detalles sobre o(s) ficheiro(s) afectado(s)", + "Integrity checks can be disabled from the Experimental Settings": "As comprobacións de integridade pódense desactivar na Configuración experimental", + "Repair UniGetUI": "Reparar UniGetUI", + "Live output": "Saída en directo", + "Package not found": "Paquete non atopado", + "An error occurred when attempting to show the package with Id {0}": "Produciuse un erro ao tentar mostrar o paquete co Id {0}", + "Package": "Paquete", + "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "Este lote de paquetes tiña algunhas opcións potencialmente perigosas e poden ignorarse de maneira predeterminada.", + "Entries that show in YELLOW will be IGNORED.": "As entradas que aparezan en AMARELO serán IGNORADAS.", + "Entries that show in RED will be IMPORTED.": "As entradas que aparezan en VERMELLO serán IMPORTADAS.", + "You can change this behavior on UniGetUI security settings.": "Podes cambiar este comportamento na configuración de seguranza de UniGetUI.", + "Open UniGetUI security settings": "Abrir a configuración de seguranza de UniGetUI", + "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Se modificas a configuración de seguranza, terás que volver abrir o lote para que os cambios teñan efecto.", + "Details of the report:": "Detalles do informe:", + "\"{0}\" is a local package and can't be shared": "\"{0}\" é un paquete local e non se pode compartir", + "Are you sure you want to create a new package bundle? ": "Seguro que queres crear un novo lote de paquetes? ", + "Any unsaved changes will be lost": "Perderanse os cambios non gardados", + "Warning!": "Aviso!", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "Por motivos de seguranza, os argumentos personalizados da liña de comandos están desactivados de maneira predeterminada. Vai á configuración de seguranza de UniGetUI para cambialo. ", + "Change default options": "Cambiar as opcións predeterminadas", + "Ignore future updates for this package": "Ignorar futuras actualizacións deste paquete", + "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "Por motivos de seguranza, os scripts previos e posteriores á operación están desactivados de maneira predeterminada. Vai á configuración de seguranza de UniGetUI para cambialo. ", + "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "Podes definir os comandos que se executarán antes ou despois de instalar, actualizar ou desinstalar este paquete. Executaranse nun símbolo do sistema, polo que os scripts de CMD funcionarán aquí.", + "Change this and unlock": "Cambia isto e desbloquea", + "{0} Install options are currently locked because {0} follows the default install options.": "As opcións de instalación de {0} están bloqueadas neste momento porque {0} segue as opcións de instalación predeterminadas.", + "Select the processes that should be closed before this package is installed, updated or uninstalled.": "Selecciona os procesos que deberían pecharse antes de instalar, actualizar ou desinstalar este paquete.", + "Write here the process names here, separated by commas (,)": "Escribe aquí os nomes dos procesos, separados por comas (,)", + "Unset or unknown": "Sen definir ou descoñecido", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Consulta a Saída da liña de comandos ou o Historial de operacións para obter máis información sobre o problema.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Este paquete non ten capturas de pantalla ou falta a icona? Contribúe a UniGetUI engadindo as iconas e capturas de pantalla que faltan á nosa base de datos aberta e pública.", + "Become a contributor": "Faite colaborador", + "Save": "Gardar", + "Update to {0} available": "Actualización a {0} dispoñible", + "Reinstall": "Reinstalar", + "Installer not available": "Instalador non dispoñible", + "Version:": "Versión:", + "Performing backup, please wait...": "Realizando a copia de seguranza, agarda...", + "An error occurred while logging in: ": "Produciuse un erro ao iniciar sesión: ", + "Fetching available backups...": "Obtendo as copias de seguranza dispoñibles...", + "Done!": "Feito!", + "The cloud backup has been loaded successfully.": "A copia de seguranza na nube cargouse correctamente.", + "An error occurred while loading a backup: ": "Produciuse un erro ao cargar unha copia de seguranza: ", + "Backing up packages to GitHub Gist...": "Facendo unha copia de seguranza dos paquetes en GitHub Gist...", + "Backup Successful": "Copia de seguranza realizada correctamente", + "The cloud backup completed successfully.": "A copia de seguranza na nube completouse correctamente.", + "Could not back up packages to GitHub Gist: ": "Non se puido crear a copia de seguranza dos paquetes en GitHub Gist: ", + "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "Non se garante que as credenciais proporcionadas se vaian almacenar de forma segura, así que mellor non uses as credenciais da túa conta bancaria", + "Enable the automatic WinGet troubleshooter": "Activar o solucionador automático de problemas de WinGet", + "Enable an [experimental] improved WinGet troubleshooter": "Activar un solucionador de problemas [experimental] mellorado de WinGet", + "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Engadir á lista de actualizacións ignoradas as actualizacións que fallan con 'no applicable update found'.", + "Invalid selection": "Selección non válida", + "No package was selected": "Non se seleccionou ningún paquete", + "More than 1 package was selected": "Seleccionouse máis de 1 paquete", + "List": "Lista", + "Grid": "Grella", + "Icons": "Iconas", + "\"{0}\" is a local package and does not have available details": "\"{0}\" é un paquete local e non ten detalles dispoñibles", + "\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" é un paquete local e non é compatible con esta función", + "WinGet malfunction detected": "Detectouse un fallo de WinGet", + "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Parece que WinGet non está a funcionar correctamente. Queres intentar reparar WinGet?", + "Repair WinGet": "Reparar WinGet", + "Create .ps1 script": "Crear un script .ps1", + "Add packages to bundle": "Engadir paquetes ao lote", + "Preparing packages, please wait...": "Preparando os paquetes, agarde...", + "Loading packages, please wait...": "Cargando os paquetes, agarde...", + "Saving packages, please wait...": "Gardando os paquetes, agarde...", + "The bundle was created successfully on {0}": "O lote creouse correctamente en {0}", + "Install script": "Script de instalación", + "The installation script saved to {0}": "O script de instalación gardouse en {0}", + "An error occurred while attempting to create an installation script:": "Produciuse un erro ao tentar crear un script de instalación:", + "{0} packages are being updated": "Estanse actualizando {0} paquetes", + "Error": "Erro", + "Log in failed: ": "Fallou o inicio de sesión: ", + "Log out failed: ": "Fallou o peche de sesión: ", + "Package backup settings": "Configuración da copia de seguranza de paquetes", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", - "(Number {0} in the queue)": "", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "", - "0 packages found": "", - "0 updates found": "", - "1 month": "", - "1 package was found": "", - "1 year": "", - "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "", - "A restart is required": "", - "About Qt6": "", - "About WingetUI version {0}": "", - "About the dev": "", - "Action when double-clicking packages, hide successful installations": "", - "Add a source to {0}": "", - "Add a timestamp to the backup files": "", - "Add packages or open an existing bundle": "", - "Addition succeeded": "", - "Administrator privileges preferences": "", - "Administrator rights": "", - "All files": "", - "Allow package operations to be performed in parallel": "", - "Allow parallel installs (NOT RECOMMENDED)": "", - "Allow {pm} operations to be performed in parallel": "", - "Always elevate {pm} installations by default": "", - "Always run {pm} operations with administrator rights": "", - "An unexpected error occurred:": "", - "Another source": "", - "App Name": "", - "Are these screenshots wron or blurry?": "", - "Ask for administrator rights when required": "", - "Ask once or always for administrator rights, elevate installations by default": "", - "Ask only once for administrator privileges (not recommended)": "", - "Authenticate to the proxy with an user and a password": "", - "Automatically save a list of your installed packages on your computer.": "", - "Autostart WingetUI in the notifications area": "", - "Available updates: {0}": "", - "Available updates: {0}, not finished yet...": "", - "Backup installed packages": "", - "Backup location": "", - "But here are other things you can do to learn about WingetUI even more:": "", - "By toggling a package manager off, you will no longer be able to see or update its packages.": "", - "Cache administrator rights and elevate installers by default": "", - "Cache administrator rights, but elevate installers only when required": "", - "Cache was reset successfully!": "", - "Can't {0} {1}": "", - "Cancel all operations": "", - "Change how UniGetUI installs packages, and checks and installs available updates": "", - "Change install location": "", - "Check for updates periodically": "", - "Check for updates regularly, and ask me what to do when updates are found.": "", - "Check for updates regularly, and automatically install available ones.": "", - "Check out my {0} and my {1}!": "", - "Check out some WingetUI overviews": "", - "Checking for other running instances...": "", - "Checking for updates...": "", - "Checking found instace(s)...": "", - "Choose how many operations shouls be performed in parallel": "", - "Clear finished operations": "", - "Clear successful operations": "", - "Clear the local icon cache": "", - "Clearing Scoop cache...": "", - "Close WingetUI to the notification area": "", - "Command-line Output": "", - "Compare query against": "", - "Component Information": "", - "Contribute to the icon and screenshot repository": "", - "Copy": "", - "Could not load announcements - ": "", - "Could not load announcements - HTTP status code is $CODE": "", - "Could not remove {source} from {manager}": "", - "Current Version": "", - "Current user": "", - "Custom arguments:": "", - "Custom command-line arguments:": "", - "Customize WingetUI - for hackers and advanced users only": "", - "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "", - "Default preferences - suitable for regular users": "", - "Description:": "", - "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "", - "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "", - "Disable new share API (port 7058)": "", - "Discover packages": "", - "Distinguish between\nuppercase and lowercase": "", - "Do NOT check for updates": "", - "Do an interactive install for the selected packages": "", - "Do an interactive uninstall for the selected packages": "", - "Do an interactive update for the selected packages": "", - "Do not download new app translations from GitHub automatically": "", - "Do not remove successful operations from the list automatically": "", - "Do not update package indexes on launch": "", - "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "", - "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "", - "Do you really want to uninstall {0} packages?": "", - "Do you want to restart your computer now?": "", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "", - "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "", - "Donate": "", - "Download updated language files from GitHub automatically": "", - "Downloading": "", - "Downloading installer for {package}": "", - "Downloading package metadata...": "", - "Enable the new UniGetUI-Branded UAC Elevator": "", - "Enable the new process input handler (StdIn automated closer)": "", - "Export log as a file": "", - "Export packages": "", - "Export selected packages to a file": "", - "Fetching latest announcements, please wait...": "", - "Finish": "", - "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "", - "Formerly known as WingetUI": "", - "Found": "", - "Found packages: ": "", - "Found packages: {0}": "", - "Found packages: {0}, not finished yet...": "", - "GitHub profile": "", - "Global": "", - "Help and documentation": "", - "Hide details": "", - "How should installations that require administrator privileges be treated?": "", - "Ignore updates for the selected packages": "", - "Ignored updates": "", - "Import packages": "", - "Import packages from a file": "", - "Initializing WingetUI...": "", - "Install and more": "", - "Install and update preferences": "", - "Install packages from a file": "", - "Install selected packages": "", - "Install selected packages with administrator privileges": "", - "Install the latest prerelease version": "", - "Install updates automatically": "", - "Installation canceled by the user!": "", - "Installed packages": "", - "Instance {0} responded, quitting...": "", - "Is this package missing the icon?": "", - "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "", - "Latest Version": "", - "Latest Version:": "", - "Latest details...": "", - "Launching subprocess...": "", - "Licenses": "", - "Live command-line output": "", - "Loading UI components...": "", - "Loading WingetUI...": "", - "Local machine": "", - "Locating {pm}...": "", - "Looking for packages...": "", - "Machine | Global": "", - "Manage WingetUI autostart behaviour from the Settings app": "", - "Manage ignored packages": "", - "Manifests": "", - "New Version": "", - "New bundle": "", - "No packages found": "", - "No packages found matching the input criteria": "", - "No packages have been added yet": "", - "No packages selected": "", - "No sources found": "", - "No sources were found": "", - "No updates are available": "", - "Notes:": "", - "Notification tray options": "", - "Ok": "", - "Open GitHub": "", - "Open WingetUI": "", - "Open backup location": "", - "Open existing bundle": "", - "Open the welcome wizard": "", - "Operation cancelled": "", - "Options saved": "", - "Package Manager": "", - "Package managers": "", - "Package {name} from {manager}": "", - "Packages": "", - "Packages found: {0}": "", - "Paste a valid URL to the database": "", - "Perform a backup now": "", - "Periodically perform a backup of the installed packages": "", - "Please enter at least 3 characters": "", - "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "", - "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "", - "Please select how you want to configure WingetUI": "", - "Please type at least two characters": "", - "Portable": "", - "Publication date:": "", - "Quit WingetUI": "", - "Release notes URL:": "", - "Release notes:": "", - "Reload": "", - "Removal failed": "", - "Removal succeeded": "", - "Remove permanent data": "", - "Remove successful installs/uninstalls/updates from the installation list": "", - "Repository": "", - "Reset Scoop's global app cache": "", - "Reset Winget sources (might help if no packages are listed)": "", - "Reset WingetUI and its preferences": "", - "Reset WingetUI icon and screenshot cache": "", - "Resetting Winget sources - WingetUI": "", - "Restart now": "", - "Restart your PC to finish installation": "", - "Restart your computer to finish the installation": "", - "Retry failed operations": "", - "Retrying, please wait...": "", - "Return to top": "", - "Running the installer...": "", - "Running the uninstaller...": "", - "Running the updater...": "", - "Save File": "", - "Save bundle as": "", - "Save now": "", - "Search": "", - "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "", - "Search on available updates": "", - "Search on your software": "", - "Searching for installed packages...": "", - "Searching for packages...": "", - "Searching for updates...": "", - "Select \"{item}\" to add your custom bucket": "", - "Select a folder": "", - "Select all packages": "", - "Select only if you know what you are doing.": "", - "Select package file": "", - "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "", - "Sent handshake. Waiting for instance listener's answer... ({0}%)": "", - "Set custom backup file name": "", - "Share WingetUI": "", - "Show UniGetUI on the system tray": "", - "Show a notification when an installation fails": "", - "Show a notification when an installation finishes successfully": "", - "Show details": "", - "Show info about the package on the Updates tab": "", - "Show missing translation strings": "", - "Show package details": "", - "Show the live output": "", - "Skip": "", - "Skip the hash check when installing the selected packages": "", - "Skip the hash check when updating the selected packages": "", - "Source addition failed": "", - "Source removal failed": "", - "Source:": "", - "Start": "", - "Starting daemons...": "", - "Startup options": "", - "Status": "", - "Stuck here? Skip initialization": "", - "Suport the developer": "", - "Support me": "", - "Support the developer": "", - "Systems are now ready to go!": "", - "Text file": "", - "Thank you 😉": "", - "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "", - "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "", - "The following packages are going to be installed on your system.": "", - "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "", - "The icons and screenshots are maintained by users like you!": "", - "The installer has an invalid checksum": "", - "The installer hash does not match the expected value.": "", - "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "", - "The package {0} from {1} was not found.": "", - "The selected packages have been blacklisted": "", - "The update will be installed upon closing WingetUI": "", - "The update will not continue.": "", - "The user has canceled {0}, that was a requirement for {1} to be run": "", - "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "", - "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "", - "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "", - "They are the programs in charge of installing, updating and removing packages.": "", - "This could represent a security risk.": "", - "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "", - "This is the default choice.": "", - "This package can be updated": "", - "This package can be updated to version {0}": "", - "This process is running with administrator privileges": "", - "This setting is disabled": "", - "This wizard will help you configure and customize WingetUI!": "", - "Toggle search filters pane": "", - "Type here the name and the URL of the source you want to add, separed by a space.": "", - "Unable to find package": "", - "Unable to load informarion": "", - "Uninstall and more": "", - "Uninstall canceled by the user!": "", - "Uninstall the selected packages with administrator privileges": "", - "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "", - "Update and more": "", - "Update date": "", - "Update found!": "", - "Update package indexes on launch": "", - "Update packages automatically": "", - "Update selected packages": "", - "Update selected packages with administrator privileges": "", - "Update vcpkg's Git portfiles automatically (requires Git installed)": "", - "Updates": "", - "Updates available!": "", - "Updates preferences": "", - "Updating WingetUI": "", - "Url": "", - "Use Legacy bundled WinGet instead of PowerShell CMDLets": "", - "Use bundled WinGet instead of PowerShell CMDlets": "", - "Use installed GSudo instead of the bundled one": "", - "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "", - "Use system Chocolatey (Needs a restart)": "", - "Use system Winget (Needs a restart)": "", - "Use system Winget (System language must be set to english)": "", - "Use the WinGet COM API to fetch packages": "", - "Use the WinGet PowerShell Module instead of the WinGet COM API": "", - "User": "", - "User | Local": "", - "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "", - "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "", - "Vcpkg was not found on your system.": "", - "View WingetUI on GitHub": "", - "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "", - "Waiting for other installations to finish...": "", - "Waiting for {0} to complete...": "", - "We could not load detailed information about this package, because it was not found in any of your package sources": "", - "We could not load detailed information about this package, because it was not installed from an available package manager.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "", - "We couldn't find any package": "", - "Welcome to WingetUI": "", - "Which package managers do you want to use?": "", - "Which source do you want to add?": "", - "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "", - "WingetUI": "", - "WingetUI - Everything is up to date": "", - "WingetUI - {0} updates are available": "", - "WingetUI - {0} {1}": "", - "WingetUI Homepage - Share this link!": "", - "WingetUI Settings File": "", - "WingetUI autostart behaviour, application launch settings": "", - "WingetUI can check if your software has available updates, and install them automatically if you want to": "", - "WingetUI has not been machine translated. The following users have been in charge of the translations:": "", - "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "", - "WingetUI is being updated. When finished, WingetUI will restart itself": "", - "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "", - "WingetUI log": "", - "WingetUI tray application preferences": "", - "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "WingetUI version {0} is being downloaded.": "", - "WingetUI will become {newname} soon!": "", - "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "", - "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "", - "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "", - "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "", - "WingetUI {0} is ready to be installed.": "", - "You may restart your computer later if you wish": "", - "You will be prompted only once, and administrator rights will be granted to packages that request them.": "", - "You will be prompted only once, and every future installation will be elevated automatically.": "", - "buy me a coffee": "", - "formerly WingetUI": "", - "homepage": "", - "install": "", - "installation": "", - "uninstall": "", - "uninstallation": "", - "uninstalled": "", - "update(noun)": "", - "update(verb)": "", - "updated": "", - "{0} Uninstallation": "", - "{0} aborted": "", - "{0} can be updated": "", - "{0} failed": "", - "{0} has failed, that was a requirement for {1} to be run": "", - "{0} installation": "", - "{0} is being updated": "", - "{0} months": "", - "{0} packages found": "", - "{0} packages were found": "", - "{0} succeeded": "", - "{0} update": "", - "{0} was {1} successfully!": "", - "{0} weeks": "", - "{0} years": "", - "{0} {1} failed": "", - "{package} installation failed": "", - "{package} uninstall failed": "", - "{package} update failed": "", - "{package} update failed. Click here for more details.": "", - "{pm} could not be found": "", - "{pm} found: {state}": "", - "{pm} package manager specific preferences": "", - "{pm} preferences": "", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "", - "Thank you ❤": "", - "This project has no connection with the official {0} project — it's completely unofficial.": "" + "About WingetUI": "About UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "WingetUI Settings": "UniGetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI Version {0}", + "WingetUI License": "UniGetUI License", + "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Update UniGetUI automatically", + "Reset WingetUI": "Reset UniGetUI", + "WingetUI display language:": "UniGetUI display language:", + "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Enable WingetUI notifications": "Enable UniGetUI notifications", + "WingetUI Log": "UniGetUI Log", + "Show WingetUI": "Show UniGetUI", + "WingetUI Homepage": "UniGetUI Homepage", + "WingetUI Repository": "UniGetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", + "Restart WingetUI": "Restart UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "(Number {0} in the queue)": "(Number {0} in the queue)", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign", + "0 packages found": "0 packages found", + "0 updates found": "0 updates found", + "1 month": "a month", + "1 package was found": "1 package was found", + "1 year": "1 year", + "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools", + "A restart is required": "A restart is required", + "About Qt6": "About Qt6", + "About WingetUI version {0}": "About UniGetUI version {0}", + "About the dev": "About the dev", + "Action when double-clicking packages, hide successful installations": "Action when double-clicking packages, hide successful installations", + "Add a source to {0}": "Add a source to {0}", + "Add a timestamp to the backup files": "Add a timestamp to the backup files", + "Add packages or open an existing bundle": "Add packages or open an existing bundle", + "Addition succeeded": "Addition succeeded", + "Administrator privileges preferences": "Administrator privileges preferences", + "Administrator rights": "Administrator rights", + "All files": "All files", + "Allow package operations to be performed in parallel": "Allow package operations to be performed in parallel", + "Allow parallel installs (NOT RECOMMENDED)": "Allow parallel installs (NOT RECOMMENDED)", + "Allow {pm} operations to be performed in parallel": "Allow {pm} operations to be performed in parallel", + "Always elevate {pm} installations by default": "Always elevate {pm} installations by default", + "Always run {pm} operations with administrator rights": "Always run {pm} operations with administrator rights", + "An unexpected error occurred:": "An unexpected error occurred:", + "Another source": "Another source", + "App Name": "App Name", + "Are these screenshots wron or blurry?": "Are these screenshots wrong or blurry?", + "Ask for administrator rights when required": "Ask for administrator rights when required", + "Ask once or always for administrator rights, elevate installations by default": "Ask once or always for administrator rights, elevate installations by default", + "Ask only once for administrator privileges (not recommended)": "Ask only once for administrator privileges (not recommended)", + "Authenticate to the proxy with an user and a password": "Authenticate to the proxy with an user and a password", + "Automatically save a list of your installed packages on your computer.": "Automatically save a list of your installed packages on your computer.", + "Autostart WingetUI in the notifications area": "Autostart UniGetUI in the notifications area", + "Available updates: {0}": "Available updates: {0}", + "Available updates: {0}, not finished yet...": "Available updates: {0}, not finished yet...", + "Backup installed packages": "Backup installed packages", + "Backup location": "Backup location", + "But here are other things you can do to learn about WingetUI even more:": "But here are other things you can do to learn about UniGetUI even more:", + "By toggling a package manager off, you will no longer be able to see or update its packages.": "By toggling a package manager off, you will no longer be able to see or update its packages.", + "Cache administrator rights and elevate installers by default": "Cache administrator rights and elevate installers by default", + "Cache administrator rights, but elevate installers only when required": "Cache administrator rights, but elevate installers only when required", + "Cache was reset successfully!": "Cache was reset successfully!", + "Can't {0} {1}": "Can't {0} {1}", + "Cancel all operations": "Cancel all operations", + "Change how UniGetUI installs packages, and checks and installs available updates": "Change how UniGetUI installs packages, and checks and installs available updates", + "Change install location": "Change install location", + "Check for updates periodically": "Check for updates periodically.", + "Check for updates regularly, and ask me what to do when updates are found.": "Check for updates regularly, and ask me what to do when updates are found.", + "Check for updates regularly, and automatically install available ones.": "Check for updates regularly, and automatically install available ones.", + "Check out my {0} and my {1}!": "Check out my {0} and my {1}!", + "Check out some WingetUI overviews": "Check out some UniGetUI reviews", + "Checking for other running instances...": "Checking for other running instances...", + "Checking for updates...": "Checking for updates...", + "Checking found instace(s)...": "Checking found instance(s)...", + "Choose how many operations shouls be performed in parallel": "Choose how many operations should be performed in parallel", + "Clear finished operations": "Clear finished operations", + "Clear successful operations": "Clear successful operations", + "Clear the local icon cache": "Clear the local icon cache", + "Clearing Scoop cache...": "Clearing Scoop cache...", + "Close WingetUI to the notification area": "Close UniGetUI to the notification area", + "Command-line Output": "Command-line Output", + "Compare query against": "Compare query against", + "Component Information": "Component Information", + "Contribute to the icon and screenshot repository": "Contribute to the icon and screenshot repository", + "Copy": "Copy", + "Could not load announcements - ": "Could not load announcements - ", + "Could not load announcements - HTTP status code is $CODE": "Could not load announcements - HTTP status code is $CODE", + "Could not remove {source} from {manager}": "Could not remove {source} from {manager}", + "Current Version": "Current Version", + "Current user": "Current user", + "Custom arguments:": "Custom arguments:", + "Custom command-line arguments:": "Custom command-line arguments:", + "Customize WingetUI - for hackers and advanced users only": "Customize UniGetUI - for hackers and advanced users only", + "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.", + "Default preferences - suitable for regular users": "Default preferences - suitable for regular users", + "Description:": "Description:", + "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "Developing is hard, and this application is free. However, if you found the application helpful, you can always buy me a coffee :)", + "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)", + "Disable new share API (port 7058)": "Disable new share API (port 7058)", + "Discover packages": "Discover Packages", + "Distinguish between\nuppercase and lowercase": "Distinguish between uppercase and lowercase", + "Do NOT check for updates": "Do NOT check for updates", + "Do an interactive install for the selected packages": "Do an interactive install for the selected packages", + "Do an interactive uninstall for the selected packages": "Do an interactive uninstall for the selected packages", + "Do an interactive update for the selected packages": "Do an interactive update for the selected packages", + "Do not download new app translations from GitHub automatically": "Do not download new app translations from GitHub automatically", + "Do not remove successful operations from the list automatically": "Do not remove successful operations from the list automatically", + "Do not update package indexes on launch": "Do not update package indexes on launch", + "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "Do you find UniGetUI useful? If you can, you may want to support my work, so I can continue making UniGetUI the ultimate package managing interface.", + "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!", + "Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?", + "Do you want to restart your computer now?": "Do you want to restart your computer now?", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", + "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.", + "Donate": "Donate", + "Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically", + "Downloading": "Downloading", + "Downloading installer for {package}": "Downloading installer for {package}", + "Downloading package metadata...": "Downloading package metadata...", + "Enable the new UniGetUI-Branded UAC Elevator": "Enable the new UniGetUI-Branded UAC Elevator", + "Enable the new process input handler (StdIn automated closer)": "Enable the new process input handler (StdIn automated closer)", + "Export log as a file": "Export log as a file", + "Export packages": "Export packages", + "Export selected packages to a file": "Export selected packages to a file", + "Fetching latest announcements, please wait...": "Fetching latest announcements, please wait...", + "Finish": "Finish", + "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)", + "Formerly known as WingetUI": "Formerly known as WingetUI", + "Found": "Found", + "Found packages: ": "Found packages: ", + "Found packages: {0}": "Found packages: {0}", + "Found packages: {0}, not finished yet...": "Found packages: {0}, not finished yet...", + "GitHub profile": "GitHub profile", + "Global": "Global", + "Help and documentation": "Help and documentation", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", + "Hide details": "Hide details", + "How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?", + "Ignore updates for the selected packages": "Ignore updates for the selected packages", + "Ignored updates": "Ignored updates", + "Import packages": "Import packages", + "Import packages from a file": "Import packages from a file", + "Initializing WingetUI...": "Initializing UniGetUI...", + "Install and more": "Install and more", + "Install and update preferences": "Install and update preferences", + "Install packages from a file": "Install packages from a file", + "Install selected packages": "Install selected packages", + "Install selected packages with administrator privileges": "Install selected packages with administrator privileges", + "Install the latest prerelease version": "Install the latest prerelease version", + "Install updates automatically": "Install updates automatically", + "Installation canceled by the user!": "Installation canceled by the user!", + "Installed packages": "Installed Packages", + "Instance {0} responded, quitting...": "Instance {0} responded, quitting...", + "Is this package missing the icon?": "Is this package missing the icon?", + "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "It looks like you ran UniGetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges. Click on \"{showDetails}\" to see why.", + "Latest Version": "Latest Version", + "Latest Version:": "Latest Version:", + "Latest details...": "Latest details...", + "Launching subprocess...": "Launching subprocess...", + "Licenses": "Licenses", + "Live command-line output": "Live command-line output", + "Loading UI components...": "Loading UI components...", + "Loading WingetUI...": "Loading UniGetUI...", + "Local machine": "Local machine", + "Locating {pm}...": "Locating {pm}...", + "Looking for packages...": "Looking for packages...", + "Machine | Global": "Machine | Global", + "Manage WingetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "Manage ignored packages": "Manage ignored packages", + "Manifests": "Manifests", + "New Version": "New Version", + "New bundle": "New bundle", + "No packages found": "No packages found", + "No packages found matching the input criteria": "No packages found matching the input criteria", + "No packages have been added yet": "No packages have been added yet", + "No packages selected": "No packages selected", + "No sources found": "No sources found", + "No sources were found": "No sources were found", + "No updates are available": "No updates are available", + "Notes:": "Notes:", + "Notification tray options": "Notification tray options", + "Ok": "OK", + "Open GitHub": "Open GitHub", + "Open WingetUI": "Open UniGetUI", + "Open backup location": "Open backup location", + "Open existing bundle": "Open existing bundle", + "Open the welcome wizard": "Open the welcome wizard", + "Operation cancelled": "Operation cancelled", + "Options saved": "Options saved", + "Package Manager": "Package Manager", + "Package managers": "Package Managers", + "Package {name} from {manager}": "Package {name} from {manager}", + "Packages": "Packages", + "Packages found: {0}": "Packages found: {0}", + "Paste a valid URL to the database": "Paste a valid URL to the database", + "Perform a backup now": "Perform a backup now", + "Periodically perform a backup of the installed packages": "Periodically perform a backup of the installed packages", + "Please enter at least 3 characters": "Please enter at least 3 characters", + "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.", + "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.", + "Please select how you want to configure WingetUI": "Please select how you want to configure UniGetUI", + "Please type at least two characters": "Please type at least two characters", + "Portable": "Portable", + "Publication date:": "Publication date:", + "Quit WingetUI": "Quit UniGetUI", + "Release notes URL:": "Release notes URL:", + "Release notes:": "Release notes:", + "Reload": "Reload", + "Removal failed": "Removal failed", + "Removal succeeded": "Removal succeeded", + "Remove permanent data": "Remove permanent data", + "Remove successful installs/uninstalls/updates from the installation list": "Remove successful installs/uninstalls/updates from the installation list", + "Repository": "Repository", + "Reset Scoop's global app cache": "Reset Scoop's global app cache", + "Reset Winget sources (might help if no packages are listed)": "Reset WinGet sources (might help if no packages are listed)", + "Reset WingetUI and its preferences": "Reset UniGetUI and its preferences", + "Reset WingetUI icon and screenshot cache": "Reset UniGetUI icon and screenshot cache", + "Resetting Winget sources - WingetUI": "Resetting WinGet sources - UniGetUI", + "Restart now": "Restart now", + "Restart your PC to finish installation": "Restart your PC to finish installation", + "Restart your computer to finish the installation": "Restart your computer to finish the installation", + "Retry failed operations": "Retry failed operations", + "Retrying, please wait...": "Retrying, please wait...", + "Return to top": "Return to top", + "Running the installer...": "Running the installer...", + "Running the uninstaller...": "Running the uninstaller...", + "Running the updater...": "Running the updater...", + "Save File": "Save File", + "Save bundle as": "Save bundle as", + "Save now": "Save now", + "Search": "Search", + "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want UniGetUI to overcomplicate, I just want a simple software store", + "Search on available updates": "Search on available updates", + "Search on your software": "Search on your software", + "Searching for installed packages...": "Searching for installed packages...", + "Searching for packages...": "Searching for packages...", + "Searching for updates...": "Searching for updates...", + "Select \"{item}\" to add your custom bucket": "Select \"{item}\" to add your custom bucket", + "Select a folder": "Select a folder", + "Select all packages": "Select all packages", + "Select only if you know what you are doing.": "Select only if you know what you are doing.", + "Select package file": "Select package file", + "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.", + "Sent handshake. Waiting for instance listener's answer... ({0}%)": "Sent handshake. Waiting for instance listener's answer... ({0}%)", + "Set custom backup file name": "Set custom backup file name", + "Share WingetUI": "Share UniGetUI", + "Show UniGetUI on the system tray": "Show UniGetUI on the system tray", + "Show a notification when an installation fails": "Show a notification when an installation fails", + "Show a notification when an installation finishes successfully": "Show a notification when an installation finishes successfully", + "Show details": "Show details", + "Show info about the package on the Updates tab": "Show info about the package on the Updates tab", + "Show missing translation strings": "Show missing translation strings", + "Show package details": "Show package details", + "Show the live output": "Show the live output", + "Skip": "Skip", + "Skip the hash check when installing the selected packages": "Skip the hash check when installing the selected packages", + "Skip the hash check when updating the selected packages": "Skip the hash check when updating the selected packages", + "Source addition failed": "Source addition failed", + "Source removal failed": "Source removal failed", + "Source:": "Source:", + "Start": "Start", + "Starting daemons...": "Starting daemons...", + "Startup options": "Startup options", + "Status": "Status", + "Stuck here? Skip initialization": "Stuck here? Skip initialization", + "Suport the developer": "Support the developer", + "Support me": "Support me", + "Support the developer": "Support the developer", + "Systems are now ready to go!": "Systems are now ready to go!", + "Text file": "Text file", + "Thank you Γ¥ñ": "Thank you Γ¥ñ", + "Thank you 😉": "Thank you 😉", + "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.", + "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.", + "The following packages are going to be installed on your system.": "The following packages are going to be installed on your system.", + "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.", + "The icons and screenshots are maintained by users like you!": "The icons and screenshots are maintained by users like you!", + "The installer has an invalid checksum": "The installer has an invalid checksum", + "The installer hash does not match the expected value.": "The installer hash does not match the expected value.", + "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "The main goal of this project is to create an intuitive UI for the most common CLI package managers for Windows, such as Winget and Scoop.", + "The package {0} from {1} was not found.": "The package {0} from {1} was not found.", + "The selected packages have been blacklisted": "The selected packages have been blacklisted", + "The update will be installed upon closing WingetUI": "The update will be installed upon closing UniGetUI", + "The update will not continue.": "The update will not continue.", + "The user has canceled {0}, that was a requirement for {1} to be run": "The user has canceled {0}, that was a requirement for {1} to be run", + "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "There are some great videos on YouTube that showcase UniGetUI and its capabilities. You could learn useful tricks and tips!", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "There are two main reasons to not run UniGetUI as administrator:\nThe first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\nThe second one is that running UniGetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\nRemember that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.", + "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "There is an installation in progress. If you close UniGetUI, the installation may fail and have unexpected results. Do you still want to quit UniGetUI?", + "They are the programs in charge of installing, updating and removing packages.": "They are the programs in charge of installing, updating and removing packages.", + "This could represent a security risk.": "This could represent a security risk.", + "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}", + "This is the default choice.": "This is the default choice.", + "This package can be updated": "This package can be updated", + "This package can be updated to version {0}": "This package can be updated to version {0}", + "This process is running with administrator privileges": "This process is running with administrator privileges", + "This project has no connection with the official {0} project ΓÇö it's completely unofficial.": "This project has no connection with the official {0} project ΓÇö it's completely unofficial.", + "This setting is disabled": "This setting is disabled", + "This wizard will help you configure and customize WingetUI!": "This wizard will help you configure and customize UniGetUI!", + "Toggle search filters pane": "Toggle search filters pane", + "Type here the name and the URL of the source you want to add, separed by a space.": "Type here the name and the URL of the source you want to add, separated by a space.", + "Unable to find package": "Unable to find the package", + "Unable to load informarion": "Unable to load information", + "Uninstall and more": "Uninstall and more", + "Uninstall canceled by the user!": "Uninstall canceled by the user!", + "Uninstall the selected packages with administrator privileges": "Uninstall the selected packages with administrator privileges", + "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.", + "Update and more": "Update and more", + "Update date": "Update date", + "Update found!": "Update found!", + "Update package indexes on launch": "Update package indexes on launch", + "Update packages automatically": "Update packages automatically", + "Update selected packages": "Update selected packages", + "Update selected packages with administrator privileges": "Update selected packages with administrator privileges", + "Update vcpkg's Git portfiles automatically (requires Git installed)": "Update vcpkg's Git portfiles automatically (requires Git installed)", + "Updates": "Updates", + "Updates available!": "Updates available!", + "Updates preferences": "Updates preferences", + "Updating WingetUI": "Updating UniGetUI", + "Url": "URL", + "Use Legacy bundled WinGet instead of PowerShell CMDLets": "Use Legacy bundled WinGet instead of PowerShell CMDLets", + "Use bundled WinGet instead of PowerShell CMDlets": "Use bundled WinGet instead of PowerShell CMDlets", + "Use installed GSudo instead of the bundled one": "Use installed GSudo instead of the bundled one", + "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Use legacy UniGetUI Elevator (may be helpful if having issues with UniGetUI Elevator)", + "Use system Chocolatey (Needs a restart)": "Use system Chocolatey (Needs a restart)", + "Use system Winget (Needs a restart)": "Use system Winget (Needs a restart)", + "Use system Winget (System language must be set to english)": "Use WinGet (System language must be set to English)", + "Use the WinGet COM API to fetch packages": "Use the WinGet COM API to fetch packages", + "Use the WinGet PowerShell Module instead of the WinGet COM API": "Use the WinGet PowerShell Module instead of the WinGet COM API", + "User": "User", + "User | Local": "User | Local", + "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Using UniGetUI implies the acceptance of the GNU Lesser General Public License v2.1 License", + "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings", + "Vcpkg was not found on your system.": "Vcpkg was not found on your system.", + "View WingetUI on GitHub": "View UniGetUI on GitHub", + "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "View UniGetUI's source code. From there, you can report bugs or suggest features, or even contribute directly to the UniGetUI project", + "Waiting for other installations to finish...": "Waiting for other installations to finish...", + "Waiting for {0} to complete...": "Waiting for {0} to complete...", + "We could not load detailed information about this package, because it was not found in any of your package sources": "We could not load detailed information about this package, because it was not found in any of your package sources.", + "We could not load detailed information about this package, because it was not installed from an available package manager.": "We could not load detailed information about this package, because it was not installed from an available package manager.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.", + "We couldn't find any package": "We couldn't find any package", + "Welcome to WingetUI": "Welcome to UniGetUI", + "Which package managers do you want to use?": "Which package managers do you want to use?", + "Which source do you want to add?": "Which source do you want to add?", + "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "While WinGet can be used within UniGetUI, UniGetUI can be used with other package managers, which can be confusing. In the past, UniGetUI was designed to work only with Winget, but this is not true anymore, and therefore UniGetUI does not represent what this project aims to become.", + "WingetUI": "UniGetUI", + "WingetUI - Everything is up to date": "UniGetUI - Everything is up to date", + "WingetUI - {0} updates are available": "UniGetUI - {0} updates are available", + "WingetUI - {0} {1}": "UniGetUI - {0} {1}", + "WingetUI Homepage - Share this link!": "UniGetUI Homepage - Share this link!", + "WingetUI Settings File": "UniGetUI Settings File", + "WingetUI autostart behaviour, application launch settings": "UniGetUI autostart behaviour, application launch settings", + "WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI can check if your software has available updates, and install them automatically if you want", + "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI has not been machine translated! The following users have been in charge of the translations:", + "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI is being renamed in order to emphasize the difference between UniGetUI (the interface you are using right now) and WinGet (a package manager developed by Microsoft with which I am not related)", + "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI is being updated. When finished, UniGetUI will restart itself", + "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.", + "WingetUI log": "UniGetUI Log", + "WingetUI tray application preferences": "UniGetUI tray application preferences", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI version {0} is being downloaded.": "UniGetUI version {0} is being downloaded.", + "WingetUI will become {newname} soon!": "WingetUI will become {newname} soon!", + "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.", + "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI will show a UAC prompt every time a package requires elevation to be installed.", + "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "UniGetUI wouldn't have been possible without the help of our dear contributors. Check out their GitHub profiles, UniGetUI wouldn't be possible without them!", + "WingetUI {0} is ready to be installed.": "UniGetUI {0} is ready to be installed.", + "You may restart your computer later if you wish": "You may restart your computer later if you wish", + "You will be prompted only once, and administrator rights will be granted to packages that request them.": "You will be prompted only once, and administrator rights will be granted to packages that request them.", + "You will be prompted only once, and every future installation will be elevated automatically.": "You will be prompted only once, and every future installation will be elevated automatically.", + "buy me a coffee": "buy me a coffee", + "formerly WingetUI": "formerly WingetUI", + "homepage": "Homepage", + "install": "Install", + "installation": "installation", + "uninstall": "Uninstall", + "uninstallation": "uninstallation", + "uninstalled": "uninstalled", + "update(noun)": "update", + "update(verb)": "update", + "updated": "updated", + "{0} Uninstallation": "{0} Uninstallation", + "{0} aborted": "{0} aborted", + "{0} can be updated": "{0} can be updated", + "{0} failed": "{0} failed", + "{0} has failed, that was a requirement for {1} to be run": "{0} has failed, that was a requirement for {1} to be run", + "{0} installation": "{0} installation", + "{0} is being updated": "{0} is being updated", + "{0} months": "{0} months", + "{0} packages found": "{0} packages found", + "{0} packages were found": "{0} packages were found", + "{0} succeeded": "{0} succeeded", + "{0} update": "{0} update", + "{0} was {1} successfully!": "{0} was {1} successfully!", + "{0} weeks": "{0} weeks", + "{0} years": "{0} years", + "{0} {1} failed": "{0} {1} failed", + "{package} installation failed": "{package} installation failed", + "{package} uninstall failed": "{package} uninstall failed", + "{package} update failed": "{package} update failed", + "{package} update failed. Click here for more details.": "{package} update failed. Click here for more details.", + "{pm} could not be found": "{pm} could not be found", + "{pm} found: {state}": "{pm} found: {state}", + "{pm} package manager specific preferences": "{pm} package manager specific preferences", + "{pm} preferences": "{pm} preferences" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json index c8ea5e58a3..0e5984db2d 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_gu.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "pre-uninstall command નિષ્ફળ જાય તો uninstall રદ કરો", "Command-line to run:": "ચાલાવવાનો command-line:", "Save and close": "સાચવો અને બંધ કરો", + "General": "સામાન્ય", + "Architecture & Location": "આર્કિટેક્ચર અને સ્થાન", + "Command-line": "કમાન્ડ-લાઇન", + "Pre/Post install": "સ્થાપન પહેલાં/પછી", "Run as admin": "admin તરીકે ચલાવો", "Interactive installation": "પરસ્પરક્રિયાત્મક સ્થાપન", "Skip hash check": "hash check છોડો", @@ -71,6 +75,8 @@ "Manage ignored updates": "ignored updates સંચાલન કરો", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "અહીં સૂચિબદ્ધ packages ને updates તપાસતી વખતે ધ્યાનમાં લેવામાં આવશે નહીં. તેમના updates ને ignore કરવાનું બંધ કરવા માટે packages પર double-click કરો અથવા તેમની જમણી બાજુના button પર click કરો.", "Reset list": "યાદી reset કરો", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "શું તમે ખરેખર અવગણાયેલા updates ની યાદી reset કરવા માંગો છો? આ action પાછું ફેરવી શકાતું નથી", + "No ignored updates": "કોઈ અવગણાયેલા updates નથી", "Package Name": "પેકેજ નામ", "Package ID": "પેકેજ ID", "Ignored version": "ignored આવૃત્તિ", @@ -86,6 +92,7 @@ "This operation is running interactively.": "આ operation interactive રીતે ચાલી રહી છે.", "You will likely need to interact with the installer.": "તમને સંભવિત રીતે installer સાથે interact કરવાની જરૂર પડશે.", "Integrity checks skipped": "Integrity checks skip કરવામાં આવી", + "Integrity checks will not be performed during this operation.": "આ પ્રક્રિયા દરમિયાન Integrity checks કરવામાં આવશે નહીં.", "Proceed at your own risk.": "તમારા જોખમે આગળ વધો.", "Close": "બંધ કરો", "Loading...": "load થઈ રહ્યું છે...", @@ -120,16 +127,17 @@ "optional": "વૈકલ્પિક", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} install કરવા માટે તૈયાર છે.", "The update process will start after closing UniGetUI": "UniGetUI બંધ થયા પછી update process શરૂ થશે", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI administrator તરીકે ચલાવવામાં આવ્યું છે, જે ભલામણ કરાતું નથી. UniGetUI ને administrator તરીકે ચલાવતી વખતે UniGetUI માંથી શરૂ થતી દરેક operation ને administrator privileges મળશે. તમે હજી પણ program નો ઉપયોગ કરી શકો છો, પરંતુ અમે UniGetUI ને administrator privileges સાથે ન ચલાવવાની ભારપૂર્વક ભલામણ કરીએ છીએ.", "Share anonymous usage data": "anonymous usage data share કરો", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI user experience સુધારવા માટે anonymous usage data એકત્રિત કરે છે.", "Accept": "સ્વીકારો", - "You have installed WingetUI Version {0}": "તમે UniGetUI Version {0} install કર્યું છે", + "You have installed UniGetUI Version {0}": "તમે UniGetUI Version {0} install કર્યું છે", "Disclaimer": "અસ્વીકાર", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI નો કોઈપણ compatible package managers સાથે સંબંધ નથી. UniGetUI એક સ્વતંત્ર project છે.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ની મદદ વગર UniGetUI શક્ય ન હોત. તમે સૌનો આભાર 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI નીચેની libraries નો ઉપયોગ કરે છે. તેમના વગર UniGetUI શક્ય ન હોત.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ની મદદ વગર UniGetUI શક્ય ન હોત. તમે સૌનો આભાર 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI નીચેની libraries નો ઉપયોગ કરે છે. તેમના વગર UniGetUI શક્ય ન હોત.", "{0} homepage": "{0} મુખ્ય પૃષ્ઠ", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "સ્વયંસેવક translators ના કારણે UniGetUI નો અનુવાદ 40 થી વધુ ભાષાઓમાં થયો છે. આભાર 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "સ્વયંસેવક translators ના કારણે UniGetUI નો અનુવાદ 40 થી વધુ ભાષાઓમાં થયો છે. આભાર 🤝", "Verbose": "વિગતવાર", "1 - Errors": "1 - ભૂલો", "2 - Warnings": "2 - ચેતવણીઓ", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "તમે {0} (@{1}) તરીકે logged in છો", "Nice! Backups will be uploaded to a private gist on your account": "સરસ! backups તમારા account પર private gist માં upload થશે", "Select backup": "backup પસંદ કરો", - "WingetUI Settings": "UniGetUI સેટિંગ્સ", + "UniGetUI Settings": "UniGetUI સેટિંગ્સ", "Allow pre-release versions": "pre-release આવૃત્તિઓને મંજૂરી આપો", "Apply": "લાગુ કરો", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "સુરક્ષા કારણોસર, custom command-line arguments ડિફૉલ્ટ રીતે નિષ્ક્રિય છે. આ બદલવા માટે UniGetUI security settings માં જાઓ.", "Go to UniGetUI security settings": "UniGetUI security settings માં જાઓ", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "દર વખતે {0} package install, upgrade અથવા uninstall થાય ત્યારે નીચેના options ડિફૉલ્ટ રીતે લાગુ થશે.", "Package's default": "Package નું default", @@ -160,6 +169,7 @@ "Username": "વપરાશકર્તા નામ", "Password": "પાસવર્ડ", "Credentials": "પ્રમાણપત્રો", + "It is not guaranteed that the provided credentials will be stored safely": "આપેલ credentials સુરક્ષિત રીતે સંગ્રહિત થશે તેની ખાતરી નથી", "Partially": "આંશિક રીતે", "Package manager": "પેકેજ મેનેજર", "Compatible with proxy": "proxy સાથે સુસંગત", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} સક્રિય છે અને તૈયાર છે", "{pm} version:": "{pm} આવૃત્તિ:", "{pm} was not found!": "{pm} મળ્યું નથી!", - "You may need to install {pm} in order to use it with WingetUI.": "WingetUI સાથે તેનો ઉપયોગ કરવા માટે તમને {pm} install કરવાની જરૂર પડી શકે છે.", - "Scoop Installer - WingetUI": "Scoop સ્થાપક - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop અનઇન્સ્ટોલર - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop cache સાફ થઈ રહી છે - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI સાથે તેનો ઉપયોગ કરવા માટે તમને {pm} install કરવાની જરૂર પડી શકે છે.", + "Scoop Installer - UniGetUI": "Scoop સ્થાપક - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop અનઇન્સ્ટોલર - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop cache સાફ થઈ રહી છે - UniGetUI", + "Restart UniGetUI to fully apply changes": "ફેરફારો સંપૂર્ણપણે લાગુ કરવા માટે UniGetUI restart કરો", "Restart UniGetUI": "UniGetUI restart કરો", "Manage {0} sources": "{0} sources સંચાલન કરો", "Add source": "સ્ત્રોત ઉમેરો", "Add": "ઉમેરો", + "Source name": "સ્ત્રોત નામ", + "Source URL": "સ્ત્રોત URL", "Other": "અન્ય", + "No minimum age": "કોઈ ન્યૂનતમ અવધિ નહીં", "1 day": "૧ દિવસ", "{0} days": "{0} દિવસ", + "Custom...": "કસ્ટમ...", "{0} minutes": "{0} મિનિટ", "1 hour": "૧ કલાક", "{0} hours": "{0} કલાક", "1 week": "૧ અઠવાડિયું", - "WingetUI Version {0}": "UniGetUI આવૃત્તિ {0}", + "Supports release dates": "release dates ને સપોર્ટ કરે છે", + "Release date support per package manager": "દર package manager માટે release date સપોર્ટ", + "UniGetUI Version {0}": "UniGetUI આવૃત્તિ {0}", "Search for packages": "packages શોધો", "Local": "સ્થાનિક", "OK": "ઠીક છે", @@ -200,11 +217,13 @@ "Enabled": "સક્રિય", "Disabled": "નિષ્ક્રિય", "More info": "વધુ માહિતી", + "GitHub account": "GitHub એકાઉન્ટ", "Log in with GitHub to enable cloud package backup.": "cloud package backup સક્રિય કરવા માટે GitHub સાથે Log in કરો.", "More details": "વધુ વિગતો", "Log in": "Log in કરો", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "જો તમે cloud backup સક્રિય કર્યું હોય, તો તે આ account પર GitHub Gist તરીકે સાચવવામાં આવશે", "Log out": "Log out કરો", + "About UniGetUI": "UniGetUI વિશે", "About": "વિશે", "Third-party licenses": "તૃતીય-પક્ષ લાઇસન્સ", "Contributors": "યોગદાનકારો", @@ -212,6 +231,7 @@ "Manage shortcuts": "shortcuts સંચાલન કરો", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI એ નીચેની desktop shortcuts શોધી છે જેને future upgrades દરમિયાન આપમેળે દૂર કરી શકાય છે", "Do you really want to reset this list? This action cannot be reverted.": "શું તમે ખરેખર આ list reset કરવા માંગો છો? આ action પાછું ફેરવી શકાતું નથી.", + "Open in explorer": "Explorer માં ખોલો", "Remove from list": "યાદીમાંથી દૂર કરો", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "નવી shortcuts શોધાય ત્યારે આ dialog બતાવવાને બદલે તેને આપમેળે delete કરો.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI user experience ને સમજવા અને સુધારવા માટેના એકમાત્ર હેતુથી anonymous usage data એકત્રિત કરે છે.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "UniGetUI વપરાશકર્તા અનુભવને સમજવા અને સુધારવા માટે માત્ર anonymous usage statistics એકત્ર કરે છે અને મોકલે છે, તે તમે સ્વીકારો છો?", "Decline": "નકારો", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "કોઈ વ્યક્તિગત માહિતી એકત્રિત કે મોકલવામાં આવતી નથી, અને એકત્રિત data અનામી બનાવવામાં આવે છે, તેથી તેને તમારી સુધી trace કરી શકાતું નથી.", - "About WingetUI": "WingetUI વિશે", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI એક application છે જે તમારા command-line package managers માટે all-in-one graphical interface આપી તમારા software ને મેનેજ કરવાનું સરળ બનાવે છે.", + "Toggle navigation panel": "navigation panel ટૉગલ કરો", + "Minimize": "ન્યૂનતમ કરો", + "Maximize": "મહત્તમ કરો", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI એક application છે જે તમારા command-line package managers માટે all-in-one graphical interface આપી તમારા software ને મેનેજ કરવાનું સરળ બનાવે છે.", "Useful links": "ઉપયોગી links", + "UniGetUI Homepage": "UniGetUI મુખ્ય પૃષ્ઠ", "Report an issue or submit a feature request": "issue report કરો અથવા feature request મોકલો", + "UniGetUI Repository": "UniGetUI રિપોઝિટરી", "View GitHub Profile": "GitHub Profile જુઓ", - "WingetUI License": "UniGetUI લાઇસન્સ", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI નો ઉપયોગ કરવાથી MIT License સ્વીકાર્ય ગણાશે", + "UniGetUI License": "UniGetUI લાઇસન્સ", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI નો ઉપયોગ કરવાથી MIT License સ્વીકાર્ય ગણાશે", "Become a translator": "અનુવાદક બનો", "View page on browser": "browser માં page જુઓ", "Copy to clipboard": "clipboard પર નકલ કરો", "Export to a file": "ફાઇલમાં નિકાસ કરો", "Log level:": "log level:", "Reload log": "log ફરી load કરો", + "Export log": "log નિકાસ કરો", + "UniGetUI Log": "UniGetUI લોગ", "Text": "લખાણ", "Change how operations request administrator rights": "પ્રક્રિયાઓ સંચાલક અધિકારો કેવી રીતે માંગે છે તે બદલો", "Restrictions on package operations": "package operations પર પ્રતિબંધો", @@ -271,7 +297,7 @@ "Leave empty for default": "ડિફૉલ્ટ માટે ખાલી રાખો", "Add a timestamp to the backup file names": "બેકઅપ ફાઇલ નામોમાં ટાઇમસ્ટેમ્પ ઉમેરો", "Backup and Restore": "બેકઅપ અને પુનઃસ્થાપન", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API સક્રિય કરો (UniGetUI Widgets અને Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "background API સક્રિય કરો (UniGetUI Widgets અને Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "internet connectivity જરૂરી હોય તેવી tasks કરવાનો પ્રયાસ કરતા પહેલાં device internet સાથે જોડાય ત્યાં સુધી રાહ જુઓ.", "Disable the 1-minute timeout for package-related operations": "package સંબંધિત operations માટે 1-minute timeout નિષ્ક્રિય કરો", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator ની બદલે installed GSudo વાપરો", @@ -286,7 +312,7 @@ "Telemetry": "ટેલિમેટ્રી", "Manage UniGetUI settings": "UniGetUI settings સંચાલન કરો", "Related settings": "સંબંધિત settings", - "Update WingetUI automatically": "UniGetUI ને આપમેળે update કરો", + "Update UniGetUI automatically": "UniGetUI ને આપમેળે update કરો", "Check for updates": "અપડેટ્સ માટે તપાસો", "Install prerelease versions of UniGetUI": "UniGetUI ની prerelease આવૃત્તિઓ install કરો", "Manage telemetry settings": "telemetry settings સંચાલન કરો", @@ -295,17 +321,17 @@ "Import": "આયાત કરો", "Export settings to a local file": "settings ને સ્થાનિક ફાઇલમાં નિકાસ કરો", "Export": "નિકાસ કરો", - "Reset WingetUI": "UniGetUI reset કરો", "Reset UniGetUI": "UniGetUI reset કરો", "User interface preferences": "વપરાશકર્તા ઇન્ટરફેસ પસંદગીઓ", "Application theme, startup page, package icons, clear successful installs automatically": "એપ્લિકેશન થીમ, startup page, package icons, સફળ સ્થાપનો આપમેળે સાફ કરો", "General preferences": "સામાન્ય પસંદગીઓ", - "WingetUI display language:": "UniGetUI દર્શાવવાની ભાષા:", + "UniGetUI display language:": "UniGetUI દર્શાવવાની ભાષા:", "Is your language missing or incomplete?": "શું તમારી ભાષા ખૂટે છે અથવા અધૂરી છે?", "Appearance": "દેખાવ", "UniGetUI on the background and system tray": "background અને system tray માં UniGetUI", "Package lists": "પેકેજ યાદીઓ", "Close UniGetUI to the system tray": "UniGetUI ને system tray માં બંધ કરો", + "Manage UniGetUI autostart behaviour": "UniGetUI autostart વર્તન સંચાલિત કરો", "Show package icons on package lists": "package lists માં package icons બતાવો", "Clear cache": "cache સાફ કરો", "Select upgradable packages by default": "ડિફૉલ્ટ રીતે upgradable packages પસંદ કરો", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "કૃપા કરીને નોંધો કે બધા package managers આ feature ને સંપૂર્ણપણે support ન કરતાં હોય શકે", "Proxy URL": "પ્રોક્સી URL", "Enter proxy URL here": "અહીં proxy URL દાખલ કરો", + "Authenticate to the proxy with a user and a password": "વપરાશકર્તા અને પાસવર્ડ સાથે proxy પર authenticate કરો", + "Internet and proxy settings": "internet અને proxy settings", "Package manager preferences": "Package manager preferences", "Ready": "તૈયાર", "Not found": "મળ્યું નથી", "Notification preferences": "સૂચના પસંદગીઓ", "Notification types": "સૂચનાના પ્રકારો", "The system tray icon must be enabled in order for notifications to work": "notifications કામ કરે તે માટે system tray icon સક્રિય હોવો જરૂરી છે", - "Enable WingetUI notifications": "UniGetUI notifications સક્રિય કરો", + "Enable UniGetUI notifications": "UniGetUI notifications સક્રિય કરો", "Show a notification when there are available updates": "ઉપલબ્ધ updates હોય ત્યારે notification બતાવો", "Show a silent notification when an operation is running": "operation ચાલી રહી હોય ત્યારે silent notification બતાવો", "Show a notification when an operation fails": "operation નિષ્ફળ જાય ત્યારે notification બતાવો", "Show a notification when an operation finishes successfully": "operation સફળતાપૂર્વક પૂર્ણ થાય ત્યારે notification બતાવો", "Concurrency and execution": "સમકાલીનતા અને અમલીકરણ", "Automatic desktop shortcut remover": "આપમેળે desktop shortcut દૂર કરનાર", + "Choose how many operations should be performed in parallel": "કેટલી operations parallel માં ચલાવવી તે પસંદ કરો", "Clear successful operations from the operation list after a 5 second delay": "5 સેકંડના વિલંબ પછી કામગીરી સૂચિમાંથી સફળ કામગીરી સાફ કરો", "Download operations are not affected by this setting": "આ setting થી download operations અસરગ્રસ્ત થતા નથી", "Try to kill the processes that refuse to close when requested to": "જ્યારે બંધ કરવા કહેવામાં આવે ત્યારે બંધ થવાથી ઇનકાર કરતી processes ને kill કરવાનો પ્રયાસ કરો", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "ઉપયોગ કરવાની executable પસંદ કરો. નીચેની યાદી UniGetUI દ્વારા મળેલી executables બતાવે છે", "Current executable file:": "વર્તમાન executable ફાઇલ:", "Ignore packages from {pm} when showing a notification about updates": "updates અંગે notification બતાવતી વખતે {pm} ના packages ignore કરો", + "Update security": "અપડેટ સુરક્ષા", + "Use global setting": "global setting વાપરો", + "e.g. 10": "દા.ત. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} તેના packages માટે release dates આપતું નથી, તેથી આ setting નો કોઈ પ્રભાવ નહીં થાય", + "Override the global minimum update age for this package manager": "આ package manager માટે global minimum update age override કરો", + "Minimum age for updates": "updates માટે ન્યૂનતમ અવધિ", + "Custom minimum age (days)": "કસ્ટમ ન્યૂનતમ અવધિ (દિવસ)", "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 હોય, ", "Advanced options": "ઉન્નત વિકલ્પો", "Reset WinGet": "WinGet reset કરો", "This may help if no packages are listed": "જો કોઈ packages સૂચિબદ્ધ ન હોય તો આ મદદરૂપ થઈ શકે છે", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "launch વખતે Scoop cleanup સક્રિય કરો", "Use system Chocolatey": "system Chocolatey વાપરો", "Default vcpkg triplet": "ડિફૉલ્ટ vcpkg triplet", + "Change vcpkg root location": "vcpkg root સ્થાન બદલો", "Language, theme and other miscellaneous preferences": "ભાષા, theme અને અન્ય વિવિધ preferences", "Show notifications on different events": "વિવિધ ઘટનાઓ પર notifications બતાવો", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI તમારા પેકેજો માટે ઉપલબ્ધ અપડેટ્સ કેવી રીતે તપાસે અને સ્થાપિત કરે છે તે બદલો", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "network connection metered હોય ત્યારે updates આપમેળે install કરશો નહીં", "Do not automatically install updates when the device runs on battery": "device battery પર ચાલી રહ્યું હોય ત્યારે updates આપમેળે install કરશો નહીં", "Do not automatically install updates when the battery saver is on": "battery saver ચાલુ હોય ત્યારે updates આપમેળે install કરશો નહીં", + "Only show updates that are at least the specified number of days old": "માત્ર તે updates બતાવો જે ઓછામાં ઓછા નિર્દિષ્ટ દિવસ જેટલા જૂના હોય", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI install, update અને uninstall પ્રક્રિયાઓને કેવી રીતે સંભાળે છે તે બદલો.", "Package Managers": "પેકેજ મેનેજર્સ", "More": "વધુ", - "WingetUI Log": "UniGetUI લોગ", "Package Manager logs": "પેકેજ મેનેજર logs", "Operation history": "operation history", "Help": "મદદ", + "Quit UniGetUI": "UniGetUI બંધ કરો", "Order by:": "આ મુજબ ક્રમબદ્ધ કરો:", "Name": "નામ", "Id": "ઓળખ", @@ -409,6 +448,10 @@ "Both": "બંને", "Exact match": "સટીક match", "Show similar packages": "સમાન packages બતાવો", + "Nothing to share": "શેર કરવા માટે કશું નથી", + "Please select a package first.": "કૃપા કરીને પહેલા એક package પસંદ કરો.", + "Share link copied": "share link નકલ થઈ", + "The share link for {0} has been copied to the clipboard.": "{0} માટેની share link clipboard પર નકલ કરવામાં આવી છે.", "No results were found matching the input criteria": "input criteria સાથે મેળ ખાતા કોઈ પરિણામો મળ્યા નથી", "No packages were found": "કોઈ packages મળ્યા નથી", "Loading packages": "packages load થઈ રહ્યા છે", @@ -440,7 +483,11 @@ "Package bundle": "પેકેજ બંડલ", "Could not create bundle": "બંડલ બનાવી શકાયું નહીં", "The package bundle could not be created due to an error.": "ભૂલને કારણે package bundle બનાવી શકાયું નથી.", + "Unsaved changes": "અસાચવાયેલા ફેરફારો", + "Discard changes": "ફેરફારો રદ કરો", + "You have unsaved changes in the current bundle. Do you want to discard them?": "હાલના bundle માં તમારા unsaved changes છે. શું તમે તેને રદ કરવા માંગો છો?", "Bundle security report": "બંડલ સુરક્ષા અહેવાલ", + "The bundle contained restricted content": "bundle માં પ્રતિબંધિત સામગ્રી હતી", "Hooray! No updates were found.": "શાનદાર! કોઈ updates મળ્યા નથી.", "Everything is up to date": "બધું update છે", "Uninstall selected packages": "પસંદ કરેલા packages uninstall કરો", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows માટેનો પરંપરાગત package manager. તમને ત્યાં બધું મળશે.
સમાવે છે: General Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "માઇક્રોસોફ્ટના ડોટ નેટ ઇકોસિસ્ટમને ધ્યાનમાં રાખીને રચાયેલ સાધનો અને એક્ઝેક્યુટેબલ્સથી ભરેલો ભંડાર.
સમાવે છે: .NET સંબંધિત સાધનો અને સ્ક્રિપ્ટો", "NuPkg (zipped manifest)": "NuPkg (ઝિપ કરેલ મેનિફેસ્ટ)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (અથવા Linux) માટેનો Missing Package Manager.
સમાવે છે: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS નો package manager. javascript દુનિયામાં ફરતી libraries અને અન્ય utilities થી ભરેલો
સમાવે છે: Node javascript libraries અને અન્ય સંબંધિત utilities", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python નો library manager. python libraries અને અન્ય python સંબંધિત utilities થી ભરેલો
સમાવે છે: Python libraries અને સંબંધિત utilities", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell નો package manager. PowerShell ક્ષમતાઓ વધારવા માટે libraries અને scripts શોધો
સમાવે છે: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "queue માં operation (position {0})...", "Click here for more details": "વધુ વિગતો માટે અહીં ક્લિક કરો", "Operation canceled by user": "user દ્વારા operation રદ કરવામાં આવ્યું", + "Running PreOperation ({0}/{1})...": "PreOperation ચલાવી રહ્યું છે ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} માંથી PreOperation {0} નિષ્ફળ ગયું અને તેને જરૂરી તરીકે ચિહ્નિત કરવામાં આવ્યું હતું. બંધ કરી રહ્યું છે...", + "PreOperation {0} out of {1} finished with result {2}": "{1} માંથી PreOperation {0} {2} પરિણામ સાથે પૂર્ણ થયું", "Starting operation...": "operation શરૂ થઈ રહી છે...", + "Running PostOperation ({0}/{1})...": "PostOperation ચલાવી રહ્યું છે ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} માંથી PostOperation {0} નિષ્ફળ ગયું અને તેને જરૂરી તરીકે ચિહ્નિત કરવામાં આવ્યું હતું. બંધ કરી રહ્યું છે...", + "PostOperation {0} out of {1} finished with result {2}": "{1} માંથી PostOperation {0} {2} પરિણામ સાથે પૂર્ણ થયું", "{package} installer download": "{package} સ્થાપક ડાઉનલોડ", "{0} installer is being downloaded": "{0} installer download થઈ રહ્યો છે", "Download succeeded": "Download સફળ થયું", @@ -556,14 +610,12 @@ "Portable mode": "પોર્ટેબલ મોડ\n", "DEBUG BUILD": "DEBUG build", "Available Updates": "ઉપલબ્ધ સુધારાઓ", - "Show WingetUI": "UniGetUI બતાવો", + "Show UniGetUI": "UniGetUI બતાવો", "Quit": "બહાર નીકળો", "Attention required": "ધ્યાન જરૂરી", "Restart required": "Restart જરૂરી છે", "1 update is available": "1 અપડેટ ઉપલબ્ધ છે", "{0} updates are available": "{0} updates ઉપલબ્ધ છે", - "WingetUI Homepage": "UniGetUI મુખ્ય પૃષ્ઠ", - "WingetUI Repository": "UniGetUI રિપોઝિટરી", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "અહીં તમે નીચેની shortcuts અંગે UniGetUI નું વર્તન બદલી શકો છો. shortcut ને check કરવાથી જો તે future upgrade દરમિયાન બને તો UniGetUI તેને delete કરશે. તેને uncheck કરવાથી shortcut યથાવત રહેશે", "Manual scan": "હાથથી scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "તમારા desktop પરની હાલની shortcuts scan કરવામાં આવશે, અને તમે કઈ રાખવી અને કઈ દૂર કરવી તે પસંદ કરવું પડશે.", @@ -583,7 +635,6 @@ "Restart later": "પછી restart કરો", "An error occurred:": "ભૂલ આવી:", "I understand": "હું સમજું છું", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ને administrator તરીકે ચલાવવામાં આવ્યું છે, જે ભલામણ કરેલું નથી. UniGetUI ને administrator તરીકે ચલાવતાં, UniGetUI માંથી શરૂ થતી EVERY operation administrator privileges સાથે ચાલશે. તમે હજુ પણ program નો ઉપયોગ કરી શકો છો, પરંતુ UniGetUI ને administrator privileges સાથે ન ચલાવવાની અમારી મજબૂત ભલામણ છે.", "WinGet was repaired successfully": "WinGet સફળતાપૂર્વક repair થયું", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet repair થયા પછી UniGetUI restart કરવાની ભલામણ થાય છે", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "નોંધ: આ troubleshooter ને UniGetUI Settings ના WinGet વિભાગમાંથી નિષ્ક્રિય કરી શકાય છે", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. તમારા પેકેજો બંડલમાં ઉમેરાઈ જશે. તમે વધુ પેકેજ ઉમેરતા રહી શકો છો અથવા બંડલને નિકાસ કરી શકો છો.", "Which backup do you want to open?": "તમે કયો backup ખોલવા માંગો છો?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "તમે ખોલવા માંગતા backup ને પસંદ કરો. પછી તમે કયા packages install કરવા છે તે સમીક્ષા કરી શકશો.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "operations ચાલુ છે. UniGetUI બંધ કરવાથી તે નિષ્ફળ જઈ શકે છે. શું તમે આગળ વધવા માંગો છો?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "operations ચાલુ છે. UniGetUI બંધ કરવાથી તે નિષ્ફળ જઈ શકે છે. શું તમે આગળ વધવા માંગો છો?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI અથવા તેના કેટલાક components ખૂટે છે અથવા બગડેલા છે.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "આ પરિસ્થિતિને સુધારવા માટે UniGetUI ને ફરી install કરવાની મજબૂત ભલામણ થાય છે.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "અસરગ્રસ્ત file(s) વિશે વધુ વિગતો મેળવવા માટે UniGetUI Logs જુઓ", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "અહીં process names comma (,) વડે અલગ કરીને લખો", "Unset or unknown": "unset અથવા અજ્ઞાત", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "સમસ્યા વિશે વધુ માહિતી માટે Command-line Output જુઓ અથવા Operation History નો સંદર્ભ લો.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "આ package માં screenshots નથી કે icon ખૂટે છે? અમારી ખુલ્લી જાહેર database માં ખૂટતા icons અને screenshots ઉમેરીને UniGetUI માં યોગદાન આપો.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "આ package માં screenshots નથી કે icon ખૂટે છે? અમારી ખુલ્લી જાહેર database માં ખૂટતા icons અને screenshots ઉમેરીને UniGetUI માં યોગદાન આપો.", "Become a contributor": "ફાળો આપનાર બનો", "Save": "સાચવો", "Update to {0} available": "{0} માટે update ઉપલબ્ધ છે", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "આપમેળે WinGet troubleshooter સક્રિય કરો", "Enable an [experimental] improved WinGet troubleshooter": "[experimental] સુધારેલ WinGet troubleshooter સક્રિય કરો", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'no applicable update found' થી નિષ્ફળ ગયેલા અપડેટ્સને અવગણાયેલા અપડેટ્સની યાદીમાં ઉમેરો", - "Restart WingetUI to fully apply changes": "બદલાવો સંપૂર્ણપણે લાગુ કરવા માટે UniGetUI restart કરો", - "Restart WingetUI": "UniGetUI restart કરો", "Invalid selection": "અમાન્ય selection", "No package was selected": "કોઈ package પસંદ કરવામાં આવ્યો નથી", "More than 1 package was selected": "1 કરતાં વધુ package પસંદ કરવામાં આવ્યા હતા", @@ -684,8 +733,39 @@ "Log out failed: ": "Log out નિષ્ફળ: ", "Package backup settings": "પેકેજ બેકઅપ સેટિંગ્સ", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI વિશે", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI એક application છે જે તમારા command-line package managers માટે all-in-one graphical interface આપી તમારા software ને મેનેજ કરવાનું સરળ બનાવે છે.", + "You have installed WingetUI Version {0}": "તમે UniGetUI Version {0} install કર્યું છે", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ની મદદ વગર UniGetUI શક્ય ન હોત. તમે સૌનો આભાર 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI નીચેની libraries નો ઉપયોગ કરે છે. તેમના વગર UniGetUI શક્ય ન હોત.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "સ્વયંસેવક translators ના કારણે UniGetUI નો અનુવાદ 40 થી વધુ ભાષાઓમાં થયો છે. આભાર 🤝", + "WingetUI Settings": "UniGetUI સેટિંગ્સ", + "You may need to install {pm} in order to use it with WingetUI.": "WingetUI સાથે તેનો ઉપયોગ કરવા માટે તમને {pm} install કરવાની જરૂર પડી શકે છે.", + "Scoop Installer - WingetUI": "Scoop સ્થાપક - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop અનઇન્સ્ટોલર - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop cache સાફ થઈ રહી છે - UniGetUI", + "WingetUI Version {0}": "UniGetUI આવૃત્તિ {0}", + "WingetUI License": "UniGetUI લાઇસન્સ", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI નો ઉપયોગ કરવાથી MIT License સ્વીકાર્ય ગણાશે", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API સક્રિય કરો (UniGetUI Widgets અને Sharing, port 7058)", + "Update WingetUI automatically": "UniGetUI ને આપમેળે update કરો", + "Reset WingetUI": "UniGetUI reset કરો", + "WingetUI display language:": "UniGetUI દર્શાવવાની ભાષા:", + "Manage WingetUI autostart behaviour": "UniGetUI autostart વર્તન સંચાલિત કરો", + "Enable WingetUI notifications": "UniGetUI notifications સક્રિય કરો", + "WingetUI Log": "UniGetUI લોગ", + "Show WingetUI": "UniGetUI બતાવો", + "WingetUI Homepage": "UniGetUI મુખ્ય પૃષ્ઠ", + "WingetUI Repository": "UniGetUI રિપોઝિટરી", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ને administrator તરીકે ચલાવવામાં આવ્યું છે, જે ભલામણ કરેલું નથી. UniGetUI ને administrator તરીકે ચલાવતાં, UniGetUI માંથી શરૂ થતી EVERY operation administrator privileges સાથે ચાલશે. તમે હજુ પણ program નો ઉપયોગ કરી શકો છો, પરંતુ UniGetUI ને administrator privileges સાથે ન ચલાવવાની અમારી મજબૂત ભલામણ છે.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "operations ચાલુ છે. UniGetUI બંધ કરવાથી તે નિષ્ફળ જઈ શકે છે. શું તમે આગળ વધવા માંગો છો?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "આ package માં screenshots નથી કે icon ખૂટે છે? અમારી ખુલ્લી જાહેર database માં ખૂટતા icons અને screenshots ઉમેરીને UniGetUI માં યોગદાન આપો.", + "Restart WingetUI to fully apply changes": "બદલાવો સંપૂર્ણપણે લાગુ કરવા માટે UniGetUI restart કરો", + "Restart WingetUI": "UniGetUI restart કરો", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Settings app માંથી UniGetUI autostart વર્તન સંચાલન કરો", "(Number {0} in the queue)": "(કતારમાં નંબર {0})", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "GitHub Copilot", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "", "0 packages found": "કોઈ પેકેજ મળ્યા નથી", "0 updates found": "કોઈ અપડેટ્સ મળ્યા નથી", "1 month": "૧ મહિનો", @@ -778,7 +858,7 @@ "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "WingetUI તમને ઉપયોગી લાગે છે? તમે developer ને support કરવા માંગો છો? જો હા, તો તમે {0} કરી શકો છો, તે ઘણું મદદરૂપ બને છે!", "Do you really want to uninstall {0} packages?": "શું તમે ખરેખર {0} packages uninstall કરવા માંગો છો?", "Do you want to restart your computer now?": "શું તમે હવે તમારું computer restart કરવા માંગો છો?", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "શું તમે WingetUI ને તમારી ભાષામાં અનુવાદિત કરવા માંગો છો? કેવી રીતે contribute કરવું તે અહીં! જુઓ", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "શું તમે UniGetUI ને તમારી ભાષામાં અનુવાદિત કરવા માંગો છો? કેવી રીતે contribute કરવું તે અહીં! જુઓ", "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "દાન આપવાની ઇચ્છા નથી? ચિંતા નહીં, તમે હંમેશા WingetUI તમારા મિત્રોને share કરી શકો છો. WingetUI વિશે પ્રચાર કરો.", "Donate": "દાન કરો", "Download updated language files from GitHub automatically": "GitHub માંથી automatically અપડેટેડ language files download કરો", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json index cd03a783b7..1b5ec5caaa 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_he.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "בטל הסרת התקנה אם פקודת טרום-הסרה נכשלת", "Command-line to run:": "פקודה להרצה:", "Save and close": "שמור וסגור", + "General": "כללי", + "Architecture & Location": "ארכיטקטורה ומיקום", + "Command-line": "שורת פקודה", + "Pre/Post install": "לפני/אחרי התקנה", "Run as admin": "הפעל כמנהל מערכת", "Interactive installation": "התקנה אינטראקטיבית", "Skip hash check": "דלג על בדיקת הגיבוב", @@ -71,6 +75,8 @@ "Manage ignored updates": "נהל עדכונים שהמערכת מתעלמת מהם", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "החבילות המפורטות כאן לא יילקחו בחשבון בעת ​​בדיקת עדכונים. לחץ עליהם פעמיים או לחץ על הכפתור בצד ימין שלהם כדי להפסיק להתעלם מהעדכונים שלהם.", "Reset list": "אפס רשימה", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "האם אתה בטוח שברצונך לאפס את רשימת העדכונים שהתעלמת מהם? לא ניתן לבטל פעולה זו", + "No ignored updates": "אין עדכונים שהתעלמת מהם", "Package Name": "שם החבילה", "Package ID": "מזהה החבילה", "Ignored version": "גרסה חסומה", @@ -86,6 +92,7 @@ "This operation is running interactively.": "פעולה זו פועלת באינטראקטיביות.", "You will likely need to interact with the installer.": "כנראה שתצטרך לבצע פעולות עם המתקין.", "Integrity checks skipped": "בדיקות תקינות דוולגו", + "Integrity checks will not be performed during this operation.": "בדיקות תקינות לא יבוצעו במהלך פעולה זו.", "Proceed at your own risk.": "המשך על אחריותך בלבד.", "Close": "סגירה", "Loading...": "טוען...", @@ -120,16 +127,17 @@ "optional": "אופציונלי", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} מוכן להתקנה.", "The update process will start after closing UniGetUI": "תהליך העדכון יתחיל לאחר סגירת UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI הופעל כמנהל מערכת, וזה אינו מומלץ. כאשר UniGetUI פועל כמנהל מערכת, כל פעולה שמופעלת ממנו תקבל הרשאות מנהל. עדיין ניתן להשתמש בתוכנית, אך אנו ממליצים בחום לא להפעיל את UniGetUI כמנהל מערכת.", "Share anonymous usage data": "שתף נתוני שימוש אנונימיים", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI אוסף נתוני שימוש אנונימיים על מנת לשפר את חוויית המשתמש.", "Accept": "מאשר", - "You have installed WingetUI Version {0}": "התקנת את גירסת WingetUI {0}", + "You have installed UniGetUI Version {0}": "התקנת את גירסת UniGetUI {0}", "Disclaimer": "כתב ויתור", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI אינו קשור לאף אחד ממנהלי החבילות התואמות. UniGetUI הוא פרויקט עצמאי.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI לא היה קורה ללא עזרת התורמים. תודה לכולכם 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI משתמש בספריות הבאות. בלעדיהם, WingetUI לא היה אפשרי.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI לא היה קורה ללא עזרת התורמים. תודה לכולכם 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI משתמש בספריות הבאות. בלעדיהם, UniGetUI לא היה אפשרי.", "{0} homepage": "דף הבית של {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI תורגם ליותר מ-40 שפות הודות למתרגמים המתנדבים. תודה לך 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI תורגם ליותר מ-40 שפות הודות למתרגמים המתנדבים. תודה לך 🤝", "Verbose": "מפורט", "1 - Errors": "1 - שגיאות", "2 - Warnings": "2 - התראות", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "אתה מחובר כ-{0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "נהדר! גיבויים יועלו לגיסט פרטי בחשבון שלך", "Select backup": "בחר גיבוי", - "WingetUI Settings": "הגדרות של WingetUI", + "UniGetUI Settings": "הגדרות UniGetUI", "Allow pre-release versions": "אפשר גירסאות קדם-הפצה", "Apply": "החל", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "מטעמי אבטחה, ארגומנטים מותאמים אישית של שורת הפקודה מושבתים כברירת מחדל. עבור להגדרות האבטחה של UniGetUI כדי לשנות זאת.", "Go to UniGetUI security settings": "עבור אל הגדרות האבטחה של UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "האפשרויות הבאות יחולו כברירת מחדל בכל פעם שחבילה {0} מותקנת, משודרגת או מוסרת.", "Package's default": "ברירת מחדל של חבילה", @@ -160,6 +169,7 @@ "Username": "שם-משתמש", "Password": "סיסמה", "Credentials": "פרטי התחברות", + "It is not guaranteed that the provided credentials will be stored safely": "לא מובטח שפרטי ההתחברות שסופקו יישמרו באופן בטוח", "Partially": "באופן חלקי", "Package manager": "מנהל החבילה", "Compatible with proxy": "תואם לפרוקסי", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} מופעל ומוכן להפעלה", "{pm} version:": "{pm} גרסה:", "{pm} was not found!": "{pm} לא נמצא!", - "You may need to install {pm} in order to use it with WingetUI.": "ייתכן שתצטרך להתקין את {pm} כדי להשתמש בו עם WingetUI.", - "Scoop Installer - WingetUI": "מתקין סקופ - WingetUI", - "Scoop Uninstaller - WingetUI": "מסיר Scoop – WingetUI", - "Clearing Scoop cache - WingetUI": "ניקוי מטמון Scoop - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "ייתכן שתצטרך להתקין את {pm} כדי להשתמש בו עם UniGetUI.", + "Scoop Installer - UniGetUI": "מתקין סקופ - UniGetUI", + "Scoop Uninstaller - UniGetUI": "מסיר Scoop – UniGetUI", + "Clearing Scoop cache - UniGetUI": "ניקוי מטמון Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "הפעל מחדש את UniGetUI כדי להחיל את השינויים במלואם", "Restart UniGetUI": "הפעל מחדש את UniGetUI", "Manage {0} sources": "נהל {0} מקורות", "Add source": "הוסף מקור", "Add": "הוסף", + "Source name": "שם המקור", + "Source URL": "כתובת המקור", "Other": "אחר", + "No minimum age": "ללא גיל מינימלי", "1 day": "יום אחד", "{0} days": "{0} ימים", + "Custom...": "מותאם אישית...", "{0} minutes": "{0} דקות", "1 hour": "שעה אחת", "{0} hours": "{0} שעות", "1 week": "שבוע אחד", - "WingetUI Version {0}": "WingetUI גרסה {0}", + "Supports release dates": "תומך בתאריכי שחרור", + "Release date support per package manager": "תמיכה בתאריכי שחרור לפי מנהל חבילות", + "UniGetUI Version {0}": "UniGetUI גרסה {0}", "Search for packages": "חפש חבילות", "Local": "מקומי", "OK": "אישור", @@ -200,11 +217,13 @@ "Enabled": "מופעל", "Disabled": "מושבת", "More info": "מידע נוסף", + "GitHub account": "חשבון GitHub", "Log in with GitHub to enable cloud package backup.": "התחבר עם GitHub כדי להפעיל גיבוי חבילות ענן.", "More details": "פרטים נוספים", "Log in": "כניסה", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "אם הפעלת גיבוי בענן, הוא יישמר כ-GitHub Gist בחשבון זה", "Log out": "התנתק", + "About UniGetUI": "אודות UniGetUI", "About": "אודות", "Third-party licenses": "רישיונות צד שלישי", "Contributors": "תורמים", @@ -212,6 +231,7 @@ "Manage shortcuts": "נהל קיצורי דרך", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI זיהה את קיצורי הדרך הבאים שניתן להסיר אוטומטית בעדכונים עתידיים", "Do you really want to reset this list? This action cannot be reverted.": "האם אתה בטוח שברצונך לאפס רשימה זו? פעולה זו אינה ניתנת לביטול.", + "Open in explorer": "פתח בסייר הקבצים", "Remove from list": "הסר מהרשימה", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "כאשר מתגלים קיצורי דרך חדשים, הם יימחקו אוטומטית במקום להציג תיבת דו-שיח זו.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI אוסף נתוני שימוש אנונימיים אך ורק לצורך הבנת חוויית המשתמש ושיפורה.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "האם אתה מסכים ש-UniGetUI יאסוף וישלח נתוני שימוש אנונימיים, אך ורק לצורך הבנת חוויית המשתמש ושיפורה?", "Decline": "דחה", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "מידע אישי לא נאסף או נשלח, והנתונים שנאספים הם אנונימיים, ואינם מקושרים אליך.", - "About WingetUI": "אודות WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI הוא יישום שמקל על ניהול התוכנה שלך, על ידי מתן ממשק גרפי הכל-באחד עבור מנהלי חבילות שורת הפקודה שלך.", + "Toggle navigation panel": "הצג או הסתר את חלונית הניווט", + "Minimize": "מזער", + "Maximize": "הגדל", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI הוא יישום שמקל על ניהול התוכנה שלך, על ידי מתן ממשק גרפי הכל-באחד עבור מנהלי חבילות שורת הפקודה שלך.", "Useful links": "קישורים שימושיים", + "UniGetUI Homepage": "דף הבית של UniGetUI", "Report an issue or submit a feature request": "דווח על בעיה או שלח בקשה לתכונה", + "UniGetUI Repository": "מאגר UniGetUI", "View GitHub Profile": "הצג את פרופיל GitHub", - "WingetUI License": "רישיון WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "שימוש ב-WingetUI מרמז על קבלת רישיון MIT", + "UniGetUI License": "רישיון UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "שימוש ב-UniGetUI מרמז על קבלת רישיון MIT", "Become a translator": "הפוך למתרגם", "View page on browser": "צפה בדף בדפדפן", "Copy to clipboard": "העתק ללוח", "Export to a file": "יצא לקובץ", "Log level:": "רמת יומן:", "Reload log": "טען מחדש קובץ יומן רישום", + "Export log": "ייצא יומן", + "UniGetUI Log": "יומן UniGetUI", "Text": "טֶקסט", "Change how operations request administrator rights": "שינוי האופן שבו פעולות מבקשות הרשאות מנהל מערכת", "Restrictions on package operations": "הגבלות על פעולות חבילה", @@ -271,7 +297,7 @@ "Leave empty for default": "השאר ריק לברירת המחדל", "Add a timestamp to the backup file names": "הוסף חותמת זמן לשמות קבצי הגיבוי", "Backup and Restore": "גיבוי ושחזור", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "אפשר API רקע (WingetUI Widgets and Sharing, פורט 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "אפשר API רקע (UniGetUI Widgets and Sharing, פורט 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "המתן לחיבור המכשיר לאינטרנט לפני ניסיון לבצע משימות הדורשות חיבור לרשת.", "Disable the 1-minute timeout for package-related operations": "השבת את מגבלת הזמן של דקה אחת לפעולות הקשורות לחבילות", "Use installed GSudo instead of UniGetUI Elevator": "השתמש ב-GSudo המותקן במקום UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "טלמטריה", "Manage UniGetUI settings": "נהל הגדרות UniGetUI", "Related settings": "הגדרות קשורות", - "Update WingetUI automatically": "עדכן את WingetUI באופן אוטומטי", + "Update UniGetUI automatically": "עדכן את UniGetUI באופן אוטומטי", "Check for updates": "בדוק עדכונים", "Install prerelease versions of UniGetUI": "התקן גרסאות קדם של UniGetUI", "Manage telemetry settings": "נהל הגדרות טלמטריה", @@ -295,17 +321,17 @@ "Import": "יבא", "Export settings to a local file": "יצא הגדרות לקובץ מקומי", "Export": "יצא", - "Reset WingetUI": "אפס את WingetUI", "Reset UniGetUI": "אפס את UniGetUI", "User interface preferences": "העדפות ממשק משתמש", "Application theme, startup page, package icons, clear successful installs automatically": "ערכת נושא, דף פתיחה, סמלי חבילות, ניקוי התקנות מוצלחות באופן אוטומטי", "General preferences": "העדפות כלליות", - "WingetUI display language:": "שפת התצוגה של WingetUI:", + "UniGetUI display language:": "שפת התצוגה של UniGetUI:", "Is your language missing or incomplete?": "האם השפה שלך חסרה או לא שלמה?", "Appearance": "מראה ותחושה", "UniGetUI on the background and system tray": "UniGetUI ברקע ובמגש המערכת", "Package lists": "רשימות חבילות", "Close UniGetUI to the system tray": "מזער את UniGetUI למגש המערכת", + "Manage UniGetUI autostart behaviour": "נהל את אופן ההפעלה האוטומטית של UniGetUI", "Show package icons on package lists": "הצג סמלי חבילות ברשימות חבילות", "Clear cache": "נקה מטמון", "Select upgradable packages by default": "בחר חבילות הניתנות לשדרוג כברירת מחדל", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "שימו לב שלא כל מנהלי החבילות עשויים לתמוך בתכונה זו באופן מלא", "Proxy URL": "כתובת Proxy", "Enter proxy URL here": "הזן כאן כתובת URL של Proxy", + "Authenticate to the proxy with a user and a password": "הזדהה מול שרת ה-Proxy באמצעות שם משתמש וסיסמה", + "Internet and proxy settings": "הגדרות אינטרנט ו-Proxy", "Package manager preferences": "העדפות של מנהל החבילות", "Ready": "מוכן", "Not found": "לא נמצא", "Notification preferences": "העדפות הודעות", "Notification types": "סוגי התראות", "The system tray icon must be enabled in order for notifications to work": "יש להפעיל את סמל המגש כדי שההתראות יעבדו", - "Enable WingetUI notifications": "אפשר הודעות של WingetUI", + "Enable UniGetUI notifications": "אפשר הודעות של UniGetUI", "Show a notification when there are available updates": "הצג התראה כאשר ישנם עדכונים זמינים", "Show a silent notification when an operation is running": "הצג התראה שקטה כאשר פעולה מתבצעת", "Show a notification when an operation fails": "הצג התראה כאשר פעולה נכשלת ", "Show a notification when an operation finishes successfully": "הצג התראה כאשר פעולה מסתיימת בהצלחה", "Concurrency and execution": "מקביליות וביצוע", "Automatic desktop shortcut remover": "מסיר קיצורי דרך אוטומטי", + "Choose how many operations should be performed in parallel": "בחר כמה פעולות יבוצעו במקביל", "Clear successful operations from the operation list after a 5 second delay": "נקה פעולות שהצליחו מרשימת הפעולות לאחר השהייה של 5 שניות", "Download operations are not affected by this setting": "פעולות הורדה אינן מושפעות מהגדרה זו", "Try to kill the processes that refuse to close when requested to": "נסה להרג את התהליכים המסרבים להיסגר כאשר נדרש מהם", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "בחר את קובץ ההפעלה שיש להשתמש בו. הרשימה הבאה מציגה את קבצי ההפעלה שנמצאו על ידי UniGetUI", "Current executable file:": "קובץ ההפעלה הנוכחי:", "Ignore packages from {pm} when showing a notification about updates": "התעלם מחבילות מ-{pm} בעת הצגת התראה על עדכונים", + "Update security": "אבטחת עדכונים", + "Use global setting": "השתמש בהגדרה הגלובלית", + "e.g. 10": "למשל 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} אינו מספק תאריכי שחרור עבור החבילות שלו, לכן להגדרה זו לא תהיה השפעה", + "Override the global minimum update age for this package manager": "עקוף את גיל העדכון המינימלי הגלובלי עבור מנהל חבילות זה", + "Minimum age for updates": "גיל מינימלי לעדכונים", + "Custom minimum age (days)": "גיל מינימלי מותאם אישית (בימים)", "View {0} logs": "הצג לוגים של {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "אם לא ניתן למצוא את Python או שהוא אינו מציג חבילות למרות שהוא מותקן במערכת, ", "Advanced options": "אפשרויות מתקדמות", "Reset WinGet": "אפס את WinGet", "This may help if no packages are listed": "פעולה זו עשויה לעזור אם אין חבילות שמופיעות", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "אפשר ניקוי Scoop בעליה", "Use system Chocolatey": "השתמש במערכת Chocolatey", "Default vcpkg triplet": "הגדרת ברירת מחדל של vcpkg triplet", + "Change vcpkg root location": "שנה את מיקום השורש של vcpkg", "Language, theme and other miscellaneous preferences": "שפה, ערכת נושא והעדפות שונות אחרות", "Show notifications on different events": "הצג התראות על אירועים שונים", "Change how UniGetUI checks and installs available updates for your packages": "שנה את האופן שבו UniGetUI בודק ומתקין עדכונים זמינים עבור החבילות שלך", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "אל תתקין עדכונים באופן אוטומטי כאשר חיבור הרשת מוגדר כמוגבל", "Do not automatically install updates when the device runs on battery": "אל תתקין עדכונים באופן אוטומטי כאשר המכשיר פועל על סוללה", "Do not automatically install updates when the battery saver is on": "אל תתקין עדכונים באופן אוטומטי כאשר חיסכון בסוללה מופעל", + "Only show updates that are at least the specified number of days old": "הצג רק עדכונים שגילם לפחות מספר הימים שצוין", "Change how UniGetUI handles install, update and uninstall operations.": "שנה את האופן שבו UniGetUI מטפל בפעולות התקנה, עדכון והסרה.", "Package Managers": "מנהלי החבילה", "More": "עוד", - "WingetUI Log": "WingetUI יומן", "Package Manager logs": "קבצי יומן רישום של מנהל החבילות", "Operation history": "הסטוריית פעולות", "Help": "עזרה", + "Quit UniGetUI": "צא מ-UniGetUI", "Order by:": "מיין לפי:", "Name": "שם", "Id": "מזהה", @@ -409,6 +448,10 @@ "Both": "שניהם", "Exact match": "התאמה מדוייקת", "Show similar packages": "הצג חבילות דומות", + "Nothing to share": "אין מה לשתף", + "Please select a package first.": "אנא בחר תחילה חבילה.", + "Share link copied": "קישור השיתוף הועתק", + "The share link for {0} has been copied to the clipboard.": "קישור השיתוף עבור {0} הועתק ללוח.", "No results were found matching the input criteria": "לא נמצאו תוצאות התואמות את קריטריוני הקלט", "No packages were found": "לא נמצאו חבילות", "Loading packages": "טוען חבילות", @@ -440,7 +483,11 @@ "Package bundle": "צרור חבילות", "Could not create bundle": "לא ניתן ליצור צרור חבילות", "The package bundle could not be created due to an error.": "לא ניתן היה ליצור את צרור החבילות עקב שגיאה.", + "Unsaved changes": "שינויים שלא נשמרו", + "Discard changes": "בטל שינויים", + "You have unsaved changes in the current bundle. Do you want to discard them?": "יש שינויים שלא נשמרו בצרור הנוכחי. האם ברצונך לבטל אותם?", "Bundle security report": "דוח אבטחה לצרור", + "The bundle contained restricted content": "הצרור הכיל תוכן מוגבל", "Hooray! No updates were found.": "הידד! לא נמצאו עדכונים!", "Everything is up to date": "הכל מעודכן", "Uninstall selected packages": "הסר את החבילות המסומנות", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "מנהל החבילות הקלאסי עבור Windows. תמצא שם הכל.
מכיל: תוכנה כללית", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "מאגר מלא של כלים וקובצי הפעלה שתוכננו מתוך מחשבה על מערכת האקולוגית .NET של Microsoft.
מכיל: כלים וסקריפטים הקשורים ל-.NET", "NuPkg (zipped manifest)": "NuPkg (מניפסט מכווץ)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "מנהל החבילות החסר עבור macOS (או Linux).
מכיל: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "מנהל החבילות של Node JS. מלא ספריות וכלי עזר אחרים המקיפים את עולם javascript.
מכיל: ספריות Node JS וכלי עזר קשורים אחרים\n", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "מנהל הספרייה של Python. ספריות Python רבות וכלי עזר אחרים הקשורים ל- Python
מכיל: ספריות Python וכלי עזר קשורים", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "מנהל החבילות של PowerShell. מצא ספריות וסקריפטים כדי להרחיב את יכולות PowerShell
מכיל: מודולים, סקריפטים, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "פעולה בתור (מיקום {0})...", "Click here for more details": "לחץ כאן למידע נוסף", "Operation canceled by user": "הפעולה בוטלה על ידי המשתמש", + "Running PreOperation ({0}/{1})...": "מריץ PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} מתוך {1} נכשל וסומן כחיוני. מבטל...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} מתוך {1} הסתיים עם התוצאה {2}", "Starting operation...": "מתחיל פעולה...", + "Running PostOperation ({0}/{1})...": "מריץ PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} מתוך {1} נכשל וסומן כחיוני. מבטל...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} מתוך {1} הסתיים עם התוצאה {2}", "{package} installer download": "הורדת מתקין {package}", "{0} installer is being downloaded": "המתקין של {0} מורד כעת", "Download succeeded": "ההורדה הצליחה", @@ -556,14 +610,12 @@ "Portable mode": "מצב נייד", "DEBUG BUILD": "גירסת ניפוי שגיאות", "Available Updates": "עדכונים זמינים", - "Show WingetUI": "הצג את WingetUI", + "Show UniGetUI": "הצג את UniGetUI", "Quit": "צא", "Attention required": "נדרשת תשומת לב", "Restart required": "נדרשת הפעלה מחדש", "1 update is available": "1 עדכון קיים", "{0} updates are available": "{0} עדכונים זמינים", - "WingetUI Homepage": "דף הבית של WingetUI", - "WingetUI Repository": "מאגר WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "כאן תוכל לשנות את אופן הפעולה של UniGetUI בנוגע לקיצורי הדרך הבאים. סימון קיצור דרך יגרום ל-UniGetUI למחוק אותו אם ייווצר בעתיד בעדכון. ביטול הסימון ישמור עליו ללא שינוי.", "Manual scan": "סריקה ידנית", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "קיצורי הדרך הקיימים בשולחן העבודה שלך ייסרקו, ותצטרך לבחור אילו לשמור ואילו להסיר.", @@ -583,7 +635,6 @@ "Restart later": "הפעל מחדש מאוחר יותר", "An error occurred:": "אירעה שגיאה:", "I understand": "אני מבין", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI הופעל כמנהל, וזה לא מומלץ. בעת הפעלת WingetUI כמנהל מערכת, לכל פעולה שתושק מ-WingetUI תהיה הרשאות מנהל. אתה עדיין יכול להשתמש בתוכנית, אך אנו ממליצים בחום לא להפעיל את WingetUI עם הרשאות מנהל.", "WinGet was repaired successfully": "WinGet תוקן בהצלחה", "It is recommended to restart UniGetUI after WinGet has been repaired": "מומלץ להפעיל מחדש את UniGetUI לאחר תיקון WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "הערה: ניתן להשבית את פתרון הבעיות הזה מהגדרות UniGetUI, בסעיף WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. החבילות שלך נוספו לצרור. תוכל להמשיך להוסיף חבילות או לייצא את הצרור.", "Which backup do you want to open?": "איזה גיבוי אתה רוצה לפתוח?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "בחר את הגיבוי שאתה רוצה לפתוח. מאוחר יותר, תוכל לבדוק אילו חבילות אתה רוצה להתקין.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "יש פעולות שוטפות. יציאה מ-WingetUI עלולה לגרום להם להיכשל. האם אתה רוצה להמשיך?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "יש פעולות שוטפות. יציאה מ-UniGetUI עלולה לגרום להם להיכשל. האם אתה רוצה להמשיך?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI או חלק מרכיביו חסרים או פגומים.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "מומלץ בחום להתקין מחדש את UniGetUI כדי לטפל בסיטואציה.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "עיין ביומני הרישום של UniGetUI כדי לקבל פרטים נוספים בנוגע לקבצים המושפעים", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "כתוב כאן את שמות התהליכים, מופרדים בפסיקים (,)", "Unset or unknown": "לא מוגדר או לא ידוע", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "אנא עיין בפלט שורת הפקודה או עיין בהסטוריית המבצעים למידע נוסף על הבעיה.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "לחבילה הזו אין צילומי מסך או שחסר לו הסמל? תרום ל-WingetUI על ידי הוספת הסמלים וצילומי המסך החסרים למסד הנתונים הפתוח והציבורי שלנו.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "לחבילה הזו אין צילומי מסך או שחסר לו הסמל? תרום ל-UniGetUI על ידי הוספת הסמלים וצילומי המסך החסרים למסד הנתונים הפתוח והציבורי שלנו.", "Become a contributor": "הפוך לתורם", "Save": "שמור", "Update to {0} available": "עדכון לגרסה{0} זמין", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "הפעל את פותר הבעיות האוטומטי של WinGet", "Enable an [experimental] improved WinGet troubleshooter": "הפעל פתרון בעיות משופר [ניסיוני] עבור WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "הוסף עדכונים שנכשלים עם 'לא נמצא עדכון מתאים' לרשימת העדכונים שהמערכת תתעלם מהם", - "Restart WingetUI to fully apply changes": "הפעל מחדש את WingetUI כדי להחיל שינויים באופן מלא", - "Restart WingetUI": "הפעל מחדש את WingetUI", "Invalid selection": "בחירה לא חוקית", "No package was selected": "לא נבחרה חבילה", "More than 1 package was selected": "נבחרה יותר מחבילה אחת", @@ -684,6 +733,37 @@ "Log out failed: ": "היציאה נכשלה:", "Package backup settings": "הגדרות גיבוי חבילות", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "אודות WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI הוא יישום שמקל על ניהול התוכנה שלך, על ידי מתן ממשק גרפי הכל-באחד עבור מנהלי חבילות שורת הפקודה שלך.", + "You have installed WingetUI Version {0}": "התקנת את גירסת WingetUI {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI לא היה קורה ללא עזרת התורמים. תודה לכולכם 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI משתמש בספריות הבאות. בלעדיהם, WingetUI לא היה אפשרי.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI תורגם ליותר מ-40 שפות הודות למתרגמים המתנדבים. תודה לך 🤝", + "WingetUI Settings": "הגדרות של WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "ייתכן שתצטרך להתקין את {pm} כדי להשתמש בו עם WingetUI.", + "Scoop Installer - WingetUI": "מתקין סקופ - WingetUI", + "Scoop Uninstaller - WingetUI": "מסיר Scoop – WingetUI", + "Clearing Scoop cache - WingetUI": "ניקוי מטמון Scoop - WingetUI", + "WingetUI Version {0}": "WingetUI גרסה {0}", + "WingetUI License": "רישיון WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "שימוש ב-WingetUI מרמז על קבלת רישיון MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "אפשר API רקע (WingetUI Widgets and Sharing, פורט 7058)", + "Update WingetUI automatically": "עדכן את WingetUI באופן אוטומטי", + "Reset WingetUI": "אפס את WingetUI", + "WingetUI display language:": "שפת התצוגה של WingetUI:", + "Manage WingetUI autostart behaviour": "נהל את אופן ההפעלה האוטומטית של WingetUI", + "Enable WingetUI notifications": "אפשר הודעות של WingetUI", + "WingetUI Log": "WingetUI יומן", + "Show WingetUI": "הצג את WingetUI", + "WingetUI Homepage": "דף הבית של WingetUI", + "WingetUI Repository": "מאגר WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI הופעל כמנהל, וזה לא מומלץ. בעת הפעלת WingetUI כמנהל מערכת, לכל פעולה שתושק מ-WingetUI תהיה הרשאות מנהל. אתה עדיין יכול להשתמש בתוכנית, אך אנו ממליצים בחום לא להפעיל את WingetUI עם הרשאות מנהל.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "יש פעולות שוטפות. יציאה מ-WingetUI עלולה לגרום להם להיכשל. האם אתה רוצה להמשיך?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "לחבילה הזו אין צילומי מסך או שחסר לו הסמל? תרום ל-WingetUI על ידי הוספת הסמלים וצילומי המסך החסרים למסד הנתונים הפתוח והציבורי שלנו.", + "Restart WingetUI to fully apply changes": "הפעל מחדש את WingetUI כדי להחיל שינויים באופן מלא", + "Restart WingetUI": "הפעל מחדש את WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "נהל את התנהגות ההפעלה האוטומטית של UniGetUI מאפליקציית ההגדרות", "(Number {0} in the queue)": "(מספר {0} בתור)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Oryan Hassidim, @maximunited", "0 packages found": "לא נמצאו חבילות", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json index fa5f35e996..b8fcc0fb51 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hi.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "यदि पूर्व-अनइंस्टॉल आदेश विफल हो जाए तो अनइंस्टॉल निरस्त करें", "Command-line to run:": "चलाने के लिए कमांड-लाइन:", "Save and close": "बचा लें और बंद करें", + "General": "सामान्य", + "Architecture & Location": "आर्किटेक्चर और स्थान", + "Command-line": "कमांड-लाइन", + "Pre/Post install": "पूर्व/पश्चात स्थापना", "Run as admin": "\nप्रशासक के रूप में चलाएँ", "Interactive installation": "इंटरएक्टिव स्थापना", "Skip hash check": "हैश चैक छोड़ दें", @@ -71,6 +75,8 @@ "Manage ignored updates": "उपेक्षित अपडेट प्रबंधित करें", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "अद्यतनों के लिए जाँच करते समय यहाँ सूचीबद्ध पैकेजों को ध्यान में नहीं रखा जाएगा। उनके अद्यतनों को नज़रअंदाज़ करना बंद करने के लिए उन पर डबल-क्लिक करें या उनकी दाईं ओर स्थित बटन क्लिक करें।", "Reset list": "सूची रीसेट करें", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "क्या आप वाकई उपेक्षित अपडेट की सूची रीसेट करना चाहते हैं? यह क्रिया वापस नहीं की जा सकती।", + "No ignored updates": "कोई उपेक्षित अपडेट नहीं", "Package Name": "पैकेज का नाम", "Package ID": "पैकेज आईडी", "Ignored version": "उपेक्षित संस्करण", @@ -86,6 +92,7 @@ "This operation is running interactively.": "यह ऑपरेशन इंटरैक्टिव तरीके से चल रहा है।", "You will likely need to interact with the installer.": "संभवतः आपको इंस्टॉलर के साथ इंटरैक्ट करना पड़ेगा।", "Integrity checks skipped": "अखंडता जांच छोड़ दी गई", + "Integrity checks will not be performed during this operation.": "इस ऑपरेशन के दौरान अखंडता जाँच नहीं की जाएगी।", "Proceed at your own risk.": "अपने जोख़िम पर आगे बढ़ें।", "Close": "बंद करें", "Loading...": "\nलोड हो रहा है...", @@ -120,16 +127,17 @@ "optional": "वैकल्पिक", "UniGetUI {0} is ready to be installed.": "यूनीगेटयूआई {0} इंस्टॉल होने के लिए तैयार है।", "The update process will start after closing UniGetUI": "यूनीगेटयूआई बंद करने के बाद अपडेट प्रोसेस शुरू हो जाएगा।", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI को व्यवस्थापक के रूप में चलाया गया है, जिसकी अनुशंसा नहीं की जाती। UniGetUI को व्यवस्थापक के रूप में चलाने पर UniGetUI से शुरू की गई हर कार्रवाई को व्यवस्थापक अधिकार मिलेंगे। आप फिर भी प्रोग्राम का उपयोग कर सकते हैं, लेकिन हम ज़ोरदार अनुशंसा करते हैं कि UniGetUI को व्यवस्थापक अधिकारों के साथ न चलाएँ।", "Share anonymous usage data": "अनाम उपयोग डेटा साझा करें", "UniGetUI collects anonymous usage data in order to improve the user experience.": "यूनीगेटयूआई यूज़र एक्सपीरियंस को बेहतर बनाने के लिए गुमनाम यूसेज डेटा इकट्ठा करता है।", "Accept": "स्वीकार", - "You have installed WingetUI Version {0}": "आपने UniGetUI संस्करण {0} इंस्टॉल किया है", + "You have installed UniGetUI Version {0}": "आपने UniGetUI संस्करण {0} इंस्टॉल किया है", "Disclaimer": "अस्वीकरण", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "यूनीगेटयूआई किसी भी कम्पैटिबल पैकेज संकुल से जुड़ा नहीं है। यूनीगेटयूआई एक इंडिपेंडेंट प्रोजेक्ट है।", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "योगदानकर्ताओं की मदद के बिना UniGetUI संभव नहीं होता। आप सभी का धन्यवाद 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI निम्नलिखित लाइब्रेरीज़ का उपयोग करता है। इनके बिना UniGetUI संभव नहीं होता।", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "योगदानकर्ताओं की मदद के बिना UniGetUI संभव नहीं होता। आप सभी का धन्यवाद 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI निम्नलिखित लाइब्रेरीज़ का उपयोग करता है। इनके बिना UniGetUI संभव नहीं होता।", "{0} homepage": "{0} होमपेज", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवी अनुवादकों की बदौलत UniGetUI का 40 से अधिक भाषाओं में अनुवाद किया गया है। धन्यवाद 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवी अनुवादकों की बदौलत UniGetUI का 40 से अधिक भाषाओं में अनुवाद किया गया है। धन्यवाद 🤝", "Verbose": "वाचाल", "1 - Errors": "1 - त्रुटि", "2 - Warnings": "2 - चेतावनियाँ", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "आप {0} (@{1}) के रूप में लॉग इन हैं", "Nice! Backups will be uploaded to a private gist on your account": "बढ़िया! बैकअप आपके अकाउंट पर एक प्राइवेट गिस्‍ट में अपलोड हो जाएंगे", "Select backup": "बैकअप चुनें", - "WingetUI Settings": "UniGetUI की सेटिंग", + "UniGetUI Settings": "UniGetUI सेटिंग्स", "Allow pre-release versions": "प्री-रिलीज़ वर्शन की अनुमति दें", "Apply": "आवेदन करना", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "सुरक्षा कारणों से कस्टम कमांड-लाइन तर्क डिफ़ॉल्ट रूप से अक्षम हैं। इसे बदलने के लिए UniGetUI की सुरक्षा सेटिंग्स पर जाएँ।", "Go to UniGetUI security settings": "यूनीगेटयूआई सिक्योरिटी सेटिंग्स पर जाएं", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "हर बार एक {0} संकुल इंस्टॉल, अपग्रेड या अनइंस्टॉल होने पर ये ऑप्शन डिफ़ॉल्ट रूप से लागू हो जाएंगे", "Package's default": "संकुल का डिफ़ॉल्ट", @@ -160,6 +169,7 @@ "Username": "यूज़रनेम", "Password": "पासवर्ड", "Credentials": "साख", + "It is not guaranteed that the provided credentials will be stored safely": "यह सुनिश्चित नहीं है कि दिए गए क्रेडेंशियल सुरक्षित रूप से संग्रहीत किए जाएँगे", "Partially": "आंशिक रूप से", "Package manager": "संकुल प्रबंधक", "Compatible with proxy": "प्रॉक्सी के साथ संगत", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} सक्षम है और उपयोग के लिए तैयार है", "{pm} version:": "{pm} संस्करण:", "{pm} was not found!": "{pm} नहीं मिला!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI के साथ इसका उपयोग करने के लिए आपको {pm} इंस्टॉल करना पड़ सकता है।", - "Scoop Installer - WingetUI": "स्कूप इंस्टॉलर - यूनीगेटयूआई", - "Scoop Uninstaller - WingetUI": "स्कूप अनइंस्टालर - यूनीगेटयूआई", - "Clearing Scoop cache - WingetUI": "स्कूप कैश साफ़ करना - यूनीगेटयूआई", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI के साथ इसका उपयोग करने के लिए आपको {pm} इंस्टॉल करना पड़ सकता है।", + "Scoop Installer - UniGetUI": "स्कूप इंस्टॉलर - यूनीगेटयूआई", + "Scoop Uninstaller - UniGetUI": "स्कूप अनइंस्टालर - यूनीगेटयूआई", + "Clearing Scoop cache - UniGetUI": "स्कूप कैश साफ़ करना - यूनीगेटयूआई", + "Restart UniGetUI to fully apply changes": "परिवर्तनों को पूरी तरह लागू करने के लिए UniGetUI पुनःआरंभ करें", "Restart UniGetUI": "यूनीगेटयूआई पुनःआरंभ करें", "Manage {0} sources": "{0} स्रोतों का प्रबंधन करें", "Add source": "स्रोत जोड़ें", "Add": "जोड़ो", + "Source name": "स्रोत का नाम", + "Source URL": "स्रोत URL", "Other": "अन्य", + "No minimum age": "कोई न्यूनतम आयु नहीं", "1 day": "1 दिन", "{0} days": "{0} दिन", + "Custom...": "कस्टम...", "{0} minutes": "{0} मिनट", "1 hour": "1 घंटा", "{0} hours": "{0} घंटे", "1 week": "1 सप्ताह", - "WingetUI Version {0}": "UniGetUI संस्करण {0}", + "Supports release dates": "रिलीज़ तिथियों का समर्थन करता है", + "Release date support per package manager": "प्रत्येक पैकेज प्रबंधक के लिए रिलीज़ तिथि समर्थन", + "UniGetUI Version {0}": "UniGetUI संस्करण {0}", "Search for packages": "पैकेज खोजें", "Local": "स्थानीय", "OK": "ठीक", @@ -200,11 +217,13 @@ "Enabled": "सक्षम", "Disabled": "अक्षम", "More info": "और जानकारी", + "GitHub account": "GitHub खाता", "Log in with GitHub to enable cloud package backup.": "क्लाउड पैकेज बैकअप चालू करने के लिए गिटहब से लॉग इन करें।", "More details": "अधिक जानकारी", "Log in": "लॉग इन करें", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "अगर आपने क्लाउड बैकअप चालू किया है, तो यह इस अकाउंट पर गिटहब सार के तौर पर सेव हो जाएगा।", "Log out": "लॉग आउट", + "About UniGetUI": "UniGetUI के बारे में", "About": "के बारे में", "Third-party licenses": "तृतीय-पक्ष लाइसेंस", "Contributors": "\nयोगदानकर्ता", @@ -212,6 +231,7 @@ "Manage shortcuts": "शॉर्टकट प्रबंधित करें", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "यूनीगेटयूआई ने निम्नलिखित डेस्कटॉप शॉर्टकट का पता लगाया है जिन्हें भविष्य के अपग्रेड में अपने आप हटाया जा सकता है।", "Do you really want to reset this list? This action cannot be reverted.": "क्या आप सच में इस लिस्ट को रीसेट करना चाहते हैं? यह एक्शन वापस नहीं किया जा सकता।", + "Open in explorer": "एक्सप्लोरर में खोलें", "Remove from list": "सूची से हटाएँ", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "जब नए शॉर्टकट डिटेक्ट हों, तो यह डायलॉग दिखाने के बजाय उन्हें अपने आप डिलीट कर दें।", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "यूनीगेटयूआई यूज़र एक्सपीरियंस को समझने और बेहतर बनाने के एकमात्र मकसद से गुमनाम यूसेज डेटा इकट्ठा करता है।", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "क्या आप मानते हैं कि यूनीगेटयूआई सिर्फ़ यूज़र एक्सपीरियंस को समझने और बेहतर बनाने के मकसद से, बिना नाम बताए इस्तेमाल के आंकड़े इकट्ठा करता है और भेजता है?", "Decline": "अस्वीकार", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "कोई भी पर्सनल जानकारी इकट्ठा या भेजी नहीं जाती है, और इकट्ठा किया गया डेटा गुमनाम रहता है, इसलिए इसे आप तक वापस नहीं लाया जा सकता।", - "About WingetUI": "WingetUI के बारे में", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एक ऐसा अनुप्रयोग है जो आपके कमांड-लाइन पैकेज मैनेजरों के लिए ऑल-इन-वन ग्राफिकल इंटरफ़ेस देकर आपके सॉफ़्टवेयर को प्रबंधित करना आसान बनाता है।", + "Toggle navigation panel": "नेविगेशन पैनल टॉगल करें", + "Minimize": "छोटा करें", + "Maximize": "बड़ा करें", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एक ऐसा अनुप्रयोग है जो आपके कमांड-लाइन पैकेज मैनेजरों के लिए ऑल-इन-वन ग्राफिकल इंटरफ़ेस देकर आपके सॉफ़्टवेयर को प्रबंधित करना आसान बनाता है।", "Useful links": "उपयोगी लिंक", + "UniGetUI Homepage": "UniGetUI होमपेज", "Report an issue or submit a feature request": "किसी समस्या की रिपोर्ट करें या सुविधा का अनुरोध सबमिट करें", + "UniGetUI Repository": "UniGetUI रिपॉज़िटरी", "View GitHub Profile": "गिटहब प्रोफ़ाइल देखें", - "WingetUI License": "यूनीगेटयूआई लाइसेंस", - "Using WingetUI implies the acceptation of the MIT License": "यूनीगेटयूआई का इस्तेमाल करने का मतलब है MIT लाइसेंस को स्वीकार करना।", + "UniGetUI License": "यूनीगेटयूआई लाइसेंस", + "Using UniGetUI implies the acceptation of the MIT License": "यूनीगेटयूआई का इस्तेमाल करने का मतलब है MIT लाइसेंस को स्वीकार करना।", "Become a translator": "अनुवादक बनें", "View page on browser": "पेज को ब्राउज़र में देखें", "Copy to clipboard": "क्लिपबोर्ड पर प्रतिलिपि करें", "Export to a file": "फ़ाइल में निर्यात करें", "Log level:": "लॉग स्तर:", "Reload log": "लॉग पुनः लोड करें", + "Export log": "लॉग निर्यात करें", + "UniGetUI Log": "UniGetUI लॉग", "Text": "लेखन", "Change how operations request administrator rights": "ऑपरेशन एडमिनिस्ट्रेटर अधिकारों का अनुरोध कैसे करते हैं, इसे बदलें", "Restrictions on package operations": "संकुल संचालन पर प्रतिबंध", @@ -271,7 +297,7 @@ "Leave empty for default": "डिफ़ॉल्ट के लिए खाली छोड़ दें", "Add a timestamp to the backup file names": "बैकअप फ़ाइल नामों में टाइमस्टैम्प जोड़ें", "Backup and Restore": "बैकअप और पुनर्स्थापना", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "बैकग्राउंड एपीआई चालू करें (यूनीगेटयूआई और शेयरिंग के लिए विजेट, पोर्ट 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "बैकग्राउंड एपीआई चालू करें (यूनीगेटयूआई और शेयरिंग के लिए विजेट, पोर्ट 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "इंटरनेट कनेक्टिविटी वाले काम करने से पहले डिवाइस के इंटरनेट से कनेक्ट होने का इंतज़ार करें।", "Disable the 1-minute timeout for package-related operations": "पैकेज से जुड़े ऑपरेशन के लिए 1-मिनट का टाइमआउट बंद करें", "Use installed GSudo instead of UniGetUI Elevator": "यूनीगेटयूआई एलिवेटर के बजाय इंस्टॉल किए गए जीसुडो का उपयोग करें", @@ -286,7 +312,7 @@ "Telemetry": "टेलीमेटरी", "Manage UniGetUI settings": "यूनीगेटयूआई सेटिंग्स प्रबंधित करें", "Related settings": "संबंधित सेटिंग्स", - "Update WingetUI automatically": "WingetUI को स्वचालित रूप से अपडेट करें", + "Update UniGetUI automatically": "UniGetUI को स्वचालित रूप से अपडेट करें", "Check for updates": "अद्यतन के लिए जाँच", "Install prerelease versions of UniGetUI": "यूनीगेटयूआई के प्री-रिलीज़ वर्शन इंस्टॉल करें", "Manage telemetry settings": "टेलीमेट्री सेटिंग्स प्रबंधित करें", @@ -295,17 +321,17 @@ "Import": "आयात", "Export settings to a local file": "सेटिंग्स को लोकल फ़ाइल में एक्सपोर्ट करें", "Export": "एक्सपोर्ट", - "Reset WingetUI": "यूनीगेटयूआई रीसेट करें", "Reset UniGetUI": "यूनीगेटयूआई रीसेट करें", "User interface preferences": "उपयोगकर्ता इंटरफ़ेस प्राथमिकताएँ", "Application theme, startup page, package icons, clear successful installs automatically": "एप्लिकेशन थीम, स्टार्टअप पेज, पैकेज आइकन, सफल इंस्टॉल को ऑटोमैटिकली क्लियर करें", "General preferences": "सामान्य प्राथमिकताएं", - "WingetUI display language:": "UniGetUI की प्रदर्शन भाषा", + "UniGetUI display language:": "UniGetUI की प्रदर्शन भाषा", "Is your language missing or incomplete?": "क्या आपकी भाषा गायब है या अधूरी है?", "Appearance": "उपस्थिति", "UniGetUI on the background and system tray": "यूनीगेटयूआई बैकग्राउंड और सिस्टम ट्रे पर है।", "Package lists": "संकुल सूचियाँ", "Close UniGetUI to the system tray": "यूनीगेटयूआई को सिस्टम ट्रे में बंद करें", + "Manage UniGetUI autostart behaviour": "UniGetUI के ऑटोस्टार्ट व्यवहार को प्रबंधित करें", "Show package icons on package lists": "संकुल लिस्ट पर संकुल आइकन दिखाएँ", "Clear cache": "कैश को साफ़ करें", "Select upgradable packages by default": "डिफ़ॉल्ट रूप से अपग्रेड करने योग्य पैकेज चुनें", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "कृपया ध्यान दें कि सभी संकुल प्रबंधक इस सुविधा का पूर्णतः समर्थन नहीं कर सकते हैं", "Proxy URL": "प्रॉक्सी URL", "Enter proxy URL here": "प्रॉक्सी URL यहां डालें", + "Authenticate to the proxy with a user and a password": "उपयोगकर्ता नाम और पासवर्ड के साथ प्रॉक्सी में प्रमाणीकरण करें", + "Internet and proxy settings": "इंटरनेट और प्रॉक्सी सेटिंग्स", "Package manager preferences": "पैकेज प्रबंधक वरीयताएँ", "Ready": "तैयार", "Not found": "नहीं मिला", "Notification preferences": "अधिसूचना प्राथमिकताएँ", "Notification types": "अधिसूचना प्रकार", "The system tray icon must be enabled in order for notifications to work": "नोटिफ़िकेशन काम करने के लिए सिस्टम ट्रे आइकन इनेबल होना चाहिए।", - "Enable WingetUI notifications": "WingetUI सूचनाएं सक्षम करें", + "Enable UniGetUI notifications": "UniGetUI सूचनाएं सक्षम करें", "Show a notification when there are available updates": "अपडेट उपलब्ध होने पर सूचना दिखाएं", "Show a silent notification when an operation is running": "जब कोई ऑपरेशन चल रहा हो तो साइलेंट नोटिफ़िकेशन दिखाएँ", "Show a notification when an operation fails": "जब कोई ऑपरेशन फेल हो जाए तो नोटिफिकेशन दिखाएं", "Show a notification when an operation finishes successfully": "जब कोई ऑपरेशन सफलतापूर्वक पूरा हो जाए तो एक नोटिफ़िकेशन दिखाएँ", "Concurrency and execution": "समवर्तीता और निष्पादन", "Automatic desktop shortcut remover": "स्वचालित डेस्कटॉप शॉर्टकट रिमूवर ", + "Choose how many operations should be performed in parallel": "चुनें कि कितनी कार्रवाइयाँ समानांतर में की जानी चाहिए", "Clear successful operations from the operation list after a 5 second delay": "5 सेकंड की देरी के बाद ऑपरेशन लिस्ट से सफल ऑपरेशन को हटा दें", "Download operations are not affected by this setting": "इस सेटिंग से डाउनलोड ऑपरेशन पर कोई असर नहीं पड़ता है", "Try to kill the processes that refuse to close when requested to": "उन प्रोसेस को बंद करने की कोशिश करें जो रिक्वेस्ट करने पर बंद नहीं होते हैं", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "इस्तेमाल करने के लिए एग्जीक्यूटेबल चुनें। नीचे दी गई लिस्ट में यूनीगेटयूआई को मिले एग्जीक्यूटेबल दिखाए गए हैं।", "Current executable file:": "अभी की एग्जीक्यूटेबल फ़ाइल:", "Ignore packages from {pm} when showing a notification about updates": "अपडेट के बारे में सूचना दिखाते समय {pm} से पैकेज को अनदेखा करें", + "Update security": "अपडेट सुरक्षा", + "Use global setting": "वैश्विक सेटिंग का उपयोग करें", + "e.g. 10": "उदा. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} अपने पैकेजों के लिए रिलीज़ तिथियाँ प्रदान नहीं करता, इसलिए इस सेटिंग का कोई प्रभाव नहीं होगा", + "Override the global minimum update age for this package manager": "इस पैकेज प्रबंधक के लिए वैश्विक न्यूनतम अपडेट आयु को ओवरराइड करें", + "Minimum age for updates": "अपडेट के लिए न्यूनतम आयु", + "Custom minimum age (days)": "कस्टम न्यूनतम आयु (दिन)", "View {0} logs": "लॉग {0} देखें", + "If Python cannot be found or is not listing packages but is installed on the system, ": "यदि Python नहीं मिल रहा है या पैकेज सूचीबद्ध नहीं कर रहा है लेकिन सिस्टम पर स्थापित है, ", "Advanced options": "उन्नत विकल्प", "Reset WinGet": "विनगेट रीसेट करें", "This may help if no packages are listed": "अगर कोई संकुल लिस्ट में नहीं दिख रहा है तो यह मदद कर सकता है।", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "लॉन्च होने पर स्कूप क्लीनअप सक्षम करें", "Use system Chocolatey": "सिस्टम चॉकलेट्टी का प्रयोग करें", "Default vcpkg triplet": "डिफ़ॉल्ट वीसीपीकेजी ट्रिपलेट", + "Change vcpkg root location": "vcpkg रूट स्थान बदलें", "Language, theme and other miscellaneous preferences": "भाषा, थीम और अन्य विविध प्राथमिकताएं", "Show notifications on different events": "अलग-अलग इवेंट पर नोटिफ़िकेशन दिखाएँ", "Change how UniGetUI checks and installs available updates for your packages": "यूनीगेटयूआई आपके पैकेज के लिए उपलब्ध अपडेट को कैसे चेक और इंस्टॉल करता है, इसे बदलें", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "नेटवर्क कनेक्शन मीटर्ड होने पर अपडेट ऑटोमैटिकली इंस्टॉल न करें", "Do not automatically install updates when the device runs on battery": "जब डिवाइस बैटरी पर चल रहा हो, तो अपडेट अपने आप इंस्टॉल न करें", "Do not automatically install updates when the battery saver is on": "बैटरी सेवर चालू होने पर अपडेट अपने आप इंस्टॉल न करें", + "Only show updates that are at least the specified number of days old": "केवल वे अपडेट दिखाएँ जो कम से कम निर्धारित दिनों जितने पुराने हों", "Change how UniGetUI handles install, update and uninstall operations.": "यूनीगेटयूआई इंस्टॉल, अपडेट और अनइंस्टॉल ऑपरेशन को कैसे हैंडल करता है, इसे बदलें।", "Package Managers": "संकुल प्रबंधकों", "More": "अधिक", - "WingetUI Log": "यूनीगेटयूआई लॉग", "Package Manager logs": "संकुल प्रबंधक लॉग", "Operation history": "ऑपरेशन इतिहास", "Help": "सहायता", + "Quit UniGetUI": "UniGetUI बंद करें", "Order by:": "आदेश द्वारा:", "Name": "नाम", "Id": "पहचान", @@ -409,6 +448,10 @@ "Both": "दोनों", "Exact match": "सटीक मिलन", "Show similar packages": "समान संकुल दिखाएँ", + "Nothing to share": "साझा करने के लिए कुछ नहीं", + "Please select a package first.": "कृपया पहले एक पैकेज चुनें।", + "Share link copied": "साझा लिंक कॉपी हो गया", + "The share link for {0} has been copied to the clipboard.": "{0} के लिए साझा लिंक क्लिपबोर्ड पर कॉपी कर दिया गया है।", "No results were found matching the input criteria": "इनपुट क्राइटेरिया से मैच करते हुए कोई रिज़ल्ट नहीं मिला", "No packages were found": "कोई पैकेज नहीं मिला", "Loading packages": "पैकेज लोड करना", @@ -440,7 +483,11 @@ "Package bundle": "संकुल बंडल", "Could not create bundle": "बंडल नहीं बनाया जा सका", "The package bundle could not be created due to an error.": "एक एरर के कारण संकुल बंडल नहीं बनाया जा सका।", + "Unsaved changes": "असहेजे गए परिवर्तन", + "Discard changes": "परिवर्तन त्यागें", + "You have unsaved changes in the current bundle. Do you want to discard them?": "वर्तमान बंडल में आपके असहेजे गए परिवर्तन हैं। क्या आप उन्हें त्यागना चाहते हैं?", "Bundle security report": "बंडल सुरक्षा प्रतिवेदन", + "The bundle contained restricted content": "बंडल में प्रतिबंधित सामग्री थी", "Hooray! No updates were found.": "\nवाह! कोई अपडेट नहीं मिला!", "Everything is up to date": "सब कुछ अप टू डेट है", "Uninstall selected packages": "चुने पैकेज की स्थापना रद्द करें", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "विंडोज़ के लिए क्लासिक संकुल मैनेजर. आपको वहां सब कुछ मिलेगा.
निहित: सामान्य सॉफ्टवेयर", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft के .NET पारिस्थितिकी तंत्र को ध्यान में रखकर डिज़ाइन किए गए टूल और एक्ज़ीक्यूटेबल्स से भरा एक संग्रह।\nइसमें शामिल हैं:\n.NET से संबंधित टूल और स्क्रिप्ट", "NuPkg (zipped manifest)": "NuPkg (ज़िप्ड मैनिफ़ेस्ट)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (या Linux) के लिए Missing Package Manager.
शामिल है: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS का पैकेज मैनेजर। जावास्क्रिप्ट की दुनिया में मौजूद लाइब्रेरी और दूसरी यूटिलिटी से भरा हुआ
में निहित: नोड जावास्क्रिप्ट लाइब्रेरी और अन्य संबंधित उपयोगिताएँ", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "पायथन लाइब्रेरी मैनेजर। पायथन लाइब्रेरीज़ और अन्य पायथन-संबंधित उपयोगिताओं से भरपूर
निहित: पायथन लाइब्रेरी और संबंधित उपयोगिताएँ", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "पावरशेल का पैकेज प्रबंधक। पावरशेल की क्षमताओं का विस्तार करने के लिए लाइब्रेरी और स्क्रिप्ट खोजें
निहित: मॉड्यूल, स्क्रिप्ट, कमांडलेट", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "कतार पर ऑपरेशन (स्थिति {0})...", "Click here for more details": "अधिक जानकारी के लिए यहां क्लिक करें", "Operation canceled by user": "उपयोगकर्ता द्वारा ऑपरेशन रद्द कर दिया गया", + "Running PreOperation ({0}/{1})...": "PreOperation चल रहा है ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} में से PreOperation {0} विफल हुआ, और उसे आवश्यक के रूप में चिह्नित किया गया था। निरस्त किया जा रहा है...", + "PreOperation {0} out of {1} finished with result {2}": "{1} में से PreOperation {0} परिणाम {2} के साथ समाप्त हुआ", "Starting operation...": "ऑपरेशन शुरू हो रहा है...", + "Running PostOperation ({0}/{1})...": "PostOperation चल रहा है ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} में से PostOperation {0} विफल हुआ, और उसे आवश्यक के रूप में चिह्नित किया गया था। निरस्त किया जा रहा है...", + "PostOperation {0} out of {1} finished with result {2}": "{1} में से PostOperation {0} परिणाम {2} के साथ समाप्त हुआ", "{package} installer download": "{package} इंस्टॉलर डाउनलोड", "{0} installer is being downloaded": "{0} इंस्टॉलर डाउनलोड किया जा रहा है", "Download succeeded": "डाउनलोड सफल रहा", @@ -556,14 +610,12 @@ "Portable mode": "पोर्टेबल मोड\n", "DEBUG BUILD": "डीबग बिल्ड", "Available Updates": "उपलब्ध अद्यतन", - "Show WingetUI": "WingetUI दिखाएं", + "Show UniGetUI": "UniGetUI दिखाएं", "Quit": "बंद करें", "Attention required": "ध्यान देने की आवश्यकता", "Restart required": "पुनरारंभ करना आवश्यक है", "1 update is available": "1 अपडेट उपलब्ध है", "{0} updates are available": "{0} अपडेट उपलब्ध हैं", - "WingetUI Homepage": "यूनीगेटयूआई मुखपृष्ठ", - "WingetUI Repository": "UniGetUI रिपॉजिटरी", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "यहां आप नीचे दिए गए शॉर्टकट के बारे में यूनीगेटयूआई का बिहेवियर बदल सकते हैं। किसी शॉर्टकट को चेक करने पर, अगर भविष्य में अपग्रेड पर वह बनता है, तो यूनीगेटयूआई उसे डिलीट कर देगा। इसे अनचेक करने से शॉर्टकट बना रहेगा।", "Manual scan": "हस्तचालित स्कैन\n", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "आपके डेस्कटॉप पर मौजूद शॉर्टकट स्कैन किए जाएंगे, और आपको चुनना होगा कि कौन से रखने हैं और कौन से हटाने हैं।", @@ -583,7 +635,6 @@ "Restart later": "बाद में पुनः आरंभ करें", "An error occurred:": "एक त्रुटि हुई:", "I understand": "मैं समझता हूँ", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI को व्यवस्थापक के रूप में चलाया गया है, जिसकी अनुशंसा नहीं की जाती। जब UniGetUI को व्यवस्थापक के रूप में चलाया जाता है, तो इससे शुरू की गई हर कार्रवाई को व्यवस्थापक अधिकार मिलते हैं। आप अभी भी प्रोग्राम का उपयोग कर सकते हैं, लेकिन हम ज़ोरदार सलाह देते हैं कि UniGetUI को व्यवस्थापक अधिकारों के साथ न चलाएँ।", "WinGet was repaired successfully": "विनगेट सफलतापूर्वक मरम्मत की गई", "It is recommended to restart UniGetUI after WinGet has been repaired": "विनगेट के रिपेयर होने के बाद यूनीगेटयूआई को रीस्टार्ट करने की सलाह दी जाती है।", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "नोट: इस ट्रबलशूटर को विनगेट सेक्शन में यूनीगेटयूआई सेटिंग्स से डिसेबल किया जा सकता है।", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. आपके पैकेज बंडल में जोड़ दिए गए हैं। आप पैकेज जोड़ना जारी रख सकते हैं, या बंडल को एक्सपोर्ट कर सकते हैं।", "Which backup do you want to open?": "आप कौन सा बैकअप खोलना चाहते हैं?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "वह बैकअप चुनें जिसे आप खोलना चाहते हैं। बाद में, आप देख पाएँगे कि आप कौन से पैकेज/प्रोग्राम रिस्टोर करना चाहते हैं।", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ऑपरेशन चल रहे हैं। यूनीगेटयूआई बंद करने से वे फेल हो सकते हैं। क्या आप जारी रखना चाहते हैं?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "ऑपरेशन चल रहे हैं। यूनीगेटयूआई बंद करने से वे फेल हो सकते हैं। क्या आप जारी रखना चाहते हैं?", "UniGetUI or some of its components are missing or corrupt.": "यूनीगेटयूआई या इसके कुछ कंपोनेंट गायब हैं या खराब हो गए हैं।", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "इस स्थिति को ठीक करने के लिए यूनीगेटयूआई को फिर से इंस्टॉल करने की सलाह दी जाती है।", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "प्रभावित फ़ाइल(फ़ाइलों) के बारे में अधिक जानकारी प्राप्त करने के लिए यूनीगेटयूआई लॉग देखें", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "प्रोसेस के नाम यहां लिखें, उन्हें कॉमा (,) से अलग करें", "Unset or unknown": "अनसेट या अज्ञात", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "कृपया समस्या के बारे में अधिक जानकारी के लिए कमांड-लाइन आउटपुट देखें या ऑपरेशन इतिहास देखें।", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "इस संकुल में कोई स्क्रीनशॉट नहीं है या आइकन गायब है? हमारे ओपन, पब्लिक डेटाबेस में गायब आइकन और स्क्रीनशॉट जोड़कर यूनीगेटयूआई में योगदान दें।", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "इस संकुल में कोई स्क्रीनशॉट नहीं है या आइकन गायब है? हमारे ओपन, पब्लिक डेटाबेस में गायब आइकन और स्क्रीनशॉट जोड़कर यूनीगेटयूआई में योगदान दें।", "Become a contributor": "योगदानकर्ता बनें", "Save": "बचाओ", "Update to {0} available": "{0} में अपडेट उपलब्ध है", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "ऑटोमैटिक विनगेट ट्रबलशूटर चालू करें", "Enable an [experimental] improved WinGet troubleshooter": "एक [एक्सपेरिमेंटल] बेहतर विनगेट ट्रबलशूटर इनेबल करें", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'कोई लागू अद्यतन नहीं मिला' त्रुटि के साथ विफल अद्यतनों को अनदेखे अद्यतन सूची में जोड़ें", - "Restart WingetUI to fully apply changes": "परिवर्तनों को पूरी तरह से लागू करने के लिए यूनीगेटयूआई को पुनःआरंभ करें", - "Restart WingetUI": "WingetUI को पुनरारंभ करें", "Invalid selection": "अमान्य चयन", "No package was selected": "कोई पैकेज नहीं चुना गया", "More than 1 package was selected": "1 से अधिक पैकेज चुने गए", @@ -684,6 +733,37 @@ "Log out failed: ": "लॉग आउट विफल:", "Package backup settings": "संकुल बैकअप सेटिंग्स", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI के बारे में", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एक ऐसा अनुप्रयोग है जो आपके कमांड-लाइन पैकेज मैनेजरों के लिए ऑल-इन-वन ग्राफिकल इंटरफ़ेस देकर आपके सॉफ़्टवेयर को प्रबंधित करना आसान बनाता है।", + "You have installed WingetUI Version {0}": "आपने UniGetUI संस्करण {0} इंस्टॉल किया है", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "योगदानकर्ताओं की मदद के बिना UniGetUI संभव नहीं होता। आप सभी का धन्यवाद 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI निम्नलिखित लाइब्रेरीज़ का उपयोग करता है। इनके बिना UniGetUI संभव नहीं होता।", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवी अनुवादकों की बदौलत UniGetUI का 40 से अधिक भाषाओं में अनुवाद किया गया है। धन्यवाद 🤝", + "WingetUI Settings": "UniGetUI की सेटिंग", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI के साथ इसका उपयोग करने के लिए आपको {pm} इंस्टॉल करना पड़ सकता है।", + "Scoop Installer - WingetUI": "स्कूप इंस्टॉलर - यूनीगेटयूआई", + "Scoop Uninstaller - WingetUI": "स्कूप अनइंस्टालर - यूनीगेटयूआई", + "Clearing Scoop cache - WingetUI": "स्कूप कैश साफ़ करना - यूनीगेटयूआई", + "WingetUI Version {0}": "UniGetUI संस्करण {0}", + "WingetUI License": "यूनीगेटयूआई लाइसेंस", + "Using WingetUI implies the acceptation of the MIT License": "यूनीगेटयूआई का इस्तेमाल करने का मतलब है MIT लाइसेंस को स्वीकार करना।", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "बैकग्राउंड एपीआई चालू करें (यूनीगेटयूआई और शेयरिंग के लिए विजेट, पोर्ट 7058)", + "Update WingetUI automatically": "WingetUI को स्वचालित रूप से अपडेट करें", + "Reset WingetUI": "यूनीगेटयूआई रीसेट करें", + "WingetUI display language:": "UniGetUI की प्रदर्शन भाषा", + "Manage WingetUI autostart behaviour": "WingetUI के ऑटोस्टार्ट व्यवहार को प्रबंधित करें", + "Enable WingetUI notifications": "WingetUI सूचनाएं सक्षम करें", + "WingetUI Log": "यूनीगेटयूआई लॉग", + "Show WingetUI": "WingetUI दिखाएं", + "WingetUI Homepage": "यूनीगेटयूआई मुखपृष्ठ", + "WingetUI Repository": "UniGetUI रिपॉजिटरी", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI को व्यवस्थापक के रूप में चलाया गया है, जिसकी अनुशंसा नहीं की जाती। जब UniGetUI को व्यवस्थापक के रूप में चलाया जाता है, तो इससे शुरू की गई हर कार्रवाई को व्यवस्थापक अधिकार मिलते हैं। आप अभी भी प्रोग्राम का उपयोग कर सकते हैं, लेकिन हम ज़ोरदार सलाह देते हैं कि UniGetUI को व्यवस्थापक अधिकारों के साथ न चलाएँ।", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ऑपरेशन चल रहे हैं। यूनीगेटयूआई बंद करने से वे फेल हो सकते हैं। क्या आप जारी रखना चाहते हैं?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "इस संकुल में कोई स्क्रीनशॉट नहीं है या आइकन गायब है? हमारे ओपन, पब्लिक डेटाबेस में गायब आइकन और स्क्रीनशॉट जोड़कर यूनीगेटयूआई में योगदान दें।", + "Restart WingetUI to fully apply changes": "परिवर्तनों को पूरी तरह से लागू करने के लिए यूनीगेटयूआई को पुनःआरंभ करें", + "Restart WingetUI": "WingetUI को पुनरारंभ करें", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "सेटिंग्स ऐप से यूनीगेटयूआई ऑटोस्टार्ट बिहेवियर मैनेज करें", "(Number {0} in the queue)": "(पंक्ति में संख्या {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@satanarious, @atharva_xoxo, @Ashu-r", "0 packages found": "\n0 पैकेज मिले", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json index 6f10f298fa..96abf2cf96 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hr.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Prekini de-instalaciju ukoliko je prilikom de-instalacijske naredbe došlo do greške", "Command-line to run:": "Naredbeni redak za pokretanje:", "Save and close": "Spremi i zatvori", + "General": "Općenito", + "Architecture & Location": "Arhitektura i lokacija", + "Command-line": "Naredbeni redak", + "Pre/Post install": "Prije/Nakon instalacije", "Run as admin": "Pokreni kao administrator", "Interactive installation": "Interaktivna instalacija", "Skip hash check": "Preskoči provjeru hasha", @@ -71,6 +75,8 @@ "Manage ignored updates": "Upravljanje zanemarenim ažuriranjima", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Ovdje navedeni paketi neće biti uzeti u obzir prilikom provjere ažuriranja. Dvaput kliknite na njih ili kliknite gumb s njihove desne strane da prestanete ignorirati njihova ažuriranja.", "Reset list": "Resetiraj popis", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Želite li zaista resetirati popis zanemarenih ažuriranja? Ova se radnja ne može poništiti", + "No ignored updates": "Nema zanemarenih ažuriranja", "Package Name": "Naziv paketa", "Package ID": "ID paketa", "Ignored version": "Zanemarena verzija", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ova operacija se izvodi interaktivno.", "You will likely need to interact with the installer.": "Vjerojatno ćete morati imati interakciju s instalacijskim programom. ", "Integrity checks skipped": "Provjere integriteta preskočene", + "Integrity checks will not be performed during this operation.": "Provjere integriteta neće se izvršavati tijekom ove operacije.", "Proceed at your own risk.": "Nastavite na vlastitu odgovornost.", "Close": "Zatvori", "Loading...": "Učitavanje...", @@ -120,16 +127,17 @@ "optional": "opcija", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} je spreman za instalaciju.", "The update process will start after closing UniGetUI": "Proces ažuriranja započet će nakon zatvaranja UniGetUI-ja", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI je pokrenut kao administrator, što se ne preporučuje. Kada UniGetUI pokrećete kao administrator, SVAKA operacija pokrenuta iz UniGetUI-ja imat će administratorske ovlasti. Program i dalje možete koristiti, ali snažno preporučujemo da UniGetUI ne pokrećete s administratorskim ovlastima.", "Share anonymous usage data": "Dijelite anonimne podatke o korištenju", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI prikuplja anonimne podatke o korištenju kako bi poboljšao korisničko iskustvo.", "Accept": "Prihvati", - "You have installed WingetUI Version {0}": "Instalirali ste UniGetUI verziju {0}", + "You have installed UniGetUI Version {0}": "Instalirali ste UniGetUI verziju {0}", "Disclaimer": "Izjava o odgovornosti", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nije povezan ni s jednim kompatibilnim upraviteljem paketa. UniGetUI je neovisni projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ne bi bio moguć bez pomoći suradnika. Hvala svima 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI koristi sljedeće biblioteke. Bez njih, UniGetUI ne bi bio moguć.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ne bi bio moguć bez pomoći suradnika. Hvala svima 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI koristi sljedeće biblioteke. Bez njih, UniGetUI ne bi bio moguć.", "{0} homepage": "{0} početna stranica", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI je preveden na više od 40 jezika zahvaljujući volonterima prevoditeljima. Hvala vam 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI je preveden na više od 40 jezika zahvaljujući volonterima prevoditeljima. Hvala vam 🤝", "Verbose": "Opširno", "1 - Errors": "1 - Greške", "2 - Warnings": "2 - Upozorenja", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Prijavljeni ste kao {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Odlično! Sigurnosne kopije bit će prenesene u privatni gist na vašem računu.", "Select backup": "Odaberi sigurnosnu kopiju", - "WingetUI Settings": "WingetUI postavke", + "UniGetUI Settings": "Postavke UniGetUI-ja", "Allow pre-release versions": "Dozvoli verzije pred-izdanja", "Apply": "Primjeni", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Iz sigurnosnih razloga prilagođeni argumenti naredbenog retka prema zadanim su postavkama onemogućeni. Idite u sigurnosne postavke UniGetUI-ja da biste to promijenili.", "Go to UniGetUI security settings": "Idite na sigurnosne postavke UniGetUI-ja", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Sljedeće opcije će se primjenjivati prema zadanim postavkama svaki put kada se {0} paket instalira, nadogradi ili deinstalira.", "Package's default": "Zadane postavke paketa", @@ -160,6 +169,7 @@ "Username": "Korisničko ime", "Password": "Lozinka", "Credentials": "Vjerodajnice", + "It is not guaranteed that the provided credentials will be stored safely": "Nije zajamčeno da će navedene vjerodajnice biti pohranjene na siguran način", "Partially": "Djelomično", "Package manager": "Upravitelj paketima", "Compatible with proxy": "Kompatibilan s proxy-jem", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} je omogućen i spreman za ići", "{pm} version:": "{pm} verzija:", "{pm} was not found!": "{pm} nije pronađen!", - "You may need to install {pm} in order to use it with WingetUI.": "Možda ćete morati instalirati {pm} kako biste ga mogli koristiti s UniGetUI-jem.", - "Scoop Installer - WingetUI": "Instalacijski program Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Program za de-instalaciju Scoop-a - UniGetUI", - "Clearing Scoop cache - WingetUI": "Brisanje Scoop pred-memorije - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Možda ćete morati instalirati {pm} kako biste ga mogli koristiti s UniGetUI-jem.", + "Scoop Installer - UniGetUI": "Instalacijski program Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Program za de-instalaciju Scoop-a - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Brisanje Scoop pred-memorije - UniGetUI", + "Restart UniGetUI to fully apply changes": "Ponovno pokrenite UniGetUI da biste u potpunosti primijenili promjene", "Restart UniGetUI": "Ponovno pokrenite UniGetUI", "Manage {0} sources": "Upravljanje {0} izvorima", "Add source": "Dodaj izvor", "Add": "Dodaj", + "Source name": "Naziv izvora", + "Source URL": "URL izvora", "Other": "Ostalo", + "No minimum age": "Bez minimalne starosti", "1 day": "1 dan", "{0} days": "{0} dana", + "Custom...": "Prilagođeno...", "{0} minutes": "{0} minuta", "1 hour": "1 sat", "{0} hours": "{0} sati", "1 week": "1 tjedan", - "WingetUI Version {0}": "UniGetUI verzija {0}", + "Supports release dates": "Podržava datume izdanja", + "Release date support per package manager": "Podrška za datume izdanja po upravitelju paketa", + "UniGetUI Version {0}": "UniGetUI verzija {0}", "Search for packages": "Traži pakete", "Local": "Lokalno", "OK": "U redu", @@ -200,11 +217,13 @@ "Enabled": "Omogućeno", "Disabled": "Onemogućeno", "More info": "Više informacija", + "GitHub account": "GitHub račun", "Log in with GitHub to enable cloud package backup.": "Prijavite se putem GitHub-a kako biste omogućili sigurnosnu kopiju paketa u oblaku.", "More details": "Više detalja", "Log in": "Prijava", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Ako imate omogućenu sigurnosnu kopiju u oblaku, bit će spremljena kao GitHub Gist datoteka na ovom računu.", "Log out": "Odjava", + "About UniGetUI": "O UniGetUI-ju", "About": "O aplikaciji", "Third-party licenses": "Licence trećih strana", "Contributors": "Suradnici", @@ -212,6 +231,7 @@ "Manage shortcuts": "Upravljanje prečicama", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI je otkrio sljedeće prečace na radnoj površini koji se mogu automatski ukloniti prilikom budućih nadogradnji", "Do you really want to reset this list? This action cannot be reverted.": "Želite li zaista resetirati ovaj popis? Ova se radnja ne može poništiti.", + "Open in explorer": "Otvori u Exploreru", "Remove from list": "Ukloni s popisa", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kada se otkriju novi prečaci, automatski ih izbriši umjesto prikazivanja ovog dijaloga.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI prikuplja anonimne podatke o korištenju s jedinom svrhom razumijevanja i poboljšanja korisničkog iskustva.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Prihvaćate li da UniGetUI prikuplja i šalje anonimne statistike korištenja, s jedinom svrhom razumijevanja i poboljšanja korisničkog iskustva?", "Decline": "Odbij", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Ne prikupljaju se niti se šalju osobni podaci, a prikupljeni podaci su anonimizirani, tako da se ne mogu koristiti da vas se identificira.", - "About WingetUI": "O UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikacija koja olakšava upravljanje vašim softverom pružajući sveobuhvatno grafičko sučelje za vaše upravitelje paketa iz naredbenog retka.", + "Toggle navigation panel": "Prikaži/sakrij navigacijsku ploču", + "Minimize": "Minimiziraj", + "Maximize": "Maksimiziraj", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikacija koja olakšava upravljanje vašim softverom pružajući sveobuhvatno grafičko sučelje za vaše upravitelje paketa iz naredbenog retka.", "Useful links": "Korisni linkovi", + "UniGetUI Homepage": "Početna stranica UniGetUI-ja", "Report an issue or submit a feature request": "Prijavi problem ili pošalji zahtjev za značajku", + "UniGetUI Repository": "Repozitorij UniGetUI-ja", "View GitHub Profile": "Pogledajte profil na GitHub-u", - "WingetUI License": "UniGetUI licenca", - "Using WingetUI implies the acceptation of the MIT License": "Korištenjem UniGetUI-ja podrazumijevate prihvaćanje MIT licence", + "UniGetUI License": "UniGetUI licenca", + "Using UniGetUI implies the acceptation of the MIT License": "Korištenjem UniGetUI-ja podrazumijevate prihvaćanje MIT licence", "Become a translator": "Postanite prevodilac", "View page on browser": "Pogledajte stranicu u pregledniku", "Copy to clipboard": "Kopirati u međuspremnik", "Export to a file": "Izvoz u datoteku", "Log level:": "Razina zapisnika:", "Reload log": "Ponovno učitaj dnevnik", + "Export log": "Izvezi zapisnik", + "UniGetUI Log": "UniGetUI zapisnik", "Text": "Tekst", "Change how operations request administrator rights": "Promjena načina na koji operacije zahtijevaju administratorska prava", "Restrictions on package operations": "Ograničenja paketnih operacija", @@ -271,7 +297,7 @@ "Leave empty for default": "Ostavite prazno za zadane vrijednosti", "Add a timestamp to the backup file names": "Dodajte vremensku oznaku nazivima datoteka sigurnosnih kopija", "Backup and Restore": "Sigurnosno kopiranje i oporavak", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Omogući API u pozadini (Widgeti za UniGetUI i dijeljenje, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Omogući API u pozadini (Widgeti za UniGetUI i dijeljenje, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Pričekajte da se uređaj poveže s internetom prije nego što pokušate izvršiti zadatke koji zahtijevaju internetsku vezu.", "Disable the 1-minute timeout for package-related operations": "Onemogućite vremensko ograničenje od 1 minute za operacije povezane s paketima", "Use installed GSudo instead of UniGetUI Elevator": "Koristite instalirani GSudo umjesto UniGetUI Elevatora", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrija", "Manage UniGetUI settings": "Upravljanje postavkama UniGetUI-ja", "Related settings": "Povezane postavke", - "Update WingetUI automatically": "Ažurirajte WingetUI automatski", + "Update UniGetUI automatically": "Ažurirajte UniGetUI automatski", "Check for updates": "Provjeri dostupnost ažuriranja", "Install prerelease versions of UniGetUI": "Instalirajte pred-izdane verzije UniGetUI-ja", "Manage telemetry settings": "Upravljanje postavkama telemetrije", @@ -295,17 +321,17 @@ "Import": "Uvoz", "Export settings to a local file": "Izvezi postavke u lokalnu datoteku", "Export": "Izvoz", - "Reset WingetUI": "Resetiraj UniGetUI", "Reset UniGetUI": "Resetiraj UniGetUI", "User interface preferences": "Postavke korisničkog sučelja", "Application theme, startup page, package icons, clear successful installs automatically": "Tema aplikacije, početna stranica, ikone paketa, automatsko brisanje uspješnih instalacija", "General preferences": "Opće postavke", - "WingetUI display language:": "WingetUI jezik prikaza:", + "UniGetUI display language:": "UniGetUI jezik prikaza:", "Is your language missing or incomplete?": "Nedostaje li vaš jezik ili je nepotpun?", "Appearance": "Izgled", "UniGetUI on the background and system tray": "UniGetUI na pozadini i u sistemskoj traci", "Package lists": "Popis paketa", "Close UniGetUI to the system tray": "Zatvorite UniGetUI u sistemsku traku", + "Manage UniGetUI autostart behaviour": "Upravljanje ponašanjem automatskog pokretanja UniGetUI-ja", "Show package icons on package lists": "Prikaži ikone paketa na popisima paketa", "Clear cache": "Očisti predmemoriju", "Select upgradable packages by default": "Odaberite nadogradive pakete kao zadane postavke", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Imajte na umu da ne podržavaju svi upravitelji paketa u potpunosti ovu značajku", "Proxy URL": "URL proxy poslužitelja", "Enter proxy URL here": "Ovdje unesite proxy URL", + "Authenticate to the proxy with a user and a password": "Autentificiraj se na proxy pomoću korisničkog imena i lozinke", + "Internet and proxy settings": "Postavke interneta i proxyja", "Package manager preferences": "Postavke upravitelja paketa", "Ready": "Spremno", "Not found": "Nije pronađeno", "Notification preferences": "Postavke obavijesti", "Notification types": "Vrste obavijesti", "The system tray icon must be enabled in order for notifications to work": "Ikona u programskoj traci mora biti omogućena da bi obavijesti radile", - "Enable WingetUI notifications": "Omogući WingetUI obavijesti", + "Enable UniGetUI notifications": "Omogući UniGetUI obavijesti", "Show a notification when there are available updates": "Prikaži obavijest kada postoje dostupna ažuriranja", "Show a silent notification when an operation is running": "Prikaži tihu obavijest kada je operacija u tijeku", "Show a notification when an operation fails": "Prikaži obavijest kada operacija ne uspije", "Show a notification when an operation finishes successfully": "Prikaži obavijest kada operacija uspješno završi", "Concurrency and execution": "Podudarnost i izvođenje", "Automatic desktop shortcut remover": "Automatsko uklanjanje prečica s radne površine", + "Choose how many operations should be performed in parallel": "Odaberite koliko se operacija treba izvršavati paralelno", "Clear successful operations from the operation list after a 5 second delay": "Obriši uspješne operacije s popisa operacija nakon 5 sekundi odgode", "Download operations are not affected by this setting": "Ova postavka ne utječe na operacije preuzimanja", "Try to kill the processes that refuse to close when requested to": "Pokušajte ubiti procese koji odbijaju zatvaranje kada se to zatraži", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Odaberite program koji želite koristiti. Sljedeći popis prikazuje programe koje je pronašao UniGetUI", "Current executable file:": "Trenutna izvršna datoteka:", "Ignore packages from {pm} when showing a notification about updates": "Zanemari pakete iz {pm} prilikom prikazivanja obavijesti o ažuriranjima", + "Update security": "Sigurnost ažuriranja", + "Use global setting": "Koristi globalnu postavku", + "e.g. 10": "npr. 10", + "{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", + "Override the global minimum update age for this package manager": "Zamijeni globalnu minimalnu starost ažuriranja za ovog upravitelja paketa", + "Minimum age for updates": "Minimalna starost ažuriranja", + "Custom minimum age (days)": "Prilagođena minimalna starost (dani)", "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, ", "Advanced options": "Napredne opcije", "Reset WinGet": "Resetiraj WinGet", "This may help if no packages are listed": "Ovo može pomoći ako nisu navedeni paketi", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Omogući Scoop čišćenje pri pokretanju", "Use system Chocolatey": "Koristite sustavov Chocolatey", "Default vcpkg triplet": "Zadani vcpkg triplet", + "Change vcpkg root location": "Promijeni lokaciju korijenskog direktorija vcpkg-a", "Language, theme and other miscellaneous preferences": "Jezik, tema i ostale razne postavke", "Show notifications on different events": "Prikaz obavijesti o različitim događajima", "Change how UniGetUI checks and installs available updates for your packages": "Promijenite način na koji UniGetUI provjerava i instalira dostupna ažuriranja za vaše pakete", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ne instaliraj automatski ažuriranja kada je mrežna veza ograničena", "Do not automatically install updates when the device runs on battery": "Ne instaliraj automatski ažuriranja kada uređaj radi na bateriji", "Do not automatically install updates when the battery saver is on": "Ne instaliraj automatski ažuriranja kada je uključena ušteda baterije", + "Only show updates that are at least the specified number of days old": "Prikaži samo ažuriranja koja su stara najmanje navedeni broj dana", "Change how UniGetUI handles install, update and uninstall operations.": "Promijenite način na koji UniGetUI odrađuje operacije instalacije, ažuriranja te de-instalacije", "Package Managers": "Upravitelji paketa", "More": "Više", - "WingetUI Log": "UniGetUI Zapisnik", "Package Manager logs": "Dnevnici upravitelja paketa", "Operation history": "Povijest operacija", "Help": "Pomoć", + "Quit UniGetUI": "Izađi iz UniGetUI-ja", "Order by:": "Poredaj po:", "Name": "Naziv", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Oboje", "Exact match": "Točno podudaranje", "Show similar packages": "Prikaži slične paketa", + "Nothing to share": "Nema ničega za podijeliti", + "Please select a package first.": "Prvo odaberite paket.", + "Share link copied": "Poveznica za dijeljenje kopirana", + "The share link for {0} has been copied to the clipboard.": "Poveznica za dijeljenje za {0} kopirana je u međuspremnik.", "No results were found matching the input criteria": "Nisu pronađeni rezultati koji odgovaraju ulaznim kriterijima", "No packages were found": "Paketi nisu pronađeni", "Loading packages": "Učitavanje paketa", @@ -440,7 +483,11 @@ "Package bundle": "Skupovi paketa", "Could not create bundle": "Nije moguće izraditi skupa paketa", "The package bundle could not be created due to an error.": "Skup paketa nije moguće stvoriti zbog pogreške.", + "Unsaved changes": "Nespremljene promjene", + "Discard changes": "Odbaci promjene", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Imate nespremljene promjene u trenutačnom skupu paketa. Želite li ih odbaciti?", "Bundle security report": "Sigurnosno izvješće skupa paketa", + "The bundle contained restricted content": "Skup paketa sadržavao je ograničeni sadržaj", "Hooray! No updates were found.": "Hura! Nema ažuriranja!", "Everything is up to date": "Sve je ažurirano", "Uninstall selected packages": "Deinstaliraj odabrane pakete", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasični upravitelj paketa za Windows. Sve ćete tamo pronaći.
Sadrži: Opći softver", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repozitorij pun alata i izvršnih programa dizajniran sa Microsoft .NET ekosustavom u ideji.
Sadrži: .NET povezane alate i skripte", "NuPkg (zipped manifest)": "NuPkg (zipani manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Paketni upravitelj koji nedostaje za macOS (ili Linux).
Sadrži: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS upravitelj paketa. Pun biblioteka i drugih uslužnih programa koji kruže svijetom Javascripta
Sadrži: Javascript biblioteke i druge srodne uslužne programe", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python upravitelj paketa. Pun python biblioteka i drugih uslužnih programa povezanih s Pythonom
Sadrži: Python biblioteke i srodnih uslužnih programa", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell-ov upravitelj paketa. Pronađite biblioteke i skripte za proširenje PowerShell mogućnosti.
Sadrži: Module, Skripte, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operacija u redu čekanja (pozicija {0})...", "Click here for more details": "Kliknite ovdje za više detalja", "Operation canceled by user": "Operaciju je otkazao korisnik", + "Running PreOperation ({0}/{1})...": "Izvršavanje PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} od {1} nije uspio i označen je kao obavezan. Prekidam...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} od {1} završio je s rezultatom {2}", "Starting operation...": "Pokretanje operacije...", + "Running PostOperation ({0}/{1})...": "Izvršavanje PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} od {1} nije uspio i označen je kao obavezan. Prekidam...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} od {1} završio je s rezultatom {2}", "{package} installer download": "preuzimanje instalacijskog programa {package}", "{0} installer is being downloaded": "instalacijski program {0} se preuzima", "Download succeeded": "Preuzimanje uspješno", @@ -556,14 +610,12 @@ "Portable mode": "Prijenosni način rada", "DEBUG BUILD": "DEBUG VERZIJA", "Available Updates": "Dostupna ažuriranja", - "Show WingetUI": "Prikaži WingetUI", + "Show UniGetUI": "Prikaži UniGetUI", "Quit": "Zatvori", "Attention required": "Potrebna je pažnja", "Restart required": "Potrebno ponovno pokretanje", "1 update is available": "Dostupno je 1 ažuriranje", "{0} updates are available": "{0} ažuriranja je dostupno", - "WingetUI Homepage": "Početna stranica UniGetUI", - "WingetUI Repository": "UniGetUI repozitorij", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Ovdje možete promijeniti ponašanje UniGetUI-ja u vezi sa sljedećim prečacima. Označavanjem prečaca - UniGetUI će ga izbrisati ako se stvori prilikom buduće nadogradnje. Poništavanjem odabira - prečac će ostati netaknut.", "Manual scan": "Ručno skeniranje", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Postojeći prečaci na vašoj radnoj površini bit će skenirani i morati ćete odabrati koje ćete zadržati, a koje ukloniti.", @@ -583,7 +635,6 @@ "Restart later": "Ponovno pokretanje kasnije", "An error occurred:": "Došlo je do pogreške:", "I understand": "Razumijem", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI je pokrenut kao administrator, što se ne preporučuje. Prilikom pokretanja UniGetUI-ja kao administrator, SVAKA operacija pokrenuta iz UniGetUI-ja imat će administratorske privilegije. Program i dalje možete koristiti, ali toplo preporučujemo da ne pokrećete UniGetUI s administratorskim privilegijama.", "WinGet was repaired successfully": "WinGet je uspješno popravljen", "It is recommended to restart UniGetUI after WinGet has been repaired": "Preporučuje se ponovno pokretanje UniGetUI-ja nakon što je WinGet popravljen.", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NAPOMENA: Ovaj alat za rješavanje problema može se onemogućiti u postavkama UniGetUI-ja, u odjeljku WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Vaši paketi su dodani u skup paketa. Možete nastaviti dodavati pakete ili izvesti skup paketa.", "Which backup do you want to open?": "Koju sigurnosnu kopiju želite otvoriti?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Odaberite sigurnosnu kopiju koju želite otvoriti. Kasnije ćete moći pregledati koje pakete/programe želite vratiti.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Postoje operacije u tijeku. Izlazak iz UniGetUI-ja može uzrokovati njihov neuspjeh. Želite li nastaviti?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Postoje operacije u tijeku. Izlazak iz UniGetUI-ja može uzrokovati njihov neuspjeh. Želite li nastaviti?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ili neke njegove komponente nedostaju ili su oštećene.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Preporučuje se ponovna instalacija UniGetUI-ja kako bi se riješila situacija.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Za više detalja o pogođenim datotekama pogledajte UniGetUI zapisnike.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Ovdje napišite nazive procesa, odvojene zarezima (,)", "Unset or unknown": "Nepostavljeno ili nepoznato", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Za više informacija o problemu pogledajte izlaz naredbenog retka ili pogledajte povijest operacija.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ovaj paket nema snimki zaslona ili mu nedostaje ikona? Doprinesite UniGetUI-ju dodavanjem ikona i snimaka zaslona koje nedostaju u našu otvorenu, javnu bazu podataka.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ovaj paket nema snimki zaslona ili mu nedostaje ikona? Doprinesite UniGetUI-ju dodavanjem ikona i snimaka zaslona koje nedostaju u našu otvorenu, javnu bazu podataka.", "Become a contributor": "Postanite suradnik", "Save": "Spremi", "Update to {0} available": "Dostupno ažuriranje na {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Omogućite automatski alat za rješavanje problema s WinGetom", "Enable an [experimental] improved WinGet troubleshooter": "Omogući [eksperimentalni] poboljšani alat za rješavanje problema s UniGetUI-om", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Dodajte ažuriranja koja ne uspiju s porukom 'nije pronađeno primjenjivo ažuriranje' na popis zanemarenih ažuriranja.", - "Restart WingetUI to fully apply changes": "Ponovo pokrenite UniGetUI da biste u potpunosti primijenili promjene.", - "Restart WingetUI": "Ponovno pokrenite WingetUI", "Invalid selection": "Nevažeći odabir", "No package was selected": "Nijedan paket nije odabran", "More than 1 package was selected": "Odabrano je više od 1 paketa", @@ -684,6 +733,37 @@ "Log out failed: ": "Odjava neuspješna: ", "Package backup settings": "Postavke sigurnosne kopije paketa", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "O UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikacija koja olakšava upravljanje vašim softverom pružajući sveobuhvatno grafičko sučelje za vaše upravitelje paketa iz naredbenog retka.", + "You have installed WingetUI Version {0}": "Instalirali ste UniGetUI verziju {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ne bi bio moguć bez pomoći suradnika. Hvala svima 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI koristi sljedeće biblioteke. Bez njih, UniGetUI ne bi bio moguć.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI je preveden na više od 40 jezika zahvaljujući volonterima prevoditeljima. Hvala vam 🤝", + "WingetUI Settings": "WingetUI postavke", + "You may need to install {pm} in order to use it with WingetUI.": "Možda ćete morati instalirati {pm} kako biste ga mogli koristiti s UniGetUI-jem.", + "Scoop Installer - WingetUI": "Instalacijski program Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Program za de-instalaciju Scoop-a - UniGetUI", + "Clearing Scoop cache - WingetUI": "Brisanje Scoop pred-memorije - UniGetUI", + "WingetUI Version {0}": "UniGetUI verzija {0}", + "WingetUI License": "UniGetUI licenca", + "Using WingetUI implies the acceptation of the MIT License": "Korištenjem UniGetUI-ja podrazumijevate prihvaćanje MIT licence", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Omogući API u pozadini (Widgeti za UniGetUI i dijeljenje, port 7058)", + "Update WingetUI automatically": "Ažurirajte WingetUI automatski", + "Reset WingetUI": "Resetiraj UniGetUI", + "WingetUI display language:": "WingetUI jezik prikaza:", + "Manage WingetUI autostart behaviour": "Upravljanje ponašanjem automatskog pokretanja UniGetUI-ja", + "Enable WingetUI notifications": "Omogući WingetUI obavijesti", + "WingetUI Log": "UniGetUI Zapisnik", + "Show WingetUI": "Prikaži WingetUI", + "WingetUI Homepage": "Početna stranica UniGetUI", + "WingetUI Repository": "UniGetUI repozitorij", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI je pokrenut kao administrator, što se ne preporučuje. Prilikom pokretanja UniGetUI-ja kao administrator, SVAKA operacija pokrenuta iz UniGetUI-ja imat će administratorske privilegije. Program i dalje možete koristiti, ali toplo preporučujemo da ne pokrećete UniGetUI s administratorskim privilegijama.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Postoje operacije u tijeku. Izlazak iz UniGetUI-ja može uzrokovati njihov neuspjeh. Želite li nastaviti?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ovaj paket nema snimki zaslona ili mu nedostaje ikona? Doprinesite UniGetUI-ju dodavanjem ikona i snimaka zaslona koje nedostaju u našu otvorenu, javnu bazu podataka.", + "Restart WingetUI to fully apply changes": "Ponovo pokrenite UniGetUI da biste u potpunosti primijenili promjene.", + "Restart WingetUI": "Ponovno pokrenite WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Upravljajte ponašanjem automatskog pokretanja UniGetUI-ja iz aplikacije Postavke", "(Number {0} in the queue)": "(Broj {0} u redu čekanja)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Stjepan Treger, @AndrejFeher, Ivan Nuić", "0 packages found": "0 pronađenih paketa", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json index 52d7a9edc1..bbd8806318 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_hu.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Az eltávolítás megszakítása, ha az eltávolítás előtti parancs sikertelen", "Command-line to run:": "Futtatandó parancssor:", "Save and close": "Mentés és bezárás", + "General": "Általános", + "Architecture & Location": "Architektúra és hely", + "Command-line": "Parancssor", + "Pre/Post install": "Telepítés előtt/után", "Run as admin": "Futtatás rendszergazdaként", "Interactive installation": "Interaktív telepítés", "Skip hash check": "Hash ellenőrzés kihagyása", @@ -71,6 +75,8 @@ "Manage ignored updates": "Ignorált frissítések kezelése", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Az itt felsorolt csomagokat nem veszi figyelembe a rendszer a frissítések keresésekor. Kattintson rájuk duplán, vagy kattintson a jobb oldali gombra, ha nem szeretné tovább figyelmen kívül hagyni a frissítéseiket.\n", "Reset list": "Lista alapra állítása", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Biztosan vissza szeretné állítani a figyelmen kívül hagyott frissítések listáját? Ez a művelet nem vonható vissza.", + "No ignored updates": "Nincsenek figyelmen kívül hagyott frissítések", "Package Name": "Csomagnév", "Package ID": "Csomag azonosító", "Ignored version": "Figyelmen kívül hagyott verzió", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ez a művelet interaktívan fut.", "You will likely need to interact with the installer.": "Valószínűleg rá kell pillantani a telepítőre.", "Integrity checks skipped": "Kihagyott integritás ellenőrzések", + "Integrity checks will not be performed during this operation.": "Az integritás-ellenőrzések a művelet során nem lesznek végrehajtva.", "Proceed at your own risk.": "Saját felelősségére folytassa.", "Close": "Bezár", "Loading...": "Betöltés...", @@ -120,16 +127,17 @@ "optional": "lehetőség", "UniGetUI {0} is ready to be installed.": "Az UniGetUI {0} készen áll a telepítésre.", "The update process will start after closing UniGetUI": "A frissítési folyamat az UniGetUI bezárása után kezdődik.", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "Az UniGetUI rendszergazdaként lett elindítva, ami nem ajánlott. Ha az UniGetUI rendszergazdaként fut, az UniGetUI-ból indított MINDEN művelet rendszergazdai jogosultságokkal fog futni. A programot továbbra is használhatja, de nyomatékosan javasoljuk, hogy ne futtassa az UniGetUI-t rendszergazdai jogosultságokkal.", "Share anonymous usage data": "Névtelen használati adatok megosztása", "UniGetUI collects anonymous usage data in order to improve the user experience.": "Az UniGetUI anonim használati adatokat gyűjt a felhasználói élmény javítása érdekében.", "Accept": "Elfogad", - "You have installed WingetUI Version {0}": "Ön telepítette a WingetUI {0} verzióját.", + "You have installed UniGetUI Version {0}": "Ön telepítette a UniGetUI {0} verzióját.", "Disclaimer": "Nyilatkozat", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "Az UniGetUI nem kapcsolódik egyik kompatibilis csomagkezelőhöz sem. Az UniGetUI egy független projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "A WingetUI nem jöhetett volna létre a közreműködők segítsége nélkül. Köszönjük mindenkinek 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "A WingetUI a következő könyvtárakat használja. Ezek nélkül a WingetUI nem jöhetett volna létre.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "A UniGetUI nem jöhetett volna létre a közreműködők segítsége nélkül. Köszönjük mindenkinek 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "A UniGetUI a következő könyvtárakat használja. Ezek nélkül a UniGetUI nem jöhetett volna létre.", "{0} homepage": "{0} honlap", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "A WingetUI-t több mint 40 nyelvre fordították le az önkéntes fordítóknak köszönhetően. Köszönöm 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "A UniGetUI-t több mint 40 nyelvre fordították le az önkéntes fordítóknak köszönhetően. Köszönöm 🤝", "Verbose": "Bővebben", "1 - Errors": "Hibák", "2 - Warnings": "Figyelmeztetések", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Ön be van jelentkezve, mint {0} (@{1} )", "Nice! Backups will be uploaded to a private gist on your account": "Szép! A biztonsági mentések feltöltődnek a fiókod privát listájára.", "Select backup": "Biztonsági mentés kiválasztása", - "WingetUI Settings": "WingetUI beállítások", + "UniGetUI Settings": "UniGetUI beállítások", "Allow pre-release versions": "Engedélyezze az előzetes kiadású verziókat", "Apply": "Alkalmaz", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Biztonsági okokból az egyéni parancssori argumentumok alapértelmezés szerint le vannak tiltva. Ennek módosításához nyissa meg az UniGetUI biztonsági beállításait.", "Go to UniGetUI security settings": "Lépjen az UniGetUI biztonsági beállításaihoz", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "A következő beállítások alapértelmezés szerint minden alkalommal alkalmazásra kerülnek, amikor egy {0} csomag telepítése, frissítése vagy eltávolítása történik.", "Package's default": "A csomag alapértelmezett", @@ -160,6 +169,7 @@ "Username": "Felhasználónév", "Password": "Jelszó", "Credentials": "Ajánlások", + "It is not guaranteed that the provided credentials will be stored safely": "Nem garantálható, hogy a megadott hitelesítő adatok biztonságosan lesznek tárolva", "Partially": "Részben", "Package manager": "Csomagkezelő", "Compatible with proxy": "Kompatibilitás proxy-val", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} engedélyezve van, és használatra kész", "{pm} version:": "{pm} verzió:", "{pm} was not found!": "{pm} nem található!", - "You may need to install {pm} in order to use it with WingetUI.": "Lehet, hogy telepítenie kell a {pm}-t, hogy a WingetUI-val használni tudja.", - "Scoop Installer - WingetUI": "Scoop telepítő - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop eltávolító - WingetUI", - "Clearing Scoop cache - WingetUI": "Scoop gyorsítótár törlése - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Lehet, hogy telepítenie kell a {pm}-t, hogy a UniGetUI-val használni tudja.", + "Scoop Installer - UniGetUI": "Scoop telepítő - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop eltávolító - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop gyorsítótár törlése - UniGetUI", + "Restart UniGetUI to fully apply changes": "A módosítások teljes alkalmazásához indítsa újra az UniGetUI-t", "Restart UniGetUI": "Az UniGetUI újraindítása", "Manage {0} sources": "{0} források kezelése", "Add source": "Forrás hozzáadása", "Add": "Hozzáadás", + "Source name": "Forrás neve", + "Source URL": "Forrás URL-je", "Other": "Egyéb", + "No minimum age": "Nincs minimális kor", "1 day": "1 nap", "{0} days": "{0} nap", + "Custom...": "Egyéni...", "{0} minutes": "{0} perc", "1 hour": "1 óra", "{0} hours": "{0} óra", "1 week": "1 hét", - "WingetUI Version {0}": "WingetUI verzió {0}", + "Supports release dates": "Támogatja a kiadási dátumokat", + "Release date support per package manager": "Kiadási dátum támogatása csomagkezelőnként", + "UniGetUI Version {0}": "UniGetUI verzió {0}", "Search for packages": "Csomagok keresése", "Local": "Helyi", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Engedélyezve", "Disabled": "Kikapcsolva", "More info": "Több infó", + "GitHub account": "GitHub-fiók", "Log in with GitHub to enable cloud package backup.": "Jelentkezzen be a GitHub-bal a felhőalapú csomag bizt. mentés engedélyezéséhez.", "More details": "További részletek", "Log in": "Bejelentkezés", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Ha engedélyezte a felhőalapú mentést, akkor az egy GitHub Gist-ként lesz elmentve ezen a fiókon.", "Log out": "Kijelentkezés", + "About UniGetUI": "Az UniGetUI-ról", "About": "Rólunk", "Third-party licenses": "Harmadik fél licencei", "Contributors": "Közreműködők", @@ -212,6 +231,7 @@ "Manage shortcuts": "A parancsikonok kezelése", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Az UniGetUI a következő asztali parancsikonokat észlelte, amelyek a jövőbeni frissítések során auto. eltávolíthatók", "Do you really want to reset this list? This action cannot be reverted.": "Tényleg alaphelyzetbe állítja ezt a listát? Ezt a műveletet nem lehet visszavonni.", + "Open in explorer": "Megnyitás az Intézőben", "Remove from list": "Eltávolítás a listáról", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Mikor új parancsikonokat észlel, autom. törli ezeket ahelyett, hogy megjelenítené ezt a párbeszédpanelt.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "Az UniGetUI anonim használati adatokat gyűjt, kizárólag azzal a céllal, hogy megértse és javítsa a felhasználói élményt.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Elfogadja, hogy az UniGetUI anonim használati statisztikákat gyűjt és küld, kizárólag a felhasználói élmény megértése és javítása céljából?", "Decline": "Elutasít", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nem gyűjtünk és nem küldünk személyes adatokat. Az összegyűjtött adatokat anonimizáljuk, így nem lehet visszavezetni Önhöz.", - "About WingetUI": "A WingetUI-ról", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "A WingetUI egy olyan alkalmazás, amely megkönnyíti a szoftverek kezelését, mivel egy minden egyben grafikus felületet biztosít a parancssori csomagkezelők számára.\n", + "Toggle navigation panel": "Navigációs panel váltása", + "Minimize": "Kis méretre állítás", + "Maximize": "Maximalizálás", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "A UniGetUI egy olyan alkalmazás, amely megkönnyíti a szoftverek kezelését, mivel egy minden egyben grafikus felületet biztosít a parancssori csomagkezelők számára.\n", "Useful links": "Hasznos linkek", + "UniGetUI Homepage": "UniGetUI honlapja", "Report an issue or submit a feature request": "Jelentsen be egy problémát, vagy küldjön be egy funkció kérést", + "UniGetUI Repository": "UniGetUI adattára", "View GitHub Profile": "GitHub profil megtekintése", - "WingetUI License": "WingetUI licenc", - "Using WingetUI implies the acceptation of the MIT License": "A WingetUI használata magában foglalja az MIT-licenc elfogadását", + "UniGetUI License": "UniGetUI licenc", + "Using UniGetUI implies the acceptation of the MIT License": "A UniGetUI használata magában foglalja az MIT-licenc elfogadását", "Become a translator": "Legyen fordító", "View page on browser": "Megtekintés böngészőben", "Copy to clipboard": "Másol a vágólapra", "Export to a file": "Exportál egy fájlba", "Log level:": "Napló szint:", "Reload log": "Napló újratöltése", + "Export log": "Napló exportálása", + "UniGetUI Log": "UniGetUI napló", "Text": "Szöveg", "Change how operations request administrator rights": "A műveletek rendszergazdai jog igénylési módjának változtatása", "Restrictions on package operations": "A csomagműveletekre vonatkozó korlátozások", @@ -271,7 +297,7 @@ "Leave empty for default": "Alapértékhez hagyja üresen", "Add a timestamp to the backup file names": "Időbélyegző hozzáadása a mentési fájlnevekhez", "Backup and Restore": "Bizt. mentés és Helyreállítás", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "A háttér api engedélyezése (WingetUI Widgets and Sharing, 7058-as port)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "A háttér api engedélyezése (UniGetUI Widgets and Sharing, 7058-as port)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Várja meg, amíg a készülék csatlakozik az internethez, mielőtt kapcsolatot igénylő feladatokat próbálna végrehajtani.", "Disable the 1-minute timeout for package-related operations": "Az 1 perces időkorlát kikapcsolása a csomaggal kapcsolatos műveleteknél", "Use installed GSudo instead of UniGetUI Elevator": "A telepített GSudo használata az UniGetUI Elevator helyett", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "UniGetUI beállítások kezelése", "Related settings": "Kapcsolódó beállítások", - "Update WingetUI automatically": "A WingetUI automatikus frissítése", + "Update UniGetUI automatically": "A UniGetUI automatikus frissítése", "Check for updates": "Frissítések ellenőrzése", "Install prerelease versions of UniGetUI": "Az UniGetUI előzetes verzióinak telepítése", "Manage telemetry settings": "Telemetriai beállítások kezelése", @@ -295,17 +321,17 @@ "Import": "Importálás", "Export settings to a local file": "Beállítások exportálása helyi fájlba", "Export": "Exportálás", - "Reset WingetUI": "A WingetUI alaphelyzetbe állítása", "Reset UniGetUI": "UniGetUI alapra állítása", "User interface preferences": "A felhasználói felület beállításai", "Application theme, startup page, package icons, clear successful installs automatically": "Alkalmazás téma, kezdőlap, csomag ikonok, sikeres telepítések automatikus törlése", "General preferences": "Általános preferenciák", - "WingetUI display language:": "WingetUI megjelenítési nyelve:", + "UniGetUI display language:": "UniGetUI megjelenítési nyelve:", "Is your language missing or incomplete?": "Hiányzik vagy hiányos az Ön nyelve?", "Appearance": "Megjelenés", "UniGetUI on the background and system tray": "UniGetUI a háttérben és a tálcán", "Package lists": "Csomag listák", "Close UniGetUI to the system tray": "Az UniGetUI bezárása a tálcára", + "Manage UniGetUI autostart behaviour": "A UniGetUI automatikus indításának kezelése", "Show package icons on package lists": "Csomag ikonok megjelenítése a csomaglistákon", "Clear cache": "Gyors.tár törlése", "Select upgradable packages by default": "Alapértelmezés szerint frissíthető csomagok kiválasztása", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Vegye figyelembe, hogy nem minden csomagkezelő támogatja teljes mértékben ezt a funkciót.", "Proxy URL": "Proxy URL-cím", "Enter proxy URL here": "Adja meg a Proxy URL-t", + "Authenticate to the proxy with a user and a password": "Hitelesítés a proxyn felhasználónévvel és jelszóval", + "Internet and proxy settings": "Internet- és proxybeállítások", "Package manager preferences": "Csomagkezelő preferenciái", "Ready": "Kész", "Not found": "Nem található", "Notification preferences": "Értesítési beállítások", "Notification types": "Értesítés típusai", "The system tray icon must be enabled in order for notifications to work": "Az értesítések működéséhez engedélyezni kell a tálcaikont.", - "Enable WingetUI notifications": "WingetUI értesítések engedélyezése", + "Enable UniGetUI notifications": "UniGetUI értesítések engedélyezése", "Show a notification when there are available updates": "Értesítés megjelenítése, ha elérhető frissítések vannak", "Show a silent notification when an operation is running": "Csendes értesítés megjelenítése, amikor egy művelet fut", "Show a notification when an operation fails": "Értesítés megjelenítése, ha egy művelet sikertelen", "Show a notification when an operation finishes successfully": "Értesítés megjelenítése, ha egy művelet sikeresen befejeződik", "Concurrency and execution": "Egyidejűség és végrehajtás", "Automatic desktop shortcut remover": "Automatikus asztali parancsikon eltávolító", + "Choose how many operations should be performed in parallel": "Válassza ki, hány művelet fusson párhuzamosan", "Clear successful operations from the operation list after a 5 second delay": "A sikeres műveletek törlése a műveleti listából 5 mp késleltetés után.", "Download operations are not affected by this setting": "A letöltési műveleteket ez a beállítás nem befolyásolja", "Try to kill the processes that refuse to close when requested to": "Próbálja meg leállítani azokat a folyamatokat, amelyek nem hajlandóak bezárni, amikor erre kérik őket.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Válassza ki a használni kívánt végrehajtható fájlt. Az alábbi lista az UniGetUI által talált végrehajtható fájlokat tartalmazza", "Current executable file:": "Jelenlegi futtatható fájl:", "Ignore packages from {pm} when showing a notification about updates": "A {pm} csomagok figyelmen kívül hagyása a frissítésekről szóló értesítés megjelenítésekor", + "Update security": "Frissítési biztonság", + "Use global setting": "Globális beállítás használata", + "e.g. 10": "pl. 10", + "{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", + "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", + "Minimum age for updates": "A frissítések minimális életkora", + "Custom minimum age (days)": "Egyéni minimális életkor (nap)", "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, ", "Advanced options": "Haladó beállítások", "Reset WinGet": "WinGet alapra állítása", "This may help if no packages are listed": "Ez segíthet, ha nincsenek csomagok a listában", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Scoop tisztítás engedélyezése indításkor", "Use system Chocolatey": "Használja a rendszerbeli Chocolatey-t", "Default vcpkg triplet": "Alapértelmezett vcpkg triplet", + "Change vcpkg root location": "A vcpkg gyökérhelyének módosítása", "Language, theme and other miscellaneous preferences": "Nyelv, téma és más egyéb beállítások", "Show notifications on different events": "Értesítések megjelenítése különböző eseményekről", "Change how UniGetUI checks and installs available updates for your packages": "Az UniGetUI csomagok elérhető frissítései ellenőrzésének és telepítési módjának módosítása", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ne telepítse autom. a frissítéseket, ha a hálózati kapcsolat nem korlátlan.", "Do not automatically install updates when the device runs on battery": "Ne telepítsen autom. frissítéseket, amikor az eszköz akkuról üzemel", "Do not automatically install updates when the battery saver is on": "Ne telepítse autom. a frissítéseket, ha az akkukímélő funkció be van kapcsolva.", + "Only show updates that are at least the specified number of days old": "Csak azokat a frissítéseket jelenítse meg, amelyek legalább a megadott számú naposak", "Change how UniGetUI handles install, update and uninstall operations.": "Módosíthatja, hogy az UniGetUI miként kezelje a telepítési, frissítési és eltávolítási műveleteket.", "Package Managers": "Csomagkezelők", "More": "További", - "WingetUI Log": "WingetUI Napló", "Package Manager logs": "Csomagkezelő naplók", "Operation history": "Műveleti előzmények", "Help": "Súgó", + "Quit UniGetUI": "Kilépés az UniGetUI-ból", "Order by:": "Rendezés:", "Name": "Név", "Id": "Azonosító", @@ -409,6 +448,10 @@ "Both": "Mindkettő", "Exact match": "Pontos egyezés", "Show similar packages": "Hasonló csomagok megjelenítése", + "Nothing to share": "Nincs mit megosztani", + "Please select a package first.": "Kérjük, először válasszon ki egy csomagot.", + "Share link copied": "A megosztási hivatkozás másolva", + "The share link for {0} has been copied to the clipboard.": "A(z) {0} megosztási hivatkozása a vágólapra lett másolva.", "No results were found matching the input criteria": "Nincs találat a beviteli feltételeknek megfelelő eredményre", "No packages were found": "Nem találtunk csomagokat", "Loading packages": "Csomagok betöltése", @@ -440,7 +483,11 @@ "Package bundle": "Csomag köteg", "Could not create bundle": "Nem sikerült létrehozni a köteget", "The package bundle could not be created due to an error.": "A csomag köteget hiba miatt nem sikerült létrehozni.", + "Unsaved changes": "Nem mentett módosítások", + "Discard changes": "Módosítások elvetése", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Nem mentett módosításai vannak a jelenlegi csomagkötegben. Szeretné elvetni őket?", "Bundle security report": "Köteg-biztonsági jelentés", + "The bundle contained restricted content": "A csomagköteg korlátozott tartalmat tartalmazott", "Hooray! No updates were found.": "Minden rendben! Nincs több frissítés!", "Everything is up to date": "Minden naprakész", "Uninstall selected packages": "A kiválasztott csomagok eltávolítása", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "\nA klasszikus csomagkezelő Windowshoz. Mindent megtalálsz benne.
Tartalma: Általános szoftverek", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "A Microsoft .NET ökoszisztémára tervezett eszközök és futtatható fájlok tárháza.
Tatalma: .NET kapcsolódó eszközök és szkriptek\n", "NuPkg (zipped manifest)": "NuPkg (tömörített manifeszt)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "A hiányzó csomagkezelő macOS-hez (vagy Linuxhoz).
Tartalmaz: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "A Node JS csomagkezelője. Tele van könyvtárakkal és egyéb segédprogramokkal, amelyek a javascript világában keringenek
Tartalma: Node javascript könyvtárak és egyéb kapcsolódó segédprogramok", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "A Python könyvtárkezelője. Tele van python könyvtárakkal és egyéb pythonhoz kapcsolódó segédprogramokkal
Tartalma: Python könyvtárak és kapcsolódó segédprogramok", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "A PowerShell csomagkezelője. A PowerShell képességeit bővítő könyvtárak és szkriptek keresése
Tartalma: Modulok, szkriptek, parancsfájlok\n", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "A művelet a várólistán ({0}. pozíció)...", "Click here for more details": "Kattintson további részletekért", "Operation canceled by user": "Felhasználó által törölt művelet", + "Running PreOperation ({0}/{1})...": "A PreOperation futtatása ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A(z) {1}-ből {0}. PreOperation meghiúsult, és szükségesként volt megjelölve. Megszakítás...", + "PreOperation {0} out of {1} finished with result {2}": "A(z) {1}-ből {0}. PreOperation {2} eredménnyel fejeződött be", "Starting operation...": "Művelet indítása...", + "Running PostOperation ({0}/{1})...": "A PostOperation futtatása ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A(z) {1}-ből {0}. PostOperation meghiúsult, és szükségesként volt megjelölve. Megszakítás...", + "PostOperation {0} out of {1} finished with result {2}": "A(z) {1}-ből {0}. PostOperation {2} eredménnyel fejeződött be", "{package} installer download": "{package} a telepítő letöltése", "{0} installer is being downloaded": "{0} telepítő letöltése folyamatban van", "Download succeeded": "A letöltés sikeres volt", @@ -556,14 +610,12 @@ "Portable mode": "Hordozható mód", "DEBUG BUILD": "HIBAKERESŐ VERZIÓ", "Available Updates": "Elérhető frissítések", - "Show WingetUI": "WingetUI megjelenítése", + "Show UniGetUI": "UniGetUI megjelenítése", "Quit": "Kilépés", "Attention required": "Figyelmet igényel", "Restart required": "Újraindítás szükséges", "1 update is available": "1 frissítés érhető el", "{0} updates are available": "{0} frissítés áll rendelkezésre", - "WingetUI Homepage": "WingetUI honlap", - "WingetUI Repository": "WingetUI Repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Itt módosíthatja az UniGetUI viselkedését a következő parancsikonokkal kapcsolatban. Ha bejelöl egy parancsikont, akkor az UniGetUI törölni fogja azt, ha egy későbbi frissítéskor létrejön. Ha nem jelöli ki, a parancsikon érintetlenül marad.", "Manual scan": "Kézi vizsgálat", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Az asztalon meglévő parancsikonok átvizsgálásra kerülnek és ki kell választania, melyiket szeretné megtartani vagy eltávolítani.", @@ -583,7 +635,6 @@ "Restart later": "Újraindítás később", "An error occurred:": "Hiba történt:", "I understand": "Megértettem", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "A WingetUI-t rendszergazdaként futtatta, ami nem ajánlott. Ha a WingetUI-t rendszergazdaként futtatja, MINDEN WingetUI-ból indított művelet rendszergazdai jogosultságokkal rendelkezik. A programot továbbra is használhatja, de erősen javasolt, hogy a WingetUI-t ne futtassa rendszergazdai jogosultságokkal.\n", "WinGet was repaired successfully": "A WinGet sikeresen javítva lett", "It is recommended to restart UniGetUI after WinGet has been repaired": "A WinGet javítása után ajánlott az UniGetUI újraindítása.", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "MEGJEGYZÉS: Ez a hibaelhárító kikapcsolható az UniGetUI beállításai között, a WinGet szakaszban.", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. A köteghez hozzáadásra kerülnek a csomagok. Folytathatja a csomagok hozzáadását, vagy exportálhatja a csomagot.", "Which backup do you want to open?": "Melyik biztonsági mentést szeretné megnyitni?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Válassza ki a megnyitni kívánt biztonsági másolatot. Később áttekintheti, hogy mely csomagokat/programokat szeretné visszaállítani.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Folyamatban vannak műveletek. A WingetUI elhagyása ezek meghibásodását okozhatja. Folytatni szeretné?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Folyamatban vannak műveletek. A UniGetUI elhagyása ezek meghibásodását okozhatja. Folytatni szeretné?", "UniGetUI or some of its components are missing or corrupt.": "Az UniGetUI vagy annak egyes összetevői hiányoznak vagy sérültek.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Erősen ajánlott az UniGetUI újratelepítése a probléma megoldása érdekében.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Az érintett fájl(okk)al kapcsolatos további részletekért lásd az UniGetUI naplófájlokat", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Írja ide a folyamatok neveit vesszővel (,) elválasztva.", "Unset or unknown": "Be nem állított vagy ismeretlen", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "A problémával kapcsolatos további információkért tekintse meg a parancssori kimenetet, vagy olvassa el a Műveleti előzményeket.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ez a csomag nem rendelkezik képernyőképekkel, esetleg hiányzik az ikon? Segítsen a WingetUI-nak a hiányzó ikonok és képernyőképek hozzáadásával a nyílt, nyilvános adatbázisunkhoz.\n", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ez a csomag nem rendelkezik képernyőképekkel, esetleg hiányzik az ikon? Segítsen a UniGetUI-nak a hiányzó ikonok és képernyőképek hozzáadásával a nyílt, nyilvános adatbázisunkhoz.\n", "Become a contributor": "Legyen közreműködő", "Save": "Ment", "Update to {0} available": "Frissítés - {0} elérhető", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Az autom. WinGet hibaelhárítás engedélyezése", "Enable an [experimental] improved WinGet troubleshooter": "Engedélyezze a [kísérleti] továbbfejlesztett WinGet hibaelhárítót", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "A 'nem található megfelelő frissítés' hibaüzenettel sikertelen frissítések hozzáadása a figyelmen kívül hagyott frissítések listájához", - "Restart WingetUI to fully apply changes": "A WingetUI újraindítása a változások teljes körű alkalmazásához", - "Restart WingetUI": "Indítsa újra a WingetUI-t", "Invalid selection": "Érvénytelen kijelölés", "No package was selected": "Nincs kiválasztva csomag", "More than 1 package was selected": "Több mint 1 csomag lett kiválasztva", @@ -684,6 +733,37 @@ "Log out failed: ": "A kijelentkezés sikertelen:", "Package backup settings": "Csomag bizt. mentés beállításai", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "A WingetUI-ról", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "A WingetUI egy olyan alkalmazás, amely megkönnyíti a szoftverek kezelését, mivel egy minden egyben grafikus felületet biztosít a parancssori csomagkezelők számára.\n", + "You have installed WingetUI Version {0}": "Ön telepítette a WingetUI {0} verzióját.", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "A WingetUI nem jöhetett volna létre a közreműködők segítsége nélkül. Köszönjük mindenkinek 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "A WingetUI a következő könyvtárakat használja. Ezek nélkül a WingetUI nem jöhetett volna létre.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "A WingetUI-t több mint 40 nyelvre fordították le az önkéntes fordítóknak köszönhetően. Köszönöm 🤝", + "WingetUI Settings": "WingetUI beállítások", + "You may need to install {pm} in order to use it with WingetUI.": "Lehet, hogy telepítenie kell a {pm}-t, hogy a WingetUI-val használni tudja.", + "Scoop Installer - WingetUI": "Scoop telepítő - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop eltávolító - WingetUI", + "Clearing Scoop cache - WingetUI": "Scoop gyorsítótár törlése - WingetUI", + "WingetUI Version {0}": "WingetUI verzió {0}", + "WingetUI License": "WingetUI licenc", + "Using WingetUI implies the acceptation of the MIT License": "A WingetUI használata magában foglalja az MIT-licenc elfogadását", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "A háttér api engedélyezése (WingetUI Widgets and Sharing, 7058-as port)", + "Update WingetUI automatically": "A WingetUI automatikus frissítése", + "Reset WingetUI": "A WingetUI alaphelyzetbe állítása", + "WingetUI display language:": "WingetUI megjelenítési nyelve:", + "Manage WingetUI autostart behaviour": "A WingetUI automatikus indításának kezelése", + "Enable WingetUI notifications": "WingetUI értesítések engedélyezése", + "WingetUI Log": "WingetUI Napló", + "Show WingetUI": "WingetUI megjelenítése", + "WingetUI Homepage": "WingetUI honlap", + "WingetUI Repository": "WingetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "A WingetUI-t rendszergazdaként futtatta, ami nem ajánlott. Ha a WingetUI-t rendszergazdaként futtatja, MINDEN WingetUI-ból indított művelet rendszergazdai jogosultságokkal rendelkezik. A programot továbbra is használhatja, de erősen javasolt, hogy a WingetUI-t ne futtassa rendszergazdai jogosultságokkal.\n", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Folyamatban vannak műveletek. A WingetUI elhagyása ezek meghibásodását okozhatja. Folytatni szeretné?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ez a csomag nem rendelkezik képernyőképekkel, esetleg hiányzik az ikon? Segítsen a WingetUI-nak a hiányzó ikonok és képernyőképek hozzáadásával a nyílt, nyilvános adatbázisunkhoz.\n", + "Restart WingetUI to fully apply changes": "A WingetUI újraindítása a változások teljes körű alkalmazásához", + "Restart WingetUI": "Indítsa újra a WingetUI-t", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "A UniGetUI auto. indítási viselkedésének kezelése a Beállítások alkalmazásból", "(Number {0} in the queue)": "({0} a várósorban)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@gidano", "0 packages found": "0 csomag található", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json index 0081fb92a8..36a1bde3ae 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_id.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Batalkan penghapusan jika perintah pra-penghapusan gagal", "Command-line to run:": "Perintah yang akan dijalankan:", "Save and close": "Simpan dan tutup", + "General": "Umum", + "Architecture & Location": "Arsitektur & Lokasi", + "Command-line": "Baris perintah", + "Pre/Post install": "Pra/Pasca-instalasi", "Run as admin": "Jalankan sebagai admin", "Interactive installation": "Pemasangan interaktif", "Skip hash check": "Lewati pemeriksaan hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Kelola pembaruan yang diabaikan", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Paket-paket yang terdaftar di sini tidak akan diperhitungkan saat memeriksa pembaruan. Klik dua kali pada mereka atau klik tombol di sebelah kanan mereka untuk berhenti mengabaikan pembaruan mereka.", "Reset list": "Atur ulang daftar", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Yakin ingin mengatur ulang daftar pembaruan yang diabaikan? Tindakan ini tidak dapat dibatalkan", + "No ignored updates": "Tidak ada pembaruan yang diabaikan", "Package Name": "Nama Paket", "Package ID": "ID Paket", "Ignored version": "Versi yang diabaikan", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Operasi ini sedang berjalan secara interaktif.", "You will likely need to interact with the installer.": "Anda mungkin perlu berinteraksi dengan penginstal.", "Integrity checks skipped": "Pemeriksaan integritas dilewati", + "Integrity checks will not be performed during this operation.": "Pemeriksaan integritas tidak akan dilakukan selama operasi ini.", "Proceed at your own risk.": "Lanjutkan dengan risiko Anda sendiri.", "Close": "Tutup", "Loading...": "Memuat...", @@ -120,16 +127,17 @@ "optional": "opsional", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} siap untuk dipasang.", "The update process will start after closing UniGetUI": "Proses pembaruan akan dimulai setelah menutup UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI telah dijalankan sebagai administrator, yang tidak disarankan. Saat menjalankan UniGetUI sebagai administrator, SETIAP operasi yang dijalankan dari UniGetUI akan memiliki hak administrator. Anda tetap dapat menggunakan program ini, tetapi kami sangat menyarankan agar tidak menjalankan UniGetUI dengan hak administrator.", "Share anonymous usage data": "Bagikan data penggunaan anonim", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI mengumpulkan data penggunaan anonim untuk meningkatkan pengalaman pengguna.", "Accept": "Terima", - "You have installed WingetUI Version {0}": "Anda telah menginstal UniGetUI Versi {0}", + "You have installed UniGetUI Version {0}": "Anda telah menginstal UniGetUI Versi {0}", "Disclaimer": "Penafian", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI tidak terkait dengan manajer paket yang kompatibel manapun. UniGetUI adalah proyek independen.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI tidak akan mungkin ada tanpa bantuan kontributor. Terima kasih semua 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI menggunakan pustaka berikut. Tanpa mereka, UniGetUI tidak akan mungkin terwujud.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI tidak akan mungkin ada tanpa bantuan kontributor. Terima kasih semua 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI menggunakan pustaka berikut. Tanpa pustaka ini, UniGetUI tidak akan mungkin ada.", "{0} homepage": "{0} halaman utama", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI telah diterjemahkan ke lebih dari 40 bahasa berkat para penerjemah sukarelawan. Terima kasih 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI telah diterjemahkan ke lebih dari 40 bahasa berkat para penerjemah sukarelawan. Terima kasih 🤝", "Verbose": "Verbose", "1 - Errors": "1 - Kesalahan", "2 - Warnings": "2 - Peringatan", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Anda masuk sebagai {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Bagus! Cadangan akan diunggah ke Gist pribadi di akun Anda", "Select backup": "Pilih cadangan", - "WingetUI Settings": "Pengaturan UniGetUI", + "UniGetUI Settings": "Pengaturan UniGetUI", "Allow pre-release versions": "Izinkan versi pra-rilis", "Apply": "Terapkan", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Demi keamanan, argumen baris perintah khusus dinonaktifkan secara default. Buka pengaturan keamanan UniGetUI untuk mengubahnya.", "Go to UniGetUI security settings": "Buka pengaturan keamanan UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Opsi berikut ini akan diterapkan secara default setiap kali paket {0} diinstal, diperbarui, atau dihapus.", "Package's default": "Paket bawaan", @@ -160,6 +169,7 @@ "Username": "Nama pengguna", "Password": "Kata sandi", "Credentials": "Kredensial", + "It is not guaranteed that the provided credentials will be stored safely": "Tidak ada jaminan bahwa kredensial yang diberikan akan disimpan dengan aman", "Partially": "Sebagian", "Package manager": "Manajer paket", "Compatible with proxy": "Kompatibel dengan proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} diaktifkan dan siap digunakan", "{pm} version:": "Versi {pm}:", "{pm} was not found!": "{pm} tidak ditemukan!", - "You may need to install {pm} in order to use it with WingetUI.": "Anda mungkin perlu menginstal {pm} untuk menggunakannya dengan UniGetUI.", - "Scoop Installer - WingetUI": "Instalasi Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Penghapus Instalasi Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Membersihkan cache Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Anda mungkin perlu menginstal {pm} untuk menggunakannya dengan UniGetUI.", + "Scoop Installer - UniGetUI": "Instalasi Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Penghapus Instalasi Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Membersihkan cache Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Mulai ulang UniGetUI untuk menerapkan perubahan sepenuhnya", "Restart UniGetUI": "Mulai ulang UniGetUI", "Manage {0} sources": "Kelola sumber {0}", "Add source": "Tambah sumber", "Add": "Tambah", + "Source name": "Nama sumber", + "Source URL": "URL sumber", "Other": "Lainnya", + "No minimum age": "Tanpa usia minimum", "1 day": "1 hari", "{0} days": "{0} hari", + "Custom...": "Kustom...", "{0} minutes": "{0} menit", "1 hour": "1 jam", "{0} hours": "{0} jam", "1 week": "1 minggu", - "WingetUI Version {0}": "UniGetUI Versi {0}", + "Supports release dates": "Mendukung tanggal rilis", + "Release date support per package manager": "Dukungan tanggal rilis per manajer paket", + "UniGetUI Version {0}": "UniGetUI Versi {0}", "Search for packages": "Cari paket", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Diaktifkan", "Disabled": "Dinonaktifkan", "More info": "Info lebih lanjut", + "GitHub account": "Akun GitHub", "Log in with GitHub to enable cloud package backup.": "Masuk dengan GitHub untuk mengaktifkan pencadangan paket cloud.", "More details": "Detail lainnya", "Log in": "Masuk", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Jika Anda mengaktifkan pencadangan cloud, pencadangan akan disimpan sebagai GitHub Gist di akun ini", "Log out": "Keluar", + "About UniGetUI": "Tentang UniGetUI", "About": "Tentang", "Third-party licenses": "Lisensi pihak ketiga", "Contributors": "Kontributor", @@ -212,6 +231,7 @@ "Manage shortcuts": "Kelola pintasan", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI telah mendeteksi pintasan desktop berikut yang dapat dihapus secara otomatis pada pembaruan mendatang", "Do you really want to reset this list? This action cannot be reverted.": "Yakin ingin mengatur ulang daftar ini? Tindakan ini tidak dapat dibatalkan.", + "Open in explorer": "Buka di Explorer", "Remove from list": "Hapus dari daftar", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Saat pintasan baru terdeteksi, hapus pintasan secara otomatis alih-alih menampilkan dialog ini.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI mengumpulkan data penggunaan anonim dengan tujuan tunggal untuk memahami dan meningkatkan pengalaman pengguna.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Apakah Anda menyetujui bahwa UniGetUI mengumpulkan dan mengirim statistik penggunaan anonim untuk memahami dan meningkatkan pengalaman pengguna?", "Decline": "Tolak", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Tidak ada informasi pribadi yang dikumpulkan atau dikirim, dan data yang dikumpulkan dianonimkan sehingga tidak dapat ditelusuri kembali kepada Anda.", - "About WingetUI": "Tentang UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI adalah aplikasi yang memudahkan pengelolaan perangkat lunak Anda, dengan menyediakan antarmuka grafis serba ada untuk pengelola paket baris perintah Anda.", + "Toggle navigation panel": "Tampilkan/sembunyikan panel navigasi", + "Minimize": "Minimalkan", + "Maximize": "Maksimalkan", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI adalah aplikasi yang memudahkan pengelolaan perangkat lunak Anda, dengan menyediakan antarmuka grafis serba ada untuk pengelola paket baris perintah Anda.", "Useful links": "Tautan berguna", + "UniGetUI Homepage": "Beranda UniGetUI", "Report an issue or submit a feature request": "Laporkan masalah atau ajukan permintaan fitur", + "UniGetUI Repository": "Repositori UniGetUI", "View GitHub Profile": "Lihat Profil GitHub", - "WingetUI License": "Lisensi UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Menggunakan UniGetUI berarti menerima Lisensi MIT", + "UniGetUI License": "Lisensi UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Menggunakan UniGetUI berarti menerima Lisensi MIT", "Become a translator": "Jadilah penerjemah", "View page on browser": "Lihat halaman di browser", "Copy to clipboard": "Salin ke papan klip", "Export to a file": "Ekspor ke berkas", "Log level:": "Tingkat log:", "Reload log": "Muat ulang log", + "Export log": "Ekspor log", + "UniGetUI Log": "Log UniGetUI", "Text": "Teks", "Change how operations request administrator rights": "Ubah bagaimana operasi meminta hak administrator", "Restrictions on package operations": "Pembatasan operasi paket", @@ -271,7 +297,7 @@ "Leave empty for default": "Biarkan kosong untuk bawaan", "Add a timestamp to the backup file names": "Tambahkan penanda waktu pada nama file cadangan", "Backup and Restore": "Pencadangan dan Pemulihan", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktifkan API latar belakang (Widget dan Berbagi UniGetUI, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktifkan API latar belakang (Widget dan Berbagi UniGetUI, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Tunggu perangkat terhubung ke internet sebelum mencoba melakukan tugas yang memerlukan koneksi internet.", "Disable the 1-minute timeout for package-related operations": "Nonaktifkan batas waktu 1 menit untuk operasi terkait paket", "Use installed GSudo instead of UniGetUI Elevator": "Gunakan GSudo yang terinstal sebagai pengganti UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "Kelola pengaturan UniGetUI", "Related settings": "Pengaturan terkait", - "Update WingetUI automatically": "Perbarui UniGetUI secara otomatis", + "Update UniGetUI automatically": "Perbarui UniGetUI secara otomatis", "Check for updates": "Periksa pembaruan", "Install prerelease versions of UniGetUI": "Pasang versi pra-rilis UniGetUI", "Manage telemetry settings": "Kelola pengaturan telemetri", @@ -295,17 +321,17 @@ "Import": "Impor", "Export settings to a local file": "Ekspor pengaturan ke berkas lokal", "Export": "Ekspor", - "Reset WingetUI": "Atur ulang UniGetUI", "Reset UniGetUI": "Atur ulang UniGetUI", "User interface preferences": "Preferensi antarmuka pengguna", "Application theme, startup page, package icons, clear successful installs automatically": "Tema aplikasi, halaman awal, ikon paket, bersihkan instalasi yang berhasil secara otomatis", "General preferences": "Preferensi umum", - "WingetUI display language:": "Bahasa tampilan UniGetUI:", + "UniGetUI display language:": "Bahasa tampilan UniGetUI:", "Is your language missing or incomplete?": "Apakah bahasa Anda tidak tersedia atau belum lengkap?", "Appearance": "Tampilan", "UniGetUI on the background and system tray": "UniGetUI di latar belakang dan area sistem", "Package lists": "Daftar paket", "Close UniGetUI to the system tray": "Tutup UniGetUI ke tray sistem", + "Manage UniGetUI autostart behaviour": "Kelola perilaku mulai otomatis UniGetUI", "Show package icons on package lists": "Tampilkan ikon paket di daftar paket", "Clear cache": "Bersihkan cache", "Select upgradable packages by default": "Pilih paket yang dapat diperbarui secara default", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Harap dicatat bahwa tidak semua manajer paket mendukung fitur ini sepenuhnya", "Proxy URL": "URL Proxy", "Enter proxy URL here": "Masukkan URL proxy di sini", + "Authenticate to the proxy with a user and a password": "Autentikasi ke proxy dengan nama pengguna dan kata sandi", + "Internet and proxy settings": "Pengaturan internet dan proxy", "Package manager preferences": "Preferensi manajer paket", "Ready": "Siap", "Not found": "Tidak ditemukan", "Notification preferences": "Preferensi notifikasi", "Notification types": "Jenis notifikasi", "The system tray icon must be enabled in order for notifications to work": "Ikon baki sistem harus diaktifkan agar pemberitahuan dapat bekerja", - "Enable WingetUI notifications": "Aktifkan notifikasi UniGetUI", + "Enable UniGetUI notifications": "Aktifkan notifikasi UniGetUI", "Show a notification when there are available updates": "Tampilkan pemberitahuan saat ada pembaruan yang tersedia", "Show a silent notification when an operation is running": "Tampilkan pemberitahuan diam saat operasi sedang berjalan", "Show a notification when an operation fails": "Tampilkan pemberitahuan saat operasi gagal", "Show a notification when an operation finishes successfully": "Tampilkan pemberitahuan saat operasi selesai dengan sukses", "Concurrency and execution": "Konkuren dan eksekusi", "Automatic desktop shortcut remover": "Penghapus pintasan desktop otomatis", + "Choose how many operations should be performed in parallel": "Pilih berapa banyak operasi yang harus dilakukan secara paralel", "Clear successful operations from the operation list after a 5 second delay": "Hapus operasi yang berhasil dari daftar setelah jeda 5 detik", "Download operations are not affected by this setting": "Operasi pengunduhan tidak terpengaruh oleh pengaturan ini", "Try to kill the processes that refuse to close when requested to": "Cobalah untuk mematikan proses yang menolak untuk menutup ketika diminta", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Pilih file yang dapat dieksekusi untuk digunakan. Daftar berikut menampilkan file yang dapat dieksekusi yang ditemukan oleh UniGetUI", "Current executable file:": "File yang dapat dieksekusi saat ini:", "Ignore packages from {pm} when showing a notification about updates": "Abaikan paket dari {pm} saat menampilkan notifikasi pembaruan", + "Update security": "Keamanan pembaruan", + "Use global setting": "Gunakan pengaturan global", + "e.g. 10": "mis. 10", + "{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", + "Override the global minimum update age for this package manager": "Ganti usia minimum pembaruan global untuk manajer paket ini", + "Minimum age for updates": "Usia minimum untuk pembaruan", + "Custom minimum age (days)": "Usia minimum kustom (hari)", "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, ", "Advanced options": "Opsi lanjutan", "Reset WinGet": "Atur ulang WinGet", "This may help if no packages are listed": "Ini mungkin membantu jika tidak ada paket yang terdaftar", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktifkan pembersihan Scoop saat dijalankan", "Use system Chocolatey": "Gunakan Chocolatey sistem", "Default vcpkg triplet": "Triplet vcpkg default", + "Change vcpkg root location": "Ubah lokasi root vcpkg", "Language, theme and other miscellaneous preferences": "Bahasa, tema, dan preferensi lainnya", "Show notifications on different events": "Tampilkan pemberitahuan pada berbagai acara", "Change how UniGetUI checks and installs available updates for your packages": "Ubah cara UniGetUI memeriksa dan menginstal pembaruan yang tersedia untuk paket Anda", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Jangan instal pembaruan otomatis saat koneksi internet terbatas", "Do not automatically install updates when the device runs on battery": "Jangan menginstal pembaruan secara otomatis saat perangkat menggunakan daya baterai", "Do not automatically install updates when the battery saver is on": "Jangan instal pembaruan secara otomatis saat penghemat baterai aktif", + "Only show updates that are at least the specified number of days old": "Hanya tampilkan pembaruan yang setidaknya berusia sesuai jumlah hari yang ditentukan", "Change how UniGetUI handles install, update and uninstall operations.": "Ubah cara UniGetUI menangani operasi instalasi, pembaruan, dan pencopotan.", "Package Managers": "Manajer Paket", "More": "Lainnya", - "WingetUI Log": "Log UniGetUI", "Package Manager logs": "Log Manajer Paket", "Operation history": "Riwayat operasi", "Help": "Bantuan", + "Quit UniGetUI": "Keluar dari UniGetUI", "Order by:": "Urutkan berdasarkan:", "Name": "Nama", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Keduanya", "Exact match": "Pencocokan tepat", "Show similar packages": "Tampilkan paket serupa", + "Nothing to share": "Tidak ada yang bisa dibagikan", + "Please select a package first.": "Harap pilih paket terlebih dahulu.", + "Share link copied": "Tautan berbagi disalin", + "The share link for {0} has been copied to the clipboard.": "Tautan berbagi untuk {0} telah disalin ke papan klip.", "No results were found matching the input criteria": "Tidak ditemukan hasil yang sesuai dengan kriteria", "No packages were found": "Tidak ditemukan paket", "Loading packages": "Memuat paket", @@ -440,7 +483,11 @@ "Package bundle": "Bundel paket", "Could not create bundle": "Tidak dapat membuat bundel", "The package bundle could not be created due to an error.": "Paket bundle tidak dapat dibuat karena kesalahan.", + "Unsaved changes": "Perubahan belum disimpan", + "Discard changes": "Buang perubahan", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Anda memiliki perubahan yang belum disimpan dalam bundel saat ini. Apakah Anda ingin membuangnya?", "Bundle security report": "Laporan keamanan bundel", + "The bundle contained restricted content": "Bundel berisi konten yang dibatasi", "Hooray! No updates were found.": "Hore! Tidak ada pembaruan yang ditemukan.", "Everything is up to date": "Semua sudah diperbarui", "Uninstall selected packages": "Hapus instalasi paket yang dipilih", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Manajer paket klasik untuk Windows. Anda akan menemukan segalanya di sana.
Berisi: Perangkat Lunak Umum", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repositori penuh dengan alat dan file eksekusi yang dirancang untuk ekosistem Microsoft .NET.
Berisi: alat dan skrip terkait .NET", "NuPkg (zipped manifest)": "NuPkg (manifest terkompresi)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Manajer Paket yang Hilang untuk macOS (atau Linux).
Berisi: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Manajer paket Node JS. Berisi berbagai pustaka dan utilitas di ekosistem JavaScript
Berisi: Pustaka JavaScript Node dan utilitas terkait lainnya", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Pengelola pustaka Python. Penuh dengan pustaka Python dan utilitas terkait Python lainnya
Berisi: Pustaka Python dan utilitas terkait", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Manajer paket PowerShell. Temukan pustaka dan skrip untuk memperluas kemampuan PowerShell
Berisi: Modul, Skrip, Cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operasi dalam antrean (posisi {0})...", "Click here for more details": "Klik di sini untuk detail lebih lanjut", "Operation canceled by user": "Operasi dibatalkan oleh pengguna", + "Running PreOperation ({0}/{1})...": "Menjalankan PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} dari {1} gagal, dan ditandai sebagai wajib. Membatalkan...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} dari {1} selesai dengan hasil {2}", "Starting operation...": "Memulai operasi...", + "Running PostOperation ({0}/{1})...": "Menjalankan PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} dari {1} gagal, dan ditandai sebagai wajib. Membatalkan...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} dari {1} selesai dengan hasil {2}", "{package} installer download": "Unduh penginstal {package}", "{0} installer is being downloaded": "Penginstal {0} sedang diunduh", "Download succeeded": "Unduhan berhasil", @@ -556,14 +610,12 @@ "Portable mode": "Mode portabel", "DEBUG BUILD": "VERSI DEBUG", "Available Updates": "Pembaruan Tersedia", - "Show WingetUI": "Tampilkan UniGetUI", + "Show UniGetUI": "Tampilkan UniGetUI", "Quit": "Keluar", "Attention required": "Perlu perhatian", "Restart required": "Mulai ulang diperlukan", "1 update is available": "1 pembaruan tersedia", "{0} updates are available": "{0} pembaruan tersedia", - "WingetUI Homepage": "Halaman Utama UniGetUI", - "WingetUI Repository": "Repositori UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Di sini Anda dapat mengubah perilaku UniGetUI terkait pintasan berikut. Mencentang pintasan akan membuat UniGetUI menghapusnya jika dibuat pada peningkatan di masa mendatang. Menghapus centang akan membuat pintasan tetap utuh", "Manual scan": "Pemindaian manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Shortcut yang ada di desktop Anda akan dipindai, dan Anda harus memilih mana yang akan disimpan dan mana yang akan dihapus.", @@ -583,7 +635,6 @@ "Restart later": "Mulai ulang nanti", "An error occurred:": "Terjadi kesalahan:", "I understand": "Saya mengerti", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI telah dijalankan sebagai administrator, yang tidak disarankan. Ketika menjalankan UniGetUI sebagai administrator, SETIAP operasi yang diluncurkan dari UniGetUI akan memiliki hak istimewa administrator. Anda masih bisa menggunakan program ini, tetapi kami sangat menyarankan untuk tidak menjalankan UniGetUI dengan hak istimewa administrator.", "WinGet was repaired successfully": "WinGet berhasil diperbaiki", "It is recommended to restart UniGetUI after WinGet has been repaired": "Disarankan untuk memulai ulang UniGetUI setelah WinGet diperbaiki", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "CATATAN: Pemecah masalah ini dapat dinonaktifkan dari Pengaturan UniGetUI, di bagian WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Paket Anda telah ditambahkan ke bundel. Anda dapat menambahkan lebih banyak paket atau mengekspor bundel.", "Which backup do you want to open?": "Cadangan mana yang ingin Anda buka?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Pilih cadangan yang ingin Anda buka. Kemudian, Anda akan dapat meninjau paket/program mana yang ingin Anda pulihkan.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ada operasi yang sedang berjalan. Menutup UniGetUI dapat menyebabkan mereka gagal. Apakah Anda ingin melanjutkan?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Ada operasi yang sedang berjalan. Menutup UniGetUI dapat menyebabkan mereka gagal. Apakah Anda ingin melanjutkan?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI atau beberapa komponennya hilang atau rusak.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Sangat disarankan untuk menginstal ulang UniGetUI untuk mengatasi situasi ini.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Lihat Log UniGetUI untuk mendapatkan rincian lebih lanjut mengenai file yang terpengaruh", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Tuliskan nama proses di sini, dipisahkan dengan koma (,)", "Unset or unknown": "Tidak disetel atau tidak diketahui", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Lihat Output Baris Perintah atau Riwayat Operasi untuk informasi lebih lanjut tentang masalah ini.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Paket ini tidak memiliki tangkapan layar atau ikon yang hilang? Berkontribusilah ke UniGetUI dengan menambahkan ikon dan tangkapan layar yang hilang ke database publik terbuka kami.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Paket ini tidak memiliki tangkapan layar atau ikon yang hilang? Berkontribusilah ke UniGetUI dengan menambahkan ikon dan tangkapan layar yang hilang ke database publik terbuka kami.", "Become a contributor": "Jadilah kontributor", "Save": "Simpan", "Update to {0} available": "Pembaruan ke {0} tersedia", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktifkan pemecah masalah WinGet otomatis", "Enable an [experimental] improved WinGet troubleshooter": "Aktifkan pemecah masalah WinGet yang [eksperimental] dan lebih baik", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Tambahkan pembaruan yang gagal dengan pesan 'tidak ditemukan pembaruan yang sesuai' ke daftar yang diabaikan", - "Restart WingetUI to fully apply changes": "Mulai ulang UniGetUI untuk menerapkan perubahan sepenuhnya", - "Restart WingetUI": "Mulai ulang UniGetUI", "Invalid selection": "Pilihan tidak valid", "No package was selected": "Tidak ada paket yang dipilih", "More than 1 package was selected": "Lebih dari 1 paket dipilih", @@ -684,6 +733,37 @@ "Log out failed: ": "Logout gagal:", "Package backup settings": "Pengaturan pencadangan paket", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Tentang UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI adalah aplikasi yang memudahkan pengelolaan perangkat lunak Anda, dengan menyediakan antarmuka grafis serba ada untuk pengelola paket baris perintah Anda.", + "You have installed WingetUI Version {0}": "Anda telah menginstal UniGetUI Versi {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI tidak akan mungkin ada tanpa bantuan kontributor. Terima kasih semua 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI menggunakan pustaka berikut. Tanpa mereka, UniGetUI tidak akan mungkin terwujud.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI telah diterjemahkan ke lebih dari 40 bahasa berkat para penerjemah sukarelawan. Terima kasih 🤝", + "WingetUI Settings": "Pengaturan UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Anda mungkin perlu menginstal {pm} untuk menggunakannya dengan UniGetUI.", + "Scoop Installer - WingetUI": "Instalasi Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Penghapus Instalasi Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Membersihkan cache Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Versi {0}", + "WingetUI License": "Lisensi UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Menggunakan UniGetUI berarti menerima Lisensi MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktifkan API latar belakang (Widget dan Berbagi UniGetUI, port 7058)", + "Update WingetUI automatically": "Perbarui UniGetUI secara otomatis", + "Reset WingetUI": "Atur ulang UniGetUI", + "WingetUI display language:": "Bahasa tampilan UniGetUI:", + "Manage WingetUI autostart behaviour": "Kelola perilaku mulai otomatis UniGetUI", + "Enable WingetUI notifications": "Aktifkan notifikasi UniGetUI", + "WingetUI Log": "Log UniGetUI", + "Show WingetUI": "Tampilkan UniGetUI", + "WingetUI Homepage": "Halaman Utama UniGetUI", + "WingetUI Repository": "Repositori UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI telah dijalankan sebagai administrator, yang tidak disarankan. Ketika menjalankan UniGetUI sebagai administrator, SETIAP operasi yang diluncurkan dari UniGetUI akan memiliki hak istimewa administrator. Anda masih bisa menggunakan program ini, tetapi kami sangat menyarankan untuk tidak menjalankan UniGetUI dengan hak istimewa administrator.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ada operasi yang sedang berjalan. Menutup UniGetUI dapat menyebabkan mereka gagal. Apakah Anda ingin melanjutkan?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Paket ini tidak memiliki tangkapan layar atau ikon yang hilang? Berkontribusilah ke UniGetUI dengan menambahkan ikon dan tangkapan layar yang hilang ke database publik terbuka kami.", + "Restart WingetUI to fully apply changes": "Mulai ulang UniGetUI untuk menerapkan perubahan sepenuhnya", + "Restart WingetUI": "Mulai ulang UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Kelola perilaku mulai otomatis UniGetUI dari aplikasi Pengaturan", "(Number {0} in the queue)": "(Nomor {0} dalam antrean)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@agrinfauzi, @arthackrc, @joenior, @nrarfn", "0 packages found": "0 paket ditemukan", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json index f44774b9a3..5de9e4d0b2 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_it.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Interrompi la disinstallazione se il comando di pre-disinstallazione fallisce", "Command-line to run:": "Riga di comando per eseguire:", "Save and close": "Salva e chiudi", + "General": "Generale", + "Architecture & Location": "Architettura e posizione", + "Command-line": "Riga di comando", + "Pre/Post install": "Pre/Post installazione", "Run as admin": "Amministratore", "Interactive installation": "Installazione interattiva", "Skip hash check": "Salta controllo hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Gestisci aggiornamenti ignorati", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "I pacchetti elencati qui non verranno presi in considerazione durante il controllo degli aggiornamenti. Fai doppio clic su di essi o fai clic sul pulsante alla loro destra per non ignorare gli aggiornamenti.", "Reset list": "Reimposta elenco", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Vuoi davvero reimpostare l'elenco degli aggiornamenti ignorati? Questa azione non può essere annullata", + "No ignored updates": "Nessun aggiornamento ignorato", "Package Name": "Nome pacchetto", "Package ID": "ID pacchetto", "Ignored version": "Versione ignorata", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Questa operazione viene eseguita in modo interattivo.", "You will likely need to interact with the installer.": "Probabilmente sarà necessario interagire con il programma di installazione.", "Integrity checks skipped": "Controlli di integrità saltati", + "Integrity checks will not be performed during this operation.": "I controlli di integrità non verranno eseguiti durante questa operazione.", "Proceed at your own risk.": "Procedi a tuo rischio e pericolo.", "Close": "Chiudi", "Loading...": "Caricamento...", @@ -120,16 +127,17 @@ "optional": "opzionale", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} è pronto per essere installato.", "The update process will start after closing UniGetUI": "Il processo di aggiornamento inizierà dopo la chiusura di UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI è stato eseguito come amministratore, cosa non consigliata. Quando esegui UniGetUI come amministratore, OGNI operazione avviata da UniGetUI avrà privilegi di amministratore. Puoi comunque usare il programma, ma consigliamo vivamente di non eseguire UniGetUI con privilegi di amministratore.", "Share anonymous usage data": "Condividi dati di utilizzo anonimi", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI raccoglie dati di utilizzo anonimi per migliorare l'esperienza dell'utente.", "Accept": "Accetta", - "You have installed WingetUI Version {0}": "Hai installato la versione {0} di WingetUI", + "You have installed UniGetUI Version {0}": "Hai installato la versione {0} di UniGetUI", "Disclaimer": "Esclusione di responsabilità", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI non è correlato a nessuno dei gestori di pacchetti compatibili. UniGetUI è un progetto indipendente.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI non sarebbe stato possibile senza l'aiuto dei collaboratori. Grazie a tutti 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI si avvale delle seguenti librerie. Senza di esse, WingetUI non sarebbe stato realizzabile.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI non sarebbe stato possibile senza l'aiuto dei collaboratori. Grazie a tutti 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI si avvale delle seguenti librerie. Senza di esse, UniGetUI non sarebbe stato realizzabile.", "{0} homepage": "Sito web di {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI è stato tradotto in oltre 40 lingue da traduttori volontari. Un grande grazie a tutti🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI è stato tradotto in oltre 40 lingue da traduttori volontari. Un grande grazie a tutti🤝", "Verbose": "Verboso", "1 - Errors": "1 - Errori", "2 - Warnings": "2 - Avvertimenti", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Hai effettuato l'accesso come {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Perfetto! I backup verranno caricati su un gist privato sul tuo account.", "Select backup": "Seleziona backup", - "WingetUI Settings": "Impostazioni di WingetUI", + "UniGetUI Settings": "Impostazioni di UniGetUI", "Allow pre-release versions": "Consenti le versioni di sviluppo", "Apply": "Applica", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Per motivi di sicurezza, gli argomenti personalizzati della riga di comando sono disabilitati per impostazione predefinita. Vai alle impostazioni di sicurezza di UniGetUI per modificare questa opzione.", "Go to UniGetUI security settings": "Vai alle impostazioni di sicurezza di UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Le seguenti opzioni verranno applicate per impostazione predefinita ogni volta che un pacchetto {0} viene installato, aggiornato o disinstallato.", "Package's default": "Predefinito del pacchetto", @@ -160,6 +169,7 @@ "Username": "Nome utente", "Password": "Password di accesso", "Credentials": "Credenziali", + "It is not guaranteed that the provided credentials will be stored safely": "Non è garantito che le credenziali fornite vengano archiviate in modo sicuro", "Partially": "Parzialmente", "Package manager": "Gestore pacchetti", "Compatible with proxy": "Compatibile con proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} è abilitato e pronto per l'uso", "{pm} version:": "Versione di {pm}:", "{pm} was not found!": "{pm} non è stato trovato!", - "You may need to install {pm} in order to use it with WingetUI.": "Potrebbe essere necessario installare {pm} per poterlo utilizzare con WingetUI.", - "Scoop Installer - WingetUI": "Programma di installazione di Scoop: WingetUI", - "Scoop Uninstaller - WingetUI": "Programma di disinstallazione di Scoop: WingetUI", - "Clearing Scoop cache - WingetUI": "Svuotamento cache di Scoop: WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Potrebbe essere necessario installare {pm} per poterlo utilizzare con UniGetUI.", + "Scoop Installer - UniGetUI": "Programma di installazione di Scoop: UniGetUI", + "Scoop Uninstaller - UniGetUI": "Programma di disinstallazione di Scoop: UniGetUI", + "Clearing Scoop cache - UniGetUI": "Svuotamento cache di Scoop: UniGetUI", + "Restart UniGetUI to fully apply changes": "Riavvia UniGetUI per applicare completamente le modifiche", "Restart UniGetUI": "Riavvia UniGetUI", "Manage {0} sources": "Gestisci {0} sorgenti", "Add source": "Aggiungi sorgente", "Add": "Aggiungi", + "Source name": "Nome sorgente", + "Source URL": "URL sorgente", "Other": "Altro", + "No minimum age": "Nessuna età minima", "1 day": "1 giorno", "{0} days": "{0} giorni", + "Custom...": "Personalizzato...", "{0} minutes": "{0} minuti", "1 hour": "1 ora", "{0} hours": "{0} ore", "1 week": "1 settimana", - "WingetUI Version {0}": "WingetUI versione {0}", + "Supports release dates": "Supporta le date di rilascio", + "Release date support per package manager": "Supporto delle date di rilascio per ogni gestore di pacchetti", + "UniGetUI Version {0}": "UniGetUI versione {0}", "Search for packages": "Ricerca pacchetti", "Local": "Locale", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Abilitato", "Disabled": "Disabilitato", "More info": "Più informazioni", + "GitHub account": "Account GitHub", "Log in with GitHub to enable cloud package backup.": "Accedi con GitHub per abilitare il backup dei pacchetti sul cloud.", "More details": "Più dettagli", "Log in": "Accesso", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se hai abilitato il backup sul cloud, verrà salvato come GitHub Gist su questo account", "Log out": "Disconnessione", + "About UniGetUI": "Informazioni su UniGetUI", "About": "Informazioni su", "Third-party licenses": "Licenze di terze parti", "Contributors": "Collaboratori", @@ -212,6 +231,7 @@ "Manage shortcuts": "Gestisci collegamenti", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ha rilevato i seguenti collegamenti sul desktop che possono essere rimossi automaticamente durante gli aggiornamenti futuri", "Do you really want to reset this list? This action cannot be reverted.": "Vuoi davvero reimpostare questo elenco? Questa azione non può essere annullata.", + "Open in explorer": "Apri in Esplora file", "Remove from list": "Rimuovi dall'elenco", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Quando vengono rilevati nuovi collegamenti, questi vengono eliminati automaticamente anziché visualizzare questa finestra di dialogo.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI raccoglie dati di utilizzo anonimi con l'unico scopo di comprendere e migliorare l'esperienza dell'utente.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Accetti che UniGetUI raccolga e invii statistiche anonime sull'utilizzo, con l'unico scopo di comprendere e migliorare l'esperienza dell'utente?", "Decline": "Rifiuta", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Non vengono raccolte né inviate informazioni personali e i dati raccolti vengono resi anonimi, quindi non è possibile risalire alla tua identità.", - "About WingetUI": "Informazioni su WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI è un'applicazione che semplifica la gestione del software, fornendo un'unica interfaccia grafica per i gestori di pacchetti da riga di comando.", + "Toggle navigation panel": "Mostra/nascondi pannello di navigazione", + "Minimize": "Minimizza", + "Maximize": "Massimizza", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI è un'applicazione che semplifica la gestione del software, fornendo un'unica interfaccia grafica per i gestori di pacchetti da riga di comando.", "Useful links": "Link utili", + "UniGetUI Homepage": "Sito web di UniGetUI", "Report an issue or submit a feature request": "Segnala un problema o invia una richiesta di funzionalità", + "UniGetUI Repository": "Repository di UniGetUI", "View GitHub Profile": "Visualizza profilo GitHub", - "WingetUI License": "Licenza di WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "L'utilizzo di WingetUI implica l'accettazione della Licenza MIT", + "UniGetUI License": "Licenza di UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "L'utilizzo di UniGetUI implica l'accettazione della Licenza MIT", "Become a translator": "Diventa un traduttore", "View page on browser": "Visualizza pagina sul browser", "Copy to clipboard": "Copia negli appunti", "Export to a file": "Esporta in un file", "Log level:": "Livello di log:", "Reload log": "Ricarica log", + "Export log": "Esporta log", + "UniGetUI Log": "Log di UniGetUI", "Text": "Testo", "Change how operations request administrator rights": "Modifica il modo in cui le operazioni richiedono i diritti di amministratore", "Restrictions on package operations": "Restrizioni sulle operazioni dei pacchetti", @@ -271,7 +297,7 @@ "Leave empty for default": "Lascia vuoto per impostazione predefinita", "Add a timestamp to the backup file names": "Aggiungi data e ora ai nomi dei file di backup", "Backup and Restore": "Backup e ripristino", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Abilita API in background (widget e condivisione WingetUI, porta 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Abilita API in background (widget e condivisione UniGetUI, porta 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Attendi che il dispositivo sia connesso a Internet prima di provare a svolgere attività che richiedono la connettività Internet.", "Disable the 1-minute timeout for package-related operations": "Disabilita il timeout di 1 minuto per le operazioni relative al pacchetto", "Use installed GSudo instead of UniGetUI Elevator": "Usa GSudo installato invece di UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Gestisci le impostazioni di UniGetUI", "Related settings": "Impostazioni correlate", - "Update WingetUI automatically": "Aggiorna WingetUI automaticamente", + "Update UniGetUI automatically": "Aggiorna UniGetUI automaticamente", "Check for updates": "Controlla aggiornamenti", "Install prerelease versions of UniGetUI": "Installa le versioni di sviluppo di UniGetUI", "Manage telemetry settings": "Gestisci le impostazioni di telemetria", @@ -295,17 +321,17 @@ "Import": "Importa", "Export settings to a local file": "Esporta impostazioni in un file locale", "Export": "Esporta", - "Reset WingetUI": "Reimposta WingetUI", "Reset UniGetUI": "Reimposta UniGetUI", "User interface preferences": "Preferenze dell'interfaccia utente", "Application theme, startup page, package icons, clear successful installs automatically": "Tema dell'applicazione, pagina di avvio, icone del pacchetto, cancella automaticamente le installazioni riuscite", "General preferences": "Preferenze generali", - "WingetUI display language:": "Lingua di visualizzazione di WingetUI:", + "UniGetUI display language:": "Lingua di visualizzazione di UniGetUI:", "Is your language missing or incomplete?": "La tua lingua manca o è incompleta?", "Appearance": "Aspetto", "UniGetUI on the background and system tray": "UniGetUI in background e nella barra delle applicazioni", "Package lists": "Elenchi pacchetti", "Close UniGetUI to the system tray": "Chiudi UniGetUI nella barra delle applicazioni", + "Manage UniGetUI autostart behaviour": "Gestisci il comportamento di avvio automatico di UniGetUI", "Show package icons on package lists": "Mostra icone dei pacchetti negli elenchi dei pacchetti", "Clear cache": "Svuota cache", "Select upgradable packages by default": "Seleziona pacchetti aggiornabili per impostazione predefinita", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Tieni presente che non tutti i gestori di pacchetti potrebbero supportare completamente questa funzionalità", "Proxy URL": "URL proxy", "Enter proxy URL here": "Inserisci qui l'URL del proxy", + "Authenticate to the proxy with a user and a password": "Autentica il proxy con un nome utente e una password", + "Internet and proxy settings": "Impostazioni Internet e proxy", "Package manager preferences": "Preferenze del gestore pacchetti", "Ready": "Pronto", "Not found": "Non trovato", "Notification preferences": "Preferenze di notifica", "Notification types": "Tipi di notifica", "The system tray icon must be enabled in order for notifications to work": "L'icona della barra delle applicazioni deve essere abilitata affinché le notifiche funzionino", - "Enable WingetUI notifications": "Abilita notifiche di WingetUI", + "Enable UniGetUI notifications": "Abilita notifiche di UniGetUI", "Show a notification when there are available updates": "Mostra una notifica quando ci sono aggiornamenti disponibili", "Show a silent notification when an operation is running": "Mostra una notifica silenziosa quando un'operazione è in esecuzione", "Show a notification when an operation fails": "Mostra una notifica quando un'operazione non riesce\n", "Show a notification when an operation finishes successfully": "Mostra una notifica quando un'operazione viene completata correttamente", "Concurrency and execution": "Concorrenza ed esecuzione", "Automatic desktop shortcut remover": "Rimozione automatica dei collegamenti dal desktop\n", + "Choose how many operations should be performed in parallel": "Scegli quante operazioni devono essere eseguite in parallelo", "Clear successful operations from the operation list after a 5 second delay": "Cancella le operazioni riuscite dall'elenco delle operazioni dopo un ritardo di 5 secondi", "Download operations are not affected by this setting": "Le operazioni di scaricamento non sono influenzate da questa impostazione", "Try to kill the processes that refuse to close when requested to": "Prova a fermare i processi che rifiutano di chiudersi quando richiesto", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Seleziona l'eseguibile da utilizzare. L'elenco seguente mostra gli eseguibili trovati da UniGetUI", "Current executable file:": "File eseguibile attuale:", "Ignore packages from {pm} when showing a notification about updates": "Ignora i pacchetti da {pm} quando viene mostrata una notifica sugli aggiornamenti", + "Update security": "Sicurezza degli aggiornamenti", + "Use global setting": "Usa l'impostazione globale", + "e.g. 10": "ad es. 10", + "{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", + "Override the global minimum update age for this package manager": "Sostituisci l'età minima globale degli aggiornamenti per questo gestore di pacchetti", + "Minimum age for updates": "Età minima degli aggiornamenti", + "Custom minimum age (days)": "Età minima personalizzata (giorni)", "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, ", "Advanced options": "Opzioni avanzate", "Reset WinGet": "Reimposta WinGet", "This may help if no packages are listed": "Questo può essere d'aiuto se i pacchetti non sono elencati", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Abilita pulizia di Scoop all'avvio", "Use system Chocolatey": "Usa Chocolatey di sistema", "Default vcpkg triplet": "Triplet predefinito di vcpkg", + "Change vcpkg root location": "Cambia il percorso radice di vcpkg", "Language, theme and other miscellaneous preferences": "Lingua, tema e altre preferenze", "Show notifications on different events": "Mostra notifiche su diversi eventi", "Change how UniGetUI checks and installs available updates for your packages": "Modifica il modo in cui UniGetUI controlla e installa gli aggiornamenti disponibili per i tuoi pacchetti", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Non installare automaticamente gli aggiornamenti quando la connessione di rete è a consumo", "Do not automatically install updates when the device runs on battery": "Non installare automaticamente gli aggiornamenti quando il dispositivo funziona a batteria", "Do not automatically install updates when the battery saver is on": "Non installare automaticamente gli aggiornamenti quando il risparmio batteria è attivo", + "Only show updates that are at least the specified number of days old": "Mostra solo gli aggiornamenti che hanno almeno il numero di giorni specificato", "Change how UniGetUI handles install, update and uninstall operations.": "Modifica il modo in cui UniGetUI gestisce le operazioni di installazione, aggiornamento e disinstallazione.", "Package Managers": "Gestori pacchetti", "More": "Altro", - "WingetUI Log": "Log di WingetUI", "Package Manager logs": "Log gestore pacchetti", "Operation history": "Cronologia operazioni", "Help": "Aiuto", + "Quit UniGetUI": "Esci da UniGetUI", "Order by:": "Ordina per:", "Name": "Nome", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Entrambi", "Exact match": "Corrispondenza esatta", "Show similar packages": "Mostra pacchetti simili", + "Nothing to share": "Niente da condividere", + "Please select a package first.": "Seleziona prima un pacchetto.", + "Share link copied": "Link di condivisione copiato", + "The share link for {0} has been copied to the clipboard.": "Il link di condivisione per {0} è stato copiato negli appunti.", "No results were found matching the input criteria": "Nessun risultato corrispondente ai criteri di ricerca", "No packages were found": "Nessun pacchetto trovato", "Loading packages": "Caricamento pacchetti", @@ -440,7 +483,11 @@ "Package bundle": "Raccolta pacchetti", "Could not create bundle": "Impossibile creare la raccolta", "The package bundle could not be created due to an error.": "Non è stato possibile creare la raccolta di pacchetti a causa di un errore.", + "Unsaved changes": "Modifiche non salvate", + "Discard changes": "Scarta modifiche", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Sono presenti modifiche non salvate nel bundle corrente. Vuoi scartarle?", "Bundle security report": "Rapporto sulla sicurezza delle raccolte", + "The bundle contained restricted content": "Il bundle conteneva contenuti soggetti a restrizioni", "Hooray! No updates were found.": "Evviva! Non ci sono aggiornamenti!", "Everything is up to date": "Tutto aggiornato", "Uninstall selected packages": "Disinstalla pacchetti selezionati", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Il classico gestore pacchetti per Windows. Qui troverai di tutto.
Contiene: software generico", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repository pieno di strumenti ed eseguibili progettati pensando all'ecosistema .NET di Microsoft.
Contiene: strumenti e script relativi a .NET", "NuPkg (zipped manifest)": "NuPkg (manifesto compresso)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Il gestore di pacchetti che mancava per macOS (o Linux).
Contiene: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Il gestore pacchetti di Node JS. Pieno di librerie e altre strumenti che orbitano attorno al mondo javascript.
Contiene: librerie javascript Node e altri strumenti correlati", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Il gestore libreria di Python. Pieno di librerie Python e altri strumenti relativi a Python.
Contiene: librerie Python e strumenti correlati", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Il gestore pacchetti di PowerShell. Trova librerie e script per espandere le funzionalità di PowerShell.
Contiene: moduli, script, cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operazione in coda (posizione {0})...", "Click here for more details": "Fai clic qui per maggiori dettagli", "Operation canceled by user": "Operazione annullata dall'utente", + "Running PreOperation ({0}/{1})...": "Esecuzione di PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "La PreOperation {0} di {1} non è riuscita ed era contrassegnata come necessaria. Interruzione...", + "PreOperation {0} out of {1} finished with result {2}": "La PreOperation {0} di {1} è terminata con risultato {2}", "Starting operation...": "Avvio dell'operazione...", + "Running PostOperation ({0}/{1})...": "Esecuzione di PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "La PostOperation {0} di {1} non è riuscita ed era contrassegnata come necessaria. Interruzione...", + "PostOperation {0} out of {1} finished with result {2}": "La PostOperation {0} di {1} è terminata con risultato {2}", "{package} installer download": "Scarica il programma di installazione {package}", "{0} installer is being downloaded": "Programma di installazione {0} in fase di scaricamento", "Download succeeded": "Scaricamento riuscito", @@ -556,14 +610,12 @@ "Portable mode": "Modalità portatile", "DEBUG BUILD": "DEBUG COMPILAZIONE", "Available Updates": "Aggiornamenti disponibili", - "Show WingetUI": "Mostra WingetUI", + "Show UniGetUI": "Mostra UniGetUI", "Quit": "Esci", "Attention required": "È richiesta attenzione", "Restart required": "Riavvio richiesto", "1 update is available": "È disponibile 1 aggiornamento", "{0} updates are available": "Sono disponibili {0} aggiornamenti", - "WingetUI Homepage": "Homepage di WingetUI", - "WingetUI Repository": "Repository di WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Qui puoi modificare il comportamento di UniGetUI relativamente ai collegamenti seguenti. Selezionando un collegamento UniGetUI lo eliminerà se verrà creato in un futuro aggiornamento. Deselezionandolo, il collegamento rimarrà intatto", "Manual scan": "Scansione manuale", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Verranno analizzati i collegamenti presenti sul desktop e sarà necessario scegliere quali mantenere e quali rimuovere.", @@ -583,7 +635,6 @@ "Restart later": "Riavvia più tardi", "An error occurred:": "Si è verificato un errore:", "I understand": "Capisco", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Non è consigliato eseguire WingetUI con i privilegi di amministratore. In questo modo, TUTTE le operazioni avviate da WingetUI arvranno i privilegi di amministratore. È possibile continuare a utilizzare il programma, ma è fortemente sconsigliato eseguirlo come amministratore.", "WinGet was repaired successfully": "WinGet è stato riparato correttamente", "It is recommended to restart UniGetUI after WinGet has been repaired": "Si consiglia di riavviare UniGetUI dopo che WinGet è stato riparato", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: questo strumento di risoluzione dei problemi può essere disabilitato dalle impostazioni di UniGetUI, nella sezione WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. I tuoi pacchetti saranno stati aggiunti alla raccolta. Puoi continuare ad aggiungere pacchetti o esportare la raccolta.", "Which backup do you want to open?": "Quale backup vuoi aprire?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Seleziona il backup che desideri aprire. In seguito, potrai controllare quali pacchetti desideri installare.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ci sono operazioni in corso. L'uscita da WingetUI potrebbe causare il loro errore. Vuoi continuare?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Ci sono operazioni in corso. L'uscita da UniGetUI potrebbe causare il loro errore. Vuoi continuare?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI o alcuni dei suoi componenti sono mancanti o danneggiati.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Si consiglia vivamente di reinstallare UniGetUI per risolvere il problema.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Fai riferimento ai log di UniGetUI per ottenere maggiori dettagli sui file interessati", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Scrivi qui i nomi dei processi, separati da virgole (,)", "Unset or unknown": "Non impostato o sconosciuto", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Per ulteriori informazioni sul problema, consulta l'output della riga di comando o fai riferimento alla cronologia delle operazioni.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Questo pacchetto non ha alcun screenshot o icona? Contribuisci a WingetUI aggiungendo le icone e gli screenshot mancanti al nostro database pubblico e aperto a tutti.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Questo pacchetto non ha alcun screenshot o icona? Contribuisci a UniGetUI aggiungendo le icone e gli screenshot mancanti al nostro database pubblico e aperto a tutti.", "Become a contributor": "Diventa un collaboratore", "Save": "Salva", "Update to {0} available": "Aggiornamento a {0} disponibile", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Abilita risoluzione automatica dei problemi di WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Abilita uno strumento di risoluzione dei problemi WinGet migliorato [sperimentale]", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Aggiungi gli aggiornamenti che non riescono con un \"nessun aggiornamento applicabile trovato\" all'elenco degli aggiornamenti ignorati", - "Restart WingetUI to fully apply changes": "Riavvia WingetUI per applicare completamente le modifiche", - "Restart WingetUI": "Riavvia WingetUI", "Invalid selection": "Selezione non valida", "No package was selected": "Nessun pacchetto selezionato", "More than 1 package was selected": "È stato selezionato più di 1 pacchetto", @@ -684,6 +733,37 @@ "Log out failed: ": "Disconnessione non riuscita:", "Package backup settings": "Impostazioni di backup del pacchetto", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Informazioni su WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI è un'applicazione che semplifica la gestione del software, fornendo un'unica interfaccia grafica per i gestori di pacchetti da riga di comando.", + "You have installed WingetUI Version {0}": "Hai installato la versione {0} di WingetUI", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI non sarebbe stato possibile senza l'aiuto dei collaboratori. Grazie a tutti 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI si avvale delle seguenti librerie. Senza di esse, WingetUI non sarebbe stato realizzabile.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI è stato tradotto in oltre 40 lingue da traduttori volontari. Un grande grazie a tutti🤝", + "WingetUI Settings": "Impostazioni di WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Potrebbe essere necessario installare {pm} per poterlo utilizzare con WingetUI.", + "Scoop Installer - WingetUI": "Programma di installazione di Scoop: WingetUI", + "Scoop Uninstaller - WingetUI": "Programma di disinstallazione di Scoop: WingetUI", + "Clearing Scoop cache - WingetUI": "Svuotamento cache di Scoop: WingetUI", + "WingetUI Version {0}": "WingetUI versione {0}", + "WingetUI License": "Licenza di WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "L'utilizzo di WingetUI implica l'accettazione della Licenza MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Abilita API in background (widget e condivisione WingetUI, porta 7058)", + "Update WingetUI automatically": "Aggiorna WingetUI automaticamente", + "Reset WingetUI": "Reimposta WingetUI", + "WingetUI display language:": "Lingua di visualizzazione di WingetUI:", + "Manage WingetUI autostart behaviour": "Gestisci il comportamento di avvio automatico di WingetUI", + "Enable WingetUI notifications": "Abilita notifiche di WingetUI", + "WingetUI Log": "Log di WingetUI", + "Show WingetUI": "Mostra WingetUI", + "WingetUI Homepage": "Homepage di WingetUI", + "WingetUI Repository": "Repository di WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Non è consigliato eseguire WingetUI con i privilegi di amministratore. In questo modo, TUTTE le operazioni avviate da WingetUI arvranno i privilegi di amministratore. È possibile continuare a utilizzare il programma, ma è fortemente sconsigliato eseguirlo come amministratore.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ci sono operazioni in corso. L'uscita da WingetUI potrebbe causare il loro errore. Vuoi continuare?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Questo pacchetto non ha alcun screenshot o icona? Contribuisci a WingetUI aggiungendo le icone e gli screenshot mancanti al nostro database pubblico e aperto a tutti.", + "Restart WingetUI to fully apply changes": "Riavvia WingetUI per applicare completamente le modifiche", + "Restart WingetUI": "Riavvia WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Gestisci il comportamento di avvio automatico di UniGetUI dall'app Impostazioni", "(Number {0} in the queue)": "(Ancora {0} in coda)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "David Senoner, @giacobot, @maicol07, @mapi68, @mrfranza, Rosario Di Mauro", "0 packages found": "0 pacchetti trovati", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json index 92a8ce8a3f..26370a9546 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ja.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "アンインストール前のコマンドが失敗した場合はアンインストールを中止する ", "Command-line to run:": "実行するコマンドライン: ", "Save and close": "保存して閉じる", + "General": "一般", + "Architecture & Location": "アーキテクチャとインストール先", + "Command-line": "コマンドライン", + "Pre/Post install": "インストール前/後", "Run as admin": "管理者として実行", "Interactive installation": "対話型インストール", "Skip hash check": "ハッシュチェックを行わない", @@ -71,6 +75,8 @@ "Manage ignored updates": "無視されたアップデートの管理", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "ここに表示されているパッケージは、アップデートをチェックする際に考慮されません。ダブルクリックするか、右のボタンをクリックして、アップデートを無視しないようにしてください。", "Reset list": "リストを削除する", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "無視されたアップデートの一覧を本当にリセットしますか?この操作は元に戻せません。", + "No ignored updates": "無視されたアップデートはありません", "Package Name": "パッケージ名", "Package ID": "パッケージID", "Ignored version": "無視されたバージョン", @@ -86,6 +92,7 @@ "This operation is running interactively.": "この操作は対話型で実行されています。", "You will likely need to interact with the installer.": "インストーラーと対話する必要がある可能性があります。 ", "Integrity checks skipped": "整合性チェックをスキップ ", + "Integrity checks will not be performed during this operation.": "この操作では整合性チェックは実行されません。", "Proceed at your own risk.": "自己責任で進めてください。", "Close": "閉じる", "Loading...": "読み込み中...", @@ -120,16 +127,17 @@ "optional": "オプション ", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} のインストール準備が完了しました。", "The update process will start after closing UniGetUI": "UniGetUI を閉じると更新プロセスが開始されます", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI は管理者として実行されていますが、これは推奨されません。UniGetUI を管理者として実行すると、UniGetUI から開始されるすべての操作が管理者権限で実行されます。引き続き使用できますが、UniGetUI を管理者権限で実行しないことを強く推奨します。", "Share anonymous usage data": "匿名利用状況データの共有", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUIは、ユーザー体験向上のため、匿名で使用状況データを収集しています。", "Accept": "許可", - "You have installed WingetUI Version {0}": "UniGetUI バージョン {0} がインストールされています", + "You have installed UniGetUI Version {0}": "UniGetUI バージョン {0} がインストールされています", "Disclaimer": "免責事項", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUIは対応しているいずれのパッケージマネージャーとも関連していません。UniGetUIは独立したプロジェクトです。", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI はコントリビューター(貢献者)の助けがなければ実現しなかったでしょう。 皆様ありがとうございます🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI は以下のライブラリを使用しています。これらのライブラリがなければ UniGetUI は存在しなかったでしょう。", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI はコントリビューター(貢献者)の助けがなければ実現しなかったでしょう。 皆様ありがとうございます🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI は以下のライブラリを使用しています。これらのライブラリがなければ UniGetUI は存在しなかったでしょう。", "{0} homepage": "{0} ホームページ", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI は翻訳ボランティアの皆さんにより40以上の言語に翻訳されてきました。ありがとうございます🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI は翻訳ボランティアの皆さんにより40以上の言語に翻訳されてきました。ありがとうございます🤝", "Verbose": "詳細", "1 - Errors": "1 - エラー", "2 - Warnings": "2 - 警告", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "{0}(@{1})としてログインしています。", "Nice! Backups will be uploaded to a private gist on your account": "バックアップはあなたのアカウントのプライベートGistにアップロードされます ", "Select backup": "バックアップを選択", - "WingetUI Settings": "UniGetUI 設定", + "UniGetUI Settings": "UniGetUI 設定", "Allow pre-release versions": "プレリリース版を許可する ", "Apply": "適用する ", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "セキュリティ上の理由により、カスタム コマンドライン引数は既定で無効になっています。変更するには UniGetUI のセキュリティ設定を開いてください。", "Go to UniGetUI security settings": "UniGetUIのセキュリティ設定に移動する ", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "{0} パッケージをインストール、アップグレード、またはアンインストールするたびに、次のオプションがデフォルトで適用されます。 ", "Package's default": "パッケージのデフォルト ", @@ -160,6 +169,7 @@ "Username": "ユーザー名", "Password": "パスワード ", "Credentials": "資格情報", + "It is not guaranteed that the provided credentials will be stored safely": "指定した資格情報が安全に保存される保証はありません", "Partially": "部分的に ", "Package manager": "パッケージマネージャー ", "Compatible with proxy": "プロキシと互換性あり ", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} は有効化されており準備が完了しています", "{pm} version:": "{pm} バージョン:", "{pm} was not found!": "{pm} が見つかりませんでした!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI で使用するには、{pm} をインストールする必要がある場合があります。", - "Scoop Installer - WingetUI": "Scoop インストーラー - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop アンインストーラー - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop のキャッシュ消去 - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI で使用するには、{pm} をインストールする必要がある場合があります。", + "Scoop Installer - UniGetUI": "Scoop インストーラー - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop アンインストーラー - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop のキャッシュ消去 - UniGetUI", + "Restart UniGetUI to fully apply changes": "変更を完全に適用するには UniGetUI を再起動してください", "Restart UniGetUI": "UniGetUI を再起動", "Manage {0} sources": "{0} のソース管理", "Add source": "ソースを追加", "Add": "追加", + "Source name": "ソース名", + "Source URL": "ソース URL", "Other": "その他", + "No minimum age": "最小経過日数なし", "1 day": "1 日", "{0} days": "{0} 日", + "Custom...": "カスタム...", "{0} minutes": "{0} 分", "1 hour": "1 時間", "{0} hours": "{0} 時間", "1 week": "1 週間", - "WingetUI Version {0}": "UniGetUI バージョン {0}", + "Supports release dates": "リリース日に対応", + "Release date support per package manager": "パッケージ マネージャーごとのリリース日対応", + "UniGetUI Version {0}": "UniGetUI バージョン {0}", "Search for packages": "パッケージの検索", "Local": "ローカル", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "有効", "Disabled": "無効", "More info": "詳細情報", + "GitHub account": "GitHub アカウント", "Log in with GitHub to enable cloud package backup.": "クラウド パッケージのバックアップを有効にするには、GitHub でログインします。 ", "More details": "詳細情報", "Log in": "ログイン ", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "クラウドバックアップが有効になっている場合は、このアカウントにGitHub Gistとして保存されます。 ", "Log out": "ログアウト ", + "About UniGetUI": "UniGetUI について", "About": "情報", "Third-party licenses": "サードパーティー・ライセンス", "Contributors": "貢献者", @@ -212,6 +231,7 @@ "Manage shortcuts": "ショートカットを管理", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUIは、今後のアップグレード時に自動的に削除可能な以下のデスクトップショートカットを検出しました。", "Do you really want to reset this list? This action cannot be reverted.": "このリストを本当にリセットしますか? この操作は元に戻せません。 ", + "Open in explorer": "エクスプローラーで開く", "Remove from list": "リストから削除", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "新しいショートカットが検出された場合、このダイアログを表示する代わりに、自動的に削除します。", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUIは、ユーザーエクスペリエンスの向上を目的に、個人を特定できない匿名化された利用データを収集します。", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "UniGetUIが、ユーザーエクスペリエンス向上のため、匿名の利用統計を収集・送信することに同意しますか?", "Decline": "拒否", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "個人情報の収集や送信は一切行っておらず、収集されたデータは匿名化されているため、お客様個人を特定することはできません。", - "About WingetUI": "UniGetUI について", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI はコマンドライン・パッケージマネージャーに代わり一体化したGUIによって、ソフトウェアの管理をより簡単にするアプリケーションです。", + "Toggle navigation panel": "ナビゲーション パネルの表示を切り替える", + "Minimize": "最小化", + "Maximize": "最大化", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI はコマンドライン・パッケージマネージャーに代わり一体化したGUIによって、ソフトウェアの管理をより簡単にするアプリケーションです。", "Useful links": "お役立ちリンク", + "UniGetUI Homepage": "UniGetUI ホームページ", "Report an issue or submit a feature request": "不具合報告・機能の要望提出", + "UniGetUI Repository": "UniGetUI リポジトリ", "View GitHub Profile": "GitHub プロフィールを表示", - "WingetUI License": "UniGetUI ライセンス", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUIを使用する場合、MITライセンス に同意したことになります", + "UniGetUI License": "UniGetUI ライセンス", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUIを使用する場合、MITライセンス に同意したことになります", "Become a translator": "翻訳者になる", "View page on browser": "ページをブラウザで表示する", "Copy to clipboard": "クリップボードにコピー", "Export to a file": "ファイルにエクスポート", "Log level:": "ログレベル: ", "Reload log": "ログの再読み込み", + "Export log": "ログをエクスポート", + "UniGetUI Log": "UniGetUI ログ", "Text": "テキスト", "Change how operations request administrator rights": "管理者権限を要求する操作方法を変更する ", "Restrictions on package operations": "パッケージ操作の制限 ", @@ -271,7 +297,7 @@ "Leave empty for default": "通常は空欄にしてください", "Add a timestamp to the backup file names": "バックアップファイル名にタイムスタンプを追加する", "Backup and Restore": "バックアップと復元 ", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "バックグラウンドAPIを有効にする(UniGetUI Widgetsと共有機能用、7058番ポート)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "バックグラウンドAPIを有効にする(UniGetUI Widgetsと共有機能用、7058番ポート)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "インターネット接続を必要とするタスクを実行する前に、デバイスがインターネットに接続されるまで待機する。", "Disable the 1-minute timeout for package-related operations": "パッケージ関連の操作における1分間のタイムアウトを無効にする", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator の代わりに、インストールされた GSudo を使用する", @@ -286,7 +312,7 @@ "Telemetry": "テレメトリー", "Manage UniGetUI settings": "UniGetUI設定を管理する ", "Related settings": "関連設定 ", - "Update WingetUI automatically": "UniGetUIを自動アップデートする", + "Update UniGetUI automatically": "UniGetUIを自動アップデートする", "Check for updates": "アップデートの確認", "Install prerelease versions of UniGetUI": "プレリリース版のUniGetUIをインストールする", "Manage telemetry settings": "テレメトリー設定の管理", @@ -295,17 +321,17 @@ "Import": "インポート", "Export settings to a local file": "設定をローカルファイルにエクスポート", "Export": "エクスポート", - "Reset WingetUI": "UniGetUI のリセット", "Reset UniGetUI": "UniGetUIをリセット", "User interface preferences": "ユーザーインタフェース設定", "Application theme, startup page, package icons, clear successful installs automatically": "アプリのテーマ、スタートアップページ、パッケージアイコン、インストール成功時に自動で消去します ", "General preferences": "全体設定", - "WingetUI display language:": "UniGetUI の表示言語", + "UniGetUI display language:": "UniGetUI の表示言語", "Is your language missing or incomplete?": "ご希望の言語が見当たらない、または不完全ですか?", "Appearance": "インタフェース", "UniGetUI on the background and system tray": "背景とシステムトレイ上の UniGetUI ", "Package lists": "パッケージリスト ", "Close UniGetUI to the system tray": "UniGetUIをシステムトレイに閉じます ", + "Manage UniGetUI autostart behaviour": "UniGetUI の自動起動動作を管理する", "Show package icons on package lists": "パッケージリストでパッケージアイコンを表示する", "Clear cache": "キャッシュのクリア", "Select upgradable packages by default": "アップグレード可能なパッケージをデフォルトで選択する", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "すべてのパッケージマネージャがこの機能を完全にサポートしているわけではないことに注意してください。 ", "Proxy URL": "プロキシ URL", "Enter proxy URL here": "ここにプロキシURLを入力してください ", + "Authenticate to the proxy with a user and a password": "ユーザー名とパスワードでプロキシ認証を行う", + "Internet and proxy settings": "インターネットとプロキシの設定", "Package manager preferences": "パッケージマネージャーの設定", "Ready": "準備完了", "Not found": "不検出", "Notification preferences": "通知設定", "Notification types": "通知の種類 ", "The system tray icon must be enabled in order for notifications to work": "通知が機能するには、システムトレイアイコンを有効にする必要があります ", - "Enable WingetUI notifications": "UniGetUI の通知を有効にする", + "Enable UniGetUI notifications": "UniGetUI の通知を有効にする", "Show a notification when there are available updates": "利用可能なアップデートがある場合に通知を表示する", "Show a silent notification when an operation is running": "操作の実行中にサイレント通知を表示する", "Show a notification when an operation fails": "操作が失敗したときに通知を表示する", "Show a notification when an operation finishes successfully": "操作が正常に終了したときに通知を表示する", "Concurrency and execution": "並行処理と実行", "Automatic desktop shortcut remover": "デスクトップ ショートカットの自動削除", + "Choose how many operations should be performed in parallel": "並列で実行する操作数を選択してください", "Clear successful operations from the operation list after a 5 second delay": "操作リストから成功した操作を 5 秒後に削除する", "Download operations are not affected by this setting": "ダウンロード操作はこの設定の影響を受けません ", "Try to kill the processes that refuse to close when requested to": "終了しないプロセスを強制終了する", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "使用する実行ファイルを選択してください。以下のリストは UniGetUI によって検出された実行ファイルです", "Current executable file:": "現在の実行ファイル:", "Ignore packages from {pm} when showing a notification about updates": "更新に関する通知を表示するときに、{pm} からのパッケージを無視します", + "Update security": "アップデートのセキュリティ", + "Use global setting": "グローバル設定を使用", + "e.g. 10": "例: 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} はパッケージのリリース日を提供していないため、この設定は効果がありません", + "Override the global minimum update age for this package manager": "このパッケージ マネージャーについてグローバルの最小更新日数設定を上書きする", + "Minimum age for updates": "アップデートの最小経過日数", + "Custom minimum age (days)": "カスタム最小経過日数(日)", "View {0} logs": "{0} 個のログを表示 ", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Python が見つからない、またはパッケージを一覧表示できないものの、システムにインストールされている場合は、 ", "Advanced options": "詳細オプション ", "Reset WinGet": "WinGetをリセットする ", "This may help if no packages are listed": "パッケージがリストに表示されない場合に有効かもしれません", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "起動時にScoopのクリーンアップを有効にする", "Use system Chocolatey": "システムの Chocolatey を使用", "Default vcpkg triplet": "デフォルトのvcpkgトリプレット ", + "Change vcpkg root location": "vcpkg のルートの場所を変更する", "Language, theme and other miscellaneous preferences": "言語、テーマやその他の細かな設定", "Show notifications on different events": "さまざまなイベントに関する通知を表示する", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUIが利用可能なパッケージのアップデートを確認してインストールする方法の変更", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "ネットワーク接続が従量制の場合は、自動的にアップデートをインストールしない ", "Do not automatically install updates when the device runs on battery": "デバイスがバッテリーで動作しているときにアップデートを自動的にインストールしない", "Do not automatically install updates when the battery saver is on": "バッテリーセーバーがオンのときにアップデートを自動的にインストールしない ", + "Only show updates that are at least the specified number of days old": "指定した日数以上経過したアップデートのみ表示する", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI がインストール、アップデート、アンインストール操作を処理する方法を変更します。 ", "Package Managers": "パッケージマネージャー", "More": "その他", - "WingetUI Log": "UniGetUI ログ", "Package Manager logs": "パッケージマネージャーのログ", "Operation history": "操作履歴", "Help": "ヘルプ", + "Quit UniGetUI": "UniGetUI を終了", "Order by:": "並べ替え: ", "Name": "名称", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "両方", "Exact match": "完全一致", "Show similar packages": "類似パッケージ", + "Nothing to share": "共有するものがありません", + "Please select a package first.": "まずパッケージを選択してください。", + "Share link copied": "共有リンクをコピーしました", + "The share link for {0} has been copied to the clipboard.": "{0} の共有リンクをクリップボードにコピーしました。", "No results were found matching the input criteria": "入力された条件にマッチする結果は見つかりませんでした", "No packages were found": "パッケージが見つかりませんでした", "Loading packages": "パッケージの読み込み ", @@ -440,7 +483,11 @@ "Package bundle": "パッケージバンドル", "Could not create bundle": "bundle を作成できませんでした", "The package bundle could not be created due to an error.": "エラーのためパッケージ バンドルを作成できませんでした。", + "Unsaved changes": "未保存の変更", + "Discard changes": "変更を破棄", + "You have unsaved changes in the current bundle. Do you want to discard them?": "現在のバンドルに未保存の変更があります。破棄しますか?", "Bundle security report": "バンドルセキュリティレポート ", + "The bundle contained restricted content": "バンドルに制限された内容が含まれていました", "Hooray! No updates were found.": "アップデートは見つかりませんでした!", "Everything is up to date": "すべて最新", "Uninstall selected packages": "選択したパッケージをアンインストール", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows用のクラシックなパッケージマネージャーです。そこにはすべてが揃っています。
含まれるもの: 一般ソフトウェア", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoftの .NET 環境を念頭にデザインされたツール・実行ファイルが満載のリポジトリ。
含まれるもの: .NET 関連のツールとスクリプト", "NuPkg (zipped manifest)": "NuPkg(zip圧縮されたマニフェストファイル)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS(または Linux)向けの不足していたパッケージ マネージャー。
内容: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node.jsのパッケージマネージャーです。JavaScriptの世界を中心に様々なライブラリやユーティリティが含まれています。
含まれるもの: Node.jsのJavaScriptライブラリおよびその他の関連ユーティリティ", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Pythonのライブラリマネージャー。Pythonライブラリやその他のPython関連ユーティリティがたくさんあります
含まれるもの: Pythonライブラリおよび関連ユーティリティ", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell のパッケージマネージャーです。PowerShell の可能性を広げるライブラリーやスクリプトが見つかります。
含まれるもの: モジュール、スクリプト、コマンドレット\n", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "順番を待っています(キューの {0} 番目)...", "Click here for more details": "詳細についてはここをクリックしてください ", "Operation canceled by user": "操作はユーザーによってキャンセルされました", + "Running PreOperation ({0}/{1})...": "PreOperation を実行中 ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {1} 件中 {0} 件目が失敗し、必須としてマークされていたため、中止しています...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {1} 件中 {0} 件目が結果 {2} で完了しました", "Starting operation...": "操作を開始しています... ", + "Running PostOperation ({0}/{1})...": "PostOperation を実行中 ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {1} 件中 {0} 件目が失敗し、必須としてマークされていたため、中止しています...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {1} 件中 {0} 件目が結果 {2} で完了しました", "{package} installer download": "{package} インストーラーのダウンロード", "{0} installer is being downloaded": "{0}インストーラをダウンロードしています ", "Download succeeded": "ダウンロード成功", @@ -556,14 +610,12 @@ "Portable mode": "ポータブルモード", "DEBUG BUILD": "デバッグビルド", "Available Updates": "ソフトウェアアップデート", - "Show WingetUI": "UniGetUI を表示", + "Show UniGetUI": "UniGetUI を表示", "Quit": "終了", "Attention required": "注意が必要", "Restart required": "再起動が必要", "1 update is available": "1つのアップデートが利用可能です", "{0} updates are available": "{0} 件のアップデートが利用可能です", - "WingetUI Homepage": "UniGetUI ホームページ", - "WingetUI Repository": "UniGetUI リポジトリ", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "ここでは、UniGetUIのショートカットに関する動作を変更できます。ショートカットにチェックを付けると、今後のアップグレードでそのショートカットが作成された場合、UniGetUIがそれを削除します。チェックを外すと、ショートカットはそのまま残ります。 ", "Manual scan": "手動スキャン ", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "デスクトップ上の既存のショートカットがスキャンされ、保持するショートカットと削除するショートカットを選択する必要があります。 ", @@ -583,7 +635,6 @@ "Restart later": "後で再起動する", "An error occurred:": "エラーが発生しました:", "I understand": "了解", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUIは管理者権限で実行されていますが、これは推奨されません。UniGetUIを管理者権限で実行すると、UniGetUIから起動されるすべての操作が管理者権限で実行されます。プログラムは引き続き使用可能ですが、UniGetUIを管理者権限で実行しないことを強く推奨します。", "WinGet was repaired successfully": "WinGetは正常に修復されました ", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGetが修復されたらUniGetUIを再起動することをお勧めします ", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "注意: このトラブルシューティングは、UniGetUI 設定の WinGet セクションから無効にすることができます。 ", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. パッケージがバンドルに追加されます。\n パッケージの追加を続けるか、バンドルをエクスポートしてください。 ", "Which backup do you want to open?": "どのバックアップを開きますか?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "開きたいバックアップを選択してください。後で、復元したいパッケージ/プログラムを確認できます。", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "操作が進行中です。UniGetUI を終了させるとそれらの操作が失敗する可能性があります。よろしいですか?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "操作が進行中です。UniGetUI を終了させるとそれらの操作が失敗する可能性があります。よろしいですか?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI またはそのコンポーネントの一部が見つからないか破損しています。 ", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "この状況を解決するため、UniGetUIの再インストールを強くおすすめします。", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "影響を受けたファイルに関する詳細を確認するには、UniGetUI ログを参照してください。", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "プロセス名をコンマ(,)で区切ってここに記入してください。", "Unset or unknown": "未設定または不明 ", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "この問題に関する詳細はコマンドライン出力か操作履歴をご覧ください", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "このパッケージのスクリーンショットがないか、アイコンが不足していますか? 欠落しているアイコンやスクリーンショットを、オープンでパブリックなデータベースに追加して、UniGetUIの貢献にご協力ください。", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "このパッケージのスクリーンショットがないか、アイコンが不足していますか? 欠落しているアイコンやスクリーンショットを、オープンでパブリックなデータベースに追加して、UniGetUIの貢献にご協力ください。", "Become a contributor": "貢献者になる", "Save": "保存", "Update to {0} available": "{0} へのアップデートが利用可能です", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "自動WinGetトラブルシューティングツールを有効にする ", "Enable an [experimental] improved WinGet troubleshooter": "[試験的] 改善された WinGet トラブルシューティング ツールを有効にする ", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "「適用可能な更新が見つかりません」というエラーで失敗した更新を無視された更新リストに追加します。 ", - "Restart WingetUI to fully apply changes": "変更を完全に反映するには UniGetUI を再起動してください", - "Restart WingetUI": "UniGetUI を再起動", "Invalid selection": "無効な選択", "No package was selected": "パッケージが選択されていません", "More than 1 package was selected": "複数のパッケージが選択されました", @@ -684,6 +733,37 @@ "Log out failed: ": "ログアウトに失敗しました: ", "Package backup settings": "パッケージバックアップ設定 ", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "UniGetUI について", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI はコマンドライン・パッケージマネージャーに代わり一体化したGUIによって、ソフトウェアの管理をより簡単にするアプリケーションです。", + "You have installed WingetUI Version {0}": "UniGetUI バージョン {0} がインストールされています", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI はコントリビューター(貢献者)の助けがなければ実現しなかったでしょう。 皆様ありがとうございます🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI は以下のライブラリを使用しています。これらのライブラリがなければ UniGetUI は存在しなかったでしょう。", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI は翻訳ボランティアの皆さんにより40以上の言語に翻訳されてきました。ありがとうございます🤝", + "WingetUI Settings": "UniGetUI 設定", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI で使用するには、{pm} をインストールする必要がある場合があります。", + "Scoop Installer - WingetUI": "Scoop インストーラー - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop アンインストーラー - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop のキャッシュ消去 - UniGetUI", + "WingetUI Version {0}": "UniGetUI バージョン {0}", + "WingetUI License": "UniGetUI ライセンス", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUIを使用する場合、MITライセンス に同意したことになります", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "バックグラウンドAPIを有効にする(UniGetUI Widgetsと共有機能用、7058番ポート)", + "Update WingetUI automatically": "UniGetUIを自動アップデートする", + "Reset WingetUI": "UniGetUI のリセット", + "WingetUI display language:": "UniGetUI の表示言語", + "Manage WingetUI autostart behaviour": "UniGetUI の自動起動動作を管理する", + "Enable WingetUI notifications": "UniGetUI の通知を有効にする", + "WingetUI Log": "UniGetUI ログ", + "Show WingetUI": "UniGetUI を表示", + "WingetUI Homepage": "UniGetUI ホームページ", + "WingetUI Repository": "UniGetUI リポジトリ", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUIは管理者権限で実行されていますが、これは推奨されません。UniGetUIを管理者権限で実行すると、UniGetUIから起動されるすべての操作が管理者権限で実行されます。プログラムは引き続き使用可能ですが、UniGetUIを管理者権限で実行しないことを強く推奨します。", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "操作が進行中です。UniGetUI を終了させるとそれらの操作が失敗する可能性があります。よろしいですか?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "このパッケージのスクリーンショットがないか、アイコンが不足していますか? 欠落しているアイコンやスクリーンショットを、オープンでパブリックなデータベースに追加して、UniGetUIの貢献にご協力ください。", + "Restart WingetUI to fully apply changes": "変更を完全に反映するには UniGetUI を再起動してください", + "Restart WingetUI": "UniGetUI を再起動", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Windows の設定アプリで UniGetUI のスタートアップ設定を管理する", "(Number {0} in the queue)": "(キューの {0} 番目)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "sho9029, Yuki Takase, @nob-swik, @tacostea, @anmoti, Nobuhiro Shintaku, @BHCrusher1", "0 packages found": "パッケージが見つかりませんでした", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json index 169b52499b..ca32a024a8 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ka.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "დეინსტალაციის შეწყვეტა პრე-დეინსტალაციის ბრძანების ჩაშლისას", "Command-line to run:": "ბრძანების ზოლში გაეშვება:", "Save and close": "შენახვა და დახურვა", + "General": "ზოგადი", + "Architecture & Location": "არქიტექტურა და მდებარეობა", + "Command-line": "ბრძანების ზოლი", + "Pre/Post install": "ინსტალაციამდე/შემდეგ", "Run as admin": "ადმინისტრატორით გაშვება", "Interactive installation": "ინტერაქტიული ინსტალაცია", "Skip hash check": "ჰეშის შემოწმების გამოტოვება", @@ -71,6 +75,8 @@ "Manage ignored updates": "იგნორირებული განახლებების მართვა", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "აქ ჩამოთვლილი პაკეტები არ იქნება გათვალისწინებული განახლებების შემოწმებისას. ორჯერ დაწკაპეთ მათზე ან ღილაკზე მარჯვნივ რომ შეტყვიტოთ მათი განახლებების იგნორირება.", "Reset list": "სიის რესეტი", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "ნამდვილად გსურთ იგნორირებული განახლებების სიის განულება? ეს მოქმედება ვერ გაუქმდება", + "No ignored updates": "იგნორირებული განახლებები არ არის", "Package Name": "პაკეტის სახელი", "Package ID": "პაკეტის ID", "Ignored version": "იგნორირებული ვერსია", @@ -86,6 +92,7 @@ "This operation is running interactively.": "ეს ოპერაცია ინტერაქტიულად ეშვება.", "You will likely need to interact with the installer.": "თვენ შესაძლოა ინსტალატორთან ინტერაქცია მოგიწიოთ", "Integrity checks skipped": "ინტეგრულობის შემოწმება გამოტოვებულია", + "Integrity checks will not be performed during this operation.": "ამ ოპერაციის დროს ინტეგრულობის შემოწმება არ შესრულდება.", "Proceed at your own risk.": "გააგრძელეთ საკუთარი რისკის ფასად.", "Close": "დახურვა", "Loading...": "ჩატვირთვა...", @@ -120,16 +127,17 @@ "optional": "არასავალდებულო", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} მზად არის ინსტალაციისთვის.", "The update process will start after closing UniGetUI": "განახლების პროცესი დაიწყება UniGetUI-ის დახურვის შემდეგ", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI გაშვებულია ადმინისტრატორის უფლებებით, რაც რეკომენდებული არ არის. UniGetUI-ის ადმინისტრატორით გაშვებისას, UniGetUI-დან დაწყებულ ყველა ოპერაციას ადმინისტრატორის უფლებები ექნება. პროგრამის გამოყენება მაინც შეგიძლიათ, მაგრამ მკაცრად გირჩევთ, UniGetUI ადმინისტრატორის უფლებებით არ გაუშვათ.", "Share anonymous usage data": "ანონიმური მოხმარების მონაცემების გაზიარება", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI აგროვებს ანონიმური გამოყენების მონაცემებს მომხმარებლის გამოცდილების გასაუმჯობესებლად.", "Accept": "მიღება", - "You have installed WingetUI Version {0}": "თქვენ დააყენეთ UniGetUI-ის {0} ვერსია", + "You have installed UniGetUI Version {0}": "თქვენ დააყენეთ UniGetUI-ის {0} ვერსია", "Disclaimer": "პასუხისმგებლობის უარყოფა", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI არ არის დაკავშირებული რომელიმე თავსებად პაკეტის მენეჯერთან. UniGetUI არის დამოუკიდებელი პროექტი.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI-ის არსებობა შეუძლებელი იქნებოდა შემომწირველების დახმარების გარეშე. მადლობა თქვენ 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI იყენებს შემდეგ ბიბლიოთეკებს. მათ გარეშე UniGetUI-ს არსებობა შეუძლებელი იქნებოდა.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI-ის არსებობა შეუძლებელი იქნებოდა შემომწირველების დახმარების გარეშე. მადლობა თქვენ 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI იყენებს შემდეგ ბიბლიოთეკებს. მათ გარეშე UniGetUI-ს არსებობა შეუძლებელი იქნებოდა.", "{0} homepage": "{0} მთავარი გვერდი", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI თარგმნილია 40-ზე მეტ ენაზე მოხალისეების მიერ. მადლობა 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI თარგმნილია 40-ზე მეტ ენაზე მოხალისეების მიერ. მადლობა 🤝", "Verbose": "უფრო ინფორმატიული", "1 - Errors": "1 - შეცდომა", "2 - Warnings": "2 - გაფრთხილება", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "თქვენ შესული ხართ როგორც {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "მშვენიერი! ბექაფები აიტვირთება პრივატულ gist-ში თქვენს ანგარიშზე", "Select backup": "შეარჩიეთ ბექაფი", - "WingetUI Settings": "UniGetUI-ს პარამეტრები", + "UniGetUI Settings": "UniGetUI-ის პარამეტრები", "Allow pre-release versions": "პრერელიზ ვერსიების დაშვება", "Apply": "გამოყენება", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "უსაფრთხოების მიზეზებიდან გამომდინარე, მორგებული ბრძანების სტრიქონის არგუმენტები ნაგულისხმევად გამორთულია. ამის შესაცვლელად გადადით UniGetUI-ის უსაფრთხოების პარამეტრებში.", "Go to UniGetUI security settings": "UniGetUI-ის უსაფრთხოების პარამეტრებზე გადასვლა", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "შემდეგი პარამეტრები იქნება გამოყენებული ნაგულისხმევად ყოველ ჯერზე {0} პაკეტის ინსტალაციისას, განახლებისას ან დეინსტალაციისას.", "Package's default": "პაკეტის ნაგულისხმევი", @@ -160,6 +169,7 @@ "Username": "მომხმარებლის სახელი", "Password": "პაროლი", "Credentials": "ანგარიშის მონაცემები", + "It is not guaranteed that the provided credentials will be stored safely": "არ არის გარანტირებული, რომ მითითებული ავტორიზაციის მონაცემები უსაფრთხოდ შეინახება", "Partially": "ნაწილობრივ", "Package manager": "პაკეტების მმართველი", "Compatible with proxy": "თავსებადია პროქსისთან", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} ჩართულია და მზად არის გასაშვებად", "{pm} version:": "{pm} ვერსია:", "{pm} was not found!": "{pm} ვერ იქნა ნაპოვნი!", - "You may need to install {pm} in order to use it with WingetUI.": "თქვენ შესაძლოა დაგჭირდეთ {pm} იმისთვის, რომ UniGetUI-თ ისარგებლოთ.", - "Scoop Installer - WingetUI": "Scoop ინსტალატორი - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop დეინსტალატორი - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop-ის ქეშის გაწმენდა - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "თქვენ შესაძლოა დაგჭირდეთ {pm} იმისთვის, რომ UniGetUI-თ ისარგებლოთ.", + "Scoop Installer - UniGetUI": "Scoop ინსტალატორი - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop დეინსტალატორი - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop-ის ქეშის გაწმენდა - UniGetUI", + "Restart UniGetUI to fully apply changes": "ცვლილებების სრულად ასამოქმედებლად გადატვირთეთ UniGetUI", "Restart UniGetUI": "UniGetUI-ის გადატვირთვა", "Manage {0} sources": "{0} წყაროების მართვა", "Add source": "წყაროს დამატება", "Add": "დამატება", + "Source name": "წყაროს სახელი", + "Source URL": "წყაროს URL", "Other": "სხვა", + "No minimum age": "მინიმალური ასაკის გარეშე", "1 day": "1 დღე", "{0} days": "{0} დღე", + "Custom...": "მორგებული...", "{0} minutes": "{0} წუთი", "1 hour": "1 საათი", "{0} hours": "{0} საათი", "1 week": "1 კვირა", - "WingetUI Version {0}": "UniGetUI ვერსია {0}", + "Supports release dates": "მხარს უჭერს რელიზის თარიღებს", + "Release date support per package manager": "რელიზის თარიღების მხარდაჭერა პაკეტების მენეჯერების მიხედვით", + "UniGetUI Version {0}": "UniGetUI ვერსია {0}", "Search for packages": "პაკეტების ძიება", "Local": "ლოკალური", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "ჩართული", "Disabled": "გამორთული", "More info": "მეტი ინფო", + "GitHub account": "GitHub ანგარიში", "Log in with GitHub to enable cloud package backup.": "შედით GitHub-ით, რომ ჩართოთ პაკეტების ღრუბლოვანი ბექაფი", "More details": "მეტი დეტალი", "Log in": "შესვლა", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "თუ გაქვთ ღრუბლოვანი ბექაფი ჩართული ის შეინახება GitHub Gist-ის სახით ამ ანგარიშზე", "Log out": "გამოსვლა", + "About UniGetUI": "UniGetUI-ის შესახებ", "About": "შესახებ", "Third-party licenses": "მესამე-მხარის ლიცენზიები", "Contributors": "კონტრიბუტორები", @@ -212,6 +231,7 @@ "Manage shortcuts": "მალსახმობების მართვა", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI-მ აღმოაჩინა შემდეგი დესკტოპის მალსახმობები, რომლებიც შეიძლება ავტომატურად წაიშალოს მომავალი განახლებებისას", "Do you really want to reset this list? This action cannot be reverted.": "რეალურად გსურთ ამ სიის დარესეტება? ეს მოქმედება უკან არ ბრუნდება.", + "Open in explorer": "ექსპლორერში გახსნა", "Remove from list": "სიიდან წაშლა", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "ახალი მალსახმობების აღმოჩენისას, ამ დიალოგის ჩვენების ნაცვლად ავტომატურად წაშალეთ ისინი.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI აგროვებს ანონიმური გამოყენების მონაცემებს მომხმარებლის გამოცდილების გაგებისა და გაუმჯობესების მიზნით.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "ეთანხმებით თუ არა, რომ UniGetUI აგროვებს და აგზავნის გამოყენების ანონიმურ სტატისტიკას, მხოლოდ მომხმარებლის გამოცდილების გაგებისა და გაუმჯობესების მიზნით?", "Decline": "უარყოფა", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "არანაირი პერსონალური მონაცემი არ გროვდება და არც გადაიცემა, დაგროვილი ინფორმაცია ანონიმურია ისე, რომ არ უთითებს თქვენზე.", - "About WingetUI": "UniGetUI-ის შესახებ", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI არის აპლიკაცია, რომელიც გიადვილებთ პროგრამული უზრუნველყოფის მათვას, ეს მიიღწევა ყველა-ერთში გრაფიკული ინფტერფეისის საშუალებით თქვენი ბრძანების ზოლის პაკეტების მენეჯერებისთვის.", + "Toggle navigation panel": "ნავიგაციის პანელის გადართვა", + "Minimize": "ჩაკეცვა", + "Maximize": "გადიდება", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI არის აპლიკაცია, რომელიც გიადვილებთ პროგრამული უზრუნველყოფის მათვას, ეს მიიღწევა ყველა-ერთში გრაფიკული ინფტერფეისის საშუალებით თქვენი ბრძანების ზოლის პაკეტების მენეჯერებისთვის.", "Useful links": "სასარგებლო ბმულები", + "UniGetUI Homepage": "UniGetUI ვებ-საიტი", "Report an issue or submit a feature request": "შეგვატყობინეთ პრობლემის შესახებ ან შემოგვთავაზეთ იდეა", + "UniGetUI Repository": "UniGetUI-ის რეპოზიტორია", "View GitHub Profile": "GitHub-ის პროფილის ნახვა", - "WingetUI License": "UniGetUI-ის ლიცენზია", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI-ის გამოყენება ნიშნავს MIT ლიცენზიის მიღებას", + "UniGetUI License": "UniGetUI-ის ლიცენზია", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI-ის გამოყენება ნიშნავს MIT ლიცენზიის მიღებას", "Become a translator": "გახდი მთარგმნელი", "View page on browser": "გვერდის ბრაუზერში ნახვა", "Copy to clipboard": "გაცვლის ბუფერში კოპირება", "Export to a file": "ფაილში ექსპორტი", "Log level:": "ჟურნალის დონე:", "Reload log": "ჟურნალის ხელახლა ჩატვირთვა", + "Export log": "ჟურნალის ექსპორტი", + "UniGetUI Log": "UniGetUI-ის ჟურნალი", "Text": "ტექსტი", "Change how operations request administrator rights": "შეცვალეთ, თუ როგორ ითხოვენ ოპერაციები ადმინისტრატორის უფლებებს", "Restrictions on package operations": "პაკეტებზე ოპერაციების შეზღუდვები", @@ -271,7 +297,7 @@ "Leave empty for default": "დატოვეთ ცარიელი ნაგულისხმევად", "Add a timestamp to the backup file names": "ბექაფის ფაილების სახელებზე დროის ანაბეჭდის დამატება", "Backup and Restore": "ბექაფი და აღდგენა", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "ფონური API-ის ჩართვა (UniGetUI-ის ვიჯეტები და გაზიარება, პორტი 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "ფონური API-ის ჩართვა (UniGetUI-ის ვიჯეტები და გაზიარება, პორტი 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "მოცდა სანამ მოწყობილობა დაუკავშირდება ინტერნეტს მანამ სანამ მოხდება ინტერნეტთან დაკავშირების საჭიროების მქონე ამოცანების შესრულება.", "Disable the 1-minute timeout for package-related operations": "ოპერაციებისთვის 1 წუთიანი პაკეტებთან დაკავშირებული ვადის გამორთვა", "Use installed GSudo instead of UniGetUI Elevator": "GSudo-ს გამოყენება UniGetUI Elevator-ის ნაცვლად", @@ -286,7 +312,7 @@ "Telemetry": "ტელემეტრია", "Manage UniGetUI settings": "UniGetUI-ის პარამეტრების მართვა", "Related settings": "დაკავშირებული პარამეტრები", - "Update WingetUI automatically": "UniGetUI ავტომატური განახლება", + "Update UniGetUI automatically": "UniGetUI ავტომატური განახლება", "Check for updates": "განახლებების შემოწმება", "Install prerelease versions of UniGetUI": "UniGetUI-ის პრერელიზების ინსტალაცია", "Manage telemetry settings": "ტელემეტრიის პარამეტრების მართვა", @@ -295,17 +321,17 @@ "Import": "იმპორტი", "Export settings to a local file": "პარამეტრების ლოკალურ ფაილში ექსპორტი", "Export": "ექსპორტი", - "Reset WingetUI": "UniGetUI-ის დარესეტება", "Reset UniGetUI": "UniGetUI-ის დარესეტება", "User interface preferences": "სამომხმარებლო ინტერფეისის პარამეტრები", "Application theme, startup page, package icons, clear successful installs automatically": "აპლიკაციის თემა, სასტარტო გვერდი, პაკეტების ხატულები, წარმატებული ინსტალაციების ავტომატურად წაშლა", "General preferences": "ზოგადი პარამეტრები", - "WingetUI display language:": "UniGetUI-ის ინტერფეისის ენა:", + "UniGetUI display language:": "UniGetUI-ის ინტერფეისის ენა:", "Is your language missing or incomplete?": "თქვენი ენა არ არის ან დაუსრულებელია?", "Appearance": "იერსახე", "UniGetUI on the background and system tray": "UniGetUI ფონურ რეჟიმში და სისტემური პანელი", "Package lists": "პაკეტების სიები", "Close UniGetUI to the system tray": "UniGetUI-ის სისტემურ პანელში ჩახურვა", + "Manage UniGetUI autostart behaviour": "UniGetUI-ის ავტომატური გაშვების ქცევის მართვა", "Show package icons on package lists": "პაკეტის ხატულების ჩვენება პაკეტების სიებში", "Clear cache": "ქეშის გაწმენდა", "Select upgradable packages by default": "განახლებადი პაკეტების ნაგულისხმევად შერჩევა", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "გაითვალისწინეთ, რომ ყველა პაკეტების მენეჯერს შესაძლოა არ ქონდეთ ამ ფუნქციის სრული მხარდაჭერა", "Proxy URL": "პროქსის URL", "Enter proxy URL here": "შეიყვანეთ პროქსის URL აქ", + "Authenticate to the proxy with a user and a password": "პროქსიზე ავტორიზაცია მომხმარებლის სახელით და პაროლით", + "Internet and proxy settings": "ინტერნეტისა და პროქსის პარამეტრები", "Package manager preferences": "პაკეტების მენეჯერის პარამეტრები", "Ready": "მზადაა", "Not found": "არ არის ნაპოვნი", "Notification preferences": "შეტყობინებების პარამეტრები", "Notification types": "შეტყობინებების ტიპები", "The system tray icon must be enabled in order for notifications to work": "სისტემური პანელის ხატულა უნდა იყოს ჩართული შეტყობინებების მუშაობისთვის", - "Enable WingetUI notifications": "UniGetUI-ის შეტყობინებების ჩართვა", + "Enable UniGetUI notifications": "UniGetUI-ის შეტყობინებების ჩართვა", "Show a notification when there are available updates": "შეტყობინების ჩვენება როცა ხელმისაწვდომია განახლებები", "Show a silent notification when an operation is running": "ჩუმი შეტყობინების ჩვენება როცა მიმდინარეობს ოპერაცია", "Show a notification when an operation fails": "შეტყობინების ჩვენება ოპერაციის ჩაშლისას", "Show a notification when an operation finishes successfully": "შეტყობინების ჩვენება ოპერაციის წარმატებულად დასრულებისას", "Concurrency and execution": "კონკურენცია და გაშვება", "Automatic desktop shortcut remover": "ავტომატური სამუშაო მაგიდის მალსახმობების წამშლელი", + "Choose how many operations should be performed in parallel": "აირჩიეთ, რამდენი ოპერაცია უნდა შესრულდეს პარალელურად", "Clear successful operations from the operation list after a 5 second delay": "წარმატებული ოპერაციების სიიდან ამოღება 5 წამიანი დაყოვნების შემდეგ", "Download operations are not affected by this setting": "ეს პარამეტრი არ მოქმედებს ჩამოტვირთვის ოპერაციებზე", "Try to kill the processes that refuse to close when requested to": "პროცესების ძალისმიერად გათიშვის ცდა, რომლებიც არ ითიშება მოთხოვნისას", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "აირჩიეთ გამოსაყენებელი გამშვები ფაილი. ქვემოთ მოცემული სია აჩვენებს UniGetUI-ის მიერ ნაპოვნ გამშვებ ფაილებს", "Current executable file:": "მიმდინარე გამშვები ფაილი:", "Ignore packages from {pm} when showing a notification about updates": "პაკეტების განახლებების იგნორირება შეტყობინებებში {pm} რეპოზიტორიიდან", + "Update security": "განახლებების უსაფრთხოება", + "Use global setting": "გლობალური პარამეტრის გამოყენება", + "e.g. 10": "მაგ. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} არ აწვდის თავისი პაკეტებისთვის რელიზის თარიღებს, ამიტომ ამ პარამეტრს ეფექტი არ ექნება", + "Override the global minimum update age for this package manager": "ამ პაკეტების მენეჯერისთვის გლობალური მინიმალური განახლების ასაკის გადაფარვა", + "Minimum age for updates": "განახლებების მინიმალური ასაკი", + "Custom minimum age (days)": "მორგებული მინიმალური ასაკი (დღეებში)", "View {0} logs": "{0} ჟურნალის ნახვა", + "If Python cannot be found or is not listing packages but is installed on the system, ": "თუ Python ვერ მოიძებნა ან არ აჩვენებს პაკეტებს, თუმცა სისტემაში დაყენებულია, ", "Advanced options": "გაფართოებული ოფციები", "Reset WinGet": "WinGet-ის დარესეტება", "This may help if no packages are listed": "ეს შეიძლება დაგეხმაროთ, თუ პაკეტები არ არის ჩამოთვლილი", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Scoop-ის გასუფთავების ჩართვა გაშვებისას", "Use system Chocolatey": "სისტემური Chocolatey-ის გამოყენება", "Default vcpkg triplet": "vcpkg-ის ნაგულისხმევი ტრიპლეტი", + "Change vcpkg root location": "vcpkg-ის ძირეული მდებარეობის შეცვლა", "Language, theme and other miscellaneous preferences": "ენა, თემა და სხვა დამატებითი პარამეტრები", "Show notifications on different events": "შეტყობინებების ჩვენება სხვა და სხვა მოვლენებისთვის", "Change how UniGetUI checks and installs available updates for your packages": "შეცვალე თუ როგორ ამოწმებს და აყენებს UniGetUI ხელმისაწვდომ განახლებებს თქვენი პაკეტებისთვის", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "არ დაყენდეს ავტომატური განახლებები, როცა ქსელთან კავშირი ლიმიტირებულია (დეპოზიტი)", "Do not automatically install updates when the device runs on battery": "არ დააყენო განახლებები ავტომატურად, როცა მოწყობილობა ბატარეაზე მუშაობს", "Do not automatically install updates when the battery saver is on": "არ დაყენდეს განახლებები ავვტომატურად აკუმლატორის დაზოგვის რეჟიმში ", + "Only show updates that are at least the specified number of days old": "აჩვენეთ მხოლოდ ის განახლებები, რომელთა ასაკიც მინიმუმ მითითებული დღეების რაოდენობაა", "Change how UniGetUI handles install, update and uninstall operations.": "შეცვალეთ თუ როგორ შეასრულებს UniGetUI ინსტალაციის, განახლების და დეინსტალაციის ოპერაციებს.", "Package Managers": "პაკეტების მენეჯერები", "More": "მეტი", - "WingetUI Log": "UniGetUI-ის ჟურნალი", "Package Manager logs": "პაკეტების მენეჯერის ჟურნალები", "Operation history": "ოპერაციის ისტორია", "Help": "დახმარება", + "Quit UniGetUI": "UniGetUI-დან გასვლა", "Order by:": "დალაგება:", "Name": "სახელი", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "ორივე", "Exact match": "ზუსტი თანხვედრა", "Show similar packages": "მსგავსი პაკეტების ჩვენება", + "Nothing to share": "გასაზიარებელი არაფერია", + "Please select a package first.": "გთხოვთ, ჯერ პაკეტი აირჩიოთ.", + "Share link copied": "გასაზიარებელი ბმული დაკოპირდა", + "The share link for {0} has been copied to the clipboard.": "{0}-ის გასაზიარებელი ბმული დაკოპირდა გაცვლის ბუფერში.", "No results were found matching the input criteria": "შევანილი კრიტერიუმებით არ იქნა ნაპოვნი არაფერი", "No packages were found": "პაკეტები არ არის ნაპოვნი", "Loading packages": "პაკეტების ჩატვირთვა", @@ -440,7 +483,11 @@ "Package bundle": "პაკეტის კრებული", "Could not create bundle": "კრებული ვერ შეიქმნა", "The package bundle could not be created due to an error.": "პაკეტების კრებული ვერ შეიქმნა შეცდომის გამო.", + "Unsaved changes": "შეუნახავი ცვლილებები", + "Discard changes": "ცვლილებების გაუქმება", + "You have unsaved changes in the current bundle. Do you want to discard them?": "მიმდინარე კრებულში გაქვთ შეუნახავი ცვლილებები. გსურთ მათი გაუქმება?", "Bundle security report": "კრებულის უსაფრთხოების რეპორტი", + "The bundle contained restricted content": "კრებული შეიცავდა შეზღუდულ შინაარსს", "Hooray! No updates were found.": "ვაშა! განახლებები არ არის ნაპოვნი.", "Everything is up to date": "ყველაფერი განახლებულია", "Uninstall selected packages": "შერჩეული პაკეტების დეინსტალაცია", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "კლასიკური პაკეტების მენეჯერი Windows-ისთვის. თქვენ იქ ყველაფერს იპოვით.
შეიცავს: ზოგად პროგრამებს", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "რეპოზიტორია სავსე ინსტრუმენტბითა და გამშვები ფაილებით Microsoft .NET ეკოსისტემისთვის.
შეიცავს: .NET-თან დაკავშირებულ ინსტრუმენტებსა და სკრიპტებს", "NuPkg (zipped manifest)": "NuPkg (დაზიპული მანიფესტი)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "პაკეტების ის მენეჯერი, რომელიც macOS-ს (ან Linux-ს) აკლდა.
შეიცავს: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS პაკეტების მართველი. სავსეა ბიბლიოთეკებითა და უტილიტებით javascript-ის სამყაროდან
შეიჩავს: Node javascript ბიბლიოთეკებს და სხვა შესაბამის უტილიტებს", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python-ის ბიბლიოთეკების მმართველი. სავსეა პითონის ბიბლიოთეკებით და სხვა მასთან დაკავშირებული უტილიტებით
შეიცავს: Python-ის ბიბლიოთეკებსა და შესაბამის უტილიტებს", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell-ის პაკეტების მმართველი. იპოვეთ ბიბლიოთეკები და სკრიპტები რომ გააფართოოთ PowerShell-ის შესაძლებლობები
შეიცავს: მოდულებს, სკრიპტებს, ქომადლეტებს", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "ოპერაცია რიგშია (პოზიცია {0})...", "Click here for more details": "დაწკაპეთ აქ მეტი დეტალისთვის", "Operation canceled by user": "ოპერაცია მომხმარებელმა გააუქმა", + "Running PreOperation ({0}/{1})...": "მიმდინარეობს PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}-დან აუცილებელად მონიშნული PreOperation {0} ჩაიშალა. შეწყვეტა...", + "PreOperation {0} out of {1} finished with result {2}": "{1}-დან PreOperation {0} დასრულდა შედეგით {2}", "Starting operation...": "ოპერაციების გაშვება...", + "Running PostOperation ({0}/{1})...": "მიმდინარეობს PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}-დან აუცილებელად მონიშნული PostOperation {0} ჩაიშალა. შეწყვეტა...", + "PostOperation {0} out of {1} finished with result {2}": "{1}-დან PostOperation {0} დასრულდა შედეგით {2}", "{package} installer download": "{package}-ის ინსტალატორის ჩამოტვირთვა", "{0} installer is being downloaded": "იტვირთება {0}-ის ინსტალატორი", "Download succeeded": "წარმატებით ჩამოიტვირთა", @@ -556,14 +610,12 @@ "Portable mode": "პორტატული რეჟიმი", "DEBUG BUILD": "დებაგ ანაწყობი", "Available Updates": "ხელმისაწვდომი განახლებები", - "Show WingetUI": "UniGetUI-ის ჩვენება", + "Show UniGetUI": "UniGetUI-ის ჩვენება", "Quit": "გასვლა", "Attention required": "საჭიროა ყურადღება", "Restart required": "საჭიროა გადატვირთვა", "1 update is available": "ხელმისაწვდომია 1 განახლება", "{0} updates are available": "ხელმისაწვდომა {0} განახლება", - "WingetUI Homepage": "UniGetUI ვებ-საიტი", - "WingetUI Repository": "UniGetUI რეპოზიტორია", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "აქ შეგიძლიათ შეცვალოთ UniGetUI-ის ქცევა შემდეგ მალსახმობებთან მიმართებაში. მალსახმობის მონიშვნით UniGetUI წაშლის მათ იმ შემთხვევაში თუ მომავალი განახლებისას შეიქმნებიან. მონიშვნის მოხსნა დატოვებს მალსახმობს ხელუხლებლად.", "Manual scan": "ხელით სკანირება", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "მოხდება სამუშაო მაგიდაზე არსებული მალსახმობების სკანირება და თქვენ დაგჭირდებათ შერჩევა თუ რომელი დატოვოთ და რომელი წაშალოთ.", @@ -583,7 +635,6 @@ "Restart later": "მოგვიანებით გადატვირთვა", "An error occurred:": "დაფიქსირდა შეცდომა", "I understand": "გასაგებია", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI გაშვებულია როგორც ადმინისტრატორი, რაც არ არის რეკომენდებული. UniGetUI-ის პრივილეგიებით გაშვებისას, UniGetUI-დან გაშვებული ყველა ოპერაციას ექნება ადმინისტრატორის პრივილეგიები. თქვენ კვლავ შეგიძლიათ გამოიყენოთ პროგრამა, მაგრამ ჩვენ გირჩევთ არ გაუშვათ UniGetUI ადმინისტრატორის პრივილეგიებით.", "WinGet was repaired successfully": "WinGet წარმატებით შეკეთდა", "It is recommended to restart UniGetUI after WinGet has been repaired": "რეკომენდებულია თავიდან გაუშვათ UniGetUI მას შემდეგ რაც შეკეთდა WinGet ", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "შენიშვნა: ეს პრობლემების გადამჭრელი შეგიძლიათ გამორთოთ UniGetUI-ის პარამეტრებიდან, WinGet სექციაში.", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. თქვენი პაკეტები დაემატება კრებულს. შეგიძლიათ გააგრძელოთ პაკეტების დამატება, ან კრებულის ექსპორტი.", "Which backup do you want to open?": "რომელი ბექაფის გახსნა გსურთ?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "შეარჩიეთ ბექაფი რომლის გახსნაც გსურთ. მოგივანებით თქვენ შეძლებთ განიხილოთ თუ რომელი პაკეტების/პროგრამების აღგენა გსურთ.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "მიმდინარეობს ოერაციები. UniGetUI-ის დახურვა მათ ჩაშლას გამოიწვევს. გსურთ გარძელება?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "მიმდინარეობს ოერაციები. UniGetUI-ის დახურვა მათ ჩაშლას გამოიწვევს. გსურთ გარძელება?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ან მისი ზოგიერთი კომპონენტი ვერ იქნა ნაპოვნი ან დაზიანებულია.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "ამ სიტუაციაში დიდწილად რეკომენდებულია UniGetUI-ის ხელახლა ინსტალაცია", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "ჩახედეთ UniGetUI-ის ჟურნალში, რომ გაიგოთ მეტი ინფორმაცია მონაწილე ფაილ(ებ)ის შესახებ.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "აქ შეიყვანეთ პროცესების სახელები, გამოყავით მძიმეებით (,)", "Unset or unknown": "არ არის მითითებული ან უცნობია", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "გთხოვთ ნახლოთ ბრძანების ზოლის გამოსავალი ან ოპერაციების ისტორია პრობლემის შესახებ მეტი ინფორმაციის გასაგებად.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "ამ პაკეტს არ აქვს სქრინშოტები ან აკლია ხატულა? შეიტანეთ წვლილი UniGetUI-ში დაკარგული ხატულების და სქრინშოტების დამატებით ჩვენს ღია, საჯარო მონაცემთა ბაზაში.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "ამ პაკეტს არ აქვს სქრინშოტები ან აკლია ხატულა? შეიტანეთ წვლილი UniGetUI-ში დაკარგული ხატულების და სქრინშოტების დამატებით ჩვენს ღია, საჯარო მონაცემთა ბაზაში.", "Become a contributor": "გახდი მონაწილე", "Save": "შენახვა", "Update to {0} available": "ხელმისაწვდომია განახლება {0}-მდე", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "WinGet-ის ავტომატური შემკეთებლის ჩართვა", "Enable an [experimental] improved WinGet troubleshooter": "ჩართე [ექსპერიმენტული] გაუმჯობესებული WinGet-ის შემკეთებელი", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "განახლებების რომლებიც ჩაიშალა 'შესაძლო განახლებები ვერ მოიძებნა' ინგორირებული განახლებების სიაში დამატება", - "Restart WingetUI to fully apply changes": "ცვლილებების სრულად ასახვისთვის UniGetUI-ის გადატვირთვა", - "Restart WingetUI": "UniGetUI-ის გადატვირთვა", "Invalid selection": "არასწორი მონიშვნა", "No package was selected": "არცერთი პაკეტი არ არის მონიშნული", "More than 1 package was selected": "მონიშნულია 1-ზე მეტი პაკეტი", @@ -684,6 +733,37 @@ "Log out failed: ": "გამოსვლა ჩაიშალა:", "Package backup settings": "პაკეტის ბექაფის პარამეტრები", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "UniGetUI-ის შესახებ", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI არის აპლიკაცია, რომელიც გიადვილებთ პროგრამული უზრუნველყოფის მათვას, ეს მიიღწევა ყველა-ერთში გრაფიკული ინფტერფეისის საშუალებით თქვენი ბრძანების ზოლის პაკეტების მენეჯერებისთვის.", + "You have installed WingetUI Version {0}": "თქვენ დააყენეთ UniGetUI-ის {0} ვერსია", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI-ის არსებობა შეუძლებელი იქნებოდა შემომწირველების დახმარების გარეშე. მადლობა თქვენ 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI იყენებს შემდეგ ბიბლიოთეკებს. მათ გარეშე UniGetUI-ს არსებობა შეუძლებელი იქნებოდა.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI თარგმნილია 40-ზე მეტ ენაზე მოხალისეების მიერ. მადლობა 🤝", + "WingetUI Settings": "UniGetUI-ს პარამეტრები", + "You may need to install {pm} in order to use it with WingetUI.": "თქვენ შესაძლოა დაგჭირდეთ {pm} იმისთვის, რომ UniGetUI-თ ისარგებლოთ.", + "Scoop Installer - WingetUI": "Scoop ინსტალატორი - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop დეინსტალატორი - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop-ის ქეშის გაწმენდა - UniGetUI", + "WingetUI Version {0}": "UniGetUI ვერსია {0}", + "WingetUI License": "UniGetUI-ის ლიცენზია", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI-ის გამოყენება ნიშნავს MIT ლიცენზიის მიღებას", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "ფონური API-ის ჩართვა (UniGetUI-ის ვიჯეტები და გაზიარება, პორტი 7058)", + "Update WingetUI automatically": "UniGetUI ავტომატური განახლება", + "Reset WingetUI": "UniGetUI-ის დარესეტება", + "WingetUI display language:": "UniGetUI-ის ინტერფეისის ენა:", + "Manage WingetUI autostart behaviour": "UniGetUI-ის ავტომატური გაშვების ქცევის მართვა", + "Enable WingetUI notifications": "UniGetUI-ის შეტყობინებების ჩართვა", + "WingetUI Log": "UniGetUI-ის ჟურნალი", + "Show WingetUI": "UniGetUI-ის ჩვენება", + "WingetUI Homepage": "UniGetUI ვებ-საიტი", + "WingetUI Repository": "UniGetUI რეპოზიტორია", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI გაშვებულია როგორც ადმინისტრატორი, რაც არ არის რეკომენდებული. UniGetUI-ის პრივილეგიებით გაშვებისას, UniGetUI-დან გაშვებული ყველა ოპერაციას ექნება ადმინისტრატორის პრივილეგიები. თქვენ კვლავ შეგიძლიათ გამოიყენოთ პროგრამა, მაგრამ ჩვენ გირჩევთ არ გაუშვათ UniGetUI ადმინისტრატორის პრივილეგიებით.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "მიმდინარეობს ოერაციები. UniGetUI-ის დახურვა მათ ჩაშლას გამოიწვევს. გსურთ გარძელება?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "ამ პაკეტს არ აქვს სქრინშოტები ან აკლია ხატულა? შეიტანეთ წვლილი UniGetUI-ში დაკარგული ხატულების და სქრინშოტების დამატებით ჩვენს ღია, საჯარო მონაცემთა ბაზაში.", + "Restart WingetUI to fully apply changes": "ცვლილებების სრულად ასახვისთვის UniGetUI-ის გადატვირთვა", + "Restart WingetUI": "UniGetUI-ის გადატვირთვა", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "მართეთ UniGetUI-ის ავტომატურად გაშვება პარამეტრების აპლიკაციიდან", "(Number {0} in the queue)": "რიგის ნომერი: {0}", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf", "0 packages found": "ნაპოვნია 0 პაკეტი", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json index 66361122f4..a119080e2f 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_kn.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "pre-uninstall command ವಿಫಲವಾದರೆ ಅಸ್ಥಾಪನೆಯನ್ನು ನಿಲ್ಲಿಸಿ", "Command-line to run:": "ನಡೆಯಬೇಕಾದ command-line:", "Save and close": "ಉಳಿಸಿ ಮತ್ತು ಮುಚ್ಚಿ", + "General": "ಸಾಮಾನ್ಯ", + "Architecture & Location": "ವಾಸ್ತುಶಿಲ್ಪ ಮತ್ತು ಸ್ಥಳ", + "Command-line": "ಕಮಾಂಡ್-ಲೈನ್", + "Pre/Post install": "ಸ್ಥಾಪನೆಗೂ ಮೊದಲು/ನಂತರ", "Run as admin": "admin ಆಗಿ ಚಾಲನೆ ಮಾಡಿ", "Interactive installation": "Interactive ಸ್ಥಾಪನೆ", "Skip hash check": "hash check ಬಿಟ್ಟುಬಿಡಿ", @@ -71,6 +75,8 @@ "Manage ignored updates": "ನಿರ್ಲಕ್ಷ್ಯಗೊಳಿಸಲಾದ ನವೀಕರಣಗಳನ್ನು ನಿರ್ವಹಿಸಿ", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "ಇಲ್ಲಿ ಪಟ್ಟಿ ಮಾಡಲಾದ package ಗಳನ್ನು updates ಪರಿಶೀಲಿಸುವಾಗ ಗಣನೆಗೆ ತೆಗೆದುಕೊಳ್ಳಲಾಗುವುದಿಲ್ಲ. ಅವುಗಳ updates ಅನ್ನು ನಿರ್ಲಕ್ಷಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಲು ಅವುಗಳ ಮೇಲೆ double-click ಮಾಡಿ ಅಥವಾ ಬಲಭಾಗದ button ಮೇಲೆ click ಮಾಡಿ.", "Reset list": "ಪಟ್ಟಿಯನ್ನು ಮರುಹೊಂದಿಸಿ", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "ನೀವು ನಿಜವಾಗಿಯೂ ನಿರ್ಲಕ್ಷಿಸಲಾದ ನವೀಕರಣಗಳ ಪಟ್ಟಿಯನ್ನು ಮರುಹೊಂದಿಸಲು ಬಯಸುವಿರಾ? ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂದಿರುಗಿಸಲಾಗುವುದಿಲ್ಲ", + "No ignored updates": "ಯಾವುದೇ ನಿರ್ಲಕ್ಷಿತ ನವೀಕರಣಗಳಿಲ್ಲ", "Package Name": "ಪ್ಯಾಕೇಜ್ ಹೆಸರು", "Package ID": "ಪ್ಯಾಕೇಜ್ ID", "Ignored version": "ನಿರ್ಲಕ್ಷಿತ ಆವೃತ್ತಿ", @@ -86,6 +92,7 @@ "This operation is running interactively.": "ಈ ಕಾರ್ಯಾಚರಣೆ ಪರಸ್ಪರಕ್ರಿಯಾತ್ಮಕವಾಗಿ ನಡೆಯುತ್ತಿದೆ.", "You will likely need to interact with the installer.": "ನೀವು installer ಜೊತೆ ಸಂವಹನ ನಡೆಸಬೇಕಾಗುವ ಸಾಧ್ಯತೆ ಇದೆ.", "Integrity checks skipped": "Integrity checks ಬಿಟ್ಟುಕೊಡಲಾಗಿದೆ", + "Integrity checks will not be performed during this operation.": "ಈ ಕಾರ್ಯಾಚರಣೆಯ ವೇಳೆ integrity checks ನಡೆಸಲಾಗುವುದಿಲ್ಲ.", "Proceed at your own risk.": "ನಿಮ್ಮ ಸ್ವಂತ ಜವಾಬ್ದಾರಿಯಲ್ಲಿ ಮುಂದುವರಿಯಿರಿ.", "Close": "ಮುಚ್ಚಿ", "Loading...": "Load ಆಗುತ್ತಿದೆ...", @@ -120,16 +127,17 @@ "optional": "ಐಚ್ಛಿಕ", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} install ಆಗಲು ಸಿದ್ಧವಾಗಿದೆ.", "The update process will start after closing UniGetUI": "UniGetUI ಮುಚ್ಚಿದ ನಂತರ update ಪ್ರಕ್ರಿಯೆ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI ಅನ್ನು administrator ಆಗಿ ಚಾಲನೆ ಮಾಡಲಾಗಿದೆ, ಇದು ಶಿಫಾರಸು ಮಾಡಲಾಗುವುದಿಲ್ಲ. UniGetUI ಅನ್ನು administrator ಆಗಿ ನಡೆಸಿದಾಗ, UniGetUI ಯಿಂದ ಆರಂಭವಾಗುವ ಪ್ರತಿಯೊಂದು ಕಾರ್ಯಾಚರಣೆಯೂ administrator privileges ಹೊಂದಿರುತ್ತದೆ. ನೀವು ಇನ್ನೂ ಪ್ರೋಗ್ರಾಂ ಬಳಸಬಹುದು, ಆದರೆ UniGetUI ಅನ್ನು administrator privileges ಜೊತೆ ನಡೆಸಬಾರದೆಂದು ನಾವು ಬಲವಾಗಿ ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ.", "Share anonymous usage data": "ಅನಾಮಧೇಯ ಬಳಕೆ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ", "UniGetUI collects anonymous usage data in order to improve the user experience.": "ಬಳಕೆದಾರ ಅನುಭವವನ್ನು ಉತ್ತಮಗೊಳಿಸಲು UniGetUI ಅನಾಮಧೇಯ ಬಳಕೆ ಡೇಟಾವನ್ನು ಸಂಗ್ರಹಿಸುತ್ತದೆ.", "Accept": "ಸ್ವೀಕರಿಸಿ", - "You have installed WingetUI Version {0}": "ನೀವು UniGetUI Version {0} install ಮಾಡಿದ್ದಾರೆ", + "You have installed UniGetUI Version {0}": "ನೀವು UniGetUI Version {0} install ಮಾಡಿದ್ದಾರೆ", "Disclaimer": "ಘೋಷಣೆ", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ package managers ಗಳಿಗೆ ಸಂಬಂಧಿಸಿದುದಲ್ಲ. UniGetUI ಒಂದು ಸ್ವತಂತ್ರ ಯೋಜನೆ.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ಗಳ ಸಹಾಯವಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ. ಎಲ್ಲರಿಗೂ ಧನ್ಯವಾದಗಳು 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ಕೆಳಗಿನ libraries ಗಳನ್ನು ಬಳಸುತ್ತದೆ. ಅವುಗಳಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ಗಳ ಸಹಾಯವಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ. ಎಲ್ಲರಿಗೂ ಧನ್ಯವಾದಗಳು 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI ಕೆಳಗಿನ libraries ಗಳನ್ನು ಬಳಸುತ್ತದೆ. ಅವುಗಳಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ.", "{0} homepage": "{0} ಮುಖಪುಟ", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ಸ್ವಯಂಸೇವಕ ಅನುವಾದಕರಿಂದ UniGetUI ಅನ್ನು 40 ಕ್ಕೂ ಹೆಚ್ಚು ಭಾಷೆಗಳಿಗೆ ಅನುವಾದಿಸಲಾಗಿದೆ. ಧನ್ಯವಾದಗಳು 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ಸ್ವಯಂಸೇವಕ ಅನುವಾದಕರಿಂದ UniGetUI ಅನ್ನು 40 ಕ್ಕೂ ಹೆಚ್ಚು ಭಾಷೆಗಳಿಗೆ ಅನುವಾದಿಸಲಾಗಿದೆ. ಧನ್ಯವಾದಗಳು 🤝", "Verbose": "ವಿವರವಾದ", "1 - Errors": "1 - ದೋಷಗಳು", "2 - Warnings": "2 - ಎಚ್ಚರಿಕೆಗಳು", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "ನೀವು {0} (@{1}) ಆಗಿ login ಆಗಿದ್ದೀರಿ", "Nice! Backups will be uploaded to a private gist on your account": "ಚೆನ್ನಾಗಿದೆ! Backups ನಿಮ್ಮ ಖಾತೆಯ ಖಾಸಗಿ gist ಗೆ ಅಪ್‌ಲೋಡ್ ಆಗುತ್ತದೆ", "Select backup": "backup ಆಯ್ಕೆಮಾಡಿ", - "WingetUI Settings": "UniGetUI ಸೆಟ್ಟಿಂಗ್‌ಗಳು", + "UniGetUI Settings": "UniGetUI ಸೆಟ್ಟಿಂಗ್‌ಗಳು", "Allow pre-release versions": "pre-release ಆವೃತ್ತಿಗಳಿಗೆ ಅನುಮತಿಸಿ", "Apply": "ಅನ್ವಯಿಸಿ", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "ಭದ್ರತಾ ಕಾರಣಗಳಿಂದ, custom command-line arguments ಅನ್ನು default ಆಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ಇದನ್ನು ಬದಲಾಯಿಸಲು UniGetUI security settings ಗೆ ಹೋಗಿ.", "Go to UniGetUI security settings": "UniGetUI ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಗೆ ಹೋಗಿ", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "{0} package install, upgrade ಅಥವಾ uninstall ಆಗುವ ಪ್ರತಿಸಾರಿ ಕೆಳಗಿನ ಆಯ್ಕೆಗಳು default ಆಗಿ ಅನ್ವಯಿಸಲಾಗುತ್ತದೆ.", "Package's default": "ಪ್ಯಾಕೇಜ್‌ನ default", @@ -160,6 +169,7 @@ "Username": "username", "Password": "ಗುಪ್ತಪದ", "Credentials": "ಪರಿಚಯ ವಿವರಗಳು", + "It is not guaranteed that the provided credentials will be stored safely": "ಒದಗಿಸಿದ credentials ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲ್ಪಡುವುದಕ್ಕೆ ಖಾತರಿ ಇಲ್ಲ", "Partially": "ಭಾಗಶಃ", "Package manager": "ಪ್ಯಾಕೇಜ್ manager", "Compatible with proxy": "proxy ಜೊತೆಗೆ ಹೊಂದಿಕೊಳ್ಳುತ್ತದೆ", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} ಸಕ್ರಿಯವಾಗಿದೆ ಮತ್ತು ಸಿದ್ಧವಾಗಿದೆ", "{pm} version:": "{pm} ಆವೃತ್ತಿ:", "{pm} was not found!": "{pm} ಕಂಡುಬಂದಿಲ್ಲ!", - "You may need to install {pm} in order to use it with WingetUI.": "{pm} ಅನ್ನು UniGetUI ಜೊತೆಗೆ ಬಳಸಲು ನೀವು ಅದನ್ನು install ಮಾಡಬೇಕಾಗಬಹುದು.", - "Scoop Installer - WingetUI": "Scoop ಸ್ಥಾಪಕ - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop ಅನ್‌ಇನ್‌ಸ್ಟಾಲರ್ - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop ಕ್ಯಾಶೆ ತೆರವುಗೊಳಿಸಲಾಗುತ್ತಿದೆ - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "{pm} ಅನ್ನು UniGetUI ಜೊತೆಗೆ ಬಳಸಲು ನೀವು ಅದನ್ನು install ಮಾಡಬೇಕಾಗಬಹುದು.", + "Scoop Installer - UniGetUI": "Scoop ಸ್ಥಾಪಕ - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop ಅನ್‌ಇನ್‌ಸ್ಟಾಲರ್ - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop ಕ್ಯಾಶೆ ತೆರವುಗೊಳಿಸಲಾಗುತ್ತಿದೆ - UniGetUI", + "Restart UniGetUI to fully apply changes": "ಬದಲಾವಣೆಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಅನ್ವಯಿಸಲು UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", "Restart UniGetUI": "UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", "Manage {0} sources": "{0} sources ಅನ್ನು ನಿರ್ವಹಿಸಿ", "Add source": "ಮೂಲವನ್ನು ಸೇರಿಸಿ", "Add": "ಸೇರಿಸಿ", + "Source name": "ಮೂಲದ ಹೆಸರು", + "Source URL": "ಮೂಲ URL", "Other": "ಇತರೆ", + "No minimum age": "ಕನಿಷ್ಠ ವಯಸ್ಸಿಲ್ಲ", "1 day": "1 ದಿನ", "{0} days": "{0} ದಿನಗಳು", + "Custom...": "ಕಸ್ಟಮ್...", "{0} minutes": "{0} ನಿಮಿಷಗಳು", "1 hour": "1 ಗಂಟೆ", "{0} hours": "{0} ಗಂಟೆಗಳು", "1 week": "1 ವಾರ", - "WingetUI Version {0}": "UniGetUI ಆವೃತ್ತಿ {0}", + "Supports release dates": "ಬಿಡುಗಡೆ ದಿನಾಂಕಗಳನ್ನು ಬೆಂಬಲಿಸುತ್ತದೆ", + "Release date support per package manager": "ಪ್ರತಿ package manager ಗೆ ಬಿಡುಗಡೆ ದಿನಾಂಕ ಬೆಂಬಲ", + "UniGetUI Version {0}": "UniGetUI ಆವೃತ್ತಿ {0}", "Search for packages": "ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ಹುಡುಕಿ", "Local": "ಸ್ಥಳೀಯ", "OK": "ಸರಿ", @@ -200,11 +217,13 @@ "Enabled": "ಸಕ್ರಿಯಗೊಂಡಿದೆ", "Disabled": "ಅಚೇತನಗೊಂಡಿದೆ", "More info": "ಇನ್ನಷ್ಟು ಮಾಹಿತಿ", + "GitHub account": "GitHub ಖಾತೆ", "Log in with GitHub to enable cloud package backup.": "Cloud package backup ಸಕ್ರಿಯಗೊಳಿಸಲು GitHub ಬಳಸಿ ಲಾಗಿನ್ ಮಾಡಿ.", "More details": "ಇನ್ನಷ್ಟು ವಿವರಗಳು", "Log in": "ಲಾಗಿನ್ ಮಾಡಿ", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "ನೀವು cloud backup ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ಅದು ಈ ಖಾತೆಯಲ್ಲಿ GitHub Gist ಆಗಿ ಉಳಿಸಲಾಗುತ್ತದೆ", "Log out": "ಲಾಗ್ ಔಟ್ ಮಾಡಿ", + "About UniGetUI": "UniGetUI ಬಗ್ಗೆ", "About": "ಬಗ್ಗೆ", "Third-party licenses": "ಮೂರನೇ ಪಕ್ಷದ ಪರವಾನಗಿಗಳು", "Contributors": "ಸಹಯೋಗಿಗಳು", @@ -212,6 +231,7 @@ "Manage shortcuts": "shortcuts ಅನ್ನು ನಿರ್ವಹಿಸಿ", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "ಭವಿಷ್ಯದ upgrades ಗಳಲ್ಲಿ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದಾದ ಕೆಳಗಿನ desktop shortcuts ಗಳನ್ನು UniGetUI ಪತ್ತೆಹಚ್ಚಿದೆ", "Do you really want to reset this list? This action cannot be reverted.": "ನೀವು ನಿಜವಾಗಿಯೂ ಈ ಪಟ್ಟಿಯನ್ನು reset ಮಾಡಲು ಬಯಸುವಿರಾ? ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂದಿರುಗಿಸಲಾಗುವುದಿಲ್ಲ.", + "Open in explorer": "Explorer ನಲ್ಲಿ ತೆರೆಯಿರಿ", "Remove from list": "ಪಟ್ಟಿಯಿಂದ ತೆಗೆದುಹಾಕಿ", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "ಹೊಸ shortcuts ಪತ್ತೆಯಾದಾಗ, ಈ dialog ತೋರಿಸುವುದಕ್ಕೆ ಬದಲು ಅವುಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಅಳಿಸಿ.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "ಬಳಕೆದಾರ ಅನುಭವವನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಮತ್ತು ಉತ್ತಮಗೊಳಿಸಲು ಮಾತ್ರ UniGetUI ಅನಾಮಧೇಯ ಬಳಕೆ ಡೇಟಾವನ್ನು ಸಂಗ್ರಹಿಸುತ್ತದೆ.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "ಬಳಕೆದಾರ ಅನುಭವವನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಮತ್ತು ಸುಧಾರಿಸಲು ಮಾತ್ರ UniGetUI ಅನಾಮಧೇಯ ಬಳಕೆ ಅಂಕಿಅಂಶಗಳನ್ನು ಸಂಗ್ರಹಿಸಿ ಕಳುಹಿಸುವುದನ್ನು ನೀವು ಒಪ್ಪುತ್ತೀರಾ?", "Decline": "ನಿರಾಕರಿಸಿ", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "ಯಾವುದೇ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಯನ್ನು ಸಂಗ್ರಹಿಸಲಾಗುವುದಿಲ್ಲ ಅಥವಾ ಕಳುಹಿಸಲಾಗುವುದಿಲ್ಲ, ಮತ್ತು ಸಂಗ್ರಹಿಸಲಾದ ಡೇಟಾವನ್ನು ಅನಾಮಧೇಯಗೊಳಿಸಲಾಗಿದೆ, ಆದ್ದರಿಂದ ಅದನ್ನು ನಿಮ್ಮವರೆಗೆ ಹಿಂಬಾಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", - "About WingetUI": "WingetUI ಬಗ್ಗೆ", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ನಿಮ್ಮ command-line package managers ಗಾಗಿ all-in-one graphical interface ಒದಗಿಸುವ ಮೂಲಕ ನಿಮ್ಮ software ನಿರ್ವಹಣೆಯನ್ನು ಸುಲಭಗೊಳಿಸುವ application UniGetUI ಆಗಿದೆ.", + "Toggle navigation panel": "ಸಂಚಲನ ಪ್ಯಾನೆಲ್ ಅನ್ನು ಟಾಗಲ್ ಮಾಡಿ", + "Minimize": "ಸಣ್ಣಗೊಳಿಸಿ", + "Maximize": "ದೊಡ್ಡಗೊಳಿಸಿ", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ನಿಮ್ಮ command-line package managers ಗಾಗಿ all-in-one graphical interface ಒದಗಿಸುವ ಮೂಲಕ ನಿಮ್ಮ software ನಿರ್ವಹಣೆಯನ್ನು ಸುಲಭಗೊಳಿಸುವ application UniGetUI ಆಗಿದೆ.", "Useful links": "ಉಪಯುಕ್ತ links", + "UniGetUI Homepage": "UniGetUI ಮುಖಪುಟ", "Report an issue or submit a feature request": "ಸಮಸ್ಯೆಯನ್ನು ವರದಿ ಮಾಡಿ ಅಥವಾ feature request ಸಲ್ಲಿಸಿ", + "UniGetUI Repository": "UniGetUI ರೆಪೊಸಿಟರಿ", "View GitHub Profile": "GitHub profile ನೋಡಿ", - "WingetUI License": "UniGetUI ಪರವಾನಗಿ", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ಬಳಕೆ ಮಾಡುವುದರಿಂದ MIT ಪರವಾನಗಿಯನ್ನು ಸ್ವೀಕರಿಸಿರುವಂತೆ ಆಗುತ್ತದೆ", + "UniGetUI License": "UniGetUI ಪರವಾನಗಿ", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI ಬಳಕೆ ಮಾಡುವುದರಿಂದ MIT ಪರವಾನಗಿಯನ್ನು ಸ್ವೀಕರಿಸಿರುವಂತೆ ಆಗುತ್ತದೆ", "Become a translator": "ಅನುವಾದಕರಾಗಿ", "View page on browser": "browser ನಲ್ಲಿ page ನೋಡಿ", "Copy to clipboard": "ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಿ", "Export to a file": "file ಗೆ ರಫ್ತು ಮಾಡಿ", "Log level:": "Log ಮಟ್ಟ:", "Reload log": "log ಅನ್ನು ಮರುಲೋಡ್ ಮಾಡಿ", + "Export log": "ಲಾಗ್ ರಫ್ತು ಮಾಡಿ", + "UniGetUI Log": "UniGetUI ಲಾಗ್", "Text": "ಪಠ್ಯ", "Change how operations request administrator rights": "ಕಾರ್ಯಾಚರಣೆಗಳು ನಿರ್ವಾಹಕ ಹಕ್ಕುಗಳನ್ನು ಹೇಗೆ ಕೇಳುತ್ತವೆ ಎಂಬುದನ್ನು ಬದಲಿಸಿ", "Restrictions on package operations": "package operations ಮೇಲಿನ ನಿರ್ಬಂಧಗಳು", @@ -271,7 +297,7 @@ "Leave empty for default": "Default ಗಾಗಿ ಖಾಲಿ ಬಿಡಿ", "Add a timestamp to the backup file names": "ಬ್ಯಾಕಪ್ ಫೈಲ್ ಹೆಸರುಗಳಿಗೆ ಟೈಮ್‌ಸ್ಟ್ಯಾಂಪ್ ಸೇರಿಸಿ", "Backup and Restore": "ಬ್ಯಾಕಪ್ ಮತ್ತು ಮರುಸ್ಥಾಪನೆ", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background api (WingetUI Widgets and Sharing, port 7058) ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "background api (UniGetUI Widgets and Sharing, port 7058) ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "internet ಸಂಪರ್ಕ ಅಗತ್ಯವಿರುವ ಕಾರ್ಯಗಳನ್ನು ಮಾಡಲು ಪ್ರಯತ್ನಿಸುವ ಮೊದಲು ಸಾಧನವು internet ಗೆ ಸಂಪರ್ಕಗೊಂಡಿರುವುದನ್ನು ಕಾಯಿರಿ.", "Disable the 1-minute timeout for package-related operations": "ಪ್ಯಾಕೇಜ್ ಸಂಬಂಧಿತ ಕಾರ್ಯಗಳಿಗೆ 1-ನಿಮಿಷ timeout ಅನ್ನು ಅಚೇತನಗೊಳಿಸಿ", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator ಬದಲು installed GSudo ಬಳಸಿ", @@ -286,7 +312,7 @@ "Telemetry": "ಟೆಲಿಮೆಟ್ರಿ", "Manage UniGetUI settings": "UniGetUI settings ಅನ್ನು ನಿರ್ವಹಿಸಿ", "Related settings": "ಸಂಬಂಧಿತ settings", - "Update WingetUI automatically": "UniGetUI ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ update ಮಾಡಿ", + "Update UniGetUI automatically": "UniGetUI ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ update ಮಾಡಿ", "Check for updates": "ನವೀಕರಣಗಳನ್ನು ಪರಿಶೀಲಿಸಿ", "Install prerelease versions of UniGetUI": "UniGetUI ಯ prerelease ಆವೃತ್ತಿಗಳನ್ನು ಸ್ಥಾಪಿಸಿ", "Manage telemetry settings": "telemetry settings ಅನ್ನು ನಿರ್ವಹಿಸಿ", @@ -295,17 +321,17 @@ "Import": "ಆಮದು", "Export settings to a local file": "settings ಅನ್ನು local file ಗೆ ರಫ್ತು ಮಾಡಿ", "Export": "ರಫ್ತು ಮಾಡಿ", - "Reset WingetUI": "UniGetUI ಅನ್ನು ಮರುಹೊಂದಿಸಿ", "Reset UniGetUI": "UniGetUI ಅನ್ನು ಮರುಹೊಂದಿಸಿ", "User interface preferences": "user interface ಆದ್ಯತೆಗಳು", "Application theme, startup page, package icons, clear successful installs automatically": "ಅಪ್ಲಿಕೇಶನ್ ಥೀಮ್, ಪ್ರಾರಂಭ ಪುಟ, ಪ್ಯಾಕೇಜ್ ಚಿಹ್ನೆಗಳು, ಯಶಸ್ವಿ ಸ್ಥಾಪನೆಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತೆರವುಗೊಳಿಸಿ", "General preferences": "ಸಾಮಾನ್ಯ ಆದ್ಯತೆಗಳು", - "WingetUI display language:": "UniGetUI ಪ್ರದರ್ಶನ ಭಾಷೆ:", + "UniGetUI display language:": "UniGetUI ಪ್ರದರ್ಶನ ಭಾಷೆ:", "Is your language missing or incomplete?": "ನಿಮ್ಮ ಭಾಷೆ ಕಾಣೆಯಾಗಿದೆ ಅಥವಾ ಅಪೂರ್ಣವಾಗಿದೆಯೇ?", "Appearance": "ದೃಶ್ಯರೂಪ", "UniGetUI on the background and system tray": "background ಮತ್ತು system tray ಯಲ್ಲಿ UniGetUI", "Package lists": "ಪ್ಯಾಕೇಜ್ ಪಟ್ಟಿಗಳು", "Close UniGetUI to the system tray": "UniGetUI ಅನ್ನು system tray ಗೆ ಮುಚ್ಚಿ", + "Manage UniGetUI autostart behaviour": "UniGetUI ಸ್ವಯಂಪ್ರಾರಂಭ ವರ್ತನೆಯನ್ನು ನಿರ್ವಹಿಸಿ", "Show package icons on package lists": "package lists ನಲ್ಲಿ package icons ತೋರಿಸಿ", "Clear cache": "ಕ್ಯಾಶೆ ತೆರವುಗೊಳಿಸಿ", "Select upgradable packages by default": "default ಆಗಿ upgrade ಮಾಡಬಹುದಾದ ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "ಎಲ್ಲಾ package managers ಗಳು ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಬೆಂಬಲಿಸದೇ ಇರಬಹುದು ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ", "Proxy URL": "ಪ್ರಾಕ್ಸಿ URL", "Enter proxy URL here": "proxy URL ಅನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ", + "Authenticate to the proxy with a user and a password": "proxy ಗೆ ಬಳಕೆದಾರ ಮತ್ತು password ಮೂಲಕ ದೃಢೀಕರಿಸಿ", + "Internet and proxy settings": "internet ಮತ್ತು proxy settings", "Package manager preferences": "ಪ್ಯಾಕೇಜ್ manager ಆದ್ಯತೆಗಳು", "Ready": "ಸಿದ್ಧವಾಗಿದೆ", "Not found": "ಕಂಡುಬಂದಿಲ್ಲ", "Notification preferences": "ಅಧಿಸೂಚನೆ ಆದ್ಯತೆಗಳು", "Notification types": "ಅಧಿಸೂಚನೆ ಪ್ರಕಾರಗಳು", "The system tray icon must be enabled in order for notifications to work": "notifications ಕಾರ್ಯನಿರ್ವಹಿಸಲು system tray icon ಸಕ್ರಿಯವಾಗಿರಬೇಕು", - "Enable WingetUI notifications": "WingetUI notifications ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "Enable UniGetUI notifications": "UniGetUI notifications ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "Show a notification when there are available updates": "ಲಭ್ಯವಿರುವ ನವೀಕರಣಗಳು ಇರುವಾಗ ಅಧಿಸೂಚನೆ ತೋರಿಸಿ", "Show a silent notification when an operation is running": "ಕಾರ್ಯಾಚರಣೆ ನಡೆಯುತ್ತಿರುವಾಗ ಮೌನ ಅಧಿಸೂಚನೆ ತೋರಿಸಿ", "Show a notification when an operation fails": "ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾದಾಗ ಅಧಿಸೂಚನೆ ತೋರಿಸಿ", "Show a notification when an operation finishes successfully": "ಕಾರ್ಯಾಚರಣೆ ಯಶಸ್ವಿಯಾಗಿ ಪೂರ್ಣಗೊಂಡಾಗ ಅಧಿಸೂಚನೆ ತೋರಿಸಿ", "Concurrency and execution": "ಸಮಾಂತರತೆ ಮತ್ತು ಕಾರ್ಯಗತಗೊಳಿಕೆ", "Automatic desktop shortcut remover": "ಸ್ವಯಂಚಾಲಿತ desktop shortcut ತೆಗೆಯುವಿಕೆ", + "Choose how many operations should be performed in parallel": "ಎಷ್ಟು ಕಾರ್ಯಾಚರಣೆಗಳನ್ನು ಸಮಾಂತರವಾಗಿ ನಡೆಸಬೇಕು ಎಂದು ಆಯ್ಕೆಮಾಡಿ", "Clear successful operations from the operation list after a 5 second delay": "5 ಸೆಕೆಂಡ್ ವಿಳಂಬದ ನಂತರ ಕಾರ್ಯಾಚರಣೆಗಳ ಪಟ್ಟಿಯಿಂದ ಯಶಸ್ವಿ ಕಾರ್ಯಾಚರಣೆಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ", "Download operations are not affected by this setting": "ಡೌನ್‌ಲೋಡ್ ಕಾರ್ಯಗಳು ಈ setting ನಿಂದ ಪ್ರಭಾವಿತವಾಗುವುದಿಲ್ಲ", "Try to kill the processes that refuse to close when requested to": "ಮುಚ್ಚುವಂತೆ ಕೇಳಿದಾಗ ನಿರಾಕರಿಸುವ processes ಗಳನ್ನು ಕೊಲ್ಲಲು ಪ್ರಯತ್ನಿಸಿ", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "ಬಳಸಬೇಕಾದ executable ಆಯ್ಕೆಮಾಡಿ. ಕೆಳಗಿನ ಪಟ್ಟಿಯಲ್ಲಿ UniGetUI ಕಂಡುಹಿಡಿದ executables ತೋರಿಸಲಾಗಿದೆ", "Current executable file:": "ಪ್ರಸ್ತುತ ಕಾರ್ಯಗತಗೊಳಿಸಬಹುದಾದ ಕಡತ:", "Ignore packages from {pm} when showing a notification about updates": "ನವೀಕರಣಗಳ ಬಗ್ಗೆ ಅಧಿಸೂಚನೆ ತೋರಿಸುವಾಗ {pm} ನಿಂದ ಬಂದ ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ನಿರ್ಲಕ್ಷಿಸಿ", + "Update security": "ನವೀಕರಣ ಭದ್ರತೆ", + "Use global setting": "global setting ಬಳಸಿ", + "e.g. 10": "ಉದಾ. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ತನ್ನ packages ಗಳಿಗೆ ಬಿಡುಗಡೆ ದಿನಾಂಕಗಳನ್ನು ಒದಗಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಈ setting ಗೆ ಯಾವುದೇ ಪರಿಣಾಮ ಇರುವುದಿಲ್ಲ", + "Override the global minimum update age for this package manager": "ಈ package manager ಗಾಗಿ global minimum update age ಅನ್ನು override ಮಾಡಿ", + "Minimum age for updates": "ನವೀಕರಣಗಳ ಕನಿಷ್ಠ ವಯಸ್ಸು", + "Custom minimum age (days)": "custom ಕನಿಷ್ಠ ವಯಸ್ಸು (ದಿನಗಳು)", "View {0} logs": "{0} logs ನೋಡಿ", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Python ಕಂಡುಬರದಿದ್ದರೆ ಅಥವಾ packages ಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡದಿದ್ದರೂ ಅದು system ನಲ್ಲಿ ಸ್ಥಾಪಿತವಾಗಿದ್ದರೆ, ", "Advanced options": "ಮುನ್ನಡೆದ ಆಯ್ಕೆಗಳು", "Reset WinGet": "WinGet ಅನ್ನು ಮರುಹೊಂದಿಸಿ", "This may help if no packages are listed": "ಯಾವುದೇ packages ಪಟ್ಟಿ ಮಾಡದಿದ್ದರೆ ಇದು ಸಹಾಯ ಮಾಡಬಹುದು", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "launch ಸಮಯದಲ್ಲಿ Scoop cleanup ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "Use system Chocolatey": "system Chocolatey ಬಳಸಿ", "Default vcpkg triplet": "ಡೀಫಾಲ್ಟ್ vcpkg triplet", + "Change vcpkg root location": "vcpkg root ಸ್ಥಳವನ್ನು ಬದಲಾಯಿಸಿ", "Language, theme and other miscellaneous preferences": "ಭಾಷೆ, theme ಮತ್ತು ಇತರ miscellaneous preferences", "Show notifications on different events": "ವಿಭಿನ್ನ ಘಟನೆಗಳ ಸಂದರ್ಭದಲ್ಲಿ ಅಧಿಸೂಚನೆಗಳನ್ನು ತೋರಿಸಿ", "Change how UniGetUI checks and installs available updates for your packages": "ನಿಮ್ಮ ಪ್ಯಾಕೇಜ್‌ಗಳಿಗಾಗಿ ಲಭ್ಯವಿರುವ ನವೀಕರಣಗಳನ್ನು UniGetUI ಹೇಗೆ ಪರಿಶೀಲಿಸುತ್ತದೆ ಮತ್ತು ಸ್ಥಾಪಿಸುತ್ತದೆ ಎಂಬುದನ್ನು ಬದಲಾಯಿಸಿ", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "network connection metered ಆಗಿರುವಾಗ ನವೀಕರಣಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸ್ಥಾಪಿಸಬೇಡಿ", "Do not automatically install updates when the device runs on battery": "ಸಾಧನವು ಬ್ಯಾಟರಿಯಲ್ಲಿ ಕಾರ್ಯನಿರ್ವಹಿಸುವಾಗ ನವೀಕರಣಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸ್ಥಾಪಿಸಬೇಡಿ", "Do not automatically install updates when the battery saver is on": "battery saver ಆನ್ ಆಗಿರುವಾಗ ನವೀಕರಣಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸ್ಥಾಪಿಸಬೇಡಿ", + "Only show updates that are at least the specified number of days old": "ಸೂಚಿಸಲಾದ ದಿನಗಳ ಸಂಖ್ಯೆಗೆ ಸಮಾನ ಅಥವಾ ಅದಕ್ಕಿಂತ ಹಳೆಯ ನವೀಕರಣಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಿ", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI ಸ್ಥಾಪನೆ, ನವೀಕರಣ ಮತ್ತು ಅಸ್ಥಾಪನಾ ಕಾರ್ಯಾಚರಣೆಗಳನ್ನು ಹೇಗೆ ನಿರ್ವಹಿಸುತ್ತದೆ ಎಂಬುದನ್ನು ಬದಲಿಸಿ.", "Package Managers": "ಪ್ಯಾಕೇಜ್ ಮ್ಯಾನೇಜರ್‌ಗಳು", "More": "ಇನ್ನಷ್ಟು", - "WingetUI Log": "UniGetUI ದಾಖಲಾತಿ", "Package Manager logs": "Package Manager ದಾಖಲೆಗಳು", "Operation history": "ಕಾರ್ಯಾಚರಣೆ ಇತಿಹಾಸ", "Help": "ಸಹಾಯ", + "Quit UniGetUI": "UniGetUI ನಿಂದ ನಿರ್ಗಮಿಸಿ", "Order by:": "ಕ್ರಮಗೊಳಿಸುವ ವಿಧಾನ:", "Name": "ಹೆಸರು", "Id": "ಗುರುತು", @@ -409,6 +448,10 @@ "Both": "ಎರಡೂ", "Exact match": "ಸೂಕ್ಷ್ಮ ಹೊಂದಿಕೆ", "Show similar packages": "ಸಮಾನ ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ತೋರಿಸಿ", + "Nothing to share": "ಹಂಚಿಕೊಳ್ಳಲು ಏನೂ ಇಲ್ಲ", + "Please select a package first.": "ದಯವಿಟ್ಟು ಮೊದಲು ಒಂದು package ಆಯ್ಕೆಮಾಡಿ.", + "Share link copied": "ಹಂಚಿಕೆ ಲಿಂಕ್ ನಕಲಿಸಲಾಗಿದೆ", + "The share link for {0} has been copied to the clipboard.": "{0} ಗಾಗಿ ಹಂಚಿಕೆ ಲಿಂಕ್ ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಲಾಗಿದೆ.", "No results were found matching the input criteria": "ನಮೂದಿಸಿದ ಮಾನದಂಡಗಳಿಗೆ ಹೊಂದುವ ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬಂದಿಲ್ಲ", "No packages were found": "ಯಾವುದೇ ಪ್ಯಾಕೇಜ್‌ಗಳು ಕಂಡುಬಂದಿಲ್ಲ", "Loading packages": "ಪ್ಯಾಕೇಜ್‌ಗಳು load ಆಗುತ್ತಿವೆ", @@ -440,7 +483,11 @@ "Package bundle": "ಪ್ಯಾಕೇಜ್ bundle", "Could not create bundle": "ಬಂಡಲ್ ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ", "The package bundle could not be created due to an error.": "ದೋಷದಿಂದ package bundle ರಚಿಸಲಾಗಲಿಲ್ಲ.", + "Unsaved changes": "ಉಳಿಸದ ಬದಲಾವಣೆಗಳು", + "Discard changes": "ಬದಲಾವಣೆಗಳನ್ನು ತ್ಯಜಿಸಿ", + "You have unsaved changes in the current bundle. Do you want to discard them?": "ಪ್ರಸ್ತುತ bundle ನಲ್ಲಿ ಉಳಿಸದ ಬದಲಾವಣೆಗಳಿವೆ. ಅವನ್ನು ತ್ಯಜಿಸಲು ಬಯಸುವಿರಾ?", "Bundle security report": "ಬಂಡಲ್ ಭದ್ರತಾ ವರದಿ", + "The bundle contained restricted content": "bundle ನಲ್ಲಿ ನಿರ್ಬಂಧಿತ ವಿಷಯವಿತ್ತು", "Hooray! No updates were found.": "ಹುರ್ರೇ! ಯಾವುದೇ ನವೀಕರಣಗಳು ಕಂಡುಬಂದಿಲ್ಲ.", "Everything is up to date": "ಎಲ್ಲವೂ ನವೀಕೃತವಾಗಿದೆ", "Uninstall selected packages": "ಆಯ್ಕೆಮಾಡಿದ packages ಗಳನ್ನು uninstall ಮಾಡಿ", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "windows ಗಾಗಿ ಸಾಂಪ್ರದಾಯಿಕ package manager. ಅಲ್ಲಿ ನೀವು ಎಲ್ಲವನ್ನೂ ಕಾಣಬಹುದು.
ಒಳಗೊಂಡಿರುವುದು: General Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft ನ .NET ಪರಿಸರವ್ಯವಸ್ಥೆಯನ್ನು ಗಮನದಲ್ಲಿಟ್ಟುಕೊಂಡು ರೂಪಿಸಲಾದ tools ಮತ್ತು executables ಗಳಿಂದ ತುಂಬಿರುವ repository.
ಒಳಗೊಂಡಿದೆ: .NET ಸಂಬಂಧಿತ tools ಮತ್ತು scripts", "NuPkg (zipped manifest)": "NuPkg (zip ಮಾಡಿದ manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (ಅಥವಾ Linux) ಗಾಗಿ ಇಲ್ಲದಿರುವ package manager.
ಇದರಲ್ಲಿ ಇರುವವು: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS ನ package manager. javascript ಜಗತ್ತನ್ನು ಸುತ್ತುವರಿದ libraries ಮತ್ತು ಇತರ utilities ಗಳಿಂದ ತುಂಬಿದೆ
ಒಳಗೊಂಡಿರುವುದು: Node javascript libraries ಮತ್ತು ಇತರ ಸಂಬಂಧಿತ utilities", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python ನ library manager. python libraries ಮತ್ತು python ಗೆ ಸಂಬಂಧಿತ ಇತರ utilities ಗಳಿಂದ ತುಂಬಿದೆ
ಒಳಗೊಂಡಿರುವುದು: Python libraries ಮತ್ತು ಸಂಬಂಧಿತ utilities", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell ನ package manager. PowerShell ಸಾಮರ್ಥ್ಯಗಳನ್ನು ವಿಸ್ತರಿಸಲು libraries ಮತ್ತು scripts ಕಂಡುಹಿಡಿಯಿರಿ
ಒಳಗೊಂಡಿರುವುದು: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "queue ಯಲ್ಲಿರುವ ಕಾರ್ಯಾಚರಣೆ (ಸ್ಥಾನ {0})...", "Click here for more details": "ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ", "Operation canceled by user": "ಕಾರ್ಯಾಚರಣೆ ಬಳಕೆದಾರರಿಂದ ರದ್ದುಗೊಂಡಿತು", + "Running PreOperation ({0}/{1})...": "PreOperation ({0}/{1}) ನಡೆಯುತ್ತಿದೆ...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} ನಲ್ಲಿ {0}ನೇ PreOperation ವಿಫಲವಾಯಿತು ಮತ್ತು ಅಗತ್ಯವೆಂದು ಗುರುತಿಸಲ್ಪಟ್ಟಿತ್ತು. ರದ್ದುಗೊಳಿಸಲಾಗುತ್ತಿದೆ...", + "PreOperation {0} out of {1} finished with result {2}": "{1} ನಲ್ಲಿ {0}ನೇ PreOperation {2} ಫಲಿತಾಂಶದೊಂದಿಗೆ ಪೂರ್ಣಗೊಂಡಿತು", "Starting operation...": "ಕಾರ್ಯಾಚರಣೆ ಪ್ರಾರಂಭಗೊಳ್ಳುತ್ತಿದೆ...", + "Running PostOperation ({0}/{1})...": "PostOperation ({0}/{1}) ನಡೆಯುತ್ತಿದೆ...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} ನಲ್ಲಿ {0}ನೇ PostOperation ವಿಫಲವಾಯಿತು ಮತ್ತು ಅಗತ್ಯವೆಂದು ಗುರುತಿಸಲ್ಪಟ್ಟಿತ್ತು. ರದ್ದುಗೊಳಿಸಲಾಗುತ್ತಿದೆ...", + "PostOperation {0} out of {1} finished with result {2}": "{1} ನಲ್ಲಿ {0}ನೇ PostOperation {2} ಫಲಿತಾಂಶದೊಂದಿಗೆ ಪೂರ್ಣಗೊಂಡಿತು", "{package} installer download": "{package} ಇನ್‌ಸ್ಟಾಲರ್ ಡೌನ್‌ಲೋಡ್", "{0} installer is being downloaded": "{0} installer download ಆಗುತ್ತಿದೆ", "Download succeeded": "ಡೌನ್‌ಲೋಡ್ ಯಶಸ್ವಿಯಾಯಿತು", @@ -556,14 +610,12 @@ "Portable mode": "ಪೋರ್ಟೆಬಲ್ ಮೋಡ್\n", "DEBUG BUILD": "DEBUG build", "Available Updates": "ಲಭ್ಯವಿರುವ ನವೀಕರಣಗಳು", - "Show WingetUI": "UniGetUI ತೋರಿಸಿ", + "Show UniGetUI": "UniGetUI ತೋರಿಸಿ", "Quit": "ನಿರ್ಗಮಿಸಿ", "Attention required": "ಗಮನ ಅಗತ್ಯವಿದೆ", "Restart required": "ಮರುಪ್ರಾರಂಭ ಅಗತ್ಯವಿದೆ", "1 update is available": "1 ನವೀಕರಣ ಲಭ್ಯವಿದೆ", "{0} updates are available": "{0} updates ಲಭ್ಯವಿವೆ", - "WingetUI Homepage": "UniGetUI ಮುಖಪುಟ", - "WingetUI Repository": "UniGetUI ಸಂಗ್ರಹಣೆ", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "ಇಲ್ಲಿ ನೀವು ಕೆಳಗಿನ shortcuts ಕುರಿತು UniGetUI ನ ನಡೆನುಡಿಯನ್ನು ಬದಲಾಯಿಸಬಹುದು. ಒಂದು shortcut ಅನ್ನು ಗುರುತಿಸಿದರೆ, ಭವಿಷ್ಯದ upgrade ವೇಳೆ ಅದು ರಚಿಸಲ್ಪಟ್ಟರೆ UniGetUI ಅದನ್ನು ಅಳಿಸುತ್ತದೆ. ಗುರುತನ್ನು ತೆಗೆಯುವುದರಿಂದ shortcut ಹಾಗೆಯೇ ಉಳಿಯುತ್ತದೆ.", "Manual scan": "ಕೈಯಾರೆ ಪರಿಶೀಲನೆ", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "ನಿಮ್ಮ desktop‌ನಲ್ಲಿರುವ ಈಗಿರುವ shortcuts ಪರಿಶೀಲಿಸಲಾಗುತ್ತದೆ, ಮತ್ತು ಯಾವುದನ್ನು ಉಳಿಸಬೇಕು ಹಾಗೂ ಯಾವುದನ್ನು ತೆಗೆದುಹಾಕಬೇಕು ಎಂಬುದನ್ನು ನೀವು ಆಯ್ಕೆ ಮಾಡಬೇಕು.", @@ -583,7 +635,6 @@ "Restart later": "ನಂತರ ಮರುಪ್ರಾರಂಭಿಸಿ", "An error occurred:": "ದೋಷ ಸಂಭವಿಸಿದೆ:", "I understand": "ನಾನು ಅರ್ಥಮಾಡಿಕೊಂಡಿದ್ದೇನೆ", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ಅನ್ನು administrator ಆಗಿ ಚಾಲನೆ ಮಾಡಲಾಗಿದೆ, ಇದು ಶಿಫಾರಸು ಮಾಡಲಾಗುವುದಿಲ್ಲ. UniGetUI ಅನ್ನು administrator ಆಗಿ ಚಾಲನೆ ಮಾಡಿದಾಗ, UniGetUI ನಿಂದ ಪ್ರಾರಂಭವಾಗುವ ಪ್ರತಿಯೊಂದು ಕಾರ್ಯಾಚರಣೆಯೂ administrator privileges ಹೊಂದಿರುತ್ತದೆ. ನೀವು ಇನ್ನೂ program ಬಳಸಬಹುದು, ಆದರೆ UniGetUI ಅನ್ನು administrator privileges ಜೊತೆಗೆ ಚಾಲನೆ ಮಾಡಬಾರದೆಂದು ನಾವು ಬಲವಾಗಿ ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ.", "WinGet was repaired successfully": "WinGet ಯಶಸ್ವಿಯಾಗಿ ಸರಿಪಡಿಸಲಾಗಿದೆ", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet ಸರಿಪಡಿಸಿದ ನಂತರ UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸುವುದು ಶಿಫಾರಸು ಮಾಡಲಾಗಿದೆ", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ಸೂಚನೆ: ಈ troubleshooter ಅನ್ನು UniGetUI Settings ನ WinGet ವಿಭಾಗದಿಂದ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. ನಿಮ್ಮ ಪ್ಯಾಕೇಜ್‌ಗಳು ಬಂಡಲ್‌ಗೆ ಸೇರಿಸಲ್ಪಟ್ಟಿರುತ್ತವೆ. ನೀವು ಇನ್ನಷ್ಟು ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ಸೇರಿಸಬಹುದು ಅಥವಾ ಬಂಡಲ್ ಅನ್ನು ರಫ್ತು ಮಾಡಬಹುದು.", "Which backup do you want to open?": "ನೀವು ಯಾವ backup ತೆರೆಯಲು ಬಯಸುತ್ತೀರಿ?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "ನೀವು ತೆರೆಯಬೇಕಾದ backup ಆಯ್ಕೆಮಾಡಿ. ನಂತರ ನೀವು ಯಾವ ಪ್ಯಾಕೇಜ್‌ಗಳನ್ನು ಸ್ಥಾಪಿಸಬೇಕು ಎಂಬುದನ್ನು ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ಪ್ರಸ್ತುತ ಕಾರ್ಯಾಚರಣೆಗಳು ನಡೆಯುತ್ತಿವೆ. UniGetUI ನಿಂದ ನಿರ್ಗಮಿಸಿದರೆ ಅವು ವಿಫಲವಾಗಬಹುದು. ನೀವು ಮುಂದುವರಿಯಲು ಬಯಸುವಿರಾ?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "ಪ್ರಸ್ತುತ ಕಾರ್ಯಾಚರಣೆಗಳು ನಡೆಯುತ್ತಿವೆ. UniGetUI ನಿಂದ ನಿರ್ಗಮಿಸಿದರೆ ಅವು ವಿಫಲವಾಗಬಹುದು. ನೀವು ಮುಂದುವರಿಯಲು ಬಯಸುವಿರಾ?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ಅಥವಾ ಅದರ ಕೆಲವು components ಕಾಣೆಯಾಗಿವೆ ಅಥವಾ ಹಾಳಾಗಿವೆ.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "ಈ ಪರಿಸ್ಥಿತಿಯನ್ನು ಸರಿಪಡಿಸಲು UniGetUI ಅನ್ನು ಮರುಸ್ಥಾಪಿಸುವುದು ತೀವ್ರವಾಗಿ ಶಿಫಾರಸು ಮಾಡಲಾಗಿದೆ.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "ಪ್ರಭಾವಿತ file(s) ಬಗ್ಗೆ ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ UniGetUI Logs ಅನ್ನು ನೋಡಿ", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "process ಹೆಸರುಗಳನ್ನು ಇಲ್ಲಿ commas (,) ಮೂಲಕ ಬೇರ್ಪಡಿಸಿ ಬರೆಯಿರಿ", "Unset or unknown": "unset ಅಥವಾ ಅಪರಿಚಿತ", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "ಸಮಸ್ಯೆಯ ಬಗ್ಗೆ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ Command-line Output ನೋಡಿ ಅಥವಾ Operation History ಅನ್ನು ಪರಿಶೀಲಿಸಿ.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "ಈ package ನಲ್ಲಿ screenshots ಇಲ್ಲವೇ ಅಥವಾ icon ಕಾಣೆಯೇ? ನಮ್ಮ open, public database ಗೆ ಕಾಣೆಯಾದ icons ಮತ್ತು screenshots ಸೇರಿಸಿ UniGetUI ಗೆ ಕೊಡುಗೆ ನೀಡಿ.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "ಈ package ನಲ್ಲಿ screenshots ಇಲ್ಲವೇ ಅಥವಾ icon ಕಾಣೆಯೇ? ನಮ್ಮ open, public database ಗೆ ಕಾಣೆಯಾದ icons ಮತ್ತು screenshots ಸೇರಿಸಿ UniGetUI ಗೆ ಕೊಡುಗೆ ನೀಡಿ.", "Become a contributor": "ಒಂದು ಸಹಾಯಕನಾಗಿ", "Save": "ಉಳಿಸಿ", "Update to {0} available": "{0} ಗೆ update ಲಭ್ಯವಿದೆ", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "ಸ್ವಯಂಚಾಲಿತ WinGet troubleshooter ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "Enable an [experimental] improved WinGet troubleshooter": "[experimental] ಸುಧಾರಿತ WinGet troubleshooter ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'no applicable update found' ಎಂದು ವಿಫಲವಾಗುವ ನವೀಕರಣಗಳನ್ನು ನಿರ್ಲಕ್ಷಿತ ನವೀಕರಣಗಳ ಪಟ್ಟಿಗೆ ಸೇರಿಸಿ", - "Restart WingetUI to fully apply changes": "ಬದಲಾವಣೆಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಅನ್ವಯಿಸಲು UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", - "Restart WingetUI": "UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", "Invalid selection": "ಅಮಾನ್ಯ ಆಯ್ಕೆ", "No package was selected": "ಯಾವುದೇ ಪ್ಯಾಕೇಜ್ ಆಯ್ಕೆ ಮಾಡಲಾಗಿಲ್ಲ", "More than 1 package was selected": "1 ಕ್ಕಿಂತ ಹೆಚ್ಚು ಪ್ಯಾಕೇಜ್ ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ", @@ -684,6 +733,37 @@ "Log out failed: ": "ಲಾಗ್ ಔಟ್ ವಿಫಲವಾಗಿದೆ: ", "Package backup settings": "ಪ್ಯಾಕೇಜ್ backup settings", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI ಬಗ್ಗೆ", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ನಿಮ್ಮ command-line package managers ಗಾಗಿ all-in-one graphical interface ಒದಗಿಸುವ ಮೂಲಕ ನಿಮ್ಮ software ನಿರ್ವಹಣೆಯನ್ನು ಸುಲಭಗೊಳಿಸುವ application UniGetUI ಆಗಿದೆ.", + "You have installed WingetUI Version {0}": "ನೀವು UniGetUI Version {0} install ಮಾಡಿದ್ದಾರೆ", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors ಗಳ ಸಹಾಯವಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ. ಎಲ್ಲರಿಗೂ ಧನ್ಯವಾದಗಳು 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ಕೆಳಗಿನ libraries ಗಳನ್ನು ಬಳಸುತ್ತದೆ. ಅವುಗಳಿಲ್ಲದೆ UniGetUI ಸಾಧ್ಯವಾಗುತ್ತಿರಲಿಲ್ಲ.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ಸ್ವಯಂಸೇವಕ ಅನುವಾದಕರಿಂದ UniGetUI ಅನ್ನು 40 ಕ್ಕೂ ಹೆಚ್ಚು ಭಾಷೆಗಳಿಗೆ ಅನುವಾದಿಸಲಾಗಿದೆ. ಧನ್ಯವಾದಗಳು 🤝", + "WingetUI Settings": "UniGetUI ಸೆಟ್ಟಿಂಗ್‌ಗಳು", + "You may need to install {pm} in order to use it with WingetUI.": "{pm} ಅನ್ನು UniGetUI ಜೊತೆಗೆ ಬಳಸಲು ನೀವು ಅದನ್ನು install ಮಾಡಬೇಕಾಗಬಹುದು.", + "Scoop Installer - WingetUI": "Scoop ಸ್ಥಾಪಕ - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop ಅನ್‌ಇನ್‌ಸ್ಟಾಲರ್ - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop ಕ್ಯಾಶೆ ತೆರವುಗೊಳಿಸಲಾಗುತ್ತಿದೆ - WingetUI", + "WingetUI Version {0}": "UniGetUI ಆವೃತ್ತಿ {0}", + "WingetUI License": "UniGetUI ಪರವಾನಗಿ", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ಬಳಕೆ ಮಾಡುವುದರಿಂದ MIT ಪರವಾನಗಿಯನ್ನು ಸ್ವೀಕರಿಸಿರುವಂತೆ ಆಗುತ್ತದೆ", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background api (WingetUI Widgets and Sharing, port 7058) ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "Update WingetUI automatically": "UniGetUI ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ update ಮಾಡಿ", + "Reset WingetUI": "UniGetUI ಅನ್ನು ಮರುಹೊಂದಿಸಿ", + "WingetUI display language:": "UniGetUI ಪ್ರದರ್ಶನ ಭಾಷೆ:", + "Manage WingetUI autostart behaviour": "WingetUI ಸ್ವಯಂಪ್ರಾರಂಭ ವರ್ತನೆಯನ್ನು ನಿರ್ವಹಿಸಿ", + "Enable WingetUI notifications": "WingetUI notifications ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "WingetUI Log": "UniGetUI ದಾಖಲಾತಿ", + "Show WingetUI": "UniGetUI ತೋರಿಸಿ", + "WingetUI Homepage": "UniGetUI ಮುಖಪುಟ", + "WingetUI Repository": "UniGetUI ಸಂಗ್ರಹಣೆ", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ಅನ್ನು administrator ಆಗಿ ಚಾಲನೆ ಮಾಡಲಾಗಿದೆ, ಇದು ಶಿಫಾರಸು ಮಾಡಲಾಗುವುದಿಲ್ಲ. UniGetUI ಅನ್ನು administrator ಆಗಿ ಚಾಲನೆ ಮಾಡಿದಾಗ, UniGetUI ನಿಂದ ಪ್ರಾರಂಭವಾಗುವ ಪ್ರತಿಯೊಂದು ಕಾರ್ಯಾಚರಣೆಯೂ administrator privileges ಹೊಂದಿರುತ್ತದೆ. ನೀವು ಇನ್ನೂ program ಬಳಸಬಹುದು, ಆದರೆ UniGetUI ಅನ್ನು administrator privileges ಜೊತೆಗೆ ಚಾಲನೆ ಮಾಡಬಾರದೆಂದು ನಾವು ಬಲವಾಗಿ ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ಪ್ರಸ್ತುತ ಕಾರ್ಯಾಚರಣೆಗಳು ನಡೆಯುತ್ತಿವೆ. UniGetUI ನಿಂದ ನಿರ್ಗಮಿಸಿದರೆ ಅವು ವಿಫಲವಾಗಬಹುದು. ನೀವು ಮುಂದುವರಿಯಲು ಬಯಸುವಿರಾ?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "ಈ package ನಲ್ಲಿ screenshots ಇಲ್ಲವೇ ಅಥವಾ icon ಕಾಣೆಯೇ? ನಮ್ಮ open, public database ಗೆ ಕಾಣೆಯಾದ icons ಮತ್ತು screenshots ಸೇರಿಸಿ UniGetUI ಗೆ ಕೊಡುಗೆ ನೀಡಿ.", + "Restart WingetUI to fully apply changes": "ಬದಲಾವಣೆಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಅನ್ವಯಿಸಲು UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", + "Restart WingetUI": "UniGetUI ಅನ್ನು ಮರುಪ್ರಾರಂಭಿಸಿ", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Settings app ನಿಂದ UniGetUI autostart ವರ್ತನೆಯನ್ನು ನಿರ್ವಹಿಸಿ", "(Number {0} in the queue)": "(ಸರದಿಯಲ್ಲಿ ಸಂಖ್ಯೆ {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@skanda890", "0 packages found": "0 ಪ್ಯಾಕೇಜ್ ಕಂಡುಬಂದಿಲ್ಲ", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json index 906f22e8ed..66a6a8ce96 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ko.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "제거 전 명령이 실패하면 제거 중지", "Command-line to run:": "실행할 명령줄:", "Save and close": "저장하고 닫기", + "General": "일반", + "Architecture & Location": "아키텍처 및 위치", + "Command-line": "명령줄", + "Pre/Post install": "설치 전/후", "Run as admin": "관리자 권한으로 실행", "Interactive installation": "대화형 설치", "Skip hash check": "해시 검사 건너뛰기", @@ -71,6 +75,8 @@ "Manage ignored updates": "무시된 업데이트 관리", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "여기에 나열된 패키지는 업데이트를 확인할 때 고려되지 않습니다. 업데이트 무시를 중지하려면 해당 항목을 두 번 클릭하거나 오른쪽에 있는 버튼을 클릭하세요.", "Reset list": "목록 초기화", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "무시된 업데이트 목록을 정말로 초기화하시겠습니까? 이 작업은 되돌릴 수 없습니다.", + "No ignored updates": "무시된 업데이트 없음", "Package Name": "패키지 이름", "Package ID": "패키지 ID", "Ignored version": "무시된 버전", @@ -86,6 +92,7 @@ "This operation is running interactively.": "이 작업은 대화형으로 실행 중입니다.", "You will likely need to interact with the installer.": "설치 프로그램과 상호 작용이 필요할 수 있습니다.", "Integrity checks skipped": "무결성 검사 건너뜀", + "Integrity checks will not be performed during this operation.": "이 작업 중에는 무결성 검사가 수행되지 않습니다.", "Proceed at your own risk.": "모든 책임은 사용자에게 있습니다.", "Close": "닫기", "Loading...": "불러오는 중...", @@ -120,16 +127,17 @@ "optional": "선택적", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} 설치가 준비되었습니다.", "The update process will start after closing UniGetUI": "UniGetUI가 닫힌 후에 업데이트 프로세스가 시작됩니다", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI가 관리자 권한으로 실행되었으며, 이는 권장되지 않습니다. UniGetUI를 관리자 권한으로 실행하면 UniGetUI에서 시작한 모든 작업이 관리자 권한으로 실행됩니다. 프로그램은 계속 사용할 수 있지만, UniGetUI를 관리자 권한으로 실행하지 않는 것을 강력히 권장합니다.", "Share anonymous usage data": "익명 사용 데이터 공유", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI는 사용자 경험을 개선하기 위해 익명 사용 데이터를 수집합니다.", "Accept": "수락", - "You have installed WingetUI Version {0}": "UniGetUI {0} 버전을 설치했습니다.", + "You have installed UniGetUI Version {0}": "UniGetUI {0} 버전을 설치했습니다.", "Disclaimer": "면책 조항", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI는 호환되는 패키지 관리자와 관련이 없습니다. UniGetUI는 독립적인 프로젝트입니다.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI는 기여자들의 도움 없이는 불가능했을 것입니다. 모두들 감사합니다🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI는 다음 라이브러리를 사용합니다. 그것들 없이는 UniGetUI가 존재할 수 없습니다.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI는 기여자들의 도움 없이는 불가능했을 것입니다. 모두들 감사합니다🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI는 다음 라이브러리를 사용합니다. 그것들 없이는 UniGetUI가 존재할 수 없습니다.", "{0} homepage": "{0} 홈페이지", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI는 자원봉사 번역가들 덕분에 40개 이상의 언어로 번역되었습니다. 감사합니다 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI는 자원봉사 번역가들 덕분에 40개 이상의 언어로 번역되었습니다. 감사합니다 🤝", "Verbose": "세부 정보", "1 - Errors": "1 - 오류", "2 - Warnings": "2 - 경고", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "{0} (@{1})으로 로그인했습니다", "Nice! Backups will be uploaded to a private gist on your account": "좋습니다! 백업은 귀하의 계정의 비공개 gist에 업로드됩니다", "Select backup": "백업 선택", - "WingetUI Settings": "UniGetUI 설정", + "UniGetUI Settings": "UniGetUI 설정", "Allow pre-release versions": "사전 릴리스 버전 허용", "Apply": "적용", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "보안상의 이유로 사용자 지정 명령줄 인수는 기본적으로 비활성화되어 있습니다. 이를 변경하려면 UniGetUI 보안 설정으로 이동하세요.", "Go to UniGetUI security settings": "UniGetUI 보안 설정으로 이동", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "다음 옵션은 {0} 패키지가 설치, 업그레이드 또는 제거될 때마다 기본적으로 적용됩니다.", "Package's default": "패키지의 기본값", @@ -160,6 +169,7 @@ "Username": "사용자 이름", "Password": "암호", "Credentials": "자격 증명", + "It is not guaranteed that the provided credentials will be stored safely": "제공된 자격 증명이 안전하게 저장된다고 보장할 수 없습니다", "Partially": "부분적", "Package manager": "패키지 관리", "Compatible with proxy": "프록시 호환 여부", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm}이(가) 켜져있어 사용할 준비가 되었습니다", "{pm} version:": "{pm} 버전:", "{pm} was not found!": "{pm}을(를) 찾을 수 없습니다!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI로 사용하려면 {pm}을(를) 설치해야 할 수 있습니다.", - "Scoop Installer - WingetUI": "Scoop 설치 프로그램 - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop 제거 프로그램 - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop 캐시 지우기 - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI로 사용하려면 {pm}을(를) 설치해야 할 수 있습니다.", + "Scoop Installer - UniGetUI": "Scoop 설치 프로그램 - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop 제거 프로그램 - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop 캐시 지우기 - UniGetUI", + "Restart UniGetUI to fully apply changes": "변경 사항을 완전히 적용하려면 UniGetUI를 다시 시작하세요", "Restart UniGetUI": "UniGet 다시 시작", "Manage {0} sources": "{0} 소스 관리", "Add source": "소스 추가", "Add": "추가", + "Source name": "소스 이름", + "Source URL": "소스 URL", "Other": "기타", + "No minimum age": "최소 기간 없음", "1 day": "1일", "{0} days": "{0} 일", + "Custom...": "사용자 지정...", "{0} minutes": "{0} 분", "1 hour": "1시간", "{0} hours": "{0} 시간", "1 week": "1주", - "WingetUI Version {0}": "UniGetUI 버전 {0}", + "Supports release dates": "릴리스 날짜 지원", + "Release date support per package manager": "패키지 관리자별 릴리스 날짜 지원", + "UniGetUI Version {0}": "UniGetUI 버전 {0}", "Search for packages": "패키지 검색", "Local": "로컬", "OK": "확인", @@ -200,11 +217,13 @@ "Enabled": "사용", "Disabled": "사용 안 함", "More info": "자세한 정보", + "GitHub account": "GitHub 계정", "Log in with GitHub to enable cloud package backup.": "클라우드 패키지 백업을 활성화하려면 GitHub에 로그인하세요.", "More details": "자세한 정보", "Log in": "로그인", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "클라우드 백업을 활성화하면 이 계정에 GitHub Gist로 저장됩니다", "Log out": "로그 아웃", + "About UniGetUI": "UniGetUI 정보", "About": "정보", "Third-party licenses": "타사 라이선스", "Contributors": "기여자", @@ -212,6 +231,7 @@ "Manage shortcuts": "바로 가기 관리", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI가 향후 업그레이드 시 자동으로 제거할 수 있는 바탕 화면 바로 가기를 다음과 같이 감지했습니다", "Do you really want to reset this list? This action cannot be reverted.": "정말로 이 목록을 초기화하시겠습니까? 이 동작은 되돌릴 수 없습니다.", + "Open in explorer": "탐색기에서 열기", "Remove from list": "목록에서 제거", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "새 바로 가기가 감지되면 이 대화 상자를 표시하지 않고 자동으로 삭제합니다.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI는 오로지 사용자 경험을 이해 및 개선하기 위해 익명 사용 통계를 수집합니다.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "사용자 경험을 이해 및 개선하기 위해 UniGetUI가 익명 사용 통계를 수집하고 보내도록 허용하시겠습니까?", "Decline": "거부", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "개인 사용자 정보는 수집되지도 전송되지 않으며 역추적할 수 없도록 익명 처리되어 수집됩니다.", - "About WingetUI": "UniGetUI 정보", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI는 명령줄 패키지 관리자에게 올인원 그래픽 인터페이스를 제공하여 소프트웨어 관리를 더 쉽게 해주는 응용 프로그램입니다.", + "Toggle navigation panel": "탐색 패널 전환", + "Minimize": "최소화", + "Maximize": "최대화", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI는 명령줄 패키지 관리자에게 올인원 그래픽 인터페이스를 제공하여 소프트웨어 관리를 더 쉽게 해주는 응용 프로그램입니다.", "Useful links": "유용한 링크", + "UniGetUI Homepage": "UniGetUI 홈페이지", "Report an issue or submit a feature request": "문제 신고 또는 기능 요청 제출", + "UniGetUI Repository": "UniGetUI 저장소", "View GitHub Profile": "GitHub 프로필 보기", - "WingetUI License": "UniGetUI 라이선스", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI를 사용하는 것은 MIT 라이선스에 동의하는 것입니다", + "UniGetUI License": "UniGetUI 라이선스", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI를 사용하는 것은 MIT 라이선스에 동의하는 것입니다", "Become a translator": "번역가 되기", "View page on browser": "브라우저에서 페이지 보기", "Copy to clipboard": "클립보드에 복사", "Export to a file": "파일로 내보내기", "Log level:": "로그 수준:", "Reload log": "로그 다시 불러오기", + "Export log": "로그 내보내기", + "UniGetUI Log": "UniGetUI 로그", "Text": "텍스트", "Change how operations request administrator rights": "작업이 관리자 권한을 요청하는 방식 설정", "Restrictions on package operations": "패키지 작업에 대한 제한 사항", @@ -271,7 +297,7 @@ "Leave empty for default": "공백은 기본값", "Add a timestamp to the backup file names": "백업 파일 이름에 타임스탬프 추가", "Backup and Restore": "백업 및 복원", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "백그라운드 API 사용(UniGetUI 위젯 및 공유 용도, 포트 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "백그라운드 API 사용(UniGetUI 위젯 및 공유 용도, 포트 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "인터넷 연결이 필요한 작업을 수행하기 전에 장치가 인터넷에 연결될 때까지 기다리기.", "Disable the 1-minute timeout for package-related operations": "패키지 관련 작업에서 1분 시간 제한 끄기", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator 대신 설치된 GSudo 사용", @@ -286,7 +312,7 @@ "Telemetry": "진단", "Manage UniGetUI settings": "UniGetUI 설정 관리", "Related settings": "관련 설정", - "Update WingetUI automatically": "자동으로 UniGetUI 업데이트", + "Update UniGetUI automatically": "자동으로 UniGetUI 업데이트", "Check for updates": "업데이트 확인", "Install prerelease versions of UniGetUI": "UniGetUI의 사전 릴리스 버전 설치", "Manage telemetry settings": "진단 설정 관리", @@ -295,17 +321,17 @@ "Import": "가져오기", "Export settings to a local file": "로컬 파일로 설정 내보내기", "Export": "내보내기", - "Reset WingetUI": "UniGetUI 초기화", "Reset UniGetUI": "UniGetUI 초기화", "User interface preferences": "사용자 인터페이스 환경 설정", "Application theme, startup page, package icons, clear successful installs automatically": "응용 프로그램 테마, 시작 페이지, 패키지 아이콘, 성공한 설치 자동으로 지우기", "General preferences": "일반 환경 설정", - "WingetUI display language:": "UniGetUI 표시 언어:", + "UniGetUI display language:": "UniGetUI 표시 언어:", "Is your language missing or incomplete?": "언어가 누락되었거나 불완전합니까?", "Appearance": "모양", "UniGetUI on the background and system tray": "백그라운드 및 시스템 트레이의 UniGetUI", "Package lists": "패키지 목록", "Close UniGetUI to the system tray": "시스템 트레이에 UniGetUI 닫기", + "Manage UniGetUI autostart behaviour": "UniGetUI 자동 시작 동작 관리", "Show package icons on package lists": "패키지 목록에 패키지 아이콘 표시", "Clear cache": "캐시 지우기", "Select upgradable packages by default": "기본적으로 업그레이드 가능한 패키지 선택", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "모든 패키지 관리자가 이 기능을 완전히 지원하는 것은 아닙니다", "Proxy URL": "프록시 URL", "Enter proxy URL here": "여기에 프록시 URL 입력", + "Authenticate to the proxy with a user and a password": "사용자 이름과 비밀번호로 프록시에 인증", + "Internet and proxy settings": "인터넷 및 프록시 설정", "Package manager preferences": "패키지 관리자 환경 설정", "Ready": "준비 완료", "Not found": "찾을 수 없음", "Notification preferences": "알림 환경 설정", "Notification types": "알림 종류", "The system tray icon must be enabled in order for notifications to work": "알림이 작동하려면 시스템 트레이 아이콘을 켜야 합니다", - "Enable WingetUI notifications": "UniGetUI 알림 켜기", + "Enable UniGetUI notifications": "UniGetUI 알림 켜기", "Show a notification when there are available updates": "사용 가능한 업데이트가 있을 때 알림 표시", "Show a silent notification when an operation is running": "작업 실행 중일 때 조용한 알림 표시", "Show a notification when an operation fails": "작업 실패 시 알림 표시", "Show a notification when an operation finishes successfully": "작업이 성공적으로 완료되면 알림 표시", "Concurrency and execution": "동시성 및 실행", "Automatic desktop shortcut remover": "바탕 화면 바로 가기 자동 제거", + "Choose how many operations should be performed in parallel": "병렬로 수행할 작업 수를 선택하세요", "Clear successful operations from the operation list after a 5 second delay": "성공한 작업을 작업 목록에서 5초 후에 지우기", "Download operations are not affected by this setting": "다운로드 작업은 이 설정에 영향을 받지 않습니다", "Try to kill the processes that refuse to close when requested to": "요청 시 종료를 거부하는 프로세스를 제거해 보세요", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "사용할 실행 파일을 선택합니다. 다음 목록은 UniGetUI에서 찾은 실행 파일을 보여줍니다", "Current executable file:": "현재 실행 파일:", "Ignore packages from {pm} when showing a notification about updates": "업데이트 알림을 표시할 때 {pm}에서 패키지 무시", + "Update security": "업데이트 보안", + "Use global setting": "전역 설정 사용", + "e.g. 10": "예: 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm}은(는) 패키지의 릴리스 날짜를 제공하지 않으므로 이 설정은 적용되지 않습니다", + "Override the global minimum update age for this package manager": "이 패키지 관리자에 대해 전역 최소 업데이트 기간 설정 재정의", + "Minimum age for updates": "업데이트 최소 기간", + "Custom minimum age (days)": "사용자 지정 최소 기간(일)", "View {0} logs": "{0} 로그 보기", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Python을 찾을 수 없거나 시스템에 설치되어 있는데도 패키지 목록이 표시되지 않는 경우, ", "Advanced options": "고급 옵션", "Reset WinGet": "WinGet 재설정", "This may help if no packages are listed": "패키지가 표시되지 않으면 도움이 될 수 있습니다", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "프로그램 실행 시 Scoop 정리", "Use system Chocolatey": "시스템 Chocolatey 사용", "Default vcpkg triplet": "기본 vcpkg triplet", + "Change vcpkg root location": "vcpkg 루트 위치 변경", "Language, theme and other miscellaneous preferences": "언어, 테마 및 기타 환경 설정", "Show notifications on different events": "다양한 이벤트에 대한 알림 표시", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI가 사용 가능한 업데이트를 확인하고 설치하는 방식을 설정", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "데이터 통신 연결 네트워크에서 자동 업데이트 안 함", "Do not automatically install updates when the device runs on battery": "장치가 배터리로 작동할 때 자동으로 업데이트 설치 안 함", "Do not automatically install updates when the battery saver is on": "배터리 절약 모드(절전 모드)가 켜져 있을 때 자동 업데이트 안 함", + "Only show updates that are at least the specified number of days old": "지정한 일수 이상 지난 업데이트만 표시", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI가 설치, 업데이트 및 제거 작업을 처리하는 방식을 변경합니다.", "Package Managers": "패키지 관리자", "More": "자세히 보기", - "WingetUI Log": "UniGetUI 로그", "Package Manager logs": "패키지 관리자 로그", "Operation history": "작업 기록", "Help": "도움말", + "Quit UniGetUI": "UniGetUI 종료", "Order by:": "정렬:", "Name": "이름", "Id": "아이디", @@ -409,6 +448,10 @@ "Both": "모두", "Exact match": "정확히 일치", "Show similar packages": "유사한 패키지 표시", + "Nothing to share": "공유할 항목 없음", + "Please select a package first.": "먼저 패키지를 선택하세요.", + "Share link copied": "공유 링크가 복사됨", + "The share link for {0} has been copied to the clipboard.": "{0}의 공유 링크가 클립보드에 복사되었습니다.", "No results were found matching the input criteria": "입력 기준과 일치하는 결과를 찾을 수 없습니다", "No packages were found": "패키지를 찾을 수 없습니다", "Loading packages": "패키지 불러오는 중", @@ -440,7 +483,11 @@ "Package bundle": "패키지 번들", "Could not create bundle": "번들을 만들 수 없습니다", "The package bundle could not be created due to an error.": "오류로 인해 패키지 번들을 만들 수 없습니다.", + "Unsaved changes": "저장되지 않은 변경 사항", + "Discard changes": "변경 사항 버리기", + "You have unsaved changes in the current bundle. Do you want to discard them?": "현재 번들에 저장되지 않은 변경 사항이 있습니다. 버리시겠습니까?", "Bundle security report": "번들 보안 보고서", + "The bundle contained restricted content": "이 번들에는 제한된 콘텐츠가 포함되어 있습니다", "Hooray! No updates were found.": "만세! 업데이트가 발견되지 않았습니다.", "Everything is up to date": "모두 최신 상태입니다", "Uninstall selected packages": "선택한 패키지 제거", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows용 클래식 패키지 관리자. 뭐든지 찾을 수 있습니다.
포함 내용: 일반 소프트웨어", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft의 .NET 생태계를 염두에 두고 설계된 도구와 실행 파일로 가득한 저장소입니다.
포함 내용: .NET 관련 도구 및 스크립트", "NuPkg (zipped manifest)": "NuPkg(압축된 매니페스트)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS(또는 Linux)를 위한 없어서는 안 될 패키지 관리자입니다.
포함 항목: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS의 패키지 관리자. 자바스크립트와 관련된 라이브러리와 기타 유틸리티로 가득합니다.
포함 내용: 노드 자바스크립트 라이브러리 및 기타 관련 유틸리티", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python 라이브러리 관리자. Python 라이브러리 및 기타 Python 관련 유틸리티가 가득합니다
포함 내용: Python 라이브러리 및 관련 유틸리티", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell의 패키지 관리자. PowerShell 기능을 확장할 라이브러리 및 스크립트를 찾아보세요.
포함 내용: 모듈, 스크립트, Cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "작업 대기 중(위치 {0})...", "Click here for more details": "여기를 눌러 자세한 정보 확인", "Operation canceled by user": "사용자가 작업을 취소했습니다", + "Running PreOperation ({0}/{1})...": "PreOperation 실행 중 ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}개 중 PreOperation {0}이(가) 실패했고 필수로 지정되어 있어 중단합니다...", + "PreOperation {0} out of {1} finished with result {2}": "{1}개 중 PreOperation {0}이(가) 결과 {2}(으)로 완료되었습니다", "Starting operation...": "작업 시작 중...", + "Running PostOperation ({0}/{1})...": "PostOperation 실행 중 ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1}개 중 PostOperation {0}이(가) 실패했고 필수로 지정되어 있어 중단합니다...", + "PostOperation {0} out of {1} finished with result {2}": "{1}개 중 PostOperation {0}이(가) 결과 {2}(으)로 완료되었습니다", "{package} installer download": "{package} 설치 프로그램 다운로드", "{0} installer is being downloaded": "{0} 설치 프로그램을 다운로드하고 있습니다", "Download succeeded": "다운로드 성공", @@ -556,14 +610,12 @@ "Portable mode": "포터블 모드", "DEBUG BUILD": "디버그 빌드", "Available Updates": "사용 가능한 업데이트", - "Show WingetUI": "UniGetUI 창 표시", + "Show UniGetUI": "UniGetUI 창 표시", "Quit": "종료", "Attention required": "주의 필요", "Restart required": "다시 시작 필요", "1 update is available": "1개의 업데이트 사용 가능", "{0} updates are available": "{0} 업데이트 사용 가능", - "WingetUI Homepage": "UniGetUI 홈페이지", - "WingetUI Repository": "UniGetUI 저장소", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "여기에서 다음 단축키에 대한 UniGetUI의 동작을 변경할 수 있습니다. 단축키를 선택하면 향후 업그레이드 시 생성된 경우 UniGetUI가 이를 삭제합니다. 선택을 해제하면 단축키가 그대로 유지됩니다", "Manual scan": "수동 검사", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "바탕 화면에 이미 존재하는 바로 가기를 스캔하며, 어떤 바로 가기를 유지하고 어떤 바로 가기를 제거할 지 골라야 합니다.", @@ -583,7 +635,6 @@ "Restart later": "나중에 다시 시작", "An error occurred:": "오류가 발생했습니다:", "I understand": "알겠습니다", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI를 관리자 권한으로 실행한 것 같습니다. 그러나 이는 권장하지 않습니다. UniGetUI를 관리자 권한으로 실행하면 UniGetUI에서 실행되는 모든 작업이 관리자 권한으로 실행됩니다. 프로그램을 계속 사용할 수는 있지만 UniGetUI를 관리자 권한으로 실행하지 않는 것이 좋습니다.", "WinGet was repaired successfully": "WinGet을 성공적으로 복구했습니다", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet 복구 후에는 UniGetUI를 다시 시작할 것을 권장합니다", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "참고: 이 문제 해결사는 WinGet 섹션의 UniGetUI 설정에서 비활성화할 수 있습니다", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. 패키지가 번들에 추가되었습니다. 계속해서 패키지를 추가하거나 번들을 내보낼 수 있습니다.", "Which backup do you want to open?": "어떤 백업을 열고 싶으신가요?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "열 백업을 선택합니다. 나중에 복원하려는 패키지/프로그램을 검토할 수 있습니다.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "진행 중인 작업이 있습니다. UniGetUI를 끝내면 작업이 실패할 수 있습니다. 계속할까요?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "진행 중인 작업이 있습니다. UniGetUI를 끝내면 작업이 실패할 수 있습니다. 계속할까요?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI 또는 일부 구성 요소가 누락되었거나 손상되었습니다.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "이 문제를 해결하기 위해 UniGetUI를 재설치하는 것을 강력히 권장합니다.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "영향을 받은 파일에 대한 자세한 내용은 UniGetUI 로그를 참조하세요", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "여기에 프로세스 이름을 쉼표로 구분하여 작성하세요 (, )", "Unset or unknown": "설정 안 됨 또는 알 수 없음", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "이 문제에 대한 자세한 내용은 [명령줄 출력]을 참조하거나 [작업 기록]을 참조하세요.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "이 패키지가 스크린샷 또는 아이콘이 없나요? 우리의 오픈 및 공용 데이터베이스에 누락된 아이콘 및 스크린샷을 추가하여 UniGetUI에 기여하세요.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "이 패키지가 스크린샷 또는 아이콘이 없나요? 우리의 오픈 및 공용 데이터베이스에 누락된 아이콘 및 스크린샷을 추가하여 UniGetUI에 기여하세요.", "Become a contributor": "기여자 되기", "Save": "저장", "Update to {0} available": "{0}(으)로 업데이트 가능", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "WinGet 문제 해결사 자동으로 켜기", "Enable an [experimental] improved WinGet troubleshooter": "향상된 WinGet 문제 해결사 사용(실험적)", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'해당 업데이트를 찾을 수 없음'으로 실패한 업데이트를 무시된 업데이트 목록에 추가합니다.", - "Restart WingetUI to fully apply changes": "변경 사항을 완전히 적용하려면 UniGetUI를 다시 시작하세요", - "Restart WingetUI": "UniGetUI 다시 시작", "Invalid selection": "잘못된 선택", "No package was selected": "선택된 패키지가 없습니다", "More than 1 package was selected": "두 개 이상의 패키지가 선택되었습니다", @@ -684,6 +733,37 @@ "Log out failed: ": "로그아웃 실패: ", "Package backup settings": "패키지 백업 설정", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "UniGetUI 정보", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI는 명령줄 패키지 관리자에게 올인원 그래픽 인터페이스를 제공하여 소프트웨어 관리를 더 쉽게 해주는 응용 프로그램입니다.", + "You have installed WingetUI Version {0}": "UniGetUI {0} 버전을 설치했습니다.", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI는 기여자들의 도움 없이는 불가능했을 것입니다. 모두들 감사합니다🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI는 다음 라이브러리를 사용합니다. 그것들 없이는 UniGetUI가 존재할 수 없습니다.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI는 자원봉사 번역가들 덕분에 40개 이상의 언어로 번역되었습니다. 감사합니다 🤝", + "WingetUI Settings": "UniGetUI 설정", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI로 사용하려면 {pm}을(를) 설치해야 할 수 있습니다.", + "Scoop Installer - WingetUI": "Scoop 설치 프로그램 - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop 제거 프로그램 - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop 캐시 지우기 - UniGetUI", + "WingetUI Version {0}": "UniGetUI 버전 {0}", + "WingetUI License": "UniGetUI 라이선스", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI를 사용하는 것은 MIT 라이선스에 동의하는 것입니다", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "백그라운드 API 사용(UniGetUI 위젯 및 공유 용도, 포트 7058)", + "Update WingetUI automatically": "자동으로 UniGetUI 업데이트", + "Reset WingetUI": "UniGetUI 초기화", + "WingetUI display language:": "UniGetUI 표시 언어:", + "Manage WingetUI autostart behaviour": "WingetUI 자동 시작 동작 관리", + "Enable WingetUI notifications": "UniGetUI 알림 켜기", + "WingetUI Log": "UniGetUI 로그", + "Show WingetUI": "UniGetUI 창 표시", + "WingetUI Homepage": "UniGetUI 홈페이지", + "WingetUI Repository": "UniGetUI 저장소", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI를 관리자 권한으로 실행한 것 같습니다. 그러나 이는 권장하지 않습니다. UniGetUI를 관리자 권한으로 실행하면 UniGetUI에서 실행되는 모든 작업이 관리자 권한으로 실행됩니다. 프로그램을 계속 사용할 수는 있지만 UniGetUI를 관리자 권한으로 실행하지 않는 것이 좋습니다.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "진행 중인 작업이 있습니다. UniGetUI를 끝내면 작업이 실패할 수 있습니다. 계속할까요?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "이 패키지가 스크린샷 또는 아이콘이 없나요? 우리의 오픈 및 공용 데이터베이스에 누락된 아이콘 및 스크린샷을 추가하여 UniGetUI에 기여하세요.", + "Restart WingetUI to fully apply changes": "변경 사항을 완전히 적용하려면 UniGetUI를 다시 시작하세요", + "Restart WingetUI": "UniGetUI 다시 시작", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "설정 앱에서 UniGetUI 자동 시작 동작 관리", "(Number {0} in the queue)": "(대기열의 {0}번)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@VenusGirl, @thejjw, @shblue21, @minbert, @jihoon416, @MuscularPuky ", "0 packages found": "0개 패키지 찾음", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ku.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ku.json index c220edf243..b976f7221f 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ku.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ku.json @@ -1,1075 +1,1155 @@ { - "Operation in progress": "", - "Please wait...": "", - "Success!": "", - "Failed": "", - "An error occurred while processing this package": "", - "Log in to enable cloud backup": "", - "Backup Failed": "", - "Downloading backup...": "", - "An update was found!": "", - "{0} can be updated to version {1}": "", - "Updates found!": "", - "{0} packages can be updated": "", - "You have currently version {0} installed": "", - "Desktop shortcut created": "", - "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "", - "{0} desktop shortcuts created": "", - "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "", - "Are you sure?": "", - "Do you really want to uninstall {0}?": "", - "Do you really want to uninstall the following {0} packages?": "", - "No": "", - "Yes": "", - "View on UniGetUI": "", - "Update": "", - "Open UniGetUI": "", - "Update all": "", - "Update now": "", - "This package is on the queue": "", - "installing": "", - "updating": "", - "uninstalling": "", - "installed": "", - "Retry": "", - "Install": "", - "Uninstall": "", - "Open": "", - "Operation profile:": "", - "Follow the default options when installing, upgrading or uninstalling this package": "", - "The following settings will be applied each time this package is installed, updated or removed.": "", - "Version to install:": "", - "Architecture to install:": "", - "Installation scope:": "", - "Install location:": "", - "Select": "", - "Reset": "", - "Custom install arguments:": "", - "Custom update arguments:": "", - "Custom uninstall arguments:": "", - "Pre-install command:": "", - "Post-install command:": "", - "Abort install if pre-install command fails": "", - "Pre-update command:": "", - "Post-update command:": "", - "Abort update if pre-update command fails": "", - "Pre-uninstall command:": "", - "Post-uninstall command:": "", - "Abort uninstall if pre-uninstall command fails": "", - "Command-line to run:": "", - "Save and close": "", - "Run as admin": "", - "Interactive installation": "", - "Skip hash check": "", - "Uninstall previous versions when updated": "", - "Skip minor updates for this package": "", - "Automatically update this package": "", - "{0} installation options": "", - "Latest": "", - "PreRelease": "", - "Default": "", - "Manage ignored updates": "", - "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "", - "Reset list": "", - "Package Name": "", - "Package ID": "", - "Ignored version": "", - "New version": "", - "Source": "", - "All versions": "", - "Unknown": "", - "Up to date": "", - "Cancel": "", - "Administrator privileges": "", - "This operation is running with administrator privileges.": "", - "Interactive operation": "", - "This operation is running interactively.": "", - "You will likely need to interact with the installer.": "", - "Integrity checks skipped": "", - "Proceed at your own risk.": "", - "Close": "", - "Loading...": "", - "Installer SHA256": "", - "Homepage": "", - "Author": "", - "Publisher": "", - "License": "", - "Manifest": "", - "Installer Type": "", - "Size": "", - "Installer URL": "", - "Last updated:": "", - "Release notes URL": "", - "Package details": "", - "Dependencies:": "", - "Release notes": "", - "Version": "", - "Install as administrator": "", - "Update to version {0}": "", - "Installed Version": "", - "Update as administrator": "", - "Interactive update": "", - "Uninstall as administrator": "", - "Interactive uninstall": "", - "Uninstall and remove data": "", - "Not available": "", - "Installer SHA512": "", - "Unknown size": "", - "No dependencies specified": "", - "mandatory": "", - "optional": "", - "UniGetUI {0} is ready to be installed.": "", - "The update process will start after closing UniGetUI": "", - "Share anonymous usage data": "", - "UniGetUI collects anonymous usage data in order to improve the user experience.": "", - "Accept": "", - "You have installed WingetUI Version {0}": "", - "Disclaimer": "", - "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "{0} homepage": "", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "", - "Verbose": "", - "1 - Errors": "", - "2 - Warnings": "", - "3 - Information (less)": "", - "4 - Information (more)": "", - "5 - information (debug)": "", - "Warning": "", - "The following settings may pose a security risk, hence they are disabled by default.": "", - "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "", - "The settings will list, in their descriptions, the potential security issues they may have.": "", - "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "", - "The backup will NOT include any binary file nor any program's saved data.": "", - "The size of the backup is estimated to be less than 1MB.": "", - "The backup will be performed after login.": "", - "{pcName} installed packages": "", - "Current status: Not logged in": "", - "You are logged in as {0} (@{1})": "", - "Nice! Backups will be uploaded to a private gist on your account": "", - "Select backup": "", - "WingetUI Settings": "", - "Allow pre-release versions": "", - "Apply": "", - "Go to UniGetUI security settings": "", - "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "", - "Package's default": "", - "Install location can't be changed for {0} packages": "", - "The local icon cache currently takes {0} MB": "", - "Username": "", - "Password": "", - "Credentials": "", - "Partially": "", - "Package manager": "", - "Compatible with proxy": "", - "Compatible with authentication": "", - "Proxy compatibility table": "", - "{0} settings": "", - "{0} status": "", - "Default installation options for {0} packages": "", - "Expand version": "", - "The executable file for {0} was not found": "", - "{pm} is disabled": "", - "Enable it to install packages from {pm}.": "", - "{pm} is enabled and ready to go": "", - "{pm} version:": "", - "{pm} was not found!": "", - "You may need to install {pm} in order to use it with WingetUI.": "", - "Scoop Installer - WingetUI": "", - "Scoop Uninstaller - WingetUI": "", - "Clearing Scoop cache - WingetUI": "", - "Restart UniGetUI": "", - "Manage {0} sources": "", - "Add source": "", - "Add": "", - "Other": "", - "1 day": "", - "{0} days": "", - "{0} minutes": "", - "1 hour": "", - "{0} hours": "", - "1 week": "", - "WingetUI Version {0}": "", - "Search for packages": "", - "Local": "", - "OK": "", - "{0} packages were found, {1} of which match the specified filters.": "", - "{0} selected": "", - "(Last checked: {0})": "", - "Enabled": "", - "Disabled": "", - "More info": "", - "Log in with GitHub to enable cloud package backup.": "", - "More details": "", - "Log in": "", - "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "", - "Log out": "", - "About": "", - "Third-party licenses": "", - "Contributors": "", - "Translators": "", - "Manage shortcuts": "", - "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "", - "Do you really want to reset this list? This action cannot be reverted.": "", - "Remove from list": "", - "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "", - "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "", - "More details about the shared data and how it will be processed": "", - "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "", - "Decline": "", - "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "", - "About WingetUI": "", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "", - "Useful links": "", - "Report an issue or submit a feature request": "", - "View GitHub Profile": "", - "WingetUI License": "", - "Using WingetUI implies the acceptation of the MIT License": "", - "Become a translator": "", - "View page on browser": "", - "Copy to clipboard": "", - "Export to a file": "", - "Log level:": "", - "Reload log": "", - "Text": "", - "Change how operations request administrator rights": "", - "Restrictions on package operations": "", - "Restrictions on package managers": "", - "Restrictions when importing package bundles": "", - "Ask for administrator privileges once for each batch of operations": "", - "Ask only once for administrator privileges": "", - "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "", - "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "", - "Allow custom command-line arguments": "", - "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "", - "Allow changing the paths for package manager executables": "", - "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "", - "Allow importing custom command-line arguments when importing packages from a bundle": "", - "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "", - "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "", - "Administrator rights and other dangerous settings": "", - "Package backup": "", - "Cloud package backup": "", - "Local package backup": "", - "Local backup advanced options": "", - "Log in with GitHub": "", - "Log out from GitHub": "", - "Periodically perform a cloud backup of the installed packages": "", - "Cloud backup uses a private GitHub Gist to store a list of installed packages": "", - "Perform a cloud backup now": "", - "Backup": "", - "Restore a backup from the cloud": "", - "Begin the process to select a cloud backup and review which packages to restore": "", - "Periodically perform a local backup of the installed packages": "", - "Perform a local backup now": "", - "Change backup output directory": "", - "Set a custom backup file name": "", - "Leave empty for default": "", - "Add a timestamp to the backup file names": "", - "Backup and Restore": "", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "", - "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "", - "Disable the 1-minute timeout for package-related operations": "", - "Use installed GSudo instead of UniGetUI Elevator": "", - "Use a custom icon and screenshot database URL": "", - "Enable background CPU Usage optimizations (see Pull Request #3278)": "", - "Perform integrity checks at startup": "", - "When batch installing packages from a bundle, install also packages that are already installed": "", - "Experimental settings and developer options": "", - "Show UniGetUI's version and build number on the titlebar.": "", - "Language": "", - "UniGetUI updater": "", - "Telemetry": "", - "Manage UniGetUI settings": "", - "Related settings": "", - "Update WingetUI automatically": "", - "Check for updates": "", - "Install prerelease versions of UniGetUI": "", - "Manage telemetry settings": "", - "Manage": "", - "Import settings from a local file": "", - "Import": "", - "Export settings to a local file": "", - "Export": "", - "Reset WingetUI": "", - "Reset UniGetUI": "", - "User interface preferences": "", - "Application theme, startup page, package icons, clear successful installs automatically": "", - "General preferences": "", - "WingetUI display language:": "", - "Is your language missing or incomplete?": "", - "Appearance": "", - "UniGetUI on the background and system tray": "", - "Package lists": "", - "Close UniGetUI to the system tray": "", - "Show package icons on package lists": "", - "Clear cache": "", - "Select upgradable packages by default": "", - "Light": "", - "Dark": "", - "Follow system color scheme": "", - "Application theme:": "", - "Discover Packages": "", - "Software Updates": "", - "Installed Packages": "", - "Package Bundles": "", - "Settings": "", - "UniGetUI startup page:": "", - "Proxy settings": "", - "Other settings": "", - "Connect the internet using a custom proxy": "", - "Please note that not all package managers may fully support this feature": "", - "Proxy URL": "", - "Enter proxy URL here": "", - "Package manager preferences": "", - "Ready": "", - "Not found": "", - "Notification preferences": "", - "Notification types": "", - "The system tray icon must be enabled in order for notifications to work": "", - "Enable WingetUI notifications": "", - "Show a notification when there are available updates": "", - "Show a silent notification when an operation is running": "", - "Show a notification when an operation fails": "", - "Show a notification when an operation finishes successfully": "", - "Concurrency and execution": "", - "Automatic desktop shortcut remover": "", - "Clear successful operations from the operation list after a 5 second delay": "", - "Download operations are not affected by this setting": "", - "Try to kill the processes that refuse to close when requested to": "", - "You may lose unsaved data": "", - "Ask to delete desktop shortcuts created during an install or upgrade.": "", - "Package update preferences": "", - "Update check frequency, automatically install updates, etc.": "", - "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "", - "Package operation preferences": "", - "Enable {pm}": "", - "Not finding the file you are looking for? Make sure it has been added to path.": "", - "For security reasons, changing the executable file is disabled by default": "", - "Change this": "", - "Select the executable to be used. The following list shows the executables found by UniGetUI": "", - "Current executable file:": "", - "Ignore packages from {pm} when showing a notification about updates": "", - "View {0} logs": "", - "Advanced options": "", - "Reset WinGet": "", - "This may help if no packages are listed": "", - "Force install location parameter when updating packages with custom locations": "", - "Use bundled WinGet instead of system WinGet": "", - "This may help if WinGet packages are not shown": "", - "Install Scoop": "", - "Uninstall Scoop (and its packages)": "", - "Run cleanup and clear cache": "", - "Run": "", - "Enable Scoop cleanup on launch": "", - "Use system Chocolatey": "", - "Default vcpkg triplet": "", - "Language, theme and other miscellaneous preferences": "", - "Show notifications on different events": "", - "Change how UniGetUI checks and installs available updates for your packages": "", - "Automatically save a list of all your installed packages to easily restore them.": "", - "Enable and disable package managers, change default install options, etc.": "", - "Internet connection settings": "", - "Proxy settings, etc.": "", - "Beta features and other options that shouldn't be touched": "", - "Update checking": "", - "Automatic updates": "", - "Check for package updates periodically": "", - "Check for updates every:": "", - "Install available updates automatically": "", - "Do not automatically install updates when the network connection is metered": "", - "Do not automatically install updates when the device runs on battery": "", - "Do not automatically install updates when the battery saver is on": "", - "Change how UniGetUI handles install, update and uninstall operations.": "", - "Package Managers": "", - "More": "", - "WingetUI Log": "", - "Package Manager logs": "", - "Operation history": "", - "Help": "", - "Order by:": "", - "Name": "", - "Id": "", - "Ascendant": "", - "Descendant": "", - "View mode:": "", - "Filters": "", - "Sources": "", - "Search for packages to start": "", - "Select all": "", - "Clear selection": "", - "Instant search": "", - "Distinguish between uppercase and lowercase": "", - "Ignore special characters": "", - "Search mode": "", - "Both": "", - "Exact match": "", - "Show similar packages": "", - "No results were found matching the input criteria": "", - "No packages were found": "", - "Loading packages": "", - "Skip integrity checks": "", - "Download selected installers": "", - "Install selection": "", - "Install options": "", - "Share": "", - "Add selection to bundle": "", - "Download installer": "", - "Share this package": "", - "Uninstall selection": "", - "Uninstall options": "", - "Ignore selected packages": "", - "Open install location": "", - "Reinstall package": "", - "Uninstall package, then reinstall it": "", - "Ignore updates for this package": "", - "Do not ignore updates for this package anymore": "", - "Add packages or open an existing package bundle": "", - "Add packages to start": "", - "The current bundle has no packages. Add some packages to get started": "", - "New": "", - "Save as": "", - "Remove selection from bundle": "", - "Skip hash checks": "", - "The package bundle is not valid": "", - "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "", - "Package bundle": "", - "Could not create bundle": "", - "The package bundle could not be created due to an error.": "", - "Bundle security report": "", - "Hooray! No updates were found.": "", - "Everything is up to date": "", - "Uninstall selected packages": "", - "Update selection": "", - "Update options": "", - "Uninstall package, then update it": "", - "Uninstall package": "", - "Skip this version": "", - "Pause updates for": "", - "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "", - "The classical package manager for windows. You'll find everything there.
Contains: General Software": "", - "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "", - "NuPkg (zipped manifest)": "", - "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "", - "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "", - "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "", - "extracted": "", - "Scoop package": "", - "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "", - "library": "", - "feature": "", - "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "", - "option": "", - "This package cannot be installed from an elevated context.": "", - "Please run UniGetUI as a regular user and try again.": "", - "Please check the installation options for this package and try again": "", - "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "", - "Local PC": "", - "Android Subsystem": "", - "Operation on queue (position {0})...": "", - "Click here for more details": "", - "Operation canceled by user": "", - "Starting operation...": "", - "{package} installer download": "", - "{0} installer is being downloaded": "", - "Download succeeded": "", - "{package} installer was downloaded successfully": "", - "Download failed": "", - "{package} installer could not be downloaded": "", - "{package} Installation": "", - "{0} is being installed": "", - "Installation succeeded": "", - "{package} was installed successfully": "", - "Installation failed": "", - "{package} could not be installed": "", - "{package} Update": "", - "{0} is being updated to version {1}": "", - "Update succeeded": "", - "{package} was updated successfully": "", - "Update failed": "", - "{package} could not be updated": "", - "{package} Uninstall": "", - "{0} is being uninstalled": "", - "Uninstall succeeded": "", - "{package} was uninstalled successfully": "", - "Uninstall failed": "", - "{package} could not be uninstalled": "", - "Adding source {source}": "", - "Adding source {source} to {manager}": "", - "Source added successfully": "", - "The source {source} was added to {manager} successfully": "", - "Could not add source": "", - "Could not add source {source} to {manager}": "", - "Removing source {source}": "", - "Removing source {source} from {manager}": "", - "Source removed successfully": "", - "The source {source} was removed from {manager} successfully": "", - "Could not remove source": "", - "Could not remove source {source} from {manager}": "", - "The package manager \"{0}\" was not found": "", - "The package manager \"{0}\" is disabled": "", - "There is an error with the configuration of the package manager \"{0}\"": "", - "The package \"{0}\" was not found on the package manager \"{1}\"": "", - "{0} is disabled": "", - "Something went wrong": "", - "An interal error occurred. Please view the log for further details.": "", - "No applicable installer was found for the package {0}": "", - "We are checking for updates.": "", - "Please wait": "", - "UniGetUI version {0} is being downloaded.": "", - "This may take a minute or two": "", - "The installer authenticity could not be verified.": "", - "The update process has been aborted.": "", - "Great! You are on the latest version.": "", - "There are no new UniGetUI versions to be installed": "", - "An error occurred when checking for updates: ": "", - "UniGetUI is being updated...": "", - "Something went wrong while launching the updater.": "", - "Please try again later": "", - "Integrity checks will not be performed during this operation": "", - "This is not recommended.": "", - "Run now": "", - "Run next": "", - "Run last": "", - "Retry as administrator": "", - "Retry interactively": "", - "Retry skipping integrity checks": "", - "Installation options": "", - "Show in explorer": "", - "This package is already installed": "", - "This package can be upgraded to version {0}": "", - "Updates for this package are ignored": "", - "This package is being processed": "", - "This package is not available": "", - "Select the source you want to add:": "", - "Source name:": "", - "Source URL:": "", - "An error occurred": "", - "An error occurred when adding the source: ": "", - "Package management made easy": "", - "version {0}": "", - "[RAN AS ADMINISTRATOR]": "", - "Portable mode": "", - "DEBUG BUILD": "", - "Available Updates": "", - "Show WingetUI": "", - "Quit": "", - "Attention required": "", - "Restart required": "", - "1 update is available": "", - "{0} updates are available": "", - "WingetUI Homepage": "", - "WingetUI Repository": "", - "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "", - "Manual scan": "", - "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "", - "Continue": "", - "Delete?": "", - "Missing dependency": "", - "Not right now": "", - "Install {0}": "", - "UniGetUI requires {0} to operate, but it was not found on your system.": "", - "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "", - "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "", - "Do not show this dialog again for {0}": "", - "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "", - "{0} has been installed successfully.": "", - "Please click on \"Continue\" to continue": "", - "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "", - "Restart later": "", - "An error occurred:": "", - "I understand": "", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "", - "WinGet was repaired successfully": "", - "It is recommended to restart UniGetUI after WinGet has been repaired": "", - "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "", - "Restart": "", - "WinGet could not be repaired": "", - "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "", - "Are you sure you want to delete all shortcuts?": "", - "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "", - "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "", - "Are you really sure you want to enable this feature?": "", - "No new shortcuts were found during the scan.": "", - "How to add packages to a bundle": "", - "In order to add packages to a bundle, you will need to: ": "", - "1. Navigate to the \"{0}\" or \"{1}\" page.": "", - "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "", - "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "", - "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "", - "Which backup do you want to open?": "", - "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "", - "UniGetUI or some of its components are missing or corrupt.": "", - "It is strongly recommended to reinstall UniGetUI to adress the situation.": "", - "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "", - "Integrity checks can be disabled from the Experimental Settings": "", - "Repair UniGetUI": "", - "Live output": "", - "Package not found": "", - "An error occurred when attempting to show the package with Id {0}": "", - "Package": "", - "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "", - "Entries that show in YELLOW will be IGNORED.": "", - "Entries that show in RED will be IMPORTED.": "", - "You can change this behavior on UniGetUI security settings.": "", - "Open UniGetUI security settings": "", - "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "", - "Details of the report:": "", - "\"{0}\" is a local package and can't be shared": "", - "Are you sure you want to create a new package bundle? ": "", - "Any unsaved changes will be lost": "", - "Warning!": "", - "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "", - "Change default options": "", - "Ignore future updates for this package": "", - "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "", - "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "", - "Change this and unlock": "", - "{0} Install options are currently locked because {0} follows the default install options.": "", - "Select the processes that should be closed before this package is installed, updated or uninstalled.": "", - "Write here the process names here, separated by commas (,)": "", - "Unset or unknown": "", - "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "", - "Become a contributor": "", - "Save": "", - "Update to {0} available": "", - "Reinstall": "", - "Installer not available": "", - "Version:": "", - "Performing backup, please wait...": "", - "An error occurred while logging in: ": "", - "Fetching available backups...": "", - "Done!": "", - "The cloud backup has been loaded successfully.": "", - "An error occurred while loading a backup: ": "", - "Backing up packages to GitHub Gist...": "", - "Backup Successful": "", - "The cloud backup completed successfully.": "", - "Could not back up packages to GitHub Gist: ": "", - "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "", - "Enable the automatic WinGet troubleshooter": "", - "Enable an [experimental] improved WinGet troubleshooter": "", - "Add updates that fail with a 'no applicable update found' to the ignored updates list": "", - "Restart WingetUI to fully apply changes": "", - "Restart WingetUI": "", - "Invalid selection": "", - "No package was selected": "", - "More than 1 package was selected": "", - "List": "", - "Grid": "", - "Icons": "", - "\"{0}\" is a local package and does not have available details": "", - "\"{0}\" is a local package and is not compatible with this feature": "", - "WinGet malfunction detected": "", - "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "", - "Repair WinGet": "", - "Create .ps1 script": "", - "Add packages to bundle": "", - "Preparing packages, please wait...": "", - "Loading packages, please wait...": "", - "Saving packages, please wait...": "", - "The bundle was created successfully on {0}": "", - "Install script": "", - "The installation script saved to {0}": "", - "An error occurred while attempting to create an installation script:": "", - "{0} packages are being updated": "", - "Error": "", - "Log in failed: ": "", - "Log out failed: ": "", - "Package backup settings": "", + "Operation in progress": "کردار لە جێبەجێکردندایە", + "Please wait...": "تکایە چاوەڕێ بکە...", + "Success!": "سەرکەوتوو بوو!", + "Failed": "شکستی هێنا", + "An error occurred while processing this package": "لە کاتی پرۆسەکردنی ئەم پاکێجە هەڵەیەک ڕوویدا", + "Log in to enable cloud backup": "بچۆرە ژوورەوە بۆ چالاککردنی پاشەکەوتی هەور", + "Backup Failed": "پاشەکەوتکردن شکستی هێنا", + "Downloading backup...": "پاشەکەوت دادەبەزێت...", + "An update was found!": "نوێکردنەوەیەک دۆزرایەوە!", + "{0} can be updated to version {1}": "{0} دەتوانرێت بۆ وەشانی {1} نوێ بکرێتەوە", + "Updates found!": "نوێکردنەوە دۆزرایەوە!", + "{0} packages can be updated": "{0} پاکێج دەتوانرێت نوێ بکرێتەوە", + "You have currently version {0} installed": "ئێستا وەشانی {0}ت دامەزراوە", + "Desktop shortcut created": "کورتڕێی سەر مێز دروست کرا", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI کورتڕێیەکی نوێی سەر مێزی دۆزییەوە کە دەتوانرێت بە شێوەی خۆکار بسڕدرێتەوە.", + "{0} desktop shortcuts created": "{0} کورتڕێی سەر مێز دروست کرا", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI {0} کورتڕێی نوێی سەر مێزی دۆزییەوە کە دەتوانرێت بە شێوەی خۆکار بسڕدرێنەوە.", + "Are you sure?": "دڵنیایت؟", + "Do you really want to uninstall {0}?": "بەڕاستی دەتەوێت {0} بسڕیتەوە؟", + "Do you really want to uninstall the following {0} packages?": "بەڕاستی دەتەوێت ئەم {0} پاکێجەی خوارەوە بسڕیتەوە؟", + "No": "نەخێر", + "Yes": "بەڵێ", + "View on UniGetUI": "لە UniGetUI بیبینە", + "Update": "نوێی بکەرەوە", + "Open UniGetUI": "UniGetUI بکەرەوە", + "Update all": "هەمووی نوێ بکەرەوە", + "Update now": "ئێستا نوێی بکەرەوە", + "This package is on the queue": "ئەم پاکێجە لە ڕیزدایە", + "installing": "لە دامەزراندندایە", + "updating": "لە نوێکردنەوەدایە", + "uninstalling": "لە سڕینەوەدایە", + "installed": "دامەزراوە", + "Retry": "دووبارە هەوڵبدەوە", + "Install": "دامەزرێنە", + "Uninstall": "بسڕەوە", + "Open": "بیکەرەوە", + "Operation profile:": "پرۆفایلی کردار:", + "Follow the default options when installing, upgrading or uninstalling this package": "لە دامەزراندن، نوێکردنەوە یان سڕینەوەی ئەم پاکێجەدا هەڵبژاردە بنەڕەتییەکان بەکاربهێنە", + "The following settings will be applied each time this package is installed, updated or removed.": "ئەم ڕێکخستنانەی خوارەوە هەموو جارێک کە ئەم پاکێجە دادەمەزرێت، نوێ دەکرێتەوە یان لادەبرێت جێبەجێ دەکرێن.", + "Version to install:": "وەشانی بۆ دامەزراندن:", + "Architecture to install:": "مەعماری بۆ دامەزراندن:", + "Installation scope:": "مەودای دامەزراندن:", + "Install location:": "شوێنی دامەزراندن:", + "Select": "هەڵبژێرە", + "Reset": "ڕێکبخەرەوە", + "Custom install arguments:": "ئارگومێنتی تایبەتی دامەزراندن:", + "Custom update arguments:": "ئارگومێنتی تایبەتی نوێکردنەوە:", + "Custom uninstall arguments:": "ئارگومێنتی تایبەتی سڕینەوە:", + "Pre-install command:": "فەرمانی پێش دامەزراندن:", + "Post-install command:": "فەرمانی دوای دامەزراندن:", + "Abort install if pre-install command fails": "ئەگەر فەرمانی پێش دامەزراندن شکستی هێنا، دامەزراندن بوەستێنە", + "Pre-update command:": "فەرمانی پێش نوێکردنەوە:", + "Post-update command:": "فەرمانی دوای نوێکردنەوە:", + "Abort update if pre-update command fails": "ئەگەر فەرمانی پێش نوێکردنەوە شکستی هێنا، نوێکردنەوە بوەستێنە", + "Pre-uninstall command:": "فەرمانی پێش سڕینەوە:", + "Post-uninstall command:": "فەرمانی دوای سڕینەوە:", + "Abort uninstall if pre-uninstall command fails": "ئەگەر فەرمانی پێش سڕینەوە شکستی هێنا، سڕینەوە بوەستێنە", + "Command-line to run:": "هێڵی فەرمان بۆ جێبەجێکردن:", + "Save and close": "پاشەکەوت بکە و دایبخە", + "General": "گشتی", + "Architecture & Location": "مەعماری و شوێن", + "Command-line": "هێڵی فەرمان", + "Pre/Post install": "پێش/دوای دامەزراندن", + "Run as admin": "وەک بەڕێوەبەر بیخەرە کار", + "Interactive installation": "دامەزراندنی کارلێککار", + "Skip hash check": "پشکنینی hash پشتگوێ بخە", + "Uninstall previous versions when updated": "کاتی نوێکردنەوە وەشانەکانی پێشوو بسڕەوە", + "Skip minor updates for this package": "نوێکردنەوە بچووکەکانی ئەم پاکێجە پشتگوێ بخە", + "Automatically update this package": "ئەم پاکێجە بە شێوەی خۆکار نوێ بکەرەوە", + "{0} installation options": "هەڵبژاردەکانی دامەزراندنی {0}", + "Latest": "دواین", + "PreRelease": "پێش-بڵاوکردنەوە", + "Default": "بنەڕەتی", + "Manage ignored updates": "بەڕێوەبردنی نوێکردنەوە پشتگوێخراوەکان", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "ئەو پاکێجانەی لێرە لیست کراون لە کاتی پشکنینی نوێکردنەوەدا لەبەرچاو ناگیرێن. دووجار لەسەریان کلیک بکە یان لە دوگمەی لای ڕاستیان کلیک بکە بۆ وەستاندنی پشتگوێخستنی نوێکردنەوەکانیان.", + "Reset list": "لیستەکە ڕێکبخەرەوە", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "بەڕاستی دەتەوێت لیستی نوێکردنەوە پشتگوێخراوەکان ڕێکبخەیتەوە؟ ئەم کردارە ناگەڕێتەوە", + "No ignored updates": "هیچ نوێکردنەوەیەک پشتگوێ نەخراوە", + "Package Name": "ناوی پاکێج", + "Package ID": "IDی پاکێج", + "Ignored version": "وەشانی پشتگوێخراو", + "New version": "وەشانی نوێ", + "Source": "سەرچاوە", + "All versions": "هەموو وەشانەکان", + "Unknown": "نادیار", + "Up to date": "تا دواین وەشانە", + "Cancel": "هەڵوەشاندنەوە", + "Administrator privileges": "دەسەڵاتەکانی بەڕێوەبەر", + "This operation is running with administrator privileges.": "ئەم کردارە بە دەسەڵاتەکانی بەڕێوەبەر جێبەجێ دەکرێت.", + "Interactive operation": "کرداری کارلێککار", + "This operation is running interactively.": "ئەم کردارە بە شێوەی کارلێککار جێبەجێ دەکرێت.", + "You will likely need to interact with the installer.": "زۆرەوە پێویستت دەبێت لەگەڵ دامەزرێنەرەکە کارلێک بکەیت.", + "Integrity checks skipped": "پشکنینەکانی تەواویێتی پشتگوێ خران", + "Integrity checks will not be performed during this operation.": "لە ماوەی ئەم کردارەدا پشکنینەکانی تەواویێتی ئەنجام نادرێن.", + "Proceed at your own risk.": "بە مەترسیی خۆت بەردەوام بە.", + "Close": "دایبخە", + "Loading...": "باردەکرێت...", + "Installer SHA256": "SHA256ی دامەزرێنەر", + "Homepage": "ماڵپەڕی سەرەکی", + "Author": "نووسەر", + "Publisher": "بڵاوکەرەوە", + "License": "مۆڵەتنامە", + "Manifest": "مانیفێست", + "Installer Type": "جۆری دامەزرێنەر", + "Size": "قەبارە", + "Installer URL": "بەستەری دامەزرێنەر", + "Last updated:": "دوایین نوێکردنەوە:", + "Release notes URL": "بەستەری تێبینییەکانی وەشاندن", + "Package details": "وردەکارییەکانی پاکێج", + "Dependencies:": "پێویستییەکان:", + "Release notes": "تێبینییەکانی وەشاندن", + "Version": "وەشان", + "Install as administrator": "وەک بەڕێوەبەری سیستەم دابمەزرێنە", + "Update to version {0}": "بۆ وەشانی {0} نوێ بکەرەوە", + "Installed Version": "وەشانی دامەزراو", + "Update as administrator": "وەک بەڕێوەبەری سیستەم نوێ بکەرەوە", + "Interactive update": "نوێکردنەوەی کارلێککارانە", + "Uninstall as administrator": "وەک بەڕێوەبەری سیستەم بیسڕەوە", + "Interactive uninstall": "سڕینەوەی کارلێککارانە", + "Uninstall and remove data": "بیسڕەوە و داتاکەش لاببە", + "Not available": "بەردەست نییە", + "Installer SHA512": "SHA512ی دامەزرێنەر", + "Unknown size": "قەبارە نەزانراوە", + "No dependencies specified": "هیچ پێویستییەک دیاری نەکراوە", + "mandatory": "پێویست", + "optional": "ئیختیاری", + "UniGetUI {0} is ready to be installed.": "UniGetUI {0} ئامادەیە بۆ دامەزراندن.", + "The update process will start after closing UniGetUI": "پرۆسەی نوێکردنەوەکە دوای داخستنی UniGetUI دەست پێ دەکات", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI وەک بەڕێوەبەری سیستەم کارپێکراوە، کە پێشنیار ناکرێت. کاتێک UniGetUI وەک بەڕێوەبەری سیستەم کار پێدەکات، هەموو کردارێک کە لە UniGetUI دەست پێ دەکرێت دەسەڵاتی بەڕێوەبەری سیستەمی دەبێت. دەتوانیت هێشتا بەرنامەکە بەکاربهێنیت، بەڵام بە توندی پێشنیار دەکەین UniGetUI بە دەسەڵاتی بەڕێوەبەری سیستەم مەخەنە کار.", + "Share anonymous usage data": "داتای بەکارهێنانی نەناسراو هاوبەش بکە", + "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI داتای بەکارهێنانی نەناسراو کۆدەکاتەوە بۆ باشترکردنی ئەزموونی بەکارهێنەر.", + "Accept": "قبووڵ بکە", + "You have installed UniGetUI Version {0}": "UniGetUI وەشانی {0}ت دامەزراندووە", + "Disclaimer": "ئاگادارکردنەوە", + "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI هیچ پەیوەندییەکی بە هیچ کام لە بەڕێوەبەرانی پاکێجی گونجاوەوە نییە. UniGetUI پڕۆژەیەکی سەربەخۆیە.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI ئەم کتێبخانانەی خوارەوە بەکاردەهێنێت. بەبێ ئەوان، UniGetUI نەدەکرا.", + "{0} homepage": "ماڵپەڕی سەرەکی {0}", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "Verbose": "ورد", + "1 - Errors": "1 - هەڵەکان", + "2 - Warnings": "2 - ئاگادارکردنەوەکان", + "3 - Information (less)": "3 - زانیاری (کەمتر)", + "4 - Information (more)": "4 - زانیاری (زیاتر)", + "5 - information (debug)": "5 - زانیاری (دیباگ)", + "Warning": "ئاگادارکردنەوە", + "The following settings may pose a security risk, hence they are disabled by default.": "ڕێکخستنەکانی خوارەوە لەوانەیە مەترسییەکی ئاسایشی دروست بکەن، بۆیە بە شێوەی بنەڕەتی ناچالاکن.", + "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "تەنها ئەوکات ڕێکخستنەکانی خوارەوە چالاک بکە کە بە تەواوی تێدەگەیت چی دەکەن و چی لێی دەکەوێتەوە.", + "The settings will list, in their descriptions, the potential security issues they may have.": "لە وەسفەکانیاندا، ڕێکخستنەکان کێشە ئاسایشییە ئەگەرییەکانی خۆیان باس دەکەن.", + "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "پاڵپشتییەکە لیستی تەواوی پاکێجە دامەزراوەکان و هەڵبژاردەکانی دامەزراندنیان لەخۆ دەگرێت. نوێکردنەوە پشتگوێخراوەکان و وەشانە بازدراوەکانیش هەڵدەگیرێن.", + "The backup will NOT include any binary file nor any program's saved data.": "پاڵپشتییەکە هیچ پەڕگەی باینەری یان هیچ داتای هەڵگیراوی بەرنامەیەک لەخۆ ناگرێت.", + "The size of the backup is estimated to be less than 1MB.": "پێشبینی دەکرێت قەبارەی پاڵپشتییەکە لە 1MB کەمتر بێت.", + "The backup will be performed after login.": "پاڵپشتییەکە دوای چوونەژوورەوە ئەنجام دەدرێت.", + "{pcName} installed packages": "پاکێجە دامەزراوەکانی {pcName}", + "Current status: Not logged in": "دۆخی ئێستا: نەچووە ژوورەوە", + "You are logged in as {0} (@{1})": "وەک {0} (@{1}) چوویتە ژوورەوە", + "Nice! Backups will be uploaded to a private gist on your account": "باشە! پاڵپشتییەکان بۆ gistێکی تایبەت لە هەژمارەکەت بار دەکرێن", + "Select backup": "پاڵپشتی هەڵبژێرە", + "UniGetUI Settings": "ڕێکخستنەکانی UniGetUI", + "Allow pre-release versions": "ڕێگە بدە بە وەشانەکانی پێش بڵاوکردنەوە", + "Apply": "جێبەجێ بکە", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "بەهۆی هۆکاری ئاسایشییەوە، ئارگیومێنتی هێڵی فەرمانی تایبەت بە شێوەی بنەڕەتی ناچالاکە. بۆ گۆڕینی ئەمە بچۆ بۆ ڕێکخستنە ئاسایشییەکانی UniGetUI.", + "Go to UniGetUI security settings": "بچۆ بۆ ڕێکخستنە ئاسایشییەکانی UniGetUI", + "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "هەڵبژاردەکانی خوارەوە بە شێوەی بنەڕەتی هەر کاتێک پاکێجێکی {0} دادەمەزرێت، نوێ دەکرێتەوە یان دەسڕدرێتەوە جێبەجێ دەکرێن.", + "Package's default": "بنەڕەتی پاکێج", + "Install location can't be changed for {0} packages": "شوێنی دامەزراندن بۆ پاکێجەکانی {0} ناگۆڕدرێت", + "The local icon cache currently takes {0} MB": "کاشی ئایکۆنی ناوخۆیی لە ئێستادا {0} MB جێگا دەگرێت", + "Username": "ناوی بەکارهێنەر", + "Password": "وشەی نهێنی", + "Credentials": "بڕوانامەکان", + "It is not guaranteed that the provided credentials will be stored safely": "دڵنیایی نییە بڕوانامە دابینکراوەکان بە ئاسایشی هەڵبگیرێن", + "Partially": "بەشێک", + "Package manager": "بەڕێوەبەری پاکێج", + "Compatible with proxy": "لەگەڵ proxy گونجاوە", + "Compatible with authentication": "لەگەڵ پشتڕاستکردنەوە گونجاوە", + "Proxy compatibility table": "خشتەی گونجانی proxy", + "{0} settings": "ڕێکخستنەکانی {0}", + "{0} status": "دۆخی {0}", + "Default installation options for {0} packages": "هەڵبژاردە بنەڕەتییەکانی دامەزراندن بۆ پاکێجەکانی {0}", + "Expand version": "وەشان فراوان بکە", + "The executable file for {0} was not found": "پەڕگەی جێبەجێکراوی {0} نەدۆزرایەوە", + "{pm} is disabled": "{pm} ناچالاکە", + "Enable it to install packages from {pm}.": "بۆ دامەزراندنی پاکێج لە {pm}، چالاکی بکە.", + "{pm} is enabled and ready to go": "{pm} چالاکە و ئامادەی کارکردنە", + "{pm} version:": "وەشانی {pm}:", + "{pm} was not found!": "{pm} نەدۆزرایەوە!", + "You may need to install {pm} in order to use it with UniGetUI.": "لەوانەیە پێویست بێت {pm} دابمەزرێنیت بۆ ئەوەی لەگەڵ UniGetUI بەکاریبهێنیت.", + "Scoop Installer - UniGetUI": "دامەزرێنەری Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "سڕەرەوەی Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "پاککردنەوەی کاشی Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "UniGetUI دووبارە دەست پێ بکەرەوە بۆ جێبەجێکردنی تەواوی گۆڕانکارییەکان", + "Restart UniGetUI": "UniGetUI دووبارە دەست پێ بکەرەوە", + "Manage {0} sources": "سەرچاوەکانی {0} بەڕێوەبەرە", + "Add source": "سەرچاوە زیاد بکە", + "Add": "زیاد بکە", + "Source name": "ناوی سەرچاوە", + "Source URL": "بەستەری سەرچاوە", + "Other": "تر", + "No minimum age": "هیچ کەمترین ماوەیەک نییە", + "1 day": "1 ڕۆژ", + "{0} days": "{0} ڕۆژ", + "Custom...": "تایبەت...", + "{0} minutes": "{0} خولەک", + "1 hour": "یەک کاتژمێر", + "{0} hours": "{0} کاتژمێر", + "1 week": "1 هەفتە", + "Supports release dates": "پشتیوانی لە بەرواری بڵاوکردنەوە دەکات", + "Release date support per package manager": "پشتیوانی بەرواری بڵاوکردنەوە بەپێی بەڕێوەبەری پاکێج", + "UniGetUI Version {0}": "وەشانی UniGetUI {0}", + "Search for packages": "بگەڕێ بۆ پاکێجەکان", + "Local": "ناوخۆیی", + "OK": "OK", + "{0} packages were found, {1} of which match the specified filters.": "{0} پاکێج دۆزرایەوە، {1}یان لەوانە لەگەڵ فلتەرە دیاریکراوەکان دەگونجێن.", + "{0} selected": "{0} هەڵبژێردراو", + "(Last checked: {0})": "(دوایین پشکنین: {0})", + "Enabled": "چالاک", + "Disabled": "ناچالاک", + "More info": "زانیاری زیاتر", + "GitHub account": "هەژماری GitHub", + "Log in with GitHub to enable cloud package backup.": "بۆ چالاککردنی پاڵپشتی پاکێجی هەور، بە GitHub بچۆ ژوورەوە.", + "More details": "وردەکاری زیاتر", + "Log in": "چوونەژوورەوە", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "ئەگەر پاڵپشتی هەورەت چالاک کردبێت، وەک GitHub Gistێک لەم هەژمارەدا پاشەکەوت دەکرێت", + "Log out": "چوونەدەرەوە", + "About UniGetUI": "دەربارەی UniGetUI", + "About": "دەربارە", + "Third-party licenses": "مۆڵەتنامەکانی لایەنی سێیەم", + "Contributors": "بەشداربووان", + "Translators": "وەرگێڕان", + "Manage shortcuts": "بەڕێوەبردنی ڕێگاکورتەکان", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ئەم ڕێگاکورتانەی خوارەوەی دۆزییەوە کە دەتوانرێت لە نوێکردنەوەکانی داهاتوودا بە شێوەی خۆکار بسڕدرێنەوە", + "Do you really want to reset this list? This action cannot be reverted.": "ئایا بە ڕاستی دەتەوێت ئەم لیستە بگەڕێنیتەوە بۆ دۆخی بنەڕەتی؟ ئەم کردارە ناگەڕێندرێتەوە.", + "Open in explorer": "لە Explorer بکەرەوە", + "Remove from list": "لە لیستەکە لای ببە", + "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "کاتێک ڕێگاکورتەی نوێ دۆزرایەوە، لەبری پیشاندانی ئەم دیالۆگە، بە شێوەی خۆکار بیسڕەوە.", + "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI داتای بەکارهێنانی نەناسراو تەنها بۆ تێگەیشتن و باشترکردنی ئەزموونی بەکارهێنەر کۆدەکاتەوە.", + "More details about the shared data and how it will be processed": "وردەکاری زیاتر دەربارەی داتای هاوبەشکراو و چۆنیەتی پرۆسەکردنی", + "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "ئایا قبووڵ دەکەیت UniGetUI ئامارە نەناسراوەکانی بەکارهێنان کۆبکاتەوە و بنێرێت، تەنها بۆ تێگەیشتن و باشترکردنی ئەزموونی بەکارهێنەر؟", + "Decline": "ڕەتکردنەوە", + "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "هیچ زانیارییەکی کەسی نە کۆدەکرێتەوە و نە دەنێردرێت، و داتای کۆکراوەش نەناسێندراوە، بۆیە ناتوانرێت بگەڕێندرێتەوە بۆ تۆ.", + "Toggle navigation panel": "پانێڵی گەشتکردن بگۆڕە", + "Minimize": "بچووککردنەوە", + "Maximize": "گەورەکردنەوە", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI بەرنامەیەکە کە بەڕێوەبردنی نەرمەکاڵاکەت ئاسانتر دەکات، بە دابینکردنی ڕووکارێکی گرافیکی هەمووی لە یەکدا بۆ بەڕێوەبەرانی پاکێجی هێڵی فەرمانەکەت.", + "Useful links": "بەستەرە بەسوودەکان", + "UniGetUI Homepage": "ماڵپەڕی سەرەکی UniGetUI", + "Report an issue or submit a feature request": "کێشەیەک ڕاپۆرت بکە یان داواکاری تایبەتمەندییەک بنێرە", + "UniGetUI Repository": "ڕێپووزیتۆری UniGetUI", + "View GitHub Profile": "پڕۆفایلی GitHub ببینە", + "UniGetUI License": "مۆڵەتنامەی UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "بەکارهێنانی UniGetUI واتای قبووڵکردنی مۆڵەتنامەی MITیە", + "Become a translator": "ببە بە وەرگێڕ", + "View page on browser": "لاپەڕەکە لە وێبگەڕدا ببینە", + "Copy to clipboard": "کۆپی بکە بۆ کلیپبۆرد", + "Export to a file": "هەناردە بکە بۆ پەڕگەیەک", + "Log level:": "ئاستی تۆمار:", + "Reload log": "تۆمار دووبارە بار بکە", + "Export log": "تۆمار هەناردە بکە", + "UniGetUI Log": "تۆماری UniGetUI", + "Text": "دەق", + "Change how operations request administrator rights": "چۆنیەتی داواکاری مافی بەڕێوەبەری سیستەم بۆ کردارەکان بگۆڕە", + "Restrictions on package operations": "سنووردارکردن لەسەر کردارەکانی پاکێج", + "Restrictions on package managers": "سنووردارکردن لەسەر بەڕێوەبەرانی پاکێج", + "Restrictions when importing package bundles": "سنووردارکردن لە کاتی هاوردەکردنی کۆمەڵە پاکێجەکان", + "Ask for administrator privileges once for each batch of operations": "بۆ هەر کۆمەڵە کردارێک یەکجار داوای مافەکانی بەڕێوەبەری سیستەم بکە", + "Ask only once for administrator privileges": "تەنها یەکجار داوای مافەکانی بەڕێوەبەری سیستەم بکە", + "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "هەموو جۆرێک لە بەرزکردنەوەی دەسەڵات لە ڕێگەی UniGetUI Elevator یان GSudo قەدەغە بکە", + "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "ئەم هەڵبژاردەیە بە دڵنیایی کێشە دروست دەکات. هەر کردارێک کە نەتوانێت خۆی بەرز بکاتەوە سەرناکەوێت. دامەزراندن/نوێکردنەوە/سڕینەوە وەک بەڕێوەبەری سیستەم کار ناکات.", + "Allow custom command-line arguments": "ڕێگە بدە بە ئارگیومێنتە تایبەتییەکانی هێڵی فەرمان", + "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "ئارگیومێنتە تایبەتییەکانی هێڵی فەرمان دەتوانن شێوازی دامەزراندن، نوێکردنەوە یان سڕینەوەی بەرنامەکان بگۆڕن بە شێوەیەک کە UniGetUI ناتوانێت کۆنترۆڵی بکات. بەکارهێنانی هێڵی فەرمانی تایبەت دەتوانێت پاکێجەکان تێک بدات. بە وریاییەوە بەردەوام بە.", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "لە کاتی هاوردەکردنی پاکێج لە باندڵێک، فەرمانە تایبەتییەکانی پێش دامەزراندن و دوای دامەزراندن پشتگوێ بخە", + "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "فەرمانەکانی پێش دامەزراندن و دوای دامەزراندن پێش و دوای ئەوەی پاکێجێک دابمەزرێت، نوێ بکرێتەوە یان بسڕدرێتەوە جێبەجێ دەکرێن. ئاگاداربە چونکە ئەگەر بە وریایی بەکارنەهێنرێن لەوانەیە شت تێک بدەن", + "Allow changing the paths for package manager executables": "ڕێگە بدە بە گۆڕینی ڕێڕەوی پەڕگە جێبەجێکراوەکانی بەڕێوەبەری پاکێج", + "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "چالاککردنی ئەمە ڕێگە بە گۆڕینی پەڕگەی جێبەجێکراو دەدات کە بۆ کارلێککردن لەگەڵ بەڕێوەبەرانی پاکێج بەکاردێت. هەرچەندە ئەمە ڕێکخستنی وردتر بۆ پرۆسەکانی دامەزراندنت دابین دەکات، بەڵام دەتوانێت مەترسیداریش بێت", + "Allow importing custom command-line arguments when importing packages from a bundle": "ڕێگە بدە بە هاوردەکردنی ئارگیومێنتە تایبەتییەکانی هێڵی فەرمان لە کاتی هاوردەکردنی پاکێجەکان لە باندڵێک", + "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "ئارگیومێنتە نادروستەکانی هێڵی فەرمان دەتوانن پاکێجەکان تێک بدەن، یان تەنانەت ڕێگە بدەن کە کەسێکی خراپکار دەسەڵاتی تایبەت وەربگرێت. بۆیە، هاوردەکردنی ئارگیومێنتە تایبەتییەکانی هێڵی فەرمان بە شێوەی بنەڕەتی ناچالاککراوە.", + "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "ڕێگە بدە بە هاوردەکردنی فەرمانە تایبەتییەکانی پێش دامەزراندن و دوای دامەزراندن لە کاتی هاوردەکردنی پاکێجەکان لە باندڵێک", + "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "فەرمانەکانی پێش دامەزراندن و دوای دامەزراندن ئەگەر بۆ ئەو مەبەستە دروستکرابن دەتوانن زۆر شتی خراپ بەسەر ئامێرەکەت بهێنن. هاوردەکردنی ئەو فەرمانانە لە باندڵێک زۆر مەترسیدارە، مەگەر سەرچاوەی ئەو باندڵە پاکێجە متمانەپێکراو بێت", + "Administrator rights and other dangerous settings": "مافەکانی بەڕێوەبەری سیستەم و ڕێکخستنە مەترسیدارەکانی تر", + "Package backup": "پاڵپشتی پاکێج", + "Cloud package backup": "پاڵپشتی هەوری پاکێج", + "Local package backup": "پاڵپشتی ناوخۆیی پاکێج", + "Local backup advanced options": "هەڵبژاردە پێشکەوتووەکانی پاڵپشتی ناوخۆیی", + "Log in with GitHub": "بە GitHub بچۆ ژوورەوە", + "Log out from GitHub": "لە GitHub بچۆ دەرەوە", + "Periodically perform a cloud backup of the installed packages": "بە شێوەی خولی پاڵپشتییەکی هەوری لە پاکێجە دامەزراوەکان ئەنجام بدە", + "Cloud backup uses a private GitHub Gist to store a list of installed packages": "پاڵپشتی هەور لە GitHub Gistێکی تایبەتدا لیستی پاکێجە دامەزراوەکان هەڵدەگرێت", + "Perform a cloud backup now": "ئێستا پاڵپشتییەکی هەوری ئەنجام بدە", + "Backup": "پاڵپشتی", + "Restore a backup from the cloud": "پاڵپشتییەک لە هەورەوە بگەڕێنەرەوە", + "Begin the process to select a cloud backup and review which packages to restore": "پرۆسەی هەڵبژاردنی پاڵپشتییەکی هەوری دەست پێ بکە و پشکنین بکە کام پاکێجان بگەڕێندرێنەوە", + "Periodically perform a local backup of the installed packages": "بە شێوەی خولی پاڵپشتییەکی ناوخۆیی لە پاکێجە دامەزراوەکان ئەنجام بدە", + "Perform a local backup now": "ئێستا پاڵپشتییەکی ناوخۆیی ئەنجام بدە", + "Change backup output directory": "بوخچەی دەرچوونی پاڵپشتی بگۆڕە", + "Set a custom backup file name": "ناوی پەڕگەی پاڵپشتییەکی تایبەت دابنێ", + "Leave empty for default": "بۆ بنەڕەتی بە بەتاڵی جێیبێڵە", + "Add a timestamp to the backup file names": "کاتمۆر زیاد بکە بۆ ناوەکانی پەڕگەی پاڵپشتی", + "Backup and Restore": "پاڵپشتی و گەڕاندنەوە", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "APIی پاشبنەما چالاک بکە (ویجێتەکانی UniGetUI و هاوبەشکردن، پۆرتی 7058)", + "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "پێش هەوڵدان بۆ ئەنجامدانی ئەرکەکانێک کە پێویستییان بە پەیوەندی ئینتەرنێتە، چاوەڕێ بکە تا ئامێرەکە بە ئینتەرنێت بپەیوەستێت.", + "Disable the 1-minute timeout for package-related operations": "سنووری کاتی 1 خولەک بۆ کردارە پەیوەندیدارەکانی پاکێج ناچالاک بکە", + "Use installed GSudo instead of UniGetUI Elevator": "لەبری UniGetUI Elevator، GSudoی دامەزراو بەکاربهێنە", + "Use a custom icon and screenshot database URL": "URLێکی تایبەت بۆ بنکەدراوەی ئایکۆن و وێنەی شاشە بەکاربهێنە", + "Enable background CPU Usage optimizations (see Pull Request #3278)": "باشکردنەوەکانی بەکارهێنانی CPU لە پاشبنەما چالاک بکە (Pull Request #3278 ببینە)", + "Perform integrity checks at startup": "لە دەستپێکدا پشکنینەکانی integrity ئەنجام بدە", + "When batch installing packages from a bundle, install also packages that are already installed": "کاتێک پاکێجەکان لە باندڵێک بە کۆمەڵ دامەزرێنیت، ئەو پاکێجانەش دابمەزرێنە کە پێشتر دامەزراون", + "Experimental settings and developer options": "ڕێکخستنە ئەزموونییەکان و هەڵبژاردەکانی گەشەپێدەران", + "Show UniGetUI's version and build number on the titlebar.": "وەشانی UniGetUI و ژمارەی build لەسەر شریتی ناونیشان پیشان بدە.", + "Language": "زمان", + "UniGetUI updater": "نوێکەرەوەی UniGetUI", + "Telemetry": "تێلێمێتری", + "Manage UniGetUI settings": "ڕێکخستنەکانی UniGetUI بەڕێوەبەرە", + "Related settings": "ڕێکخستنە پەیوەندیدارەکان", + "Update UniGetUI automatically": "UniGetUI بە شێوەی خۆکار نوێ بکەرەوە", + "Check for updates": "بۆ نوێکردنەوەکان بپشکنە", + "Install prerelease versions of UniGetUI": "وەشانەکانی پێش بڵاوکردنەوەی UniGetUI دابمەزرێنە", + "Manage telemetry settings": "ڕێکخستنەکانی تێلێمێتری بەڕێوەبەرە", + "Manage": "بەڕێوەبەرە", + "Import settings from a local file": "ڕێکخستنەکان لە پەڕگەیەکی ناوخۆییەوە هاوردە بکە", + "Import": "هاوردە بکە", + "Export settings to a local file": "ڕێکخستنەکان بۆ پەڕگەیەکی ناوخۆیی هەناردە بکە", + "Export": "هەناردە بکە", + "Reset UniGetUI": "UniGetUI بگەڕێنەرەوە بۆ دۆخی بنەڕەتی", + "User interface preferences": "هەڵبژاردەکانی ڕووکارى بەکارهێنەر", + "Application theme, startup page, package icons, clear successful installs automatically": "ڕووکارى بەرنامە، لاپەڕەی دەستپێک، ئایکۆنی پاکێجەکان، پاککردنەوەی خۆکاری دامەزراندنە سەرکەوتووەکان", + "General preferences": "هەڵبژاردە گشتییەکان", + "UniGetUI display language:": "زمانی پیشاندانی UniGetUI:", + "Is your language missing or incomplete?": "ئایا زمانەکەت ونە یان تەواو نییە؟", + "Appearance": "ڕووکار", + "UniGetUI on the background and system tray": "UniGetUI لە پاشبنەما و تڕەی سیستەمدا", + "Package lists": "لیستەکانی پاکێج", + "Close UniGetUI to the system tray": "UniGetUI بۆ تڕەی سیستەم دابخە", + "Manage UniGetUI autostart behaviour": "هەڵسوکەوتی خۆکار دەستپێکردنی UniGetUI بەڕێوەبەرە", + "Show package icons on package lists": "ئایکۆنی پاکێجەکان لە لیستەکانی پاکێج پیشان بدە", + "Clear cache": "کاش پاک بکەرەوە", + "Select upgradable packages by default": "پاکێجە نوێکراوەتوانەکان بە شێوەی بنەڕەتی هەڵبژێرە", + "Light": "ڕووناک", + "Dark": "تاریک", + "Follow system color scheme": "دوای پلانی ڕەنگی سیستەم بکەوە", + "Application theme:": "ڕووکارى بەرنامە:", + "Discover Packages": "دۆزینەوەی پاکێجەکان", + "Software Updates": "نوێکردنەوەکانی نەرمەکاڵا", + "Installed Packages": "پاکێجە دامەزراوەکان", + "Package Bundles": "باندڵەکانی پاکێج", + "Settings": "ڕێکخستنەکان", + "UniGetUI startup page:": "لاپەڕەی دەستپێکی UniGetUI:", + "Proxy settings": "ڕێکخستنەکانی proxy", + "Other settings": "ڕێکخستنەکانی تر", + "Connect the internet using a custom proxy": "بە بەکارهێنانی proxyێکی تایبەت بە ئینتەرنێت پەیوەست بە", + "Please note that not all package managers may fully support this feature": "تکایە سەرنج بدە کە هەموو بەڕێوەبەرانی پاکێج ڕەنگە بە تەواوی پشتگیری ئەم تایبەتمەندییە نەکەن", + "Proxy URL": "URLی proxy", + "Enter proxy URL here": "URLی proxy لێرە بنووسە", + "Authenticate to the proxy with a user and a password": "بە ناوی بەکارهێنەر و وشەی نهێنی بۆ proxy پشتڕاستکردنەوە بکە", + "Internet and proxy settings": "ڕێکخستنەکانی ئینتەرنێت و proxy", + "Package manager preferences": "هەڵبژاردەکانی بەڕێوەبەرانی پاکێج", + "Ready": "ئامادە", + "Not found": "نەدۆزرایەوە", + "Notification preferences": "هەڵبژاردەکانی ئاگادارکردنەوە", + "Notification types": "جۆرەکانی ئاگادارکردنەوە", + "The system tray icon must be enabled in order for notifications to work": "بۆ ئەوەی ئاگادارکردنەوەکان کار بکەن، پێویستە ئایکۆنی تڕەی سیستەم چالاک بێت", + "Enable UniGetUI notifications": "ئاگادارکردنەوەکانی UniGetUI چالاک بکە", + "Show a notification when there are available updates": "کاتێک نوێکردنەوەی بەردەست هەیە ئاگادارکردنەوەیەک پیشان بدە", + "Show a silent notification when an operation is running": "کاتێک کردارێک بەڕێوە دەچێت ئاگادارکردنەوەیەکی بێدەنگ پیشان بدە", + "Show a notification when an operation fails": "کاتێک کردارێک سەرناکەوێت ئاگادارکردنەوەیەک پیشان بدە", + "Show a notification when an operation finishes successfully": "کاتێک کردارێک بە سەرکەوتوویی تەواو دەبێت ئاگادارکردنەوەیەک پیشان بدە", + "Concurrency and execution": "هاوکاتکاری و جێبەجێکردن", + "Automatic desktop shortcut remover": "سڕەرەوەی خۆکاری ڕێگاکورتەی سەر مێز", + "Choose how many operations should be performed in parallel": "هەڵبژێرە چەند کردارێک دەبێت بە هاوکات ئەنجام بدرێن", + "Clear successful operations from the operation list after a 5 second delay": "کردارە سەرکەوتووەکان دوای دواکەوتنێکی 5 چرکەیی لە لیستی کردارەکان لاببە", + "Download operations are not affected by this setting": "کردارەکانی داگرتن بەم ڕێکخستنە کاریگەرییان لەسەر نابێت", + "Try to kill the processes that refuse to close when requested to": "هەوڵ بدە ئەو پرۆسەسانە بکوژیت کە کاتێک داوای لێدەکرێت دابخرێن ڕەت دەکەن", + "You may lose unsaved data": "لەوانەیە داتای پاشنەکراوت لەدەست بدەیت", + "Ask to delete desktop shortcuts created during an install or upgrade.": "بۆ سڕینەوەی ڕێگاکورتە سەر مێزانەی لە کاتی دامەزراندن یان نوێکردنەوە دروستکراون داوا بکە.", + "Package update preferences": "هەڵبژاردەکانی نوێکردنەوەی پاکێج", + "Update check frequency, automatically install updates, etc.": "دووبارەبوونەوەی پشکنینی نوێکردنەوە، دامەزراندنی خۆکاری نوێکردنەوەکان، هتد.", + "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "داواکارییەکانی UAC کەم بکەرەوە، دامەزراندنەکان بە شێوەی بنەڕەتی بەرز بکەرەوە، هەندێک تایبەتمەندی مەترسیدار بکەرەوە، هتد.", + "Package operation preferences": "هەڵبژاردەکانی کردارەکانی پاکێج", + "Enable {pm}": "{pm} چالاک بکە", + "Not finding the file you are looking for? Make sure it has been added to path.": "پەڕگەکەی بەدوایدا دەگەڕێیت نادۆزیتەوە؟ دڵنیابە کە زیاد کراوە بۆ path.", + "For security reasons, changing the executable file is disabled by default": "بەهۆی هۆکاری ئاسایشییەوە، گۆڕینی پەڕگەی جێبەجێکراو بە شێوەی بنەڕەتی ناچالاکە", + "Change this": "ئەمە بگۆڕە", + "Select the executable to be used. The following list shows the executables found by UniGetUI": "پەڕگەی جێبەجێکراوی بەکارهاتوو هەڵبژێرە. لیستی خوارەوە ئەو پەڕگە جێبەجێکراوانە پیشان دەدات کە UniGetUI دۆزیونیەتەوە", + "Current executable file:": "پەڕگەی جێبەجێکراوی ئێستا:", + "Ignore packages from {pm} when showing a notification about updates": "کاتێک ئاگادارکردنەوەیەک سەبارەت بە نوێکردنەوەکان پیشان دەدرێت، پاکێجەکانی {pm} پشتگوێ بخە", + "Update security": "ئاسایشی نوێکردنەوە", + "Use global setting": "ڕێکخستنی گشتی بەکاربهێنە", + "e.g. 10": "وەک 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} بەرواری بڵاوکردنەوە بۆ پاکێجەکانی دابین ناکات، بۆیە ئەم ڕێکخستنە هیچ کاریگەرییەکی نابێت", + "Override the global minimum update age for this package manager": "کەمترین تەمەنی گشتیی نوێکردنەوە بۆ ئەم بەڕێوەبەری پاکێجە بگۆڕە", + "Minimum age for updates": "کەمترین تەمەن بۆ نوێکردنەوەکان", + "Custom minimum age (days)": "کەمترین تەمەنی تایبەت (ڕۆژ)", + "View {0} logs": "{0} تۆمار ببینە", + "If Python cannot be found or is not listing packages but is installed on the system, ": "ئەگەر Python نەدۆزرێتەوە یان پاکێجەکان لیست ناکات بەڵام لەسەر سیستەم دامەزراوە، ", + "Advanced options": "هەڵبژاردە پێشکەوتووەکان", + "Reset WinGet": "WinGet بگەڕێنەرەوە بۆ دۆخی بنەڕەتی", + "This may help if no packages are listed": "ئەگەر هیچ پاکێجێک لیست نەکرابێت، ئەمە لەوانەیە یارمەتیدەر بێت", + "Force install location parameter when updating packages with custom locations": "لە کاتی نوێکردنەوەی پاکێجەکانی شوێنی تایبەت، پارامیتەری شوێنی دامەزراندن بە زۆر بەکاربهێنە", + "Use bundled WinGet instead of system WinGet": "لەبری WinGetی سیستەم، WinGetی باندڵکراو بەکاربهێنە", + "This may help if WinGet packages are not shown": "ئەگەر پاکێجەکانی WinGet پیشان نەدرێن، ئەمە لەوانەیە یارمەتیدەر بێت", + "Install Scoop": "Scoop دابمەزرێنە", + "Uninstall Scoop (and its packages)": "Scoop (و پاکێجەکانی) بیسڕەوە", + "Run cleanup and clear cache": "پاکسازی بەڕێوەببە و کاش پاک بکەرەوە", + "Run": "بەڕێوەببە", + "Enable Scoop cleanup on launch": "لە کاتی دەستپێکدا پاکسازیی Scoop چالاک بکە", + "Use system Chocolatey": "Chocolateyی سیستەم بەکاربهێنە", + "Default vcpkg triplet": "tripletی بنەڕەتیی vcpkg", + "Change vcpkg root location": "شوێنی ڕەگی vcpkg بگۆڕە", + "Language, theme and other miscellaneous preferences": "زمان، ڕووکار و هەڵبژاردە جۆراوجۆرەکانی تر", + "Show notifications on different events": "لە ڕووداوە جیاوازەکاندا ئاگادارکردنەوەکان پیشان بدە", + "Change how UniGetUI checks and installs available updates for your packages": "ئەو شێوازە بگۆڕە کە UniGetUI پێی نوێکردنەوە بەردەستەکانی پاکێجەکانت دەپشکنێت و دایدەمەزرێنێت", + "Automatically save a list of all your installed packages to easily restore them.": "لیستی هەموو پاکێجە دامەزراوەکانت بە شێوەی خۆکار پاشەکەوت بکە بۆ ئەوەی بە ئاسانی بیانگەڕێنیتەوە.", + "Enable and disable package managers, change default install options, etc.": "بەڕێوەبەرانی پاکێج چالاک یان ناچالاک بکە، هەڵبژاردە بنەڕەتییەکانی دامەزراندن بگۆڕە، هتد.", + "Internet connection settings": "ڕێکخستنەکانی پەیوەندی ئینتەرنێت", + "Proxy settings, etc.": "ڕێکخستنەکانی proxy، هتد.", + "Beta features and other options that shouldn't be touched": "تایبەتمەندییە Beta ـەکان و هەڵبژاردەکانی تر کە نابێت دەستیان لێ بدرێت", + "Update checking": "پشکنینی نوێکردنەوە", + "Automatic updates": "نوێکردنەوە خۆکارەکان", + "Check for package updates periodically": "بە شێوەی خولەکی بۆ نوێکردنەوەکانی پاکێج بپشکنە", + "Check for updates every:": "هەر ئەم ماوەیە بۆ نوێکردنەوە بپشکنە:", + "Install available updates automatically": "نوێکردنەوە بەردەستەکان بە شێوەی خۆکار دابمەزرێنە", + "Do not automatically install updates when the network connection is metered": "کاتێک پەیوەندیی تۆڕەکە metered ـە، نوێکردنەوەکان بە شێوەی خۆکار دابمەزرێنە مەکە", + "Do not automatically install updates when the device runs on battery": "کاتێک ئامێرەکە لەسەر باتری کار دەکات، نوێکردنەوەکان بە شێوەی خۆکار دابمەزرێنە مەکە", + "Do not automatically install updates when the battery saver is on": "کاتێک باتری ساڤەر چالاکە، نوێکردنەوەکان بە شێوەی خۆکار دابمەزرێنە مەکە", + "Only show updates that are at least the specified number of days old": "تەنها ئەو نوێکردنەوانە پیشان بدە کە لانیکەم ئەو ژمارە ڕۆژە تەمەنیان هەیە کە دیاریکراوە", + "Change how UniGetUI handles install, update and uninstall operations.": "ئەو شێوازە بگۆڕە کە UniGetUI کردارەکانی دامەزراندن، نوێکردنەوە و لابردن بەڕێوە دەبات.", + "Package Managers": "بەڕێوەبەرانی پاکێج", + "More": "زیاتر", + "Package Manager logs": "تۆمارەکانی بەڕێوەبەری پاکێج", + "Operation history": "مێژووی کردارەکان", + "Help": "یارمەتی", + "Quit UniGetUI": "لە UniGetUI بچۆرە دەرەوە", + "Order by:": "ڕیزبەندی بکە بە:", + "Name": "ناو", + "Id": "ناسنامە", + "Ascendant": "بەرەو سەرەوە", + "Descendant": "بەرەو خوارەوە", + "View mode:": "دۆخی بینین:", + "Filters": "پالێوەرەکان", + "Sources": "سەرچاوەکان", + "Search for packages to start": "بۆ دەستپێکردن بەدوای پاکێجەکاندا بگەڕێ", + "Select all": "هەمووی هەڵبژێرە", + "Clear selection": "هەڵبژاردن پاک بکەرەوە", + "Instant search": "گەڕانی دەستبەجێ", + "Distinguish between uppercase and lowercase": "جیاوازی لەنێوان پیتی گەورە و بچووک بکە", + "Ignore special characters": "پیت و هێمای تایبەت پشتگوێ بخە", + "Search mode": "دۆخی گەڕان", + "Both": "هەردووکیان", + "Exact match": "گونجانی تەواو", + "Show similar packages": "پاکێجە هاوشێوەکان پیشان بدە", + "Nothing to share": "هیچ شتێک نییە بۆ هاوبەشکردن", + "Please select a package first.": "تکایە سەرەتا پاکێجێک هەڵبژێرە.", + "Share link copied": "بەستەری هاوبەشکردن کۆپی کرا", + "The share link for {0} has been copied to the clipboard.": "بەستەری هاوبەشکردنی {0} بۆ clipboard کۆپی کراوە.", + "No results were found matching the input criteria": "هیچ ئەنجامێک نەدۆزرایەوە کە لەگەڵ پێوەرەکانی داخڵکراو بگونجێت", + "No packages were found": "هیچ پاکێجێک نەدۆزرایەوە", + "Loading packages": "پاکێجەکان بار دەکرێن", + "Skip integrity checks": "پشکنینەکانی integrity بازبدە", + "Download selected installers": "دامەزرێنەرە هەڵبژێردراوەکان دابگرە", + "Install selection": "هەڵبژاردن دامەزرێنە", + "Install options": "هەڵبژاردەکانی دامەزراندن", + "Share": "هاوبەش بکە", + "Add selection to bundle": "هەڵبژاردن زیاد بکە بۆ باندڵ", + "Download installer": "دامەزرێنەر دابگرە", + "Share this package": "ئەم پاکێجە هاوبەش بکە", + "Uninstall selection": "هەڵبژاردن لاببە", + "Uninstall options": "هەڵبژاردەکانی لابردن", + "Ignore selected packages": "پاکێجە هەڵبژێردراوەکان پشتگوێ بخە", + "Open install location": "شوێنی دامەزراندن بکەرەوە", + "Reinstall package": "پاکێجەکە دووبارە دابمەزرێنە", + "Uninstall package, then reinstall it": "پاکێجەکە لاببە، پاشان دووبارە دایبمەزرێنە", + "Ignore updates for this package": "نوێکردنەوەکانی ئەم پاکێجە پشتگوێ بخە", + "Do not ignore updates for this package anymore": "لەمەودوا نوێکردنەوەکانی ئەم پاکێجە پشتگوێ مەخە", + "Add packages or open an existing package bundle": "پاکێج زیاد بکە یان باندڵێکی پاکێجی هەبوو بکەرەوە", + "Add packages to start": "بۆ دەستپێکردن پاکێج زیاد بکە", + "The current bundle has no packages. Add some packages to get started": "باندڵی ئێستا هیچ پاکێجێکی تێدا نییە. هەندێک پاکێج زیاد بکە بۆ ئەوەی دەست پێ بکەیت", + "New": "نوێ", + "Save as": "وەک... پاشەکەوتی بکە", + "Remove selection from bundle": "هەڵبژاردن لە باندڵ لاببە", + "Skip hash checks": "پشکنینەکانی hash بازبدە", + "The package bundle is not valid": "باندڵی پاکێج دروست نییە", + "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "باندڵەکەی هەوڵی بارکردنی دەدەیت دیارە دروست نییە. تکایە پەڕگەکە بپشکنە و دووبارە هەوڵ بدەوە.", + "Package bundle": "باندڵی پاکێج", + "Could not create bundle": "نەکرا باندڵ دروست بکرێت", + "The package bundle could not be created due to an error.": "باندڵی پاکێج بەهۆی هەڵەیەکەوە نەکرا دروست بکرێت.", + "Unsaved changes": "گۆڕانکارییە پاشەکەوت نەکراوەکان", + "Discard changes": "گۆڕانکارییەکان فڕێ بدە", + "You have unsaved changes in the current bundle. Do you want to discard them?": "لە باندڵی ئێستادا گۆڕانکارییە پاشەکەوت نەکراوت هەن. دەتەوێت فڕێیان بدەیت؟", + "Bundle security report": "ڕاپۆرتی ئاسایشی باندڵ", + "The bundle contained restricted content": "باندڵەکە ناوەڕۆکی سنووردار لەخۆ دەگرت", + "Hooray! No updates were found.": "زۆر باش! هیچ نوێکردنەوەیەک نەدۆزرایەوە.", + "Everything is up to date": "هەموو شتێک نوێکراوەتەوە", + "Uninstall selected packages": "پاکێجە هەڵبژێردراوەکان لاببە", + "Update selection": "هەڵبژاردن نوێ بکەرەوە", + "Update options": "هەڵبژاردەکانی نوێکردنەوە", + "Uninstall package, then update it": "پاکێجەکە لاببە، پاشان نوێی بکەرەوە", + "Uninstall package": "پاکێجەکە لاببە", + "Skip this version": "ئەم وەشانە بازبدە", + "Pause updates for": "نوێکردنەوەکان بوەستێنە بۆ", + "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "بەڕێوەبەری پاکێجی Rust.
لەخۆدەگرێت: کتێبخانەکانی Rust و بەرنامە نووسراوەکانی بە Rust", + "The classical package manager for windows. You'll find everything there.
Contains: General Software": "بەڕێوەبەری پاکێجی کلاسیکی بۆ Windows. هەموو شتێکت لەوێ دەدۆزیتەوە.
لەخۆدەگرێت: نەرمەکاڵای گشتی", + "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "کۆگایەکی پڕ لە ئامراز و پەڕگە جێبەجێکراوان کە بە مەبەستی ئەکۆسیستەمی .NET ـی Microsoft دیزاین کراون.
لەخۆدەگرێت: ئامراز و سکریپتە پەیوەندیدارەکانی .NET", + "NuPkg (zipped manifest)": "NuPkg (مانیفێستی زیپکراو)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "بەڕێوەبەری پاکێجی ونبوو بۆ macOS (یان Linux).
لەخۆدەگرێت: Formulae, Casks", + "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "بەڕێوەبەری پاکێجی Node JS. پڕە لە کتێبخانە و ئامرازەکانی تر کە دەوری جیهانی javascript دەخولێنەوە
لەخۆدەگرێت: کتێبخانەکانی Node javascript و ئامرازە پەیوەندیدارەکانی تر", + "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "بەڕێوەبەری کتێبخانەکانی Python. پڕە لە کتێبخانەکانی Python و ئامرازە پەیوەندیدارەکانی تر
لەخۆدەگرێت: کتێبخانەکانی Python و ئامرازە پەیوەندیدارەکان", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "بەڕێوەبەری پاکێجی PowerShell. کتێبخانە و سکریپت بدۆزەرەوە بۆ فراوانکردنی تواناکانی PowerShell
لەخۆدەگرێت: Modules, Scripts, Cmdlets", + "extracted": "دەرهێنراو", + "Scoop package": "پاکێجی Scoop", + "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "کۆگایەکی باش لە ئامرازی نەناسراو بەڵام بەسوود و پاکێجە سەرنجڕاکێشەکانی تر.
لەخۆدەگرێت: ئامرازەکان، بەرنامەکانی هێڵی فرمان، نەرمەکاڵای گشتی (بوکتی extras پێویستە)", + "library": "کتێبخانە", + "feature": "تایبەتمەندی", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "بەڕێوەبەری کتێبخانەیەکی بەناوبانگی C/C++. پڕە لە کتێبخانەکانی C/C++ و ئامرازە پەیوەندیدارەکانی تر
لەخۆدەگرێت: کتێبخانەکانی C/C++ و ئامرازە پەیوەندیدارەکان", + "option": "هەڵبژاردە", + "This package cannot be installed from an elevated context.": "ئەم پاکێجە لە دۆخی بەڕێوەبەر ناتوانرێت دابمەزرێت.", + "Please run UniGetUI as a regular user and try again.": "تکایە UniGetUI وەک بەکارهێنەری ئاسایی بەڕێوەیببە و دووبارە هەوڵ بدەوە.", + "Please check the installation options for this package and try again": "تکایە هەڵبژاردەکانی دامەزراندنی ئەم پاکێجە بپشکنە و دووبارە هەوڵ بدەوە", + "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "بەڕێوەبەری پاکێجی فەرمیی Microsoft. پڕە لە پاکێجی ناسراو و پشتڕاستکراوە
لەخۆدەگرێت: نەرمەکاڵای گشتی، ئەپی Microsoft Store", + "Local PC": "کۆمپیوتەری ناوخۆ", + "Android Subsystem": "ژێرسیستەمی Android", + "Operation on queue (position {0})...": "کردار لە ناو ڕیزەکەدا (شوێن {0})...", + "Click here for more details": "بۆ وردەکاریی زیاتر لێرە کرتە بکە", + "Operation canceled by user": "کردارەکە لەلایەن بەکارهێنەرەوە هەڵوەشێندرایەوە", + "Running PreOperation ({0}/{1})...": "PreOperation ({0}/{1}) بەڕێوەدەچێت...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} لە {1} سەرکەوتوو نەبوو، وەک پێویست نیشانەکراوە. واز لێهێنرا...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} لە {1} بە ئەنجامی {2} تەواو بوو", + "Starting operation...": "کردارەکە دەست پێ دەکات...", + "Running PostOperation ({0}/{1})...": "PostOperation ({0}/{1}) بەڕێوەدەچێت...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} لە {1} سەرکەوتوو نەبوو، وەک پێویست نیشانەکراوە. واز لێهێنرا...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} لە {1} بە ئەنجامی {2} تەواو بوو", + "{package} installer download": "داگرتنی دامەزرێنەری {package}", + "{0} installer is being downloaded": "دامەزرێنەری {0} دادەگیرێت", + "Download succeeded": "داگرتن سەرکەوتوو بوو", + "{package} installer was downloaded successfully": "دامەزرێنەری {package} بە سەرکەوتوویی داگیرا", + "Download failed": "داگرتن سەرکەوتوو نەبوو", + "{package} installer could not be downloaded": "نەکرا دامەزرێنەری {package} دابگیرێت", + "{package} Installation": "دامەزراندنی {package}", + "{0} is being installed": "{0} دادەمەزرێت", + "Installation succeeded": "دامەزراندن سەرکەوتوو بوو", + "{package} was installed successfully": "{package} بە سەرکەوتوویی دامەزرا", + "Installation failed": "دامەزراندن سەرکەوتوو نەبوو", + "{package} could not be installed": "نەکرا {package} دابمەزرێت", + "{package} Update": "نوێکردنەوەی {package}", + "{0} is being updated to version {1}": "{0} بۆ وەشانی {1} نوێ دەکرێتەوە", + "Update succeeded": "نوێکردنەوە سەرکەوتوو بوو", + "{package} was updated successfully": "{package} بە سەرکەوتوویی نوێ کرایەوە", + "Update failed": "نوێکردنەوە سەرکەوتوو نەبوو", + "{package} could not be updated": "نەکرا {package} نوێ بکرێتەوە", + "{package} Uninstall": "لابردنی {package}", + "{0} is being uninstalled": "{0} لادەبرێت", + "Uninstall succeeded": "لابردن سەرکەوتوو بوو", + "{package} was uninstalled successfully": "{package} بە سەرکەوتوویی لابرا", + "Uninstall failed": "لابردن سەرکەوتوو نەبوو", + "{package} could not be uninstalled": "نەکرا {package} لاببرێت", + "Adding source {source}": "سەرچاوەی {source} زیاد دەکرێت", + "Adding source {source} to {manager}": "سەرچاوەی {source} بۆ {manager} زیاد دەکرێت", + "Source added successfully": "سەرچاوەکە بە سەرکەوتوویی زیاد کرا", + "The source {source} was added to {manager} successfully": "سەرچاوەی {source} بە سەرکەوتوویی بۆ {manager} زیاد کرا", + "Could not add source": "نەکرا سەرچاوە زیاد بکرێت", + "Could not add source {source} to {manager}": "نەکرا سەرچاوەی {source} بۆ {manager} زیاد بکرێت", + "Removing source {source}": "سەرچاوەی {source} لادەبرێت", + "Removing source {source} from {manager}": "سەرچاوەی {source} لە {manager} لادەبرێت", + "Source removed successfully": "سەرچاوەکە بە سەرکەوتوویی لابرا", + "The source {source} was removed from {manager} successfully": "سەرچاوەی {source} بە سەرکەوتوویی لە {manager} لابرا", + "Could not remove source": "نەکرا سەرچاوە لاببرێت", + "Could not remove source {source} from {manager}": "نەکرا سەرچاوەی {source} لە {manager} لاببرێت", + "The package manager \"{0}\" was not found": "بەڕێوەبەری پاکێجی \"{0}\" نەدۆزرایەوە", + "The package manager \"{0}\" is disabled": "بەڕێوەبەری پاکێجی \"{0}\" ناچالاکە", + "There is an error with the configuration of the package manager \"{0}\"": "هەڵەیەک لە ڕێکخستنی بەڕێوەبەری پاکێجی \"{0}\" هەیە", + "The package \"{0}\" was not found on the package manager \"{1}\"": "پاکێجی \"{0}\" لە بەڕێوەبەری پاکێجی \"{1}\" نەدۆزرایەوە", + "{0} is disabled": "{0} ناچالاکە", + "Something went wrong": "شتێک هەڵە ڕوویدا", + "An interal error occurred. Please view the log for further details.": "هەڵەیەکی ناوخۆیی ڕوویدا. تکایە بۆ وردەکاریی زیاتر سەیری تۆمارەکە بکە.", + "No applicable installer was found for the package {0}": "هیچ دامەزرێنەرێکی گونجاو بۆ پاکێجی {0} نەدۆزرایەوە", + "We are checking for updates.": "لە پشکنینی نوێکردنەوەداین.", + "Please wait": "تکایە چاوەڕێ بکە", + "UniGetUI version {0} is being downloaded.": "UniGetUI وەشانی {0} دادەگیرێت.", + "This may take a minute or two": "ئەمە لەوانەیە یەک یان دوو خولەک بخایەنێت", + "The installer authenticity could not be verified.": "ڕەسەنایەتی دامەزرێنەرەکە نەکرا پشتڕاست بکرێتەوە.", + "The update process has been aborted.": "پرۆسەی نوێکردنەوە واز لێهێنرا.", + "Great! You are on the latest version.": "زۆر باشە! تۆ لەسەر دوا وەشانیت.", + "There are no new UniGetUI versions to be installed": "هیچ وەشانی نوێی UniGetUI نییە بۆ ئەوەی دابمەزرێت", + "An error occurred when checking for updates: ": "کاتێک بۆ نوێکردنەوە پشکنین دەکرا هەڵەیەک ڕوویدا: ", + "UniGetUI is being updated...": "UniGetUI نوێ دەکرێتەوە...", + "Something went wrong while launching the updater.": "کاتێک نوێکەرەوەکە دەستپێدەکرا شتێک هەڵە ڕوویدا.", + "Please try again later": "تکایە دواتر دووبارە هەوڵ بدەوە", + "Integrity checks will not be performed during this operation": "لەم کردارەدا پشکنینەکانی integrity ئەنجام نادرێن", + "This is not recommended.": "ئەمە پێشنیار ناکرێت.", + "Run now": "ئێستا بەڕێوەیببە", + "Run next": "دواتر بەڕێوەیببە", + "Run last": "لە کۆتاییدا بەڕێوەیببە", + "Retry as administrator": "وەک بەڕێوەبەر دووبارە هەوڵ بدەوە", + "Retry interactively": "بە شێوەی کارلێککارانە دووبارە هەوڵ بدەوە", + "Retry skipping integrity checks": "بە بازدان لە پشکنینەکانی integrity دووبارە هەوڵ بدەوە", + "Installation options": "هەڵبژاردەکانی دامەزراندن", + "Show in explorer": "لە Explorer پیشان بدە", + "This package is already installed": "ئەم پاکێجە پێشتر دامەزراوە", + "This package can be upgraded to version {0}": "ئەم پاکێجە دەتوانرێت بۆ وەشانی {0} نوێ بکرێتەوە", + "Updates for this package are ignored": "نوێکردنەوەکانی ئەم پاکێجە پشتگوێ خراون", + "This package is being processed": "ئەم پاکێجە لە ژێر پرۆسەدایە", + "This package is not available": "ئەم پاکێجە بەردەست نییە", + "Select the source you want to add:": "ئەو سەرچاوەیە هەڵبژێرە کە دەتەوێت زیادی بکەیت:", + "Source name:": "ناوی سەرچاوە:", + "Source URL:": "URLی سەرچاوە:", + "An error occurred": "هەڵەیەک ڕوویدا", + "An error occurred when adding the source: ": "کاتێک سەرچاوەکە زیاد دەکرا هەڵەیەک ڕوویدا: ", + "Package management made easy": "بەڕێوەبردنی پاکێج بە ئاسانی", + "version {0}": "وەشانی {0}", + "[RAN AS ADMINISTRATOR]": "[وەک بەڕێوەبەر بەڕێوەچوو]", + "Portable mode": "دۆخی portable\n", + "DEBUG BUILD": "وەشانی DEBUG", + "Available Updates": "نوێکردنەوە بەردەستەکان", + "Show UniGetUI": "UniGetUI پیشان بدە", + "Quit": "دەرچوون", + "Attention required": "پێویستی بە سەرنجدان هەیە", + "Restart required": "پێویستی بە دەستپێکردنەوە هەیە", + "1 update is available": "1 نوێکردنەوە بەردەستە", + "{0} updates are available": "{0} نوێکردنەوە بەردەستن", + "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "لێرە دەتوانیت هەڵسوکەوتی UniGetUI لەبارەی ئەم قەدبڕانەوە بگۆڕیت. ئەگەر قەدبڕێک هەڵبژێریت، UniGetUI ئەگەر لە نوێکردنەوەیەکی داهاتوودا دروست بکرێت دەیسڕێتەوە. ئەگەر هەڵیبگریتەوە، قەدبڕەکە وەک خۆی دەمێنێتەوە", + "Manual scan": "پشکنینی دەستی", + "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "قەدبڕە هەبووەکانی سەر ڕوومێزەکەت دەپشکنرێن، و تۆ دەبێت هەڵبژێریت کامیان بهێڵیتەوە و کامیان لاببەیت.", + "Continue": "بەردەوام بە", + "Delete?": "بسڕێتەوە؟", + "Missing dependency": "پێداویستی ونبوو", + "Not right now": "ئێستا نا", + "Install {0}": "{0} دابمەزرێنە", + "UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI بۆ کارکردن پێویستی بە {0} هەیە، بەڵام لە سیستەمەکەتدا نەدۆزرایەوە.", + "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "بۆ دەستپێکردنی پرۆسەی دامەزراندن لە Install بکە. ئەگەر دامەزراندنەکە بازبدەیت، لەوانەیە UniGetUI وەک چاوەڕوانکراو کار نەکات.", + "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "بە شێوەیەکی تر، دەتوانیت {0} ـیش دابمەزرێنیت بە ڕاکردنی ئەم فرمانە لە ناو prompt ـێکی Windows PowerShell:", + "Do not show this dialog again for {0}": "ئەم دیالۆگە بۆ {0} جارێکی تر پیشان مەدە", + "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "تکایە چاوەڕێ بکە تا {0} دادەمەزرێت. لەوانەیە پەنجەرەیەکی ڕەش یان شین دەرکەوێت. تکایە چاوەڕێ بکە تا دادەخرێت.", + "{0} has been installed successfully.": "{0} بە سەرکەوتوویی دامەزرا.", + "Please click on \"Continue\" to continue": "تکایە بۆ بەردەوامبوون لە \"Continue\" بکە", + "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} بە سەرکەوتوویی دامەزرا. پێشنیار دەکرێت UniGetUI دووبارە دەست پێ بکەیت بۆ تەواوکردنی دامەزراندن", + "Restart later": "دواتر دووبارە دەست پێ بکە", + "An error occurred:": "هەڵەیەک ڕوویدا:", + "I understand": "تێگەیشتم", + "WinGet was repaired successfully": "WinGet بە سەرکەوتوویی چاک کرایەوە", + "It is recommended to restart UniGetUI after WinGet has been repaired": "پێشنیار دەکرێت دوای چاککردنەوەی WinGet، UniGetUI دووبارە دەست پێ بکەیت", + "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "تێبینی: ئەم چارەسەرکەرە لە ڕێکخستنەکانی UniGetUI، لە بەشی WinGet، دەتوانرێت ناچالاک بکرێت", + "Restart": "دووبارە دەست پێ بکە", + "WinGet could not be repaired": "نەکرا WinGet چاک بکرێتەوە", + "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "کێشەیەکی چاوەڕواننەکراو کاتێک هەوڵ دەدرا WinGet چاک بکرێتەوە ڕوویدا. تکایە دواتر دووبارە هەوڵ بدەوە", + "Are you sure you want to delete all shortcuts?": "دڵنیایت دەتەوێت هەموو قەدبڕەکان بسڕیتەوە؟", + "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "هەر قەدبڕێکی نوێ کە لە کاتی دامەزراندن یان کردارێکی نوێکردنەوەدا دروست بکرێت، بە شێوەی خۆکار دەسڕدرێتەوە، لەبری ئەوەی یەکەم جار کە دۆزرایەوە داوای پشتڕاستکردنەوە پیشان بدرێت.", + "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "هەر قەدبڕێک کە دەرەوەی UniGetUI دروست یان دەستکاریکراوە پشتگوێ دەخرێت. دەتوانیت لە ڕێگەی دوگمەی {0} زیادیان بکەیت.", + "Are you really sure you want to enable this feature?": "بەڕاستی دڵنیایت دەتەوێت ئەم تایبەتمەندییە چالاک بکەیت؟", + "No new shortcuts were found during the scan.": "لە کاتی پشکنینەکەدا هیچ قەدبڕێکی نوێ نەدۆزرایەوە.", + "How to add packages to a bundle": "چۆن پاکێج زیاد بکەیت بۆ باندڵێک", + "In order to add packages to a bundle, you will need to: ": "بۆ زیادکردنی پاکێج بۆ باندڵێک، پێویستە: ", + "1. Navigate to the \"{0}\" or \"{1}\" page.": "1. بڕۆ بۆ پەڕەی \"{0}\" یان \"{1}\".", + "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. ئەو پاکێجانە بدۆزەرەوە کە دەتەوێت زیادیان بکەیت بۆ باندڵەکە، و خانەی هەڵبژاردنی لای چەپەیان هەڵبژێرە.", + "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. کاتێک ئەو پاکێجانەی دەتەوێت زیادیان بکەیت بۆ باندڵەکە هەڵبژێردران، ئەو هەڵبژاردەی \"{0}\" لە تووڵامرازدا بدۆزەرەوە و لێی بدە.", + "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. پاکێجەکانت زیاد کراون بۆ باندڵەکە. دەتوانیت بە زیادکردنی پاکێجی تر بەردەوام بیت، یان باندڵەکە هەناردە بکەیت.", + "Which backup do you want to open?": "کام پاشەکەوت دەتەوێت بکەیتەوە؟", + "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "ئەو پاشەکەوتە هەڵبژێرە کە دەتەوێت بکەیتەوە. دواتر دەتوانیت پشکنین بکەیت کام پاکێج/بەرنامە دەتەوێت بیگەڕێنیتەوە.", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "هەندێک کردار لە بەڕێوەچووندان. دەرچوون لە UniGetUI لەوانەیە ببێتە هۆی سەرکەوتوو نەبوونیان. دەتەوێت بەردەوام بیت؟", + "UniGetUI or some of its components are missing or corrupt.": "UniGetUI یان هەندێک لە پێکهاتەکانی ونن یان تێکچوون.", + "It is strongly recommended to reinstall UniGetUI to adress the situation.": "زۆر بە هێز پێشنیار دەکرێت UniGetUI دووبارە دابمەزرێنیت بۆ چارەسەرکردنی ئەم دۆخە.", + "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "بگەڕێوە بۆ تۆمارەکانی UniGetUI بۆ بەدەستهێنانی وردەکاریی زیاتر سەبارەت بە پەڕگە زیانلێکەوتووەکان", + "Integrity checks can be disabled from the Experimental Settings": "پشکنینەکانی integrity دەتوانرێن لە ڕێکخستنە ئەزموونییەکان ناچالاک بکرێن", + "Repair UniGetUI": "UniGetUI چاک بکەرەوە", + "Live output": "دەرهاویشتەی ڕاستەوخۆ", + "Package not found": "پاکێج نەدۆزرایەوە", + "An error occurred when attempting to show the package with Id {0}": "کاتێک هەوڵ دەدرا پاکێجەکە بە Id ـی {0} پیشان بدرێت هەڵەیەک ڕوویدا", + "Package": "پاکێج", + "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "ئەم باندڵەی پاکێجە هەندێک ڕێکخستن لەخۆ دەگرێت کە لەوانەیە مەترسیدار بن، و بە شێوەی بنەڕەتی پشتگوێ بخرێن.", + "Entries that show in YELLOW will be IGNORED.": "ئەو تۆمارانەی بە ڕەنگی زەرد پیشان دەدرێن پشتگوێ دەخرێن.", + "Entries that show in RED will be IMPORTED.": "ئەو تۆمارانەی بە ڕەنگی سوور پیشان دەدرێن هاوردە دەکرێن.", + "You can change this behavior on UniGetUI security settings.": "دەتوانیت ئەم هەڵسوکەوتە لە ڕێکخستنە ئاسایشییەکانی UniGetUI بگۆڕیت.", + "Open UniGetUI security settings": "ڕێکخستنە ئاسایشییەکانی UniGetUI بکەرەوە", + "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "ئەگەر ڕێکخستنە ئاسایشییەکان بگۆڕیت، دەبێت باندڵەکە دووبارە بکەیتەوە تاکو گۆڕانکارییەکان کاریگەریان هەبێت.", + "Details of the report:": "وردەکارییەکانی ڕاپۆرتەکە:", + "\"{0}\" is a local package and can't be shared": "\"{0}\" پاکێجێکی ناوخۆییە و ناتوانرێت هاوبەش بکرێت", + "Are you sure you want to create a new package bundle? ": "دڵنیایت دەتەوێت باندڵێکی پاکێجی نوێ دروست بکەیت؟ ", + "Any unsaved changes will be lost": "هەر گۆڕانکارییەکی پاشەکەوت نەکراو لەدەست دەچێت", + "Warning!": "ئاگاداری!", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "بۆ هۆکاری ئاسایش، ئارگیومێنتە تایبەتەکانی هێڵی فرمان بە شێوەی بنەڕەتی ناچالاکن. بڕۆ بۆ ڕێکخستنە ئاسایشییەکانی UniGetUI بۆ گۆڕینی ئەمە. ", + "Change default options": "هەڵبژاردە بنەڕەتییەکان بگۆڕە", + "Ignore future updates for this package": "نوێکردنەوە داهاتووەکانی ئەم پاکێجە پشتگوێ بخە", + "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "بۆ هۆکاری ئاسایش، سکریپتەکانی پێش کردار و دوای کردار بە شێوەی بنەڕەتی ناچالاکن. بڕۆ بۆ ڕێکخستنە ئاسایشییەکانی UniGetUI بۆ گۆڕینی ئەمە. ", + "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "دەتوانیت ئەو فرمانانە دیاری بکەیت کە پێش یان دوای دامەزراندن، نوێکردنەوە یان لابردنی ئەم پاکێجە بەڕێوە دەچن. ئەوان لە ناو command prompt بەڕێوە دەچن، بۆیە سکریپتەکانی CMD لێرە کار دەکەن.", + "Change this and unlock": "ئەمە بگۆڕە و قفڵەکە بکەرەوە", + "{0} Install options are currently locked because {0} follows the default install options.": "هەڵبژاردەکانی دامەزراندنی {0} ئێستا قفڵکراون، چونکە {0} شوێنی هەڵبژاردە بنەڕەتییەکانی دامەزراندن دەکەوێت.", + "Select the processes that should be closed before this package is installed, updated or uninstalled.": "ئەو پرۆسەسانە هەڵبژێرە کە دەبێت پێش دامەزراندن، نوێکردنەوە یان لابردنی ئەم پاکێجە دابخرێن.", + "Write here the process names here, separated by commas (,)": "ناوەکانی پرۆسەسەکان لێرە بنووسە، بە ویرگول (,) لێک جیاکراونەتەوە", + "Unset or unknown": "دانەنراو یان نەزانراو", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "تکایە دەرهاویشتەی هێڵی فرمان ببینە یان بگەڕێوە بۆ مێژووی کردارەکان بۆ زانیاریی زیاتر سەبارەت بە کێشەکە.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "ئەم پاکێجە وێنەی شاشەی نییە یان ئایکۆنەکەی ونە؟ بە زیادکردنی ئایکۆن و وێنە شاشە ونبووەکان بۆ بنکەدراوە کراوە و گشتییەکەمان، یارمەتی UniGetUI بدە.", + "Become a contributor": "ببە بەشداربوو", + "Save": "پاشەکەوتی بکە", + "Update to {0} available": "نوێکردنەوە بۆ {0} بەردەستە", + "Reinstall": "دووبارە دابمەزرێنە", + "Installer not available": "دامەزرێنەر بەردەست نییە", + "Version:": "وەشان:", + "Performing backup, please wait...": "پاشەکەوتکردن ئەنجام دەدرێت، تکایە چاوەڕێ بکە...", + "An error occurred while logging in: ": "کاتێک چوونەژوورەوە ئەنجام دەدرا هەڵەیەک ڕوویدا: ", + "Fetching available backups...": "پاشەکەوتە بەردەستەکان هێنراون...", + "Done!": "تەواو!", + "The cloud backup has been loaded successfully.": "پاشەکەوتی هەور بە سەرکەوتوویی بارکرا.", + "An error occurred while loading a backup: ": "کاتێک پاشەکەوتێک بار دەکرا هەڵەیەک ڕوویدا: ", + "Backing up packages to GitHub Gist...": "پاکێجەکان بۆ GitHub Gist پاشەکەوت دەکرێن...", + "Backup Successful": "پاشەکەوت سەرکەوتوو بوو", + "The cloud backup completed successfully.": "پاشەکەوتی هەور بە سەرکەوتوویی تەواو بوو.", + "Could not back up packages to GitHub Gist: ": "نەتوانرا باکاپی پەکەجەکان بۆ GitHub Gist بکرێت: ", + "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "هیچ ضمانەتێک نییە کە زانیارییەکانی چوونەژوورەوەی دابینکراو بە سەلامەتی پاشەکەوت بکرێن، بۆیە باشترە زانیارییەکانی هەژماری بانکی خۆت بەکارنەهێنیت", + "Enable the automatic WinGet troubleshooter": "چارەسەرکەری خۆکاری WinGet چالاک بکە", + "Enable an [experimental] improved WinGet troubleshooter": "چارەسەرکەری [تاقیکراوەیی] باشترکراوی WinGet چالاک بکە", + "Add updates that fail with a 'no applicable update found' to the ignored updates list": "نوێکردنەوەکانێک کە بە 'no applicable update found' سەرکەوتوو نابن بخەرە ناو لیستی نوێکردنەوە پشتگوێخراوەکان.", + "Invalid selection": "هەڵبژاردنی نادروست", + "No package was selected": "هیچ پەکەجێک هەڵنەبژێردرا", + "More than 1 package was selected": "زیاتر لە 1 پەکەج هەڵبژێردرا", + "List": "لیست", + "Grid": "خانەبەندی", + "Icons": "ئایکۆنەکان", + "\"{0}\" is a local package and does not have available details": "\"{0}\" پەکەجێکی ناوخۆییە و وردەکاریی بەردەستی نییە", + "\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" پەکەجێکی ناوخۆییە و لەگەڵ ئەم تایبەتمەندییە هاوگونجاو نییە", + "WinGet malfunction detected": "هەڵەی کارکردنی WinGet دۆزرایەوە", + "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "وا دیارە WinGet بە دروستی کار ناکات. دەتەوێت هەوڵی چاککردنەوەی WinGet بدەیت؟", + "Repair WinGet": "WinGet چاک بکەرەوە", + "Create .ps1 script": "سکریپتی .ps1 دروست بکە", + "Add packages to bundle": "پەکەجەکان زیاد بکە بۆ باندڵ", + "Preparing packages, please wait...": "پەکەجەکان ئامادە دەکرێن، تکایە چاوەڕێ بکە...", + "Loading packages, please wait...": "پەکەجەکان بار دەکرێن، تکایە چاوەڕێ بکە...", + "Saving packages, please wait...": "پەکەجەکان پاشەکەوت دەکرێن، تکایە چاوەڕێ بکە...", + "The bundle was created successfully on {0}": "باندڵەکە بە سەرکەوتوویی لە {0} دروست کرا", + "Install script": "سکریپتی دامەزراندن", + "The installation script saved to {0}": "سکریپتی دامەزراندن لە {0} پاشەکەوت کرا", + "An error occurred while attempting to create an installation script:": "لە کاتی هەوڵدان بۆ دروستکردنی سکریپتی دامەزراندن هەڵەیەک ڕوویدا:", + "{0} packages are being updated": "{0} پەکەج نوێ دەکرێنەوە", + "Error": "هەڵە", + "Log in failed: ": "چوونەژوورەوە سەرکەوتوو نەبوو: ", + "Log out failed: ": "چوونەدەرەوە سەرکەوتوو نەبوو: ", + "Package backup settings": "ڕێکخستنەکانی باکاپی پەکەج", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", - "(Number {0} in the queue)": "", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "", - "0 packages found": "", - "0 updates found": "", - "1 month": "", - "1 package was found": "", - "1 year": "", - "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "", - "A restart is required": "", - "About Qt6": "", - "About WingetUI version {0}": "", - "About the dev": "", - "Action when double-clicking packages, hide successful installations": "", - "Add a source to {0}": "", - "Add a timestamp to the backup files": "", - "Add packages or open an existing bundle": "", - "Addition succeeded": "", - "Administrator privileges preferences": "", - "Administrator rights": "", - "All files": "", - "Allow package operations to be performed in parallel": "", - "Allow parallel installs (NOT RECOMMENDED)": "", - "Allow {pm} operations to be performed in parallel": "", - "Always elevate {pm} installations by default": "", - "Always run {pm} operations with administrator rights": "", - "An unexpected error occurred:": "", - "Another source": "", - "App Name": "", - "Are these screenshots wron or blurry?": "", - "Ask for administrator rights when required": "", - "Ask once or always for administrator rights, elevate installations by default": "", - "Ask only once for administrator privileges (not recommended)": "", - "Authenticate to the proxy with an user and a password": "", - "Automatically save a list of your installed packages on your computer.": "", - "Autostart WingetUI in the notifications area": "", - "Available updates: {0}": "", - "Available updates: {0}, not finished yet...": "", - "Backup installed packages": "", - "Backup location": "", - "But here are other things you can do to learn about WingetUI even more:": "", - "By toggling a package manager off, you will no longer be able to see or update its packages.": "", - "Cache administrator rights and elevate installers by default": "", - "Cache administrator rights, but elevate installers only when required": "", - "Cache was reset successfully!": "", - "Can't {0} {1}": "", - "Cancel all operations": "", - "Change how UniGetUI installs packages, and checks and installs available updates": "", - "Change install location": "", - "Check for updates periodically": "", - "Check for updates regularly, and ask me what to do when updates are found.": "", - "Check for updates regularly, and automatically install available ones.": "", - "Check out my {0} and my {1}!": "", - "Check out some WingetUI overviews": "", - "Checking for other running instances...": "", - "Checking for updates...": "", - "Checking found instace(s)...": "", - "Choose how many operations shouls be performed in parallel": "", - "Clear finished operations": "", - "Clear successful operations": "", - "Clear the local icon cache": "", - "Clearing Scoop cache...": "", - "Close WingetUI to the notification area": "", - "Command-line Output": "", - "Compare query against": "", - "Component Information": "", - "Contribute to the icon and screenshot repository": "", - "Copy": "", - "Could not load announcements - ": "", - "Could not load announcements - HTTP status code is $CODE": "", - "Could not remove {source} from {manager}": "", - "Current Version": "", - "Current user": "", - "Custom arguments:": "", - "Custom command-line arguments:": "", - "Customize WingetUI - for hackers and advanced users only": "", - "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "", - "Default preferences - suitable for regular users": "", - "Description:": "", - "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "", - "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "", - "Disable new share API (port 7058)": "", - "Discover packages": "", - "Distinguish between\nuppercase and lowercase": "", - "Do NOT check for updates": "", - "Do an interactive install for the selected packages": "", - "Do an interactive uninstall for the selected packages": "", - "Do an interactive update for the selected packages": "", - "Do not download new app translations from GitHub automatically": "", - "Do not remove successful operations from the list automatically": "", - "Do not update package indexes on launch": "", - "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "", - "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "", - "Do you really want to uninstall {0} packages?": "", - "Do you want to restart your computer now?": "", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "", - "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "", - "Donate": "", - "Download updated language files from GitHub automatically": "", - "Downloading": "", - "Downloading installer for {package}": "", - "Downloading package metadata...": "", - "Enable the new UniGetUI-Branded UAC Elevator": "", - "Enable the new process input handler (StdIn automated closer)": "", - "Export log as a file": "", - "Export packages": "", - "Export selected packages to a file": "", - "Fetching latest announcements, please wait...": "", - "Finish": "", - "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "", - "Formerly known as WingetUI": "", - "Found": "", - "Found packages: ": "", - "Found packages: {0}": "", - "Found packages: {0}, not finished yet...": "", - "GitHub profile": "", - "Global": "", - "Help and documentation": "", - "Hide details": "", - "How should installations that require administrator privileges be treated?": "", - "Ignore updates for the selected packages": "", - "Ignored updates": "", - "Import packages": "", - "Import packages from a file": "", - "Initializing WingetUI...": "", - "Install and more": "", - "Install and update preferences": "", - "Install packages from a file": "", - "Install selected packages": "", - "Install selected packages with administrator privileges": "", - "Install the latest prerelease version": "", - "Install updates automatically": "", - "Installation canceled by the user!": "", - "Installed packages": "", - "Instance {0} responded, quitting...": "", - "Is this package missing the icon?": "", - "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "", - "Latest Version": "", - "Latest Version:": "", - "Latest details...": "", - "Launching subprocess...": "", - "Licenses": "", - "Live command-line output": "", - "Loading UI components...": "", - "Loading WingetUI...": "", - "Local machine": "", - "Locating {pm}...": "", - "Looking for packages...": "", - "Machine | Global": "", - "Manage WingetUI autostart behaviour from the Settings app": "", - "Manage ignored packages": "", - "Manifests": "", - "New Version": "", - "New bundle": "", - "No packages found": "", - "No packages found matching the input criteria": "", - "No packages have been added yet": "", - "No packages selected": "", - "No sources found": "", - "No sources were found": "", - "No updates are available": "", - "Notes:": "", - "Notification tray options": "", - "Ok": "", - "Open GitHub": "", - "Open WingetUI": "", - "Open backup location": "", - "Open existing bundle": "", - "Open the welcome wizard": "", - "Operation cancelled": "", - "Options saved": "", - "Package Manager": "", - "Package managers": "", - "Package {name} from {manager}": "", - "Packages": "", - "Packages found: {0}": "", - "Paste a valid URL to the database": "", - "Perform a backup now": "", - "Periodically perform a backup of the installed packages": "", - "Please enter at least 3 characters": "", - "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "", - "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "", - "Please select how you want to configure WingetUI": "", - "Please type at least two characters": "", - "Portable": "", - "Publication date:": "", - "Quit WingetUI": "", - "Release notes URL:": "", - "Release notes:": "", - "Reload": "", - "Removal failed": "", - "Removal succeeded": "", - "Remove permanent data": "", - "Remove successful installs/uninstalls/updates from the installation list": "", - "Repository": "", - "Reset Scoop's global app cache": "", - "Reset Winget sources (might help if no packages are listed)": "", - "Reset WingetUI and its preferences": "", - "Reset WingetUI icon and screenshot cache": "", - "Resetting Winget sources - WingetUI": "", - "Restart now": "", - "Restart your PC to finish installation": "", - "Restart your computer to finish the installation": "", - "Retry failed operations": "", - "Retrying, please wait...": "", - "Return to top": "", - "Running the installer...": "", - "Running the uninstaller...": "", - "Running the updater...": "", - "Save File": "", - "Save bundle as": "", - "Save now": "", - "Search": "", - "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "", - "Search on available updates": "", - "Search on your software": "", - "Searching for installed packages...": "", - "Searching for packages...": "", - "Searching for updates...": "", - "Select \"{item}\" to add your custom bucket": "", - "Select a folder": "", - "Select all packages": "", - "Select only if you know what you are doing.": "", - "Select package file": "", - "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "", - "Sent handshake. Waiting for instance listener's answer... ({0}%)": "", - "Set custom backup file name": "", - "Share WingetUI": "", - "Show UniGetUI on the system tray": "", - "Show a notification when an installation fails": "", - "Show a notification when an installation finishes successfully": "", - "Show details": "", - "Show info about the package on the Updates tab": "", - "Show missing translation strings": "", - "Show package details": "", - "Show the live output": "", - "Skip": "", - "Skip the hash check when installing the selected packages": "", - "Skip the hash check when updating the selected packages": "", - "Source addition failed": "", - "Source removal failed": "", - "Source:": "", - "Start": "", - "Starting daemons...": "", - "Startup options": "", - "Status": "", - "Stuck here? Skip initialization": "", - "Suport the developer": "", - "Support me": "", - "Support the developer": "", - "Systems are now ready to go!": "", - "Text file": "", - "Thank you 😉": "", - "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "", - "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "", - "The following packages are going to be installed on your system.": "", - "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "", - "The icons and screenshots are maintained by users like you!": "", - "The installer has an invalid checksum": "", - "The installer hash does not match the expected value.": "", - "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "", - "The package {0} from {1} was not found.": "", - "The selected packages have been blacklisted": "", - "The update will be installed upon closing WingetUI": "", - "The update will not continue.": "", - "The user has canceled {0}, that was a requirement for {1} to be run": "", - "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "", - "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "", - "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "", - "They are the programs in charge of installing, updating and removing packages.": "", - "This could represent a security risk.": "", - "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "", - "This is the default choice.": "", - "This package can be updated": "", - "This package can be updated to version {0}": "", - "This process is running with administrator privileges": "", - "This setting is disabled": "", - "This wizard will help you configure and customize WingetUI!": "", - "Toggle search filters pane": "", - "Type here the name and the URL of the source you want to add, separed by a space.": "", - "Unable to find package": "", - "Unable to load informarion": "", - "Uninstall and more": "", - "Uninstall canceled by the user!": "", - "Uninstall the selected packages with administrator privileges": "", - "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "", - "Update and more": "", - "Update date": "", - "Update found!": "", - "Update package indexes on launch": "", - "Update packages automatically": "", - "Update selected packages": "", - "Update selected packages with administrator privileges": "", - "Update vcpkg's Git portfiles automatically (requires Git installed)": "", - "Updates": "", - "Updates available!": "", - "Updates preferences": "", - "Updating WingetUI": "", - "Url": "", - "Use Legacy bundled WinGet instead of PowerShell CMDLets": "", - "Use bundled WinGet instead of PowerShell CMDlets": "", - "Use installed GSudo instead of the bundled one": "", - "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "", - "Use system Chocolatey (Needs a restart)": "", - "Use system Winget (Needs a restart)": "", - "Use system Winget (System language must be set to english)": "", - "Use the WinGet COM API to fetch packages": "", - "Use the WinGet PowerShell Module instead of the WinGet COM API": "", - "User": "", - "User | Local": "", - "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "", - "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "", - "Vcpkg was not found on your system.": "", - "View WingetUI on GitHub": "", - "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "", - "Waiting for other installations to finish...": "", - "Waiting for {0} to complete...": "", - "We could not load detailed information about this package, because it was not found in any of your package sources": "", - "We could not load detailed information about this package, because it was not installed from an available package manager.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "", - "We couldn't find any package": "", - "Welcome to WingetUI": "", - "Which package managers do you want to use?": "", - "Which source do you want to add?": "", - "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "", - "WingetUI": "", - "WingetUI - Everything is up to date": "", - "WingetUI - {0} updates are available": "", - "WingetUI - {0} {1}": "", - "WingetUI Homepage - Share this link!": "", - "WingetUI Settings File": "", - "WingetUI autostart behaviour, application launch settings": "", - "WingetUI can check if your software has available updates, and install them automatically if you want to": "", - "WingetUI has not been machine translated. The following users have been in charge of the translations:": "", - "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "", - "WingetUI is being updated. When finished, WingetUI will restart itself": "", - "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "", - "WingetUI log": "", - "WingetUI tray application preferences": "", - "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "WingetUI version {0} is being downloaded.": "", - "WingetUI will become {newname} soon!": "", - "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "", - "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "", - "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "", - "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "", - "WingetUI {0} is ready to be installed.": "", - "You may restart your computer later if you wish": "", - "You will be prompted only once, and administrator rights will be granted to packages that request them.": "", - "You will be prompted only once, and every future installation will be elevated automatically.": "", - "buy me a coffee": "", - "formerly WingetUI": "", - "homepage": "", - "install": "", - "installation": "", - "uninstall": "", - "uninstallation": "", - "uninstalled": "", - "update(noun)": "", - "update(verb)": "", - "updated": "", - "{0} Uninstallation": "", - "{0} aborted": "", - "{0} can be updated": "", - "{0} failed": "", - "{0} has failed, that was a requirement for {1} to be run": "", - "{0} installation": "", - "{0} is being updated": "", - "{0} months": "", - "{0} packages found": "", - "{0} packages were found": "", - "{0} succeeded": "", - "{0} update": "", - "{0} was {1} successfully!": "", - "{0} weeks": "", - "{0} years": "", - "{0} {1} failed": "", - "{package} installation failed": "", - "{package} uninstall failed": "", - "{package} update failed": "", - "{package} update failed. Click here for more details.": "", - "{pm} could not be found": "", - "{pm} found: {state}": "", - "{pm} package manager specific preferences": "", - "{pm} preferences": "", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "", - "Thank you ❤": "", - "This project has no connection with the official {0} project — it's completely unofficial.": "" + "About WingetUI": "About UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "WingetUI Settings": "UniGetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI Version {0}", + "WingetUI License": "UniGetUI License", + "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Update UniGetUI automatically", + "Reset WingetUI": "Reset UniGetUI", + "WingetUI display language:": "UniGetUI display language:", + "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Enable WingetUI notifications": "Enable UniGetUI notifications", + "WingetUI Log": "UniGetUI Log", + "Show WingetUI": "Show UniGetUI", + "WingetUI Homepage": "UniGetUI Homepage", + "WingetUI Repository": "UniGetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", + "Restart WingetUI": "Restart UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "(Number {0} in the queue)": "(Number {0} in the queue)", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign", + "0 packages found": "0 packages found", + "0 updates found": "0 updates found", + "1 month": "a month", + "1 package was found": "1 package was found", + "1 year": "1 year", + "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools", + "A restart is required": "A restart is required", + "About Qt6": "About Qt6", + "About WingetUI version {0}": "About UniGetUI version {0}", + "About the dev": "About the dev", + "Action when double-clicking packages, hide successful installations": "Action when double-clicking packages, hide successful installations", + "Add a source to {0}": "Add a source to {0}", + "Add a timestamp to the backup files": "Add a timestamp to the backup files", + "Add packages or open an existing bundle": "Add packages or open an existing bundle", + "Addition succeeded": "Addition succeeded", + "Administrator privileges preferences": "Administrator privileges preferences", + "Administrator rights": "Administrator rights", + "All files": "All files", + "Allow package operations to be performed in parallel": "Allow package operations to be performed in parallel", + "Allow parallel installs (NOT RECOMMENDED)": "Allow parallel installs (NOT RECOMMENDED)", + "Allow {pm} operations to be performed in parallel": "Allow {pm} operations to be performed in parallel", + "Always elevate {pm} installations by default": "Always elevate {pm} installations by default", + "Always run {pm} operations with administrator rights": "Always run {pm} operations with administrator rights", + "An unexpected error occurred:": "An unexpected error occurred:", + "Another source": "Another source", + "App Name": "App Name", + "Are these screenshots wron or blurry?": "Are these screenshots wrong or blurry?", + "Ask for administrator rights when required": "Ask for administrator rights when required", + "Ask once or always for administrator rights, elevate installations by default": "Ask once or always for administrator rights, elevate installations by default", + "Ask only once for administrator privileges (not recommended)": "Ask only once for administrator privileges (not recommended)", + "Authenticate to the proxy with an user and a password": "Authenticate to the proxy with an user and a password", + "Automatically save a list of your installed packages on your computer.": "Automatically save a list of your installed packages on your computer.", + "Autostart WingetUI in the notifications area": "Autostart UniGetUI in the notifications area", + "Available updates: {0}": "Available updates: {0}", + "Available updates: {0}, not finished yet...": "Available updates: {0}, not finished yet...", + "Backup installed packages": "Backup installed packages", + "Backup location": "Backup location", + "But here are other things you can do to learn about WingetUI even more:": "But here are other things you can do to learn about UniGetUI even more:", + "By toggling a package manager off, you will no longer be able to see or update its packages.": "By toggling a package manager off, you will no longer be able to see or update its packages.", + "Cache administrator rights and elevate installers by default": "Cache administrator rights and elevate installers by default", + "Cache administrator rights, but elevate installers only when required": "Cache administrator rights, but elevate installers only when required", + "Cache was reset successfully!": "Cache was reset successfully!", + "Can't {0} {1}": "Can't {0} {1}", + "Cancel all operations": "Cancel all operations", + "Change how UniGetUI installs packages, and checks and installs available updates": "Change how UniGetUI installs packages, and checks and installs available updates", + "Change install location": "Change install location", + "Check for updates periodically": "Check for updates periodically.", + "Check for updates regularly, and ask me what to do when updates are found.": "Check for updates regularly, and ask me what to do when updates are found.", + "Check for updates regularly, and automatically install available ones.": "Check for updates regularly, and automatically install available ones.", + "Check out my {0} and my {1}!": "Check out my {0} and my {1}!", + "Check out some WingetUI overviews": "Check out some UniGetUI reviews", + "Checking for other running instances...": "Checking for other running instances...", + "Checking for updates...": "Checking for updates...", + "Checking found instace(s)...": "Checking found instance(s)...", + "Choose how many operations shouls be performed in parallel": "Choose how many operations should be performed in parallel", + "Clear finished operations": "Clear finished operations", + "Clear successful operations": "Clear successful operations", + "Clear the local icon cache": "Clear the local icon cache", + "Clearing Scoop cache...": "Clearing Scoop cache...", + "Close WingetUI to the notification area": "Close UniGetUI to the notification area", + "Command-line Output": "Command-line Output", + "Compare query against": "Compare query against", + "Component Information": "Component Information", + "Contribute to the icon and screenshot repository": "Contribute to the icon and screenshot repository", + "Copy": "Copy", + "Could not load announcements - ": "Could not load announcements - ", + "Could not load announcements - HTTP status code is $CODE": "Could not load announcements - HTTP status code is $CODE", + "Could not remove {source} from {manager}": "Could not remove {source} from {manager}", + "Current Version": "Current Version", + "Current user": "Current user", + "Custom arguments:": "Custom arguments:", + "Custom command-line arguments:": "Custom command-line arguments:", + "Customize WingetUI - for hackers and advanced users only": "Customize UniGetUI - for hackers and advanced users only", + "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.", + "Default preferences - suitable for regular users": "Default preferences - suitable for regular users", + "Description:": "Description:", + "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "Developing is hard, and this application is free. However, if you found the application helpful, you can always buy me a coffee :)", + "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)", + "Disable new share API (port 7058)": "Disable new share API (port 7058)", + "Discover packages": "Discover Packages", + "Distinguish between\nuppercase and lowercase": "Distinguish between uppercase and lowercase", + "Do NOT check for updates": "Do NOT check for updates", + "Do an interactive install for the selected packages": "Do an interactive install for the selected packages", + "Do an interactive uninstall for the selected packages": "Do an interactive uninstall for the selected packages", + "Do an interactive update for the selected packages": "Do an interactive update for the selected packages", + "Do not download new app translations from GitHub automatically": "Do not download new app translations from GitHub automatically", + "Do not remove successful operations from the list automatically": "Do not remove successful operations from the list automatically", + "Do not update package indexes on launch": "Do not update package indexes on launch", + "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "Do you find UniGetUI useful? If you can, you may want to support my work, so I can continue making UniGetUI the ultimate package managing interface.", + "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!", + "Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?", + "Do you want to restart your computer now?": "Do you want to restart your computer now?", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", + "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.", + "Donate": "Donate", + "Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically", + "Downloading": "Downloading", + "Downloading installer for {package}": "Downloading installer for {package}", + "Downloading package metadata...": "Downloading package metadata...", + "Enable the new UniGetUI-Branded UAC Elevator": "Enable the new UniGetUI-Branded UAC Elevator", + "Enable the new process input handler (StdIn automated closer)": "Enable the new process input handler (StdIn automated closer)", + "Export log as a file": "Export log as a file", + "Export packages": "Export packages", + "Export selected packages to a file": "Export selected packages to a file", + "Fetching latest announcements, please wait...": "Fetching latest announcements, please wait...", + "Finish": "Finish", + "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)", + "Formerly known as WingetUI": "Formerly known as WingetUI", + "Found": "Found", + "Found packages: ": "Found packages: ", + "Found packages: {0}": "Found packages: {0}", + "Found packages: {0}, not finished yet...": "Found packages: {0}, not finished yet...", + "GitHub profile": "GitHub profile", + "Global": "Global", + "Help and documentation": "Help and documentation", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", + "Hide details": "Hide details", + "How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?", + "Ignore updates for the selected packages": "Ignore updates for the selected packages", + "Ignored updates": "Ignored updates", + "Import packages": "Import packages", + "Import packages from a file": "Import packages from a file", + "Initializing WingetUI...": "Initializing UniGetUI...", + "Install and more": "Install and more", + "Install and update preferences": "Install and update preferences", + "Install packages from a file": "Install packages from a file", + "Install selected packages": "Install selected packages", + "Install selected packages with administrator privileges": "Install selected packages with administrator privileges", + "Install the latest prerelease version": "Install the latest prerelease version", + "Install updates automatically": "Install updates automatically", + "Installation canceled by the user!": "Installation canceled by the user!", + "Installed packages": "Installed Packages", + "Instance {0} responded, quitting...": "Instance {0} responded, quitting...", + "Is this package missing the icon?": "Is this package missing the icon?", + "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "It looks like you ran UniGetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges. Click on \"{showDetails}\" to see why.", + "Latest Version": "Latest Version", + "Latest Version:": "Latest Version:", + "Latest details...": "Latest details...", + "Launching subprocess...": "Launching subprocess...", + "Licenses": "Licenses", + "Live command-line output": "Live command-line output", + "Loading UI components...": "Loading UI components...", + "Loading WingetUI...": "Loading UniGetUI...", + "Local machine": "Local machine", + "Locating {pm}...": "Locating {pm}...", + "Looking for packages...": "Looking for packages...", + "Machine | Global": "Machine | Global", + "Manage WingetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "Manage ignored packages": "Manage ignored packages", + "Manifests": "Manifests", + "New Version": "New Version", + "New bundle": "New bundle", + "No packages found": "No packages found", + "No packages found matching the input criteria": "No packages found matching the input criteria", + "No packages have been added yet": "No packages have been added yet", + "No packages selected": "No packages selected", + "No sources found": "No sources found", + "No sources were found": "No sources were found", + "No updates are available": "No updates are available", + "Notes:": "Notes:", + "Notification tray options": "Notification tray options", + "Ok": "OK", + "Open GitHub": "Open GitHub", + "Open WingetUI": "Open UniGetUI", + "Open backup location": "Open backup location", + "Open existing bundle": "Open existing bundle", + "Open the welcome wizard": "Open the welcome wizard", + "Operation cancelled": "Operation cancelled", + "Options saved": "Options saved", + "Package Manager": "Package Manager", + "Package managers": "Package Managers", + "Package {name} from {manager}": "Package {name} from {manager}", + "Packages": "Packages", + "Packages found: {0}": "Packages found: {0}", + "Paste a valid URL to the database": "Paste a valid URL to the database", + "Perform a backup now": "Perform a backup now", + "Periodically perform a backup of the installed packages": "Periodically perform a backup of the installed packages", + "Please enter at least 3 characters": "Please enter at least 3 characters", + "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.", + "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.", + "Please select how you want to configure WingetUI": "Please select how you want to configure UniGetUI", + "Please type at least two characters": "Please type at least two characters", + "Portable": "Portable", + "Publication date:": "Publication date:", + "Quit WingetUI": "Quit UniGetUI", + "Release notes URL:": "Release notes URL:", + "Release notes:": "Release notes:", + "Reload": "Reload", + "Removal failed": "Removal failed", + "Removal succeeded": "Removal succeeded", + "Remove permanent data": "Remove permanent data", + "Remove successful installs/uninstalls/updates from the installation list": "Remove successful installs/uninstalls/updates from the installation list", + "Repository": "Repository", + "Reset Scoop's global app cache": "Reset Scoop's global app cache", + "Reset Winget sources (might help if no packages are listed)": "Reset WinGet sources (might help if no packages are listed)", + "Reset WingetUI and its preferences": "Reset UniGetUI and its preferences", + "Reset WingetUI icon and screenshot cache": "Reset UniGetUI icon and screenshot cache", + "Resetting Winget sources - WingetUI": "Resetting WinGet sources - UniGetUI", + "Restart now": "Restart now", + "Restart your PC to finish installation": "Restart your PC to finish installation", + "Restart your computer to finish the installation": "Restart your computer to finish the installation", + "Retry failed operations": "Retry failed operations", + "Retrying, please wait...": "Retrying, please wait...", + "Return to top": "Return to top", + "Running the installer...": "Running the installer...", + "Running the uninstaller...": "Running the uninstaller...", + "Running the updater...": "Running the updater...", + "Save File": "Save File", + "Save bundle as": "Save bundle as", + "Save now": "Save now", + "Search": "Search", + "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want UniGetUI to overcomplicate, I just want a simple software store", + "Search on available updates": "Search on available updates", + "Search on your software": "Search on your software", + "Searching for installed packages...": "Searching for installed packages...", + "Searching for packages...": "Searching for packages...", + "Searching for updates...": "Searching for updates...", + "Select \"{item}\" to add your custom bucket": "Select \"{item}\" to add your custom bucket", + "Select a folder": "Select a folder", + "Select all packages": "Select all packages", + "Select only if you know what you are doing.": "Select only if you know what you are doing.", + "Select package file": "Select package file", + "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.", + "Sent handshake. Waiting for instance listener's answer... ({0}%)": "Sent handshake. Waiting for instance listener's answer... ({0}%)", + "Set custom backup file name": "Set custom backup file name", + "Share WingetUI": "Share UniGetUI", + "Show UniGetUI on the system tray": "Show UniGetUI on the system tray", + "Show a notification when an installation fails": "Show a notification when an installation fails", + "Show a notification when an installation finishes successfully": "Show a notification when an installation finishes successfully", + "Show details": "Show details", + "Show info about the package on the Updates tab": "Show info about the package on the Updates tab", + "Show missing translation strings": "Show missing translation strings", + "Show package details": "Show package details", + "Show the live output": "Show the live output", + "Skip": "Skip", + "Skip the hash check when installing the selected packages": "Skip the hash check when installing the selected packages", + "Skip the hash check when updating the selected packages": "Skip the hash check when updating the selected packages", + "Source addition failed": "Source addition failed", + "Source removal failed": "Source removal failed", + "Source:": "Source:", + "Start": "Start", + "Starting daemons...": "Starting daemons...", + "Startup options": "Startup options", + "Status": "Status", + "Stuck here? Skip initialization": "Stuck here? Skip initialization", + "Suport the developer": "Support the developer", + "Support me": "Support me", + "Support the developer": "Support the developer", + "Systems are now ready to go!": "Systems are now ready to go!", + "Text file": "Text file", + "Thank you Γ¥ñ": "Thank you Γ¥ñ", + "Thank you 😉": "Thank you 😉", + "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.", + "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.", + "The following packages are going to be installed on your system.": "The following packages are going to be installed on your system.", + "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.", + "The icons and screenshots are maintained by users like you!": "The icons and screenshots are maintained by users like you!", + "The installer has an invalid checksum": "The installer has an invalid checksum", + "The installer hash does not match the expected value.": "The installer hash does not match the expected value.", + "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "The main goal of this project is to create an intuitive UI for the most common CLI package managers for Windows, such as Winget and Scoop.", + "The package {0} from {1} was not found.": "The package {0} from {1} was not found.", + "The selected packages have been blacklisted": "The selected packages have been blacklisted", + "The update will be installed upon closing WingetUI": "The update will be installed upon closing UniGetUI", + "The update will not continue.": "The update will not continue.", + "The user has canceled {0}, that was a requirement for {1} to be run": "The user has canceled {0}, that was a requirement for {1} to be run", + "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "There are some great videos on YouTube that showcase UniGetUI and its capabilities. You could learn useful tricks and tips!", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "There are two main reasons to not run UniGetUI as administrator:\nThe first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\nThe second one is that running UniGetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\nRemember that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.", + "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "There is an installation in progress. If you close UniGetUI, the installation may fail and have unexpected results. Do you still want to quit UniGetUI?", + "They are the programs in charge of installing, updating and removing packages.": "They are the programs in charge of installing, updating and removing packages.", + "This could represent a security risk.": "This could represent a security risk.", + "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}", + "This is the default choice.": "This is the default choice.", + "This package can be updated": "This package can be updated", + "This package can be updated to version {0}": "This package can be updated to version {0}", + "This process is running with administrator privileges": "This process is running with administrator privileges", + "This project has no connection with the official {0} project ΓÇö it's completely unofficial.": "This project has no connection with the official {0} project ΓÇö it's completely unofficial.", + "This setting is disabled": "This setting is disabled", + "This wizard will help you configure and customize WingetUI!": "This wizard will help you configure and customize UniGetUI!", + "Toggle search filters pane": "Toggle search filters pane", + "Type here the name and the URL of the source you want to add, separed by a space.": "Type here the name and the URL of the source you want to add, separated by a space.", + "Unable to find package": "Unable to find the package", + "Unable to load informarion": "Unable to load information", + "Uninstall and more": "Uninstall and more", + "Uninstall canceled by the user!": "Uninstall canceled by the user!", + "Uninstall the selected packages with administrator privileges": "Uninstall the selected packages with administrator privileges", + "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.", + "Update and more": "Update and more", + "Update date": "Update date", + "Update found!": "Update found!", + "Update package indexes on launch": "Update package indexes on launch", + "Update packages automatically": "Update packages automatically", + "Update selected packages": "Update selected packages", + "Update selected packages with administrator privileges": "Update selected packages with administrator privileges", + "Update vcpkg's Git portfiles automatically (requires Git installed)": "Update vcpkg's Git portfiles automatically (requires Git installed)", + "Updates": "Updates", + "Updates available!": "Updates available!", + "Updates preferences": "Updates preferences", + "Updating WingetUI": "Updating UniGetUI", + "Url": "URL", + "Use Legacy bundled WinGet instead of PowerShell CMDLets": "Use Legacy bundled WinGet instead of PowerShell CMDLets", + "Use bundled WinGet instead of PowerShell CMDlets": "Use bundled WinGet instead of PowerShell CMDlets", + "Use installed GSudo instead of the bundled one": "Use installed GSudo instead of the bundled one", + "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Use legacy UniGetUI Elevator (may be helpful if having issues with UniGetUI Elevator)", + "Use system Chocolatey (Needs a restart)": "Use system Chocolatey (Needs a restart)", + "Use system Winget (Needs a restart)": "Use system Winget (Needs a restart)", + "Use system Winget (System language must be set to english)": "Use WinGet (System language must be set to English)", + "Use the WinGet COM API to fetch packages": "Use the WinGet COM API to fetch packages", + "Use the WinGet PowerShell Module instead of the WinGet COM API": "Use the WinGet PowerShell Module instead of the WinGet COM API", + "User": "User", + "User | Local": "User | Local", + "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Using UniGetUI implies the acceptance of the GNU Lesser General Public License v2.1 License", + "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings", + "Vcpkg was not found on your system.": "Vcpkg was not found on your system.", + "View WingetUI on GitHub": "View UniGetUI on GitHub", + "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "View UniGetUI's source code. From there, you can report bugs or suggest features, or even contribute directly to the UniGetUI project", + "Waiting for other installations to finish...": "Waiting for other installations to finish...", + "Waiting for {0} to complete...": "Waiting for {0} to complete...", + "We could not load detailed information about this package, because it was not found in any of your package sources": "We could not load detailed information about this package, because it was not found in any of your package sources.", + "We could not load detailed information about this package, because it was not installed from an available package manager.": "We could not load detailed information about this package, because it was not installed from an available package manager.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.", + "We couldn't find any package": "We couldn't find any package", + "Welcome to WingetUI": "Welcome to UniGetUI", + "Which package managers do you want to use?": "Which package managers do you want to use?", + "Which source do you want to add?": "Which source do you want to add?", + "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "While WinGet can be used within UniGetUI, UniGetUI can be used with other package managers, which can be confusing. In the past, UniGetUI was designed to work only with Winget, but this is not true anymore, and therefore UniGetUI does not represent what this project aims to become.", + "WingetUI": "UniGetUI", + "WingetUI - Everything is up to date": "UniGetUI - Everything is up to date", + "WingetUI - {0} updates are available": "UniGetUI - {0} updates are available", + "WingetUI - {0} {1}": "UniGetUI - {0} {1}", + "WingetUI Homepage - Share this link!": "UniGetUI Homepage - Share this link!", + "WingetUI Settings File": "UniGetUI Settings File", + "WingetUI autostart behaviour, application launch settings": "UniGetUI autostart behaviour, application launch settings", + "WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI can check if your software has available updates, and install them automatically if you want", + "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI has not been machine translated! The following users have been in charge of the translations:", + "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI is being renamed in order to emphasize the difference between UniGetUI (the interface you are using right now) and WinGet (a package manager developed by Microsoft with which I am not related)", + "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI is being updated. When finished, UniGetUI will restart itself", + "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.", + "WingetUI log": "UniGetUI Log", + "WingetUI tray application preferences": "UniGetUI tray application preferences", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI version {0} is being downloaded.": "UniGetUI version {0} is being downloaded.", + "WingetUI will become {newname} soon!": "WingetUI will become {newname} soon!", + "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.", + "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI will show a UAC prompt every time a package requires elevation to be installed.", + "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "UniGetUI wouldn't have been possible without the help of our dear contributors. Check out their GitHub profiles, UniGetUI wouldn't be possible without them!", + "WingetUI {0} is ready to be installed.": "UniGetUI {0} is ready to be installed.", + "You may restart your computer later if you wish": "You may restart your computer later if you wish", + "You will be prompted only once, and administrator rights will be granted to packages that request them.": "You will be prompted only once, and administrator rights will be granted to packages that request them.", + "You will be prompted only once, and every future installation will be elevated automatically.": "You will be prompted only once, and every future installation will be elevated automatically.", + "buy me a coffee": "buy me a coffee", + "formerly WingetUI": "formerly WingetUI", + "homepage": "Homepage", + "install": "Install", + "installation": "installation", + "uninstall": "Uninstall", + "uninstallation": "uninstallation", + "uninstalled": "uninstalled", + "update(noun)": "update", + "update(verb)": "update", + "updated": "updated", + "{0} Uninstallation": "{0} Uninstallation", + "{0} aborted": "{0} aborted", + "{0} can be updated": "{0} can be updated", + "{0} failed": "{0} failed", + "{0} has failed, that was a requirement for {1} to be run": "{0} has failed, that was a requirement for {1} to be run", + "{0} installation": "{0} installation", + "{0} is being updated": "{0} is being updated", + "{0} months": "{0} months", + "{0} packages found": "{0} packages found", + "{0} packages were found": "{0} packages were found", + "{0} succeeded": "{0} succeeded", + "{0} update": "{0} update", + "{0} was {1} successfully!": "{0} was {1} successfully!", + "{0} weeks": "{0} weeks", + "{0} years": "{0} years", + "{0} {1} failed": "{0} {1} failed", + "{package} installation failed": "{package} installation failed", + "{package} uninstall failed": "{package} uninstall failed", + "{package} update failed": "{package} update failed", + "{package} update failed. Click here for more details.": "{package} update failed. Click here for more details.", + "{pm} could not be found": "{pm} could not be found", + "{pm} found: {state}": "{pm} found: {state}", + "{pm} package manager specific preferences": "{pm} package manager specific preferences", + "{pm} preferences": "{pm} preferences" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json index 4c27685d25..3964f9b6ef 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_lt.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Nutraukti išdiegimą, jei parengtinė išdiegimo komanda patiria klaidą", "Command-line to run:": "Komandos/-ų eilutė, kurią vykdyti:", "Save and close": "Išsaugoti ir uždaryti", + "General": "Bendrieji", + "Architecture & Location": "Architektūra ir vieta", + "Command-line": "Komandų eilutė", + "Pre/Post install": "Prieš / po diegimo", "Run as admin": "Vykdyti kaip administratorių", "Interactive installation": "Sąveikaujantis įdiegimas", "Skip hash check": "Praleisti maišos patikrą", @@ -71,6 +75,8 @@ "Manage ignored updates": "Tvarkyti ignoruotus atnaujinimus", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Paketai pateikti čia nebus įtraukiami, kai tikrinama ar yra atnaujinimų. Du kart spaustelėjus ar paspaudus ant mygtuko jo dešinėje sustabdys jų atnaujinimus.", "Reset list": "Atstatyti sąrašą", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Ar tikrai norite atkurti ignoruojamų naujinimų sąrašą? Šio veiksmo negalima atšaukti.", + "No ignored updates": "Nėra ignoruojamų naujinimų", "Package Name": "Paketo pavadinimas", "Package ID": "Paketo ID", "Ignored version": "Ignoruota versija", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Šis veiksmas vykdomas interaktyviai.", "You will likely need to interact with the installer.": "Jums greičiausiai reikės sąveikauti su įdiegikliu.", "Integrity checks skipped": "Vientisumo patikrinimai praleisti", + "Integrity checks will not be performed during this operation.": "Atliekant šią operaciją vientisumo patikros nebus vykdomos.", "Proceed at your own risk.": "Tęskite savo nuožiūra.", "Close": "Uždaryti/Užverti", "Loading...": "Įkeliama...", @@ -120,16 +127,17 @@ "optional": "pasirinktina/-s", "UniGetUI {0} is ready to be installed.": "„UniGetUI“ – {0} yra pasiruošusi/-ęs būti įdiegta/-s.", "The update process will start after closing UniGetUI": "Atnaujinimo vyksmas prasidės po „UniGetUI“ uždarymo", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "„UniGetUI“ paleista administratoriaus teisėmis, o tai nerekomenduojama. Kai „UniGetUI“ veikia su administratoriaus teisėmis, KIEKVIENA iš „UniGetUI“ paleista operacija taip pat turės administratoriaus teises. Programa vis tiek gali būti naudojama, tačiau primygtinai rekomenduojame nepaleisti „UniGetUI“ administratoriaus teisėmis.", "Share anonymous usage data": "Siųsti anoniminius naudojimo duomenis", "UniGetUI collects anonymous usage data in order to improve the user experience.": "„UniGetUI“ surenka anonimišką naudojimosi duomenis, siekiant patobulinti naudotojo/vartotojo patirtį.", "Accept": "Priimti", - "You have installed WingetUI Version {0}": "Jūs esate įdiegę „UniGetUI“ versiją – {0}", + "You have installed UniGetUI Version {0}": "Jūs esate įdiegę „UniGetUI“ versiją – {0}", "Disclaimer": "Atsakomýbės ribójimas", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "„UniGetUI“ nėra susijęs su jokiais/-omis palaikomais/-omis paketų tvarkytuvais/-ėmis. „UniGetUI“ yra nepriklausomas projektas.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nebūtų galima sukurti be visų prisidėjusių pagalbos. Ačiū Jums visiems! 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "„UniGetUI“ naudoja šias bibliotekas. Be jų, „UniGetUI“ nebūtų galimas.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nebūtų galima sukurti be visų prisidėjusių pagalbos. Ačiū Jums visiems! 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "„UniGetUI“ naudoja šias bibliotekas. Be jų, „UniGetUI“ nebūtų įmanomas.", "{0} homepage": "Pagrindinis tinklalapio puslapis – {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "„UniGetUI“ buvo išverstas į daugiau, nei 40 kalbų, savanorių vertėjų dėka. Ačiū/Dėkui/Diekoju Jums! 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "„UniGetUI“ buvo išverstas į daugiau, nei 40 kalbų, savanorių vertėjų dėka. Ačiū/Dėkui/Diekoju Jums! 🤝", "Verbose": "Plačiai/Išsamiai/Daugiažodiškai", "1 - Errors": "1 – Klaidos", "2 - Warnings": "2 – Įspėjimai", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Esate prisijungę kaip {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Puiku! Atsarginės kopijos bus įkeltos į privatų „gist“ jūsų paskyroje", "Select backup": "Pasirinkti atsarginę kopiją", - "WingetUI Settings": "„UniGetUI“ nustatymai", + "UniGetUI Settings": "„UniGetUI“ nustatymai", "Allow pre-release versions": "Leisti išankstines versijas", "Apply": "Pritaikyti", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Saugumo sumetimais pasirinktiniai komandų eilutės argumentai pagal numatytuosius nustatymus yra išjungti. Norėdami tai pakeisti, eikite į „UniGetUI“ saugumo nustatymus.", "Go to UniGetUI security settings": "Eiti į „UniGetUI“ saugumo nustatymus", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Toliau pateiktos parinktys bus taikomos pagal numatytuosius nustatymus kiekvieną kartą, kai {0} paketas bus įdiegtas, atnaujintas arba pašalintas.", "Package's default": "Numatytoji paketo parinktis", @@ -160,6 +169,7 @@ "Username": "Naudotojo/Vartotojo vardas (t.y. Slapyvardis)", "Password": "Slaptažodis", "Credentials": "Prisijungimo duomenys", + "It is not guaranteed that the provided credentials will be stored safely": "Nėra garantijos, kad pateikti prisijungimo duomenys bus saugiai saugomi", "Partially": "Dalinai", "Package manager": "Paketų tvarkytuvas/-ė", "Compatible with proxy": "Suderintas su įgaliotiniu", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "„{pm}“ yra įjungta/įgalinta (-s) ir pasiruošusi/-ęs", "{pm} version:": "„{pm}“ versija:", "{pm} was not found!": "„{pm}“ nebuvo rasta/-s!", - "You may need to install {pm} in order to use it with WingetUI.": "Kad galėtumėte naudoti „UniGetUI“, jums gali tekti į(-si)diegti – „{pm}“.", - "Scoop Installer - WingetUI": "„Scoop“ įdiegiklis – „UniGetUI“", - "Scoop Uninstaller - WingetUI": "„Scoop“ išdiegiklis – „UniGetUI“", - "Clearing Scoop cache - WingetUI": "Išvaloma/-s „Scoop“ talpykla/podėlis – „UniGetUI“", + "You may need to install {pm} in order to use it with UniGetUI.": "Kad galėtumėte naudoti „UniGetUI“, jums gali tekti į(-si)diegti – „{pm}“.", + "Scoop Installer - UniGetUI": "„Scoop“ įdiegiklis – „UniGetUI“", + "Scoop Uninstaller - UniGetUI": "„Scoop“ išdiegiklis – „UniGetUI“", + "Clearing Scoop cache - UniGetUI": "Išvaloma/-s „Scoop“ talpykla/podėlis – „UniGetUI“", + "Restart UniGetUI to fully apply changes": "Iš naujo paleiskite „UniGetUI“, kad pakeitimai būtų visiškai pritaikyti", "Restart UniGetUI": "Iš naujo paleisti – „UniGetUI“", "Manage {0} sources": "Tvarkyti – „{0}“ šaltinius", "Add source": "Pridėti šaltinį", "Add": "Pridėti", + "Source name": "Šaltinio pavadinimas", + "Source URL": "Šaltinio URL", "Other": "Kita/-s/-i", + "No minimum age": "Be minimalaus senumo", "1 day": "1-ai dienai", "{0} days": "{0} {0, plural, one {diena} few {dienas/-os/-om} other {dienų}}", + "Custom...": "Pasirinktinė...", "{0} minutes": "{0} {0, plural, one {minutė} few {minutės/-ėm} other {minučių}}", "1 hour": "1-ai valandai", "{0} hours": "{0} {0, plural, one {valanda} few {valandas/-os/-om} other {valandų}}", "1 week": "1-ai savaitei", - "WingetUI Version {0}": "„UniGetUI“ versija – {0}", + "Supports release dates": "Palaiko išleidimo datas", + "Release date support per package manager": "Išleidimo datų palaikymas pagal paketų tvarkytuvę", + "UniGetUI Version {0}": "„UniGetUI“ versija – {0}", "Search for packages": "Ieškoti paketų", "Local": "Vietinis", "OK": "Gerai", @@ -200,11 +217,13 @@ "Enabled": "Įjungta", "Disabled": "Išjungta/Neįgalinta (-s)", "More info": "Daugiau informacijos", + "GitHub account": "GitHub paskyra", "Log in with GitHub to enable cloud package backup.": "Prisijunkite su „GitHub“, kad įjungtumėte/įgalintumėte debesijos paketų atsarginių kopijų vykdymą.", "More details": "Daugiau išsamumo", "Log in": "Prisijungti", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Jeigu Jūs turite atsarginių kopijų kūrimą įjungtą/įgalintą debesijoje, tada jis bus išsaugotas kaip „GitHub Gist“ šioje paskyroje.", "Log out": "Atsijungti", + "About UniGetUI": "Apie „UniGetUI“", "About": "Apie", "Third-party licenses": "Trečios šalies licencija", "Contributors": "Talkininkai", @@ -212,6 +231,7 @@ "Manage shortcuts": "Tvarkyti/Valdyti nuorodas", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "„UniGetUI“ aptiko šias darbalaukio nuorodas, kurios gali būti ištrintos automatiškai po (ateities) atnaujinimų.", "Do you really want to reset this list? This action cannot be reverted.": "Ar Jūs tikrai norite atstatyti šį sąrašą? Šis veiksmas negali būti anuliuotas.", + "Open in explorer": "Atidaryti failų naršyklėje", "Remove from list": "Pašalinti iš sąrašo", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kai aptinkami nauji spartieji klavišai, ištrinkite juos automatiškai, užuot rodę šį dialogą.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "„UniGetUI“ surenka anonimišką naudojimosi duomenis su esmine paskirtimi, siekiant suprasti ir patobulinti naudotojo/vartotojo patirtį.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Ar Jūs sutinkate, kad „UniGetUI“ rinks ir siųs anonimiškus programos naudojimo statinius duomenis, skirtus vien susipažinti ir patobulinti naudotojo/vartotojo patirtį?", "Decline": "Atmesti/Nepriimti", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Jokia asmeninė informacija nėra reikama ar siunčiama, o surinkti duomenys yra anonimizuoti (t.y. jie negali būti atsekti atgal, kad jie būtent Jūsų).", - "About WingetUI": "Apie „UniGetUI“", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "„UniGetUI“ yra programa, kuri padeda tvarkyti/valdyti taikomąsias programas paprasčiau, pateikdama paprastą „viskas viename“ grafinę sąsają, skirtą komandines eilutes vykdantiems paketų tvarkytuvams/-ėms.", + "Toggle navigation panel": "Rodyti / slėpti naršymo skydelį", + "Minimize": "Sumažinti", + "Maximize": "Išdidinti", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "„UniGetUI“ yra programa, kuri padeda tvarkyti/valdyti taikomąsias programas paprasčiau, pateikdama paprastą „viskas viename“ grafinę sąsają, skirtą komandines eilutes vykdantiems paketų tvarkytuvams/-ėms.", "Useful links": "Naudingos nuorodos", + "UniGetUI Homepage": "„UniGetUI“ pradinis puslapis", "Report an issue or submit a feature request": "Pranešti apie problemą arba pridėti funkcijų pasiūlymą", + "UniGetUI Repository": "„UniGetUI“ saugykla", "View GitHub Profile": "Peržiūrėti „GitHub“ profilį", - "WingetUI License": "„UniGetUI“ licencija", - "Using WingetUI implies the acceptation of the MIT License": "„UniGetUI“ naudojimas, nurodo neišreikštinį „MIT“ licencijos priėmimą", + "UniGetUI License": "„UniGetUI“ licencija", + "Using UniGetUI implies the acceptation of the MIT License": "„UniGetUI“ naudojimas, nurodo neišreikštinį „MIT“ licencijos priėmimą", "Become a translator": "Tapkite vertėju", "View page on browser": "Peržiūrėti puslapį naršyklėje", "Copy to clipboard": "Kopijuoti į mainų sritį", "Export to a file": "Eksportuoti į failą", "Log level:": "Žurnalo lygis:", "Reload log": "Perkrovimų žurnalas", + "Export log": "Eksportuoti žurnalą", + "UniGetUI Log": "„UniGetUI“ žurnalas", "Text": "Tekstas", "Change how operations request administrator rights": "Pakeisti kaip operacijos prašo administratoriaus teisių", "Restrictions on package operations": "Apribojimai paketo/-ų operacijom/-s", @@ -271,7 +297,7 @@ "Leave empty for default": "Numatytai, palikti tuščią", "Add a timestamp to the backup file names": "Pridėti laiko žymę prie atsarginių failų pavadinimų", "Backup and Restore": "Sukurti atsarginę kopiją ir atkurti", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Įjungti foninį „API“ („UniGetUI“ valdikliai ir bendrinimas, prievadas – 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Įjungti foninį „API“ („UniGetUI“ valdikliai ir bendrinimas, prievadas – 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Palaukite, kol įrenginys prisijungs prie interneto, prieš bandydami atlikti užduotis, kurioms reikalingas interneto ryšys.", "Disable the 1-minute timeout for package-related operations": "Išjungti/Išgalinti vienos minutės laukimo laiką, vykdant (susijusio/-ų) paketo/-ų operacijas", "Use installed GSudo instead of UniGetUI Elevator": "Naudoti įdiegtą „GSudo“ vietoj „UniGetUI Elevator“", @@ -286,7 +312,7 @@ "Telemetry": "Telemètrija", "Manage UniGetUI settings": "Tvarkyti ir valdyti „UniGetUI“ nustatymus", "Related settings": "Susiję nustatymai", - "Update WingetUI automatically": "Automatiškai (at-)naujinti „UniGetUI“", + "Update UniGetUI automatically": "Automatiškai (at-)naujinti „UniGetUI“", "Check for updates": "Tikrinti, ar yra (at-)naujinimų/-ių", "Install prerelease versions of UniGetUI": "Įdiegti išankstines „UniGetUI“ versijas", "Manage telemetry settings": "Tvarkyti/Valdyti telemetrijos nustatymus", @@ -295,17 +321,17 @@ "Import": "Importuoti", "Export settings to a local file": "Eksportuoti nustatymus į failą", "Export": "Eksportuoti", - "Reset WingetUI": "Atstatyti „UniGetUI“", "Reset UniGetUI": "Atstatyti „UniGetUI“", "User interface preferences": "Naudotojo/Vartotojo sąsajos nuostatos", "Application theme, startup page, package icons, clear successful installs automatically": "Programos apipavidalinimas, paleisties puslapis, paketo/-ų piktogramos ir išvalyti sėkmingus įdiegimus automatiškai.", "General preferences": "Bendros parinktys", - "WingetUI display language:": "„UniGetUI“ programos atvaizdavimo kalba:", + "UniGetUI display language:": "„UniGetUI“ programos atvaizdavimo kalba:", "Is your language missing or incomplete?": "Ar Jūsų kalba nepasiekiama ar neužbaigta?", "Appearance": "Išvaizda", "UniGetUI on the background and system tray": "„UniGetUI“ fone ir sistemos dėkle", "Package lists": "Paketų sąrašai", "Close UniGetUI to the system tray": "Uždaryti „UniGetUI“ į sistemos juostelę", + "Manage UniGetUI autostart behaviour": "Valdyti „UniGetUI“ automatinio paleidimo elgseną", "Show package icons on package lists": "Rodyti paketų piktogramas, paketų sąraše", "Clear cache": "Išvalyti talpyklą/podėlį", "Select upgradable packages by default": "Pasirinkti/Pažymėti atnaujinamus paketus numatytai", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Atkreipkite dėmesį, kad ne visi paketų tvarkytuvai gali visiškai palaikyti šią funkciją", "Proxy URL": "Įgaliotojo/-inio „URL“ – saitas", "Enter proxy URL here": "Įveskite įgaliotojo „URL“ – saitą čia", + "Authenticate to the proxy with a user and a password": "Autentifikuotis tarpiniame serveryje naudojant naudotojo vardą ir slaptažodį", + "Internet and proxy settings": "Interneto ir tarpinio serverio nustatymai", "Package manager preferences": "Paketų tvarkytuvo/-ės nuostatos", "Ready": "Paruošta/-s", "Not found": "Nerasta/-s", "Notification preferences": "Pranešimų parinktys", "Notification types": "Pranešimų tipai", "The system tray icon must be enabled in order for notifications to work": "Kad pranešimai veiktų, sistemos dėklo piktograma turi būti įjungta", - "Enable WingetUI notifications": "Įjungti „UniGetUI“ pranešimus", + "Enable UniGetUI notifications": "Įjungti „UniGetUI“ pranešimus", "Show a notification when there are available updates": "Rodyti pranešimą, kai yra pasiekiami atnaujinimai", "Show a silent notification when an operation is running": "Rodyti tylų pranešimą, kai operacija yra vykdoma", "Show a notification when an operation fails": "Rodyti pranešimą, kai operacija nepavyksta ar patiria klaidą", "Show a notification when an operation finishes successfully": "Rodyti pranešimą, kai operacija pavyksta ar baigia be problemų", "Concurrency and execution": "Lygiagretumas ir vykdymas", "Automatic desktop shortcut remover": "Automatinis/-iškas darbalaukio nuorodų nuėmiklis/nuimtuvas/naikiklis/šalintuvas (-ė).\n\n", + "Choose how many operations should be performed in parallel": "Pasirinkite, kiek operacijų turi būti vykdoma lygiagrečiai", "Clear successful operations from the operation list after a 5 second delay": "Išvalyti sėkmingas operacijas iš operacijų sąrašo po 5-ių sekundžių atidėjimo", "Download operations are not affected by this setting": "Atsisiuntimo operacijos nėra paveiktos šio nustatymo", "Try to kill the processes that refuse to close when requested to": "Bandykite nutraukti procesus, kurie atsisako užsidaryti paprašius", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Pasirinkite vykdomąjį, kurį norite naudoti. Toliau pateikiamas sąrašas parodo, visus vykdomuosius, kuriuos rado „UniGetUI“.", "Current executable file:": "Dabartinis vykdomasis failas:", "Ignore packages from {pm} when showing a notification about updates": "Rodydami pranešimą apie atnaujinimus, ignoruokite paketus iš {pm}", + "Update security": "Naujinimų sauga", + "Use global setting": "Naudoti bendrąjį nustatymą", + "e.g. 10": "pvz., 10", + "{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", + "Override the global minimum update age for this package manager": "Nepaisyti bendro minimalaus naujinimų senumo šiai paketų tvarkytuvei", + "Minimum age for updates": "Minimalus naujinimų senumas", + "Custom minimum age (days)": "Pasirinktinis minimalus senumas (dienomis)", "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, ", "Advanced options": "Pažangios parinktys", "Reset WinGet": "Atstatyti „WinGet“", "This may help if no packages are listed": "Šis gali padėti, jei nėra paketų sąraše", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Įjungti/Įgalinti „Scoop“ apvalymą paleidimo metu", "Use system Chocolatey": "Naudoti sistemos „Chocolatey“", "Default vcpkg triplet": "Numatyta „vcpkg“ trilypė", + "Change vcpkg root location": "Keisti „vcpkg“ šakninę vietą", "Language, theme and other miscellaneous preferences": "Kalba, apipavidalinimas ir kitos pašalinės parinktys", "Show notifications on different events": "Rodyti pranešimus, skirtinguose įvykiuose", "Change how UniGetUI checks and installs available updates for your packages": "Pakeisti kaip „UniGetUI“ patikrina ir įdiegia pasiekiamus (at-)naujinimus/-ius Jūsų paketams", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Automatiškai neįdiegti (at-)naujinimų/-ių, kai prijungtas tinklas yra apskaitomas", "Do not automatically install updates when the device runs on battery": "Automatiškai neįdiegti (at-)naujinimų/-ių, kai įrenginys veikia akumuliatoriaus ar baterijų dėka.", "Do not automatically install updates when the battery saver is on": "Automatiškai neįdiegti (at-)naujinimų/-ių, kai yra įjungtas energijos taupymas", + "Only show updates that are at least the specified number of days old": "Rodyti tik tuos naujinimus, kurie yra bent nurodyto dienų skaičiaus senumo", "Change how UniGetUI handles install, update and uninstall operations.": "Pakeisti kaip „UniGetUI“ įdiegia, (at-)naujina ir išdiegia.", "Package Managers": "Paketų tvarkytuvai/-ės", "More": "Daugiau", - "WingetUI Log": "„UniGetUI“ žurnalas", "Package Manager logs": "Paketų tvarkytuvo/-ės žurnalai", "Operation history": "Operacijos istorija", "Help": "Pagalba", + "Quit UniGetUI": "Užverti „UniGetUI“", "Order by:": "Rikiuoti/Rūšiuoti pagal:", "Name": "Pavadinimą", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Abu/-i", "Exact match": "Tikslus sutapimas", "Show similar packages": "Rodyti panašius paketus", + "Nothing to share": "Nėra kuo bendrinti", + "Please select a package first.": "Pirmiausia pasirinkite paketą.", + "Share link copied": "Bendrinimo nuoroda nukopijuota", + "The share link for {0} has been copied to the clipboard.": "{0} bendrinimo nuoroda nukopijuota į iškarpinę.", "No results were found matching the input criteria": "Jokių rezultatų nebuvo rasta, atitinkančių įvesties kriterijų", "No packages were found": "Paketų nerasta", "Loading packages": "Įkeliami paketai", @@ -440,7 +483,11 @@ "Package bundle": "Paketo/-ų rinkinys", "Could not create bundle": "Nepavyko sukurti rinkinio", "The package bundle could not be created due to an error.": "Nepavyko sukurti paketo/-ų rinkinio dėl klaidos.", + "Unsaved changes": "Neišsaugoti pakeitimai", + "Discard changes": "Atmesti pakeitimus", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Dabartiniame rinkinyje yra neišsaugotų pakeitimų. Ar norite juos atmesti?", "Bundle security report": "Rinkinio saugumo ataskaita", + "The bundle contained restricted content": "Rinkinyje buvo ribojamo turinio", "Hooray! No updates were found.": "Sveikinam! (At-)Naujinimų/-ių nerasta.", "Everything is up to date": "Viskas yra atnaujinta (Liuks!)", "Uninstall selected packages": "Išdiegti pažymėtus/-ą paketus/-ą", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasikinė/-is paketų tvarkytuvė/-as, skirta/-s „Windows“. Jūs rasite viską ten.
Sudaro: Bendros taikomosios programos", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Saugykla, pilna įrankių ir vykdomųjų, sukurti su „Microsoft'o“ „.NET ekosistemą“ mintyje.
Sudaro: „.NET“ susijsiais įrankiais ir skriptais", "NuPkg (zipped manifest)": "„NuPkg“ (archyvuotas manifestas)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Trūkstama paketų tvarkytuvė, skirta „macOS“ (arba „Linux“).
Yra: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "„Node JS“ paketų tvarkytuvas/-ė. Pilnas įvairių programinių bibliotekų ir įvairių įrankių, kurie apima „Javascript pasaulį“
Sudaro: „Node Javascript“ bibliotekos ir įvairūs įrankiai", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "„Python“ programinių bibliotekų tvarkytuvas/-ė. Pilnas „Python“ bibliotekų ir kitų „Python“ susijusių įrankių
Sudaro: „Python“ bibliotekas ir kitus „Python“ susijusius įrankius", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "„PowerShell“ paketų tvarkytuvas/-ė. Pilnas programinių bibliotekų ir skriptų
Sudaro: Modulius, skriptus ir „cmdlets“", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operacija eilėje (vieta eilėje – {0})...", "Click here for more details": "Spauskite/Spustelėkite čia, norint gauti daugiau išsamumo", "Operation canceled by user": "Operacija atšaukta naudotojo/vartotojo", + "Running PreOperation ({0}/{1})...": "Vykdoma „PreOperation“ ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "„PreOperation“ {0} iš {1} nepavyko ir buvo pažymėta kaip būtina. Nutraukiama...", + "PreOperation {0} out of {1} finished with result {2}": "„PreOperation“ {0} iš {1} baigėsi su rezultatu {2}", "Starting operation...": "Pradedama operacija...", + "Running PostOperation ({0}/{1})...": "Vykdoma „PostOperation“ ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "„PostOperation“ {0} iš {1} nepavyko ir buvo pažymėta kaip būtina. Nutraukiama...", + "PostOperation {0} out of {1} finished with result {2}": "„PostOperation“ {0} iš {1} baigėsi su rezultatu {2}", "{package} installer download": "„{package}“ diegiklio atsisiuntimas", "{0} installer is being downloaded": "Atsisiunčiamas „{0}“ diegiklis", "Download succeeded": "Atsisiuntimas buvo sėkmingas", @@ -556,14 +610,12 @@ "Portable mode": "Nešiojamasis režimas\n", "DEBUG BUILD": "Derinimo darinys", "Available Updates": "Pasiekiami (at-)naujinimai/-iai", - "Show WingetUI": "Rodyti „UniGetUI“", + "Show UniGetUI": "Rodyti „UniGetUI“", "Quit": "Išeiti", "Attention required": "Reikalauja dėmesio", "Restart required": "Reikalingas paleidimas iš naujo", "1 update is available": "Pasiekiamas 1-as (at-)naujinimas/-ys", "{0} updates are available": "Pasiekiama/-s/-i {0} {0, plural, one {(at-)naujinimas/naujinys} few {(at-)naujinimai/naujiniai} other {(at-)naujinimų/naujinių}", - "WingetUI Homepage": "Pagrindinis „UniGetUI“ tinklalapio puslapis", - "WingetUI Repository": "„UniGetUI“ saugykla", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Štai čia, Jūs galite pakeisti „UniGetUI“ elgseną su nurodytomis nuorodomis. Pažymint nuorodos parinktį, „UniGetUI“ ištrins ją, jeigu ji bus sukurta po atnaujinimo. (At-/Ne-)pažymint nuorodos parinktį, išlaikys nuorodą ten kur buvo", "Manual scan": "Rankinis skenavimas", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Bus nuskenuoti esami darbalaukio spartieji klavišai, ir turėsite pasirinkti, kuriuos palikti, o kuriuos pašalinti.", @@ -583,7 +635,6 @@ "Restart later": "Paleisti iš naujo vėliau", "An error occurred:": "Įvyko klaida:", "I understand": "Aš supratau", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI buvo vykdytas kaip administratorius, o tai nėra rekomenduojama. Kai vykdote UniGetUI kaip administratorių, KIEKVIENA jos vykdoma operacija turės šias privilegijas. Jūs galite naudotis programa laisvai, bet mes stipriai rekomenduojame dėl saugumo to nedaryti.", "WinGet was repaired successfully": "„WinGet“ buvo sėkmingai sutaisytas", "It is recommended to restart UniGetUI after WinGet has been repaired": "Yra rekomenduojama perleisti „UniGetUI“ po to, kai „WinGet“ buvo sutaisytas", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "Pastaba: Šis trikdžių tikrinimas gali būti išjungtas/išgalintas iš „UniGetUI“ nustatymų, „WinGet“ skyriuje", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Jūsų paketai buvo pridėti prie rinkinio. Jūs galite tęsti jų pridėjimą, arba galite eksportuoti šį rinkinį.", "Which backup do you want to open?": "Kurią atsarginę kopiją norite atidaryti?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Pasirinkite atsarginę kopiją, kurią norite atidaryti. Vėliau galėsite peržiūrėti, kuriuos paketus ar programas norite atkurti.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Yra einančios/vykdomos operacijos. Išeinant iš UniGetUI gali sukelti jų gedimą. Ar Jūs norite tęsti?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Yra einančios/vykdomos operacijos. Išeinant iš UniGetUI gali sukelti jų gedimą. Ar Jūs norite tęsti?", "UniGetUI or some of its components are missing or corrupt.": "„UniGetUI“ arba kai kurie jo komponentai yra dingę arba sugadinti.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Yra stipriai rekomenduojama, kad perdiegtumėte „UniGetUI“, norint sutaisyti šią situaciją sukeliančia problemą.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Peržvelkite „UniGetUI“ veikimo žurnalus, norint daugiau sužinoti apie paveiktą (-us) failą (-us)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Čia įrašykite procesų pavadinimus, atskirtus kableliais (,)", "Unset or unknown": "Nenustatyta arba nežinoma", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Prašome peržiūrėti komandinės eilutės išvestį arba telkitės – „Operacijos istorijos“, norint gauti daugiau informacijos apie tam tikrą bėdą.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Šis paketas neturi ekrano kopijų, iškarpų ar neturi piktogramos? Prisidėkite prie UniGetUI pridėdami trūkstamus piktogramas, ekrano kopijas ir iškarpas į mūsų atvirą, viešą duomenų bazę.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Šis paketas neturi ekrano kopijų, iškarpų ar neturi piktogramos? Prisidėkite prie UniGetUI pridėdami trūkstamus piktogramas, ekrano kopijas ir iškarpas į mūsų atvirą, viešą duomenų bazę.", "Become a contributor": "Tapkite talkininku", "Save": "Išsaugoti", "Update to {0} available": "Atnaujinimas į – {0} pasiekiamas", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Įjungti/Įgalinti automatinį „WinGet“ trikdžių nagrinėjimą", "Enable an [experimental] improved WinGet troubleshooter": "Įjungti/Įgalinti [eksperimentinį] patobulintą „WinGet“ trikdžių šalinimo priemonę", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Pridėti (at-)naujinimus/-ius, kurie patiria klaidą – „negalima rasti atitaikomo (at-)naujinimo“ prie ignoruojamų sąrašo.", - "Restart WingetUI to fully apply changes": "Iš naujo paleiskite – „UniGetUI“, norint pilnai pritaikyti pakeitimus", - "Restart WingetUI": "Iš naujo paleisti – „UniGetUI“", "Invalid selection": "Netinkamas pasirinkimas", "No package was selected": "Nepasirinktas joks paketas", "More than 1 package was selected": "Pasirinktas daugiau nei 1 paketas", @@ -684,6 +733,37 @@ "Log out failed: ": "Nepavyko atsijungti:", "Package backup settings": "Paketų atsarginės kopijos nustatymai", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Apie „UniGetUI“", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "„UniGetUI“ yra programa, kuri padeda tvarkyti/valdyti taikomąsias programas paprasčiau, pateikdama paprastą „viskas viename“ grafinę sąsają, skirtą komandines eilutes vykdantiems paketų tvarkytuvams/-ėms.", + "You have installed WingetUI Version {0}": "Jūs esate įdiegę „UniGetUI“ versiją – {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nebūtų galima sukurti be visų prisidėjusių pagalbos. Ačiū Jums visiems! 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "„UniGetUI“ naudoja šias bibliotekas. Be jų, „UniGetUI“ nebūtų galimas.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "„UniGetUI“ buvo išverstas į daugiau, nei 40 kalbų, savanorių vertėjų dėka. Ačiū/Dėkui/Diekoju Jums! 🤝", + "WingetUI Settings": "„UniGetUI“ nustatymai", + "You may need to install {pm} in order to use it with WingetUI.": "Kad galėtumėte naudoti „UniGetUI“, jums gali tekti į(-si)diegti – „{pm}“.", + "Scoop Installer - WingetUI": "„Scoop“ įdiegiklis – „UniGetUI“", + "Scoop Uninstaller - WingetUI": "„Scoop“ išdiegiklis – „UniGetUI“", + "Clearing Scoop cache - WingetUI": "Išvaloma/-s „Scoop“ talpykla/podėlis – „UniGetUI“", + "WingetUI Version {0}": "„UniGetUI“ versija – {0}", + "WingetUI License": "„UniGetUI“ licencija", + "Using WingetUI implies the acceptation of the MIT License": "„UniGetUI“ naudojimas, nurodo neišreikštinį „MIT“ licencijos priėmimą", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Įjungti foninį „API“ („UniGetUI“ valdikliai ir bendrinimas, prievadas – 7058)", + "Update WingetUI automatically": "Automatiškai (at-)naujinti „UniGetUI“", + "Reset WingetUI": "Atstatyti „UniGetUI“", + "WingetUI display language:": "„UniGetUI“ programos atvaizdavimo kalba:", + "Manage WingetUI autostart behaviour": "Valdyti „UniGetUI“ automatinio paleidimo elgseną", + "Enable WingetUI notifications": "Įjungti „UniGetUI“ pranešimus", + "WingetUI Log": "„UniGetUI“ žurnalas", + "Show WingetUI": "Rodyti „UniGetUI“", + "WingetUI Homepage": "Pagrindinis „UniGetUI“ tinklalapio puslapis", + "WingetUI Repository": "„UniGetUI“ saugykla", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI buvo vykdytas kaip administratorius, o tai nėra rekomenduojama. Kai vykdote UniGetUI kaip administratorių, KIEKVIENA jos vykdoma operacija turės šias privilegijas. Jūs galite naudotis programa laisvai, bet mes stipriai rekomenduojame dėl saugumo to nedaryti.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Yra einančios/vykdomos operacijos. Išeinant iš UniGetUI gali sukelti jų gedimą. Ar Jūs norite tęsti?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Šis paketas neturi ekrano kopijų, iškarpų ar neturi piktogramos? Prisidėkite prie UniGetUI pridėdami trūkstamus piktogramas, ekrano kopijas ir iškarpas į mūsų atvirą, viešą duomenų bazę.", + "Restart WingetUI to fully apply changes": "Iš naujo paleiskite – „UniGetUI“, norint pilnai pritaikyti pakeitimus", + "Restart WingetUI": "Iš naujo paleisti – „UniGetUI“", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Valdyti/Nurodyti „UniGetUI“ automatinio paleidimo veiksmą per „Windows – Parametrų“ nustatymų programą", "(Number {0} in the queue)": "(Numeris – {0} eilėje)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@dziugas1959, Džiugas Januševičius, @martyn3z", "0 packages found": "Paketų nerasta", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json index a18ac7f832..25a1af0003 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mk.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Прекини ја деинсталацијата ако командата пред деинсталација не успее", "Command-line to run:": "Команда за извршување:", "Save and close": "Зачувај и затвори", + "General": "Општо", + "Architecture & Location": "Архитектура и локација", + "Command-line": "Командна линија", + "Pre/Post install": "Пред/по инсталација", "Run as admin": "Стартувај како администратор", "Interactive installation": "Интерактивна инсталација", "Skip hash check": "Прескокни ја проверката на хашот", @@ -71,6 +75,8 @@ "Manage ignored updates": "Управувајте со игнорираните ажурирања", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Пакетите наведени овде нема да се земат во предвид при проверка за ажурирања. Кликнете двапати на нив или кликнете на копчето на нивната десна страна за да престанете да ги игнорирате нивните ажурирања.", "Reset list": "Ресетирај список", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Дали навистина сакате да ја ресетирате листата на игнорирани ажурирања? Ова дејство не може да се врати", + "No ignored updates": "Нема игнорирани ажурирања", "Package Name": "Име на пакетот", "Package ID": "ИД на пакетот", "Ignored version": "Игнорирана верзија", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Оваа операција се извршува интерактивно.", "You will likely need to interact with the installer.": "Веројатно ќе треба да комуницирате со инсталаторот.", "Integrity checks skipped": "Проверките на интегритет се прескокнати", + "Integrity checks will not be performed during this operation.": "Проверките на интегритет нема да се извршуваат за време на оваа операција.", "Proceed at your own risk.": "Продолжете на сопствен ризик.", "Close": "Затвори", "Loading...": "Се вчитува...", @@ -120,16 +127,17 @@ "optional": "опционално", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} е подготвен за инсталација.", "The update process will start after closing UniGetUI": "Процесот на ажурирање ќе започне по затворањето на UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI е стартуван како администратор, што не се препорачува. Кога UniGetUI работи како администратор, СЕКОЈА операција стартувана од UniGetUI ќе има администраторски привилегии. Сепак можете да ја користите програмата, но силно препорачуваме да не го стартувате UniGetUI со администраторски привилегии.", "Share anonymous usage data": "Сподели анонимни податоци за користење", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI собира анонимни податоци за користење за да го подобри корисничкото искуство.", "Accept": "Прифати", - "You have installed WingetUI Version {0}": "Ја имате инсталирано UniGetUI верзија {0}", + "You have installed UniGetUI Version {0}": "Ја имате инсталирано UniGetUI верзија {0}", "Disclaimer": "Одрекување од одговорност", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не е поврзан со ниту еден од компатибилните менаџери на пакети. UniGetUI е независен проект.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI не би бил можен без помошта на придонесувачите. Ви благодарам на сите 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ги користи следниве библиотеки. Без нив, UniGetUI немаше да биде можен.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI не би бил можен без помошта на придонесувачите. Ви благодарам на сите 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI ги користи следниве библиотеки. Без нив, UniGetUI немаше да биде можен.", "{0} homepage": "Почетна страница на {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI е преведен на повеќе од 40 јазици благодарение на волонтерите преведувачи. Ви благодариме 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI е преведен на повеќе од 40 јазици благодарение на волонтерите преведувачи. Ви благодариме 🤝", "Verbose": "Детално", "1 - Errors": "1 - Грешки", "2 - Warnings": "2 - Предупредувања", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Најавени сте како {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Одлично! Резервните копии ќе се прикачуваат во приватен gist на вашата сметка", "Select backup": "Избери резервна копија", - "WingetUI Settings": "Поставки за WingetUI", + "UniGetUI Settings": "Поставки на UniGetUI", "Allow pre-release versions": "Дозволи предиздавачки верзии", "Apply": "Примени", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Од безбедносни причини, сопствените аргументи на командната линија се стандардно оневозможени. Одете во безбедносните поставки на UniGetUI за да го промените ова.", "Go to UniGetUI security settings": "Оди во безбедносните поставки на UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Следниве опции ќе се применуваат стандардно секогаш кога пакет {0} ќе се инсталира, надгради или деинсталира.", "Package's default": "Стандардно за пакетот", @@ -160,6 +169,7 @@ "Username": "Корисничко име", "Password": "Лозинка", "Credentials": "Акредитиви", + "It is not guaranteed that the provided credentials will be stored safely": "Не е гарантирано дека дадените акредитиви ќе се чуваат безбедно", "Partially": "Делумно", "Package manager": "Менаџер на пакети", "Compatible with proxy": "Компатибилно со прокси", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} е овозможен и подготвен за работа", "{pm} version:": "Верзија на {pm}:", "{pm} was not found!": "{pm} не беше пронајден!", - "You may need to install {pm} in order to use it with WingetUI.": "Можеби ќе треба да го инсталирате {pm} за да го користите со UniGetUI.", - "Scoop Installer - WingetUI": "Scoop инсталатор - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop деинсталатор - UniGetUI", - "Clearing Scoop cache - WingetUI": "Се чисти кешот на Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Можеби ќе треба да го инсталирате {pm} за да го користите со UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop инсталатор - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop деинсталатор - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Се чисти кешот на Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Рестартирајте го UniGetUI за целосно да се применат промените", "Restart UniGetUI": "Рестартирај го UniGetUI", "Manage {0} sources": "Управувајте со {0} извори", "Add source": "Додај извор", "Add": "Додај", + "Source name": "Име на изворот", + "Source URL": "URL на изворот", "Other": "Друго", + "No minimum age": "Без минимална старост", "1 day": "1 ден", "{0} days": "{0} дена", + "Custom...": "Прилагодено...", "{0} minutes": "{0} минути", "1 hour": "1 час", "{0} hours": "{0} часа", "1 week": "1 недела", - "WingetUI Version {0}": "UniGetUI верзија {0}", + "Supports release dates": "Поддржува датуми на издавање", + "Release date support per package manager": "Поддршка за датум на издавање по менаџер на пакети", + "UniGetUI Version {0}": "UniGetUI верзија {0}", "Search for packages": "Пребарај пакети", "Local": "Локално", "OK": "Во ред", @@ -200,11 +217,13 @@ "Enabled": "Овозможено", "Disabled": "Оневозможено", "More info": "Повеќе информации", + "GitHub account": "GitHub сметка", "Log in with GitHub to enable cloud package backup.": "Најавете се со GitHub за да овозможите резервна копија на пакети во облак.", "More details": "Повеќе детали", "Log in": "Најави се", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Ако имате овозможена резервна копија во облак, таа ќе биде зачувана како GitHub Gist на оваа сметка", "Log out": "Одјави се", + "About UniGetUI": "За UniGetUI", "About": "За", "Third-party licenses": "Лиценци од трети страни", "Contributors": "Придонесувачи", @@ -212,6 +231,7 @@ "Manage shortcuts": "Управувај со кратенки", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ги откри следниве кратенки на работната површина што можат автоматски да се отстрануваат при идни надградби", "Do you really want to reset this list? This action cannot be reverted.": "Дали навистина сакате да го ресетирате овој список? Ова дејство не може да се врати.", + "Open in explorer": "Отвори во Explorer", "Remove from list": "Отстрани од списокот", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Кога ќе се откријат нови кратенки, избриши ги автоматски наместо да го прикажуваш овој дијалог.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI собира анонимни податоци за користење со единствена цел да го разбере и подобри корисничкото искуство.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Дали прифаќате UniGetUI да собира и испраќа анонимна статистика за користење, со единствена цел да го разбере и подобри корисничкото искуство?", "Decline": "Одбиј", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Не се собираат ниту се испраќаат лични информации, а собраните податоци се анонимизирани, па не можат да се поврзат назад со вас.", - "About WingetUI": "За WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI е апликација што го олеснува управувањето со вашиот софтвер, обезбедувајќи сеопфатен графички интерфејс за вашите менаџери на пакети од командна линија.", + "Toggle navigation panel": "Прикажи/скриј го панелот за навигација", + "Minimize": "Минимизирај", + "Maximize": "Максимизирај", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI е апликација што го олеснува управувањето со вашиот софтвер, обезбедувајќи сеопфатен графички интерфејс за вашите менаџери на пакети од командна линија.", "Useful links": "Корисни врски", + "UniGetUI Homepage": "Почетна страница на UniGetUI", "Report an issue or submit a feature request": "Пријави проблем или испрати барање за функција", + "UniGetUI Repository": "Репозиториум на UniGetUI", "View GitHub Profile": "Погледни го GitHub профилот", - "WingetUI License": "Лиценца на UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Користењето на UniGetUI подразбира прифаќање на MIT лиценцата", + "UniGetUI License": "Лиценца на UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Користењето на UniGetUI подразбира прифаќање на MIT лиценцата", "Become a translator": "Станете преведувач", "View page on browser": "Прикажи ја страницата во прелистувач", "Copy to clipboard": "Копирај во таблата со исечоци", "Export to a file": "Експортирај во датотека", "Log level:": "Ниво на дневник:", "Reload log": "Повторно вчитајте го дневникот", + "Export log": "Извези дневник", + "UniGetUI Log": "Дневник на UniGetUI", "Text": "Текст", "Change how operations request administrator rights": "Промени како операциите бараат администраторски права", "Restrictions on package operations": "Ограничувања на операциите со пакети", @@ -271,7 +297,7 @@ "Leave empty for default": "Оставете празно за стандардно", "Add a timestamp to the backup file names": "Додај временска ознака во имињата на резервните датотеки", "Backup and Restore": "Резервна копија и враќање", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Овозможи background API (UniGetUI виџети и споделување, порта 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Овозможи background API (UniGetUI виџети и споделување, порта 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Почекајте уредот да се поврзе на интернет пред да се обидете да извршите задачи што бараат интернет конекција.", "Disable the 1-minute timeout for package-related operations": "Оневозможи го 1-минутното временско ограничување за операциите поврзани со пакети", "Use installed GSudo instead of UniGetUI Elevator": "Користи инсталиран GSudo наместо UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Телеметрија", "Manage UniGetUI settings": "Управувај со поставките на UniGetUI", "Related settings": "Поврзани поставки", - "Update WingetUI automatically": "Ажурирај го WingetUI автоматски", + "Update UniGetUI automatically": "Ажурирај го UniGetUI автоматски", "Check for updates": "Провери за ажурирања", "Install prerelease versions of UniGetUI": "Инсталирај предиздавачки верзии на UniGetUI", "Manage telemetry settings": "Управувај со поставките за телеметрија", @@ -295,17 +321,17 @@ "Import": "Импортирање", "Export settings to a local file": "Експортирај ги поставките во локална датотека", "Export": "Експортирај", - "Reset WingetUI": "Ресетирај го WingetUI", "Reset UniGetUI": "Ресетирај го UniGetUI", "User interface preferences": "Поставки за корисничкиот интерфејс", "Application theme, startup page, package icons, clear successful installs automatically": "Тема на апликацијата, почетна страница, икони на пакети, автоматско чистење на успешните инсталации", "General preferences": "Општи поставки", - "WingetUI display language:": "Јазик на приказ на WingetUI:", + "UniGetUI display language:": "Јазик на приказ на UniGetUI:", "Is your language missing or incomplete?": "Дали вашиот јазик недостасува или е нецелосен?", "Appearance": "Изглед", "UniGetUI on the background and system tray": "UniGetUI во заднина и системската фиока", "Package lists": "Списоци на пакети", "Close UniGetUI to the system tray": "Затвори го UniGetUI во системската фиока", + "Manage UniGetUI autostart behaviour": "Управувај со однесувањето на автоматското стартување на UniGetUI", "Show package icons on package lists": "Прикажувај икони на пакетите во списоците со пакети", "Clear cache": "Исчисти кеш", "Select upgradable packages by default": "Стандардно избирај пакети што можат да се ажурираат", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Имајте предвид дека не сите менаџери на пакети можеби целосно ја поддржуваат оваа функција", "Proxy URL": "URL на прокси", "Enter proxy URL here": "Внесете URL на проксито тука", + "Authenticate to the proxy with a user and a password": "Автентицирај се на проксито со корисничко име и лозинка", + "Internet and proxy settings": "Поставки за интернет и прокси", "Package manager preferences": "Поставки на менаџерот на пакети", "Ready": "Подготвено", "Not found": "Не е пронајдено", "Notification preferences": "Поставки за известувања", "Notification types": "Типови известувања", "The system tray icon must be enabled in order for notifications to work": "Иконата во системската фиока мора да биде овозможена за известувањата да работат", - "Enable WingetUI notifications": "Овозможи известувања од WingetUI", + "Enable UniGetUI notifications": "Овозможи известувања од UniGetUI", "Show a notification when there are available updates": "Прикажи известување кога има достапни ажурирања", "Show a silent notification when an operation is running": "Прикажи тивко известување додека трае операција", "Show a notification when an operation fails": "Прикажи известување кога операција ќе не успее", "Show a notification when an operation finishes successfully": "Прикажи известување кога операција ќе заврши успешно", "Concurrency and execution": "Паралелност и извршување", "Automatic desktop shortcut remover": "Автоматско отстранување на кратенки од работната површина", + "Choose how many operations should be performed in parallel": "Избери колку операции треба да се извршуваат паралелно", "Clear successful operations from the operation list after a 5 second delay": "Исчисти ги успешните операции од списокот на операции по одложување од 5 секунди", "Download operations are not affected by this setting": "Операциите за преземање не се засегнати од оваа поставка", "Try to kill the processes that refuse to close when requested to": "Обиди се да ги прекинеш процесите што одбиваат да се затворат кога ќе им биде побарано", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Изберете ја извршната датотека што ќе се користи. Следниот список ги прикажува извршните датотеки пронајдени од UniGetUI", "Current executable file:": "Тековна извршна датотека:", "Ignore packages from {pm} when showing a notification about updates": "Игнорирај ги пакетите од {pm} при прикажување известување за ажурирања", + "Update security": "Безбедност на ажурирањата", + "Use global setting": "Користи глобална поставка", + "e.g. 10": "на пр. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не обезбедува датуми на издавање за своите пакети, па оваа поставка нема да има ефект", + "Override the global minimum update age for this package manager": "Препокриј ја глобалната минимална старост на ажурирањата за овој менаџер на пакети", + "Minimum age for updates": "Минимална старост за ажурирања", + "Custom minimum age (days)": "Прилагодена минимална старост (денови)", "View {0} logs": "Погледни ги дневниците за {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може да се пронајде или не прикажува пакети, а е инсталиран на системот, ", "Advanced options": "Напредни опции", "Reset WinGet": "Ресетирај го WinGet", "This may help if no packages are listed": "Ова може да помогне ако не се прикажуваат пакети", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Овозможи чистење на Scoop при стартување", "Use system Chocolatey": "Користи системски Chocolatey", "Default vcpkg triplet": "Стандарден vcpkg triplet", + "Change vcpkg root location": "Смени ја основната локација на vcpkg", "Language, theme and other miscellaneous preferences": "Јазик, тема и останати поставки", "Show notifications on different events": "Прикажувај известувања при различни настани", "Change how UniGetUI checks and installs available updates for your packages": "Промени како UniGetUI ги проверува и инсталира достапните ажурирања за вашите пакети", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Не инсталирај ажурирања автоматски кога мрежната врска е мерена", "Do not automatically install updates when the device runs on battery": "Не инсталирај ажурирања автоматски кога уредот работи на батерија", "Do not automatically install updates when the battery saver is on": "Не инсталирај ажурирања автоматски кога е вклучен штедачот на батерија", + "Only show updates that are at least the specified number of days old": "Прикажувај само ажурирања што се стари најмалку наведениот број денови", "Change how UniGetUI handles install, update and uninstall operations.": "Промени како UniGetUI се справува со операциите за инсталација, ажурирање и деинсталација.", "Package Managers": "Менаџери на пакети", "More": "Повеќе", - "WingetUI Log": "WingetUI дневник", "Package Manager logs": "Дневници на менаџерот на пакети", "Operation history": "Историја на операции", "Help": "Помош", + "Quit UniGetUI": "Излези од UniGetUI", "Order by:": "Подреди по:", "Name": "Име", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Двете", "Exact match": "Точно совпаѓање", "Show similar packages": "Прикажи слични пакети", + "Nothing to share": "Нема што да се сподели", + "Please select a package first.": "Ве молиме прво изберете пакет.", + "Share link copied": "Врската за споделување е копирана", + "The share link for {0} has been copied to the clipboard.": "Врската за споделување за {0} е копирана во таблата со исечоци.", "No results were found matching the input criteria": "Не беа пронајдени резултати што одговараат на внесените критериуми", "No packages were found": "Не беа пронајдени пакети", "Loading packages": "Се вчитуваат пакети", @@ -440,7 +483,11 @@ "Package bundle": "Збирка на пакети", "Could not create bundle": "Не можеше да се создаде збирката", "The package bundle could not be created due to an error.": "Збирката на пакети не можеше да се создаде поради грешка.", + "Unsaved changes": "Незачувани промени", + "Discard changes": "Отфрли промени", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Имате незачувани промени во тековната збирка. Дали сакате да ги отфрлите?", "Bundle security report": "Безбедносен извештај за збирката", + "The bundle contained restricted content": "Збирката содржеше ограничена содржина", "Hooray! No updates were found.": "Ура! Не беа пронајдени ажурирања!", "Everything is up to date": "Сè е ажурирано", "Uninstall selected packages": "Деинсталирај ги избраните пакети", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Класичниот менаџер на пакети за Windows. Таму ќе најдете сè.
Содржи: Општ софтвер", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Репозиториум полн со алатки и извршни датотеки дизајнирани за .NET екосистемот на Microsoft.
Содржи: .NET алатки и скрипти", "NuPkg (zipped manifest)": "NuPkg (спакуван манифест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Менаџерот на пакети што недостасува за macOS (или Linux).
Содржи: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS управувач со пакети. Полн со библиотеки и други алатки што орбитираат околу светот на Javascript
Содржи: Библиотеки на Node javascript и други поврзани алатки", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Менаџер со библиотека на Python. Полн со библиотеки на Python и други алатки поврзани со Python
Содржи: библиотеки на Python и поврзани алатки", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Менаџерот на пакети на PowerShell. Пронајдете библиотеки и скрипти за проширување на можностите на PowerShell
Содржи: Модули, скрипти, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Операција во редица (позиција {0})...", "Click here for more details": "Кликнете овде за повеќе детали", "Operation canceled by user": "Операцијата е откажана од корисникот", + "Running PreOperation ({0}/{1})...": "Се извршува PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} од {1} не успеа и беше означена како неопходна. Се прекинува...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} од {1} заврши со резултат {2}", "Starting operation...": "Се започнува операцијата...", + "Running PostOperation ({0}/{1})...": "Се извршува PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} од {1} не успеа и беше означена како неопходна. Се прекинува...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} од {1} заврши со резултат {2}", "{package} installer download": "Преземање на инсталаторот за {package}", "{0} installer is being downloaded": "Се презема инсталаторот за {0}", "Download succeeded": "Преземањето успеа", @@ -556,14 +610,12 @@ "Portable mode": "Пренослив режим\n", "DEBUG BUILD": "DEBUG ИЗДАНИЕ", "Available Updates": "Достапни ажурирања", - "Show WingetUI": "Прикажи го WingetUI", + "Show UniGetUI": "Прикажи го UniGetUI", "Quit": "Затвори", "Attention required": "Потребно е внимание", "Restart required": "Потребно е рестартирање", "1 update is available": "Достапно е 1 ажурирање", "{0} updates are available": "Достапни се {0} ажурирања", - "WingetUI Homepage": "Почетна страница на UniGetUI", - "WingetUI Repository": "Репозиториум на UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Тука можете да го промените однесувањето на UniGetUI во врска со следниве кратенки. Ако означите кратенка, UniGetUI ќе ја избрише ако се создаде при некое идно ажурирање. Ако ја отштиклирате, кратенката ќе остане недопрена.", "Manual scan": "Рачно скенирање", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Постоечките кратенки на вашата работна површина ќе бидат скенирани и ќе треба да изберете кои да ги задржите, а кои да ги отстраните.", @@ -583,7 +635,6 @@ "Restart later": "Рестартирај подоцна", "An error occurred:": "Настана грешка:", "I understand": "Разбирам", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI е извршен како администратор, што не се препорачува. Кога UniGetUI се извршува како администратор, СЕКОЈА операција стартувана од UniGetUI ќе има администраторски привилегии. Сè уште можете да ја користите програмата, но силно ви препорачуваме да не го извршувате UniGetUI со администраторски привилегии.", "WinGet was repaired successfully": "WinGet е успешно поправен", "It is recommended to restart UniGetUI after WinGet has been repaired": "Препорачливо е да го рестартирате UniGetUI откако WinGet ќе биде поправен", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ЗАБЕЛЕШКА: Овој решавач на проблеми може да се оневозможи од Поставките на UniGetUI, во делот за WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Вашите пакети ќе бидат додадени во збирката. Можете да продолжите со додавање пакети или да ја извезете збирката.", "Which backup do you want to open?": "Која резервна копија сакате да ја отворите?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Изберете ја резервната копија што сакате да ја отворите. Подоцна ќе можете да прегледате кои пакети сакате да ги инсталирате.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Во тек се операции. Затворањето на UniGetUI може да предизвика нивен неуспех. Дали сакате да продолжите?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Во тек се операции. Затворањето на UniGetUI може да предизвика нивен неуспех. Дали сакате да продолжите?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI или некои од неговите компоненти недостасуваат или се оштетени.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Силно се препорачува повторно да го инсталирате UniGetUI за да се реши ситуацијата.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Погледнете ги дневниците на UniGetUI за повеќе детали за засегнатите датотеки", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Напишете ги овде имињата на процесите, разделени со запирки (,)", "Unset or unknown": "Непоставено или непознато", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Погледнете го Излезот од командна линија или Историјата на операции за повеќе информации за проблемот.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Овој пакет нема слики од екранот или му недостасува икона? Придонесете кон UniGetUI со додавање на иконите и сликите од екранот што недостасуваат во нашата отворена, јавна база на податоци.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Овој пакет нема слики од екранот или му недостасува икона? Придонесете кон UniGetUI со додавање на иконите и сликите од екранот што недостасуваат во нашата отворена, јавна база на податоци.", "Become a contributor": "Станете придонесувач", "Save": "Зачувај", "Update to {0} available": "Достапно е ажурирање на {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Овозможи автоматски решавач на проблеми за WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Овозможи [експериментален] подобрен решавач на проблеми за WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Додај ги ажурирањата што не успеваат со 'не е пронајдено соодветно ажурирање' во списокот со игнорирани ажурирања.", - "Restart WingetUI to fully apply changes": "Рестартирајте го WingetUI за целосно применување на промените", - "Restart WingetUI": "Рестартирај го WingetUI", "Invalid selection": "Невалиден избор", "No package was selected": "Не беше избран пакет", "More than 1 package was selected": "Избрани беа повеќе од 1 пакет", @@ -684,6 +733,37 @@ "Log out failed: ": "Одјавувањето не успеа: ", "Package backup settings": "Поставки за резервна копија на пакети", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "За WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI е апликација што го олеснува управувањето со вашиот софтвер, обезбедувајќи сеопфатен графички интерфејс за вашите менаџери на пакети од командна линија.", + "You have installed WingetUI Version {0}": "Ја имате инсталирано UniGetUI верзија {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI не би бил можен без помошта на придонесувачите. Ви благодарам на сите 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ги користи следниве библиотеки. Без нив, UniGetUI немаше да биде можен.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI е преведен на повеќе од 40 јазици благодарение на волонтерите преведувачи. Ви благодариме 🤝", + "WingetUI Settings": "Поставки за WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Можеби ќе треба да го инсталирате {pm} за да го користите со UniGetUI.", + "Scoop Installer - WingetUI": "Scoop инсталатор - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop деинсталатор - UniGetUI", + "Clearing Scoop cache - WingetUI": "Се чисти кешот на Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI верзија {0}", + "WingetUI License": "Лиценца на UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Користењето на UniGetUI подразбира прифаќање на MIT лиценцата", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Овозможи background API (UniGetUI виџети и споделување, порта 7058)", + "Update WingetUI automatically": "Ажурирај го WingetUI автоматски", + "Reset WingetUI": "Ресетирај го WingetUI", + "WingetUI display language:": "Јазик на приказ на WingetUI:", + "Manage WingetUI autostart behaviour": "Управувај со однесувањето на автоматското стартување на WingetUI", + "Enable WingetUI notifications": "Овозможи известувања од WingetUI", + "WingetUI Log": "WingetUI дневник", + "Show WingetUI": "Прикажи го WingetUI", + "WingetUI Homepage": "Почетна страница на UniGetUI", + "WingetUI Repository": "Репозиториум на UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI е извршен како администратор, што не се препорачува. Кога UniGetUI се извршува како администратор, СЕКОЈА операција стартувана од UniGetUI ќе има администраторски привилегии. Сè уште можете да ја користите програмата, но силно ви препорачуваме да не го извршувате UniGetUI со администраторски привилегии.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Во тек се операции. Затворањето на UniGetUI може да предизвика нивен неуспех. Дали сакате да продолжите?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Овој пакет нема слики од екранот или му недостасува икона? Придонесете кон UniGetUI со додавање на иконите и сликите од екранот што недостасуваат во нашата отворена, јавна база на податоци.", + "Restart WingetUI to fully apply changes": "Рестартирајте го WingetUI за целосно применување на промените", + "Restart WingetUI": "Рестартирај го WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Управувај со автоматското стартување на UniGetUI од апликацијата Поставки", "(Number {0} in the queue)": "(Број {0} во редицата)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "LordDeatHunter", "0 packages found": "Пронајдени се 0 пакети", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mr.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mr.json index c220edf243..22db08c3db 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mr.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_mr.json @@ -1,1075 +1,1155 @@ { - "Operation in progress": "", - "Please wait...": "", - "Success!": "", - "Failed": "", - "An error occurred while processing this package": "", - "Log in to enable cloud backup": "", - "Backup Failed": "", - "Downloading backup...": "", - "An update was found!": "", - "{0} can be updated to version {1}": "", - "Updates found!": "", - "{0} packages can be updated": "", - "You have currently version {0} installed": "", - "Desktop shortcut created": "", - "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "", - "{0} desktop shortcuts created": "", - "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "", - "Are you sure?": "", - "Do you really want to uninstall {0}?": "", - "Do you really want to uninstall the following {0} packages?": "", - "No": "", - "Yes": "", - "View on UniGetUI": "", - "Update": "", - "Open UniGetUI": "", - "Update all": "", - "Update now": "", - "This package is on the queue": "", - "installing": "", - "updating": "", - "uninstalling": "", - "installed": "", - "Retry": "", - "Install": "", - "Uninstall": "", - "Open": "", - "Operation profile:": "", - "Follow the default options when installing, upgrading or uninstalling this package": "", - "The following settings will be applied each time this package is installed, updated or removed.": "", - "Version to install:": "", - "Architecture to install:": "", - "Installation scope:": "", - "Install location:": "", - "Select": "", - "Reset": "", - "Custom install arguments:": "", - "Custom update arguments:": "", - "Custom uninstall arguments:": "", - "Pre-install command:": "", - "Post-install command:": "", - "Abort install if pre-install command fails": "", - "Pre-update command:": "", - "Post-update command:": "", - "Abort update if pre-update command fails": "", - "Pre-uninstall command:": "", - "Post-uninstall command:": "", - "Abort uninstall if pre-uninstall command fails": "", - "Command-line to run:": "", - "Save and close": "", - "Run as admin": "", - "Interactive installation": "", - "Skip hash check": "", - "Uninstall previous versions when updated": "", - "Skip minor updates for this package": "", - "Automatically update this package": "", - "{0} installation options": "", - "Latest": "", - "PreRelease": "", - "Default": "", - "Manage ignored updates": "", - "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "", - "Reset list": "", - "Package Name": "", - "Package ID": "", - "Ignored version": "", - "New version": "", - "Source": "", - "All versions": "", - "Unknown": "", - "Up to date": "", - "Cancel": "", - "Administrator privileges": "", - "This operation is running with administrator privileges.": "", - "Interactive operation": "", - "This operation is running interactively.": "", - "You will likely need to interact with the installer.": "", - "Integrity checks skipped": "", - "Proceed at your own risk.": "", - "Close": "", - "Loading...": "", - "Installer SHA256": "", - "Homepage": "", - "Author": "", - "Publisher": "", - "License": "", - "Manifest": "", - "Installer Type": "", - "Size": "", - "Installer URL": "", - "Last updated:": "", - "Release notes URL": "", - "Package details": "", - "Dependencies:": "", - "Release notes": "", - "Version": "", - "Install as administrator": "", - "Update to version {0}": "", - "Installed Version": "", - "Update as administrator": "", - "Interactive update": "", - "Uninstall as administrator": "", - "Interactive uninstall": "", - "Uninstall and remove data": "", - "Not available": "", - "Installer SHA512": "", - "Unknown size": "", - "No dependencies specified": "", - "mandatory": "", - "optional": "", - "UniGetUI {0} is ready to be installed.": "", - "The update process will start after closing UniGetUI": "", - "Share anonymous usage data": "", - "UniGetUI collects anonymous usage data in order to improve the user experience.": "", - "Accept": "", - "You have installed WingetUI Version {0}": "", - "Disclaimer": "", - "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "{0} homepage": "", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "", - "Verbose": "", - "1 - Errors": "", - "2 - Warnings": "", - "3 - Information (less)": "", - "4 - Information (more)": "", - "5 - information (debug)": "", - "Warning": "", - "The following settings may pose a security risk, hence they are disabled by default.": "", - "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "", - "The settings will list, in their descriptions, the potential security issues they may have.": "", - "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "", - "The backup will NOT include any binary file nor any program's saved data.": "", - "The size of the backup is estimated to be less than 1MB.": "", - "The backup will be performed after login.": "", - "{pcName} installed packages": "", - "Current status: Not logged in": "", - "You are logged in as {0} (@{1})": "", - "Nice! Backups will be uploaded to a private gist on your account": "", - "Select backup": "", - "WingetUI Settings": "", - "Allow pre-release versions": "", - "Apply": "", - "Go to UniGetUI security settings": "", - "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "", - "Package's default": "", - "Install location can't be changed for {0} packages": "", - "The local icon cache currently takes {0} MB": "", - "Username": "", - "Password": "", - "Credentials": "", - "Partially": "", - "Package manager": "", - "Compatible with proxy": "", - "Compatible with authentication": "", - "Proxy compatibility table": "", - "{0} settings": "", - "{0} status": "", - "Default installation options for {0} packages": "", - "Expand version": "", - "The executable file for {0} was not found": "", - "{pm} is disabled": "", - "Enable it to install packages from {pm}.": "", - "{pm} is enabled and ready to go": "", - "{pm} version:": "", - "{pm} was not found!": "", - "You may need to install {pm} in order to use it with WingetUI.": "", - "Scoop Installer - WingetUI": "", - "Scoop Uninstaller - WingetUI": "", - "Clearing Scoop cache - WingetUI": "", - "Restart UniGetUI": "", - "Manage {0} sources": "", - "Add source": "", - "Add": "", - "Other": "", - "1 day": "", - "{0} days": "", - "{0} minutes": "", - "1 hour": "", - "{0} hours": "", - "1 week": "", - "WingetUI Version {0}": "", - "Search for packages": "", - "Local": "", - "OK": "", - "{0} packages were found, {1} of which match the specified filters.": "", - "{0} selected": "", - "(Last checked: {0})": "", - "Enabled": "", - "Disabled": "", - "More info": "", - "Log in with GitHub to enable cloud package backup.": "", - "More details": "", - "Log in": "", - "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "", - "Log out": "", - "About": "", - "Third-party licenses": "", - "Contributors": "", - "Translators": "", - "Manage shortcuts": "", - "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "", - "Do you really want to reset this list? This action cannot be reverted.": "", - "Remove from list": "", - "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "", - "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "", - "More details about the shared data and how it will be processed": "", - "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "", - "Decline": "", - "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "", - "About WingetUI": "", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "", - "Useful links": "", - "Report an issue or submit a feature request": "", - "View GitHub Profile": "", - "WingetUI License": "", - "Using WingetUI implies the acceptation of the MIT License": "", - "Become a translator": "", - "View page on browser": "", - "Copy to clipboard": "", - "Export to a file": "", - "Log level:": "", - "Reload log": "", - "Text": "", - "Change how operations request administrator rights": "", - "Restrictions on package operations": "", - "Restrictions on package managers": "", - "Restrictions when importing package bundles": "", - "Ask for administrator privileges once for each batch of operations": "", - "Ask only once for administrator privileges": "", - "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "", - "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "", - "Allow custom command-line arguments": "", - "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "", - "Allow changing the paths for package manager executables": "", - "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "", - "Allow importing custom command-line arguments when importing packages from a bundle": "", - "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "", - "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "", - "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "", - "Administrator rights and other dangerous settings": "", - "Package backup": "", - "Cloud package backup": "", - "Local package backup": "", - "Local backup advanced options": "", - "Log in with GitHub": "", - "Log out from GitHub": "", - "Periodically perform a cloud backup of the installed packages": "", - "Cloud backup uses a private GitHub Gist to store a list of installed packages": "", - "Perform a cloud backup now": "", - "Backup": "", - "Restore a backup from the cloud": "", - "Begin the process to select a cloud backup and review which packages to restore": "", - "Periodically perform a local backup of the installed packages": "", - "Perform a local backup now": "", - "Change backup output directory": "", - "Set a custom backup file name": "", - "Leave empty for default": "", - "Add a timestamp to the backup file names": "", - "Backup and Restore": "", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "", - "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "", - "Disable the 1-minute timeout for package-related operations": "", - "Use installed GSudo instead of UniGetUI Elevator": "", - "Use a custom icon and screenshot database URL": "", - "Enable background CPU Usage optimizations (see Pull Request #3278)": "", - "Perform integrity checks at startup": "", - "When batch installing packages from a bundle, install also packages that are already installed": "", - "Experimental settings and developer options": "", - "Show UniGetUI's version and build number on the titlebar.": "", - "Language": "", - "UniGetUI updater": "", - "Telemetry": "", - "Manage UniGetUI settings": "", - "Related settings": "", - "Update WingetUI automatically": "", - "Check for updates": "", - "Install prerelease versions of UniGetUI": "", - "Manage telemetry settings": "", - "Manage": "", - "Import settings from a local file": "", - "Import": "", - "Export settings to a local file": "", - "Export": "", - "Reset WingetUI": "", - "Reset UniGetUI": "", - "User interface preferences": "", - "Application theme, startup page, package icons, clear successful installs automatically": "", - "General preferences": "", - "WingetUI display language:": "", - "Is your language missing or incomplete?": "", - "Appearance": "", - "UniGetUI on the background and system tray": "", - "Package lists": "", - "Close UniGetUI to the system tray": "", - "Show package icons on package lists": "", - "Clear cache": "", - "Select upgradable packages by default": "", - "Light": "", - "Dark": "", - "Follow system color scheme": "", - "Application theme:": "", - "Discover Packages": "", - "Software Updates": "", - "Installed Packages": "", - "Package Bundles": "", - "Settings": "", - "UniGetUI startup page:": "", - "Proxy settings": "", - "Other settings": "", - "Connect the internet using a custom proxy": "", - "Please note that not all package managers may fully support this feature": "", - "Proxy URL": "", - "Enter proxy URL here": "", - "Package manager preferences": "", - "Ready": "", - "Not found": "", - "Notification preferences": "", - "Notification types": "", - "The system tray icon must be enabled in order for notifications to work": "", - "Enable WingetUI notifications": "", - "Show a notification when there are available updates": "", - "Show a silent notification when an operation is running": "", - "Show a notification when an operation fails": "", - "Show a notification when an operation finishes successfully": "", - "Concurrency and execution": "", - "Automatic desktop shortcut remover": "", - "Clear successful operations from the operation list after a 5 second delay": "", - "Download operations are not affected by this setting": "", - "Try to kill the processes that refuse to close when requested to": "", - "You may lose unsaved data": "", - "Ask to delete desktop shortcuts created during an install or upgrade.": "", - "Package update preferences": "", - "Update check frequency, automatically install updates, etc.": "", - "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "", - "Package operation preferences": "", - "Enable {pm}": "", - "Not finding the file you are looking for? Make sure it has been added to path.": "", - "For security reasons, changing the executable file is disabled by default": "", - "Change this": "", - "Select the executable to be used. The following list shows the executables found by UniGetUI": "", - "Current executable file:": "", - "Ignore packages from {pm} when showing a notification about updates": "", - "View {0} logs": "", - "Advanced options": "", - "Reset WinGet": "", - "This may help if no packages are listed": "", - "Force install location parameter when updating packages with custom locations": "", - "Use bundled WinGet instead of system WinGet": "", - "This may help if WinGet packages are not shown": "", - "Install Scoop": "", - "Uninstall Scoop (and its packages)": "", - "Run cleanup and clear cache": "", - "Run": "", - "Enable Scoop cleanup on launch": "", - "Use system Chocolatey": "", - "Default vcpkg triplet": "", - "Language, theme and other miscellaneous preferences": "", - "Show notifications on different events": "", - "Change how UniGetUI checks and installs available updates for your packages": "", - "Automatically save a list of all your installed packages to easily restore them.": "", - "Enable and disable package managers, change default install options, etc.": "", - "Internet connection settings": "", - "Proxy settings, etc.": "", - "Beta features and other options that shouldn't be touched": "", - "Update checking": "", - "Automatic updates": "", - "Check for package updates periodically": "", - "Check for updates every:": "", - "Install available updates automatically": "", - "Do not automatically install updates when the network connection is metered": "", - "Do not automatically install updates when the device runs on battery": "", - "Do not automatically install updates when the battery saver is on": "", - "Change how UniGetUI handles install, update and uninstall operations.": "", - "Package Managers": "", - "More": "", - "WingetUI Log": "", - "Package Manager logs": "", - "Operation history": "", - "Help": "", - "Order by:": "", - "Name": "", - "Id": "", - "Ascendant": "", - "Descendant": "", - "View mode:": "", - "Filters": "", - "Sources": "", - "Search for packages to start": "", - "Select all": "", - "Clear selection": "", - "Instant search": "", - "Distinguish between uppercase and lowercase": "", - "Ignore special characters": "", - "Search mode": "", - "Both": "", - "Exact match": "", - "Show similar packages": "", - "No results were found matching the input criteria": "", - "No packages were found": "", - "Loading packages": "", - "Skip integrity checks": "", - "Download selected installers": "", - "Install selection": "", - "Install options": "", - "Share": "", - "Add selection to bundle": "", - "Download installer": "", - "Share this package": "", - "Uninstall selection": "", - "Uninstall options": "", - "Ignore selected packages": "", - "Open install location": "", - "Reinstall package": "", - "Uninstall package, then reinstall it": "", - "Ignore updates for this package": "", - "Do not ignore updates for this package anymore": "", - "Add packages or open an existing package bundle": "", - "Add packages to start": "", - "The current bundle has no packages. Add some packages to get started": "", - "New": "", - "Save as": "", - "Remove selection from bundle": "", - "Skip hash checks": "", - "The package bundle is not valid": "", - "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "", - "Package bundle": "", - "Could not create bundle": "", - "The package bundle could not be created due to an error.": "", - "Bundle security report": "", - "Hooray! No updates were found.": "", - "Everything is up to date": "", - "Uninstall selected packages": "", - "Update selection": "", - "Update options": "", - "Uninstall package, then update it": "", - "Uninstall package": "", - "Skip this version": "", - "Pause updates for": "", - "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "", - "The classical package manager for windows. You'll find everything there.
Contains: General Software": "", - "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "", - "NuPkg (zipped manifest)": "", - "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "", - "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "", - "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "", - "extracted": "", - "Scoop package": "", - "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "", - "library": "", - "feature": "", - "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "", - "option": "", - "This package cannot be installed from an elevated context.": "", - "Please run UniGetUI as a regular user and try again.": "", - "Please check the installation options for this package and try again": "", - "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "", - "Local PC": "", - "Android Subsystem": "", - "Operation on queue (position {0})...": "", - "Click here for more details": "", - "Operation canceled by user": "", - "Starting operation...": "", - "{package} installer download": "", - "{0} installer is being downloaded": "", - "Download succeeded": "", - "{package} installer was downloaded successfully": "", - "Download failed": "", - "{package} installer could not be downloaded": "", - "{package} Installation": "", - "{0} is being installed": "", - "Installation succeeded": "", - "{package} was installed successfully": "", - "Installation failed": "", - "{package} could not be installed": "", - "{package} Update": "", - "{0} is being updated to version {1}": "", - "Update succeeded": "", - "{package} was updated successfully": "", - "Update failed": "", - "{package} could not be updated": "", - "{package} Uninstall": "", - "{0} is being uninstalled": "", - "Uninstall succeeded": "", - "{package} was uninstalled successfully": "", - "Uninstall failed": "", - "{package} could not be uninstalled": "", - "Adding source {source}": "", - "Adding source {source} to {manager}": "", - "Source added successfully": "", - "The source {source} was added to {manager} successfully": "", - "Could not add source": "", - "Could not add source {source} to {manager}": "", - "Removing source {source}": "", - "Removing source {source} from {manager}": "", - "Source removed successfully": "", - "The source {source} was removed from {manager} successfully": "", - "Could not remove source": "", - "Could not remove source {source} from {manager}": "", - "The package manager \"{0}\" was not found": "", - "The package manager \"{0}\" is disabled": "", - "There is an error with the configuration of the package manager \"{0}\"": "", - "The package \"{0}\" was not found on the package manager \"{1}\"": "", - "{0} is disabled": "", - "Something went wrong": "", - "An interal error occurred. Please view the log for further details.": "", - "No applicable installer was found for the package {0}": "", - "We are checking for updates.": "", - "Please wait": "", - "UniGetUI version {0} is being downloaded.": "", - "This may take a minute or two": "", - "The installer authenticity could not be verified.": "", - "The update process has been aborted.": "", - "Great! You are on the latest version.": "", - "There are no new UniGetUI versions to be installed": "", - "An error occurred when checking for updates: ": "", - "UniGetUI is being updated...": "", - "Something went wrong while launching the updater.": "", - "Please try again later": "", - "Integrity checks will not be performed during this operation": "", - "This is not recommended.": "", - "Run now": "", - "Run next": "", - "Run last": "", - "Retry as administrator": "", - "Retry interactively": "", - "Retry skipping integrity checks": "", - "Installation options": "", - "Show in explorer": "", - "This package is already installed": "", - "This package can be upgraded to version {0}": "", - "Updates for this package are ignored": "", - "This package is being processed": "", - "This package is not available": "", - "Select the source you want to add:": "", - "Source name:": "", - "Source URL:": "", - "An error occurred": "", - "An error occurred when adding the source: ": "", - "Package management made easy": "", - "version {0}": "", - "[RAN AS ADMINISTRATOR]": "", - "Portable mode": "", - "DEBUG BUILD": "", - "Available Updates": "", - "Show WingetUI": "", - "Quit": "", - "Attention required": "", - "Restart required": "", - "1 update is available": "", - "{0} updates are available": "", - "WingetUI Homepage": "", - "WingetUI Repository": "", - "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "", - "Manual scan": "", - "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "", - "Continue": "", - "Delete?": "", - "Missing dependency": "", - "Not right now": "", - "Install {0}": "", - "UniGetUI requires {0} to operate, but it was not found on your system.": "", - "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "", - "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "", - "Do not show this dialog again for {0}": "", - "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "", - "{0} has been installed successfully.": "", - "Please click on \"Continue\" to continue": "", - "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "", - "Restart later": "", - "An error occurred:": "", - "I understand": "", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "", - "WinGet was repaired successfully": "", - "It is recommended to restart UniGetUI after WinGet has been repaired": "", - "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "", - "Restart": "", - "WinGet could not be repaired": "", - "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "", - "Are you sure you want to delete all shortcuts?": "", - "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "", - "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "", - "Are you really sure you want to enable this feature?": "", - "No new shortcuts were found during the scan.": "", - "How to add packages to a bundle": "", - "In order to add packages to a bundle, you will need to: ": "", - "1. Navigate to the \"{0}\" or \"{1}\" page.": "", - "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "", - "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "", - "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "", - "Which backup do you want to open?": "", - "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "", - "UniGetUI or some of its components are missing or corrupt.": "", - "It is strongly recommended to reinstall UniGetUI to adress the situation.": "", - "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "", - "Integrity checks can be disabled from the Experimental Settings": "", - "Repair UniGetUI": "", - "Live output": "", - "Package not found": "", - "An error occurred when attempting to show the package with Id {0}": "", - "Package": "", - "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "", - "Entries that show in YELLOW will be IGNORED.": "", - "Entries that show in RED will be IMPORTED.": "", - "You can change this behavior on UniGetUI security settings.": "", - "Open UniGetUI security settings": "", - "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "", - "Details of the report:": "", - "\"{0}\" is a local package and can't be shared": "", - "Are you sure you want to create a new package bundle? ": "", - "Any unsaved changes will be lost": "", - "Warning!": "", - "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "", - "Change default options": "", - "Ignore future updates for this package": "", - "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "", - "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "", - "Change this and unlock": "", - "{0} Install options are currently locked because {0} follows the default install options.": "", - "Select the processes that should be closed before this package is installed, updated or uninstalled.": "", - "Write here the process names here, separated by commas (,)": "", - "Unset or unknown": "", - "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "", - "Become a contributor": "", - "Save": "", - "Update to {0} available": "", - "Reinstall": "", - "Installer not available": "", - "Version:": "", - "Performing backup, please wait...": "", - "An error occurred while logging in: ": "", - "Fetching available backups...": "", - "Done!": "", - "The cloud backup has been loaded successfully.": "", - "An error occurred while loading a backup: ": "", - "Backing up packages to GitHub Gist...": "", - "Backup Successful": "", - "The cloud backup completed successfully.": "", - "Could not back up packages to GitHub Gist: ": "", - "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "", - "Enable the automatic WinGet troubleshooter": "", - "Enable an [experimental] improved WinGet troubleshooter": "", - "Add updates that fail with a 'no applicable update found' to the ignored updates list": "", - "Restart WingetUI to fully apply changes": "", - "Restart WingetUI": "", - "Invalid selection": "", - "No package was selected": "", - "More than 1 package was selected": "", - "List": "", - "Grid": "", - "Icons": "", - "\"{0}\" is a local package and does not have available details": "", - "\"{0}\" is a local package and is not compatible with this feature": "", - "WinGet malfunction detected": "", - "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "", - "Repair WinGet": "", - "Create .ps1 script": "", - "Add packages to bundle": "", - "Preparing packages, please wait...": "", - "Loading packages, please wait...": "", - "Saving packages, please wait...": "", - "The bundle was created successfully on {0}": "", - "Install script": "", - "The installation script saved to {0}": "", - "An error occurred while attempting to create an installation script:": "", - "{0} packages are being updated": "", - "Error": "", - "Log in failed: ": "", - "Log out failed: ": "", - "Package backup settings": "", + "Operation in progress": "क्रिया सुरू आहे", + "Please wait...": "कृपया प्रतीक्षा करा...", + "Success!": "यशस्वी!", + "Failed": "अयशस्वी", + "An error occurred while processing this package": "हे पॅकेज प्रक्रिया करताना त्रुटी आली", + "Log in to enable cloud backup": "क्लाउड बॅकअप सक्षम करण्यासाठी लॉग इन करा", + "Backup Failed": "बॅकअप अयशस्वी", + "Downloading backup...": "बॅकअप डाउनलोड करत आहे...", + "An update was found!": "एक अद्यतन आढळले!", + "{0} can be updated to version {1}": "{0} ला आवृत्ती {1} पर्यंत अद्यतनित करता येईल", + "Updates found!": "अद्यतने आढळली!", + "{0} packages can be updated": "{0} पॅकेजेस अद्यतनित करता येतील", + "You have currently version {0} installed": "तुमच्याकडे सध्या आवृत्ती {0} स्थापित आहे", + "Desktop shortcut created": "डेस्कटॉप शॉर्टकट तयार झाला", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI ने एक नवीन डेस्कटॉप शॉर्टकट शोधला आहे जो आपोआप हटवता येऊ शकतो.", + "{0} desktop shortcuts created": "{0} डेस्कटॉप शॉर्टकट तयार झाले", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI ने {0} नवीन डेस्कटॉप शॉर्टकट शोधले आहेत जे आपोआप हटवता येऊ शकतात.", + "Are you sure?": "तुम्हाला खात्री आहे का?", + "Do you really want to uninstall {0}?": "तुम्हाला खरोखर {0} विस्थापित करायचे आहे का?", + "Do you really want to uninstall the following {0} packages?": "तुम्हाला खरोखर खालील {0} पॅकेजेस विस्थापित करायची आहेत का?", + "No": "नाही", + "Yes": "होय", + "View on UniGetUI": "UniGetUI वर पहा", + "Update": "अद्यतनित करा", + "Open UniGetUI": "UniGetUI उघडा", + "Update all": "सर्व अद्यतनित करा", + "Update now": "आता अद्यतनित करा", + "This package is on the queue": "हे पॅकेज रांगेत आहे", + "installing": "स्थापित करत आहे", + "updating": "अद्यतनित करत आहे", + "uninstalling": "विस्थापित करत आहे", + "installed": "स्थापित झाले", + "Retry": "पुन्हा प्रयत्न करा", + "Install": "स्थापित करा", + "Uninstall": "विस्थापित करा", + "Open": "उघडा", + "Operation profile:": "क्रिया प्रोफाइल:", + "Follow the default options when installing, upgrading or uninstalling this package": "हे पॅकेज स्थापित, अद्यतनित किंवा विस्थापित करताना मूळ पर्याय वापरा", + "The following settings will be applied each time this package is installed, updated or removed.": "हे पॅकेज प्रत्येक वेळी स्थापित, अद्यतनित किंवा काढले जाताना खालील सेटिंग्ज लागू होतील.", + "Version to install:": "स्थापित करायची आवृत्ती:", + "Architecture to install:": "स्थापित करायची आर्किटेक्चर:", + "Installation scope:": "स्थापनेची व्याप्ती:", + "Install location:": "स्थापनेचे स्थान:", + "Select": "निवडा", + "Reset": "रीसेट करा", + "Custom install arguments:": "सानुकूल स्थापना वितर्क:", + "Custom update arguments:": "सानुकूल अद्यतन वितर्क:", + "Custom uninstall arguments:": "सानुकूल विस्थापन वितर्क:", + "Pre-install command:": "स्थापनेपूर्वीची आज्ञा:", + "Post-install command:": "स्थापनेनंतरची आज्ञा:", + "Abort install if pre-install command fails": "स्थापनेपूर्वीची आज्ञा अयशस्वी झाल्यास स्थापना थांबवा", + "Pre-update command:": "अद्यतनापूर्वीची आज्ञा:", + "Post-update command:": "अद्यतनानंतरची आज्ञा:", + "Abort update if pre-update command fails": "अद्यतनापूर्वीची आज्ञा अयशस्वी झाल्यास अद्यतन थांबवा", + "Pre-uninstall command:": "विस्थापनापूर्वीची आज्ञा:", + "Post-uninstall command:": "विस्थापनानंतरची आज्ञा:", + "Abort uninstall if pre-uninstall command fails": "विस्थापनापूर्वीची आज्ञा अयशस्वी झाल्यास विस्थापन थांबवा", + "Command-line to run:": "चालवायची कमांड-लाइन:", + "Save and close": "जतन करा आणि बंद करा", + "General": "सामान्य", + "Architecture & Location": "आर्किटेक्चर आणि स्थान", + "Command-line": "कमांड-लाइन", + "Pre/Post install": "स्थापनेपूर्वी/नंतर", + "Run as admin": "प्रशासक म्हणून चालवा", + "Interactive installation": "परस्परसंवादी स्थापना", + "Skip hash check": "हॅश तपासणी वगळा", + "Uninstall previous versions when updated": "अद्यतनित करताना मागील आवृत्त्या विस्थापित करा", + "Skip minor updates for this package": "या पॅकेजसाठी किरकोळ अद्यतने वगळा", + "Automatically update this package": "हे पॅकेज आपोआप अद्यतनित करा", + "{0} installation options": "{0} स्थापनेचे पर्याय", + "Latest": "नवीनतम", + "PreRelease": "पूर्वप्रकाशन", + "Default": "मूळ", + "Manage ignored updates": "दुर्लक्षित अद्यतने व्यवस्थापित करा", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "अद्यतने तपासताना येथे सूचीबद्ध पॅकेजेस विचारात घेतली जाणार नाहीत. त्यांची अद्यतने दुर्लक्षित करणे थांबवण्यासाठी त्यांच्यावर दुहेरी-क्लिक करा किंवा त्यांच्या उजवीकडील बटणावर क्लिक करा.", + "Reset list": "यादी रीसेट करा", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "तुम्हाला खरोखर दुर्लक्षित अद्यतनांची यादी रीसेट करायची आहे का? ही क्रिया पूर्ववत करता येणार नाही", + "No ignored updates": "दुर्लक्षित अद्यतने नाहीत", + "Package Name": "पॅकेज नाव", + "Package ID": "पॅकेज आयडी", + "Ignored version": "दुर्लक्षित आवृत्ती", + "New version": "नवीन आवृत्ती", + "Source": "स्रोत", + "All versions": "सर्व आवृत्त्या", + "Unknown": "अज्ञात", + "Up to date": "अद्ययावत", + "Cancel": "रद्द करा", + "Administrator privileges": "प्रशासक अधिकार", + "This operation is running with administrator privileges.": "ही क्रिया प्रशासक अधिकारांसह चालू आहे.", + "Interactive operation": "परस्परसंवादी क्रिया", + "This operation is running interactively.": "ही क्रिया परस्परसंवादी पद्धतीने चालू आहे.", + "You will likely need to interact with the installer.": "तुम्हाला कदाचित इंस्टॉलरशी संवाद साधावा लागेल.", + "Integrity checks skipped": "अखंडता तपासण्या वगळल्या", + "Integrity checks will not be performed during this operation.": "या क्रियेदरम्यान अखंडता तपासण्या केल्या जाणार नाहीत.", + "Proceed at your own risk.": "पुढे जाणे तुमच्या स्वतःच्या जोखमीवर आहे.", + "Close": "बंद करा", + "Loading...": "लोड करत आहे...", + "Installer SHA256": "इंस्टॉलर SHA256", + "Homepage": "मुखपृष्ठ", + "Author": "लेखक", + "Publisher": "प्रकाशक", + "License": "परवाना", + "Manifest": "मॅनिफेस्ट", + "Installer Type": "इंस्टॉलर प्रकार", + "Size": "आकार", + "Installer URL": "इंस्टॉलर URL", + "Last updated:": "शेवटचे अद्यतन:", + "Release notes URL": "प्रकाशन नोंदी URL", + "Package details": "पॅकेज तपशील", + "Dependencies:": "अवलंबने:", + "Release notes": "प्रकाशन नोंदी", + "Version": "आवृत्ती", + "Install as administrator": "प्रशासक म्हणून स्थापित करा", + "Update to version {0}": "आवृत्ती {0} वर अद्यतनित करा", + "Installed Version": "स्थापित आवृत्ती", + "Update as administrator": "प्रशासक म्हणून अद्यतनित करा", + "Interactive update": "परस्परसंवादी अद्यतन", + "Uninstall as administrator": "प्रशासक म्हणून विस्थापित करा", + "Interactive uninstall": "परस्परसंवादी विस्थापना", + "Uninstall and remove data": "विस्थापित करा आणि डेटा हटवा", + "Not available": "उपलब्ध नाही", + "Installer SHA512": "इंस्टॉलर SHA512", + "Unknown size": "अज्ञात आकार", + "No dependencies specified": "कोणतीही अवलंबने दिलेली नाहीत", + "mandatory": "अनिवार्य", + "optional": "ऐच्छिक", + "UniGetUI {0} is ready to be installed.": "UniGetUI {0} स्थापित करण्यासाठी तयार आहे.", + "The update process will start after closing UniGetUI": "UniGetUI बंद केल्यानंतर अद्यतन प्रक्रिया सुरू होईल", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI प्रशासक म्हणून चालवले गेले आहे, जे शिफारसीय नाही. UniGetUI प्रशासक म्हणून चालवल्यास, UniGetUI मधून सुरू केलेली प्रत्येक क्रिया प्रशासकीय विशेषाधिकारांसह चालेल. तुम्ही तरीही हा कार्यक्रम वापरू शकता, पण आम्ही ठामपणे शिफारस करतो की UniGetUI प्रशासकीय विशेषाधिकारांसह चालवू नका.", + "Share anonymous usage data": "अनामिक वापर डेटा शेअर करा", + "UniGetUI collects anonymous usage data in order to improve the user experience.": "वापरकर्ता अनुभव सुधारण्यासाठी UniGetUI अनामिक वापर डेटा संकलित करते.", + "Accept": "स्वीकारा", + "You have installed UniGetUI Version {0}": "तुम्ही UniGetUI आवृत्ती {0} स्थापित केली आहे", + "Disclaimer": "अस्वीकरण", + "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI कोणत्याही सुसंगत पॅकेज व्यवस्थापकाशी संबंधित नाही. UniGetUI हा स्वतंत्र प्रकल्प आहे.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI खालील ग्रंथालये वापरते. त्यांच्याशिवाय UniGetUI शक्य झाले नसते.", + "{0} homepage": "{0} मुख्यपृष्ठ", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "Verbose": "तपशीलवार", + "1 - Errors": "1 - त्रुटी", + "2 - Warnings": "2 - इशारे", + "3 - Information (less)": "3 - माहिती (कमी)", + "4 - Information (more)": "4 - माहिती (अधिक)", + "5 - information (debug)": "5 - माहिती (डीबग)", + "Warning": "इशारा", + "The following settings may pose a security risk, hence they are disabled by default.": "खालील सेटिंग्ज सुरक्षा जोखीम निर्माण करू शकतात, म्हणून त्या डीफॉल्टनुसार निष्क्रिय आहेत.", + "Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "खालील सेटिंग्ज फक्त त्या काय करतात आणि त्यांचे परिणाम काय असू शकतात हे तुम्हाला पूर्णपणे समजत असल्यासच सक्षम करा.", + "The settings will list, in their descriptions, the potential security issues they may have.": "या सेटिंग्जच्या वर्णनांत त्यांच्याशी संबंधित संभाव्य सुरक्षा समस्या दिलेल्या असतील.", + "The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "बॅकअपमध्ये स्थापित पॅकेजांची संपूर्ण यादी आणि त्यांचे स्थापना पर्याय समाविष्ट असतील. दुर्लक्षित अद्यतने आणि वगळलेल्या आवृत्त्याही जतन केल्या जातील.", + "The backup will NOT include any binary file nor any program's saved data.": "बॅकअपमध्ये कोणतीही बायनरी फाइल किंवा कोणत्याही कार्यक्रमाचा जतन केलेला डेटा समाविष्ट नसेल.", + "The size of the backup is estimated to be less than 1MB.": "बॅकअपचा आकार 1MB पेक्षा कमी असेल असा अंदाज आहे.", + "The backup will be performed after login.": "लॉग इन केल्यानंतर बॅकअप घेतला जाईल.", + "{pcName} installed packages": "{pcName} वरील स्थापित पॅकेजेस", + "Current status: Not logged in": "सध्याची स्थिती: लॉग इन केलेले नाही", + "You are logged in as {0} (@{1})": "तुम्ही {0} (@{1}) म्हणून लॉग इन आहात", + "Nice! Backups will be uploaded to a private gist on your account": "छान! बॅकअप तुमच्या खात्यातील खाजगी gist वर अपलोड केले जातील", + "Select backup": "बॅकअप निवडा", + "UniGetUI Settings": "UniGetUI सेटिंग्ज", + "Allow pre-release versions": "पूर्व-प्रकाशन आवृत्त्यांना परवानगी द्या", + "Apply": "लागू करा", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "सुरक्षेच्या कारणास्तव, सानुकूल कमांड-लाइन युक्तिवाद डीफॉल्टनुसार निष्क्रिय आहेत. हे बदलण्यासाठी UniGetUI सुरक्षा सेटिंग्जमध्ये जा.", + "Go to UniGetUI security settings": "UniGetUI सुरक्षा सेटिंग्जमध्ये जा", + "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "खालील पर्याय प्रत्येक वेळी {0} पॅकेज स्थापित, अद्यतनित किंवा विस्थापित केल्यावर डीफॉल्टनुसार लागू होतील.", + "Package's default": "पॅकेजचे डीफॉल्ट", + "Install location can't be changed for {0} packages": "{0} पॅकेजेससाठी स्थापना स्थान बदलता येत नाही", + "The local icon cache currently takes {0} MB": "स्थानिक आयकॉन कॅश सध्या {0} MB जागा घेत आहे", + "Username": "वापरकर्तानाव", + "Password": "संकेतशब्द", + "Credentials": "प्रवेश तपशील", + "It is not guaranteed that the provided credentials will be stored safely": "दिलेले प्रवेश तपशील सुरक्षितपणे साठवले जातील याची हमी नाही", + "Partially": "अंशतः", + "Package manager": "पॅकेज व्यवस्थापक", + "Compatible with proxy": "प्रॉक्सीशी सुसंगत", + "Compatible with authentication": "प्रमाणीकरणाशी सुसंगत", + "Proxy compatibility table": "प्रॉक्सी सुसंगतता तक्ता", + "{0} settings": "{0} सेटिंग्ज", + "{0} status": "{0} स्थिती", + "Default installation options for {0} packages": "{0} पॅकेजेससाठी डीफॉल्ट स्थापना पर्याय", + "Expand version": "आवृत्ती विस्तृत करा", + "The executable file for {0} was not found": "{0} साठी कार्यान्वयनीय फाइल सापडली नाही", + "{pm} is disabled": "{pm} निष्क्रिय आहे", + "Enable it to install packages from {pm}.": "{pm} मधून पॅकेजेस स्थापित करण्यासाठी ते सक्षम करा.", + "{pm} is enabled and ready to go": "{pm} सक्षम आहे आणि वापरासाठी तयार आहे", + "{pm} version:": "{pm} आवृत्ती:", + "{pm} was not found!": "{pm} सापडले नाही!", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI सोबत वापरण्यासाठी तुम्हाला {pm} स्थापित करावे लागू शकते.", + "Scoop Installer - UniGetUI": "Scoop इंस्टॉलर - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop अनइंस्टॉलर - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop कॅश साफ करणे - UniGetUI", + "Restart UniGetUI to fully apply changes": "बदल पूर्णपणे लागू करण्यासाठी UniGetUI पुन्हा सुरू करा", + "Restart UniGetUI": "UniGetUI पुन्हा सुरू करा", + "Manage {0} sources": "{0} स्रोत व्यवस्थापित करा", + "Add source": "स्रोत जोडा", + "Add": "जोडा", + "Source name": "स्रोत नाव", + "Source URL": "स्रोत URL", + "Other": "इतर", + "No minimum age": "किमान वय नाही", + "1 day": "1 दिवस", + "{0} days": "{0} दिवस", + "Custom...": "सानुकूल...", + "{0} minutes": "{0} मिनिटे", + "1 hour": "एक तास", + "{0} hours": "{0} तास", + "1 week": "एक आठवडा", + "Supports release dates": "प्रकाशन दिनांकांना समर्थन", + "Release date support per package manager": "प्रत्येक पॅकेज व्यवस्थापकानुसार प्रकाशन दिनांक समर्थन", + "UniGetUI Version {0}": "UniGetUI आवृत्ती {0}", + "Search for packages": "पॅकेजेस शोधा", + "Local": "स्थानिक", + "OK": "OK", + "{0} packages were found, {1} of which match the specified filters.": "{0} पॅकेजेस आढळली, त्यापैकी {1} निर्दिष्ट फिल्टर्सशी जुळतात.", + "{0} selected": "{0} निवडले", + "(Last checked: {0})": "(शेवटची तपासणी: {0})", + "Enabled": "सक्षम", + "Disabled": "अक्षम", + "More info": "अधिक माहिती", + "GitHub account": "GitHub खाते", + "Log in with GitHub to enable cloud package backup.": "क्लाउड पॅकेज बॅकअप सक्षम करण्यासाठी GitHub सह लॉग इन करा.", + "More details": "अधिक तपशील", + "Log in": "लॉग इन", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "जर तुम्ही क्लाउड बॅकअप सक्षम केले असेल, तर ते या खात्यावर GitHub Gist म्हणून जतन केले जाईल", + "Log out": "लॉग आउट", + "About UniGetUI": "UniGetUI बद्दल", + "About": "बद्दल", + "Third-party licenses": "तृतीय-पक्ष परवाने", + "Contributors": "योगदानकर्ते", + "Translators": "अनुवादक", + "Manage shortcuts": "शॉर्टकट्स व्यवस्थापित करा", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ने खालील डेस्कटॉप शॉर्टकट्स शोधले आहेत, जे पुढील अपग्रेड्समध्ये आपोआप काढले जाऊ शकतात", + "Do you really want to reset this list? This action cannot be reverted.": "तुम्हाला ही यादी खरोखर रीसेट करायची आहे का? ही कृती मागे घेतली जाऊ शकत नाही.", + "Open in explorer": "Explorer मध्ये उघडा", + "Remove from list": "यादीतून काढा", + "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "नवीन शॉर्टकट्स आढळल्यावर, हा संवाद दाखवण्याऐवजी ते आपोआप हटवा.", + "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI केवळ वापरकर्ता अनुभव समजून घेण्यासाठी आणि सुधारण्यासाठी अनामिक वापर डेटा संकलित करते.", + "More details about the shared data and how it will be processed": "सामायिक केलेल्या डेटाबद्दल आणि त्यावर कशी प्रक्रिया केली जाईल याबद्दल अधिक तपशील", + "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "UniGetUI वापरकर्ता अनुभव समजून घेण्यासाठी आणि सुधारण्यासाठी अनामिक वापर आकडेवारी संकलित करून पाठवते, हे तुम्ही स्वीकारता का?", + "Decline": "नकार द्या", + "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "कोणतीही वैयक्तिक माहिती संकलित किंवा पाठवली जात नाही, आणि संकलित डेटा अनामिक केला जातो, त्यामुळे तो तुमच्यापर्यंत मागोवा घेता येत नाही.", + "Toggle navigation panel": "नेव्हिगेशन पॅनल टॉगल करा", + "Minimize": "लहान करा", + "Maximize": "मोठे करा", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI हे एक अनुप्रयोग आहे जे तुमचे सॉफ्टवेअर व्यवस्थापित करणे सोपे करते, कारण ते तुमच्या कमांड-लाइन पॅकेज व्यवस्थापकांसाठी सर्व-समावेशक ग्राफिकल इंटरफेस प्रदान करते.", + "Useful links": "उपयुक्त दुवे", + "UniGetUI Homepage": "UniGetUI मुख्यपृष्ठ", + "Report an issue or submit a feature request": "समस्या नोंदवा किंवा वैशिष्ट्य विनंती सादर करा", + "UniGetUI Repository": "UniGetUI रिपॉझिटरी", + "View GitHub Profile": "GitHub प्रोफाइल पहा", + "UniGetUI License": "UniGetUI परवाना", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI वापरणे म्हणजे MIT परवान्याचा स्वीकार होय", + "Become a translator": "अनुवादक बना", + "View page on browser": "ब्राउझरमध्ये पृष्ठ पहा", + "Copy to clipboard": "क्लिपबोर्डवर कॉपी करा", + "Export to a file": "फाइलमध्ये निर्यात करा", + "Log level:": "लॉग स्तर:", + "Reload log": "लॉग पुन्हा लोड करा", + "Export log": "लॉग निर्यात करा", + "UniGetUI Log": "UniGetUI लॉग", + "Text": "मजकूर", + "Change how operations request administrator rights": "कार्यवाही प्रशासक अधिकारांची विनंती कशी करते ते बदला", + "Restrictions on package operations": "पॅकेज कार्यवाह्यांवरील निर्बंध", + "Restrictions on package managers": "पॅकेज व्यवस्थापकांवरील निर्बंध", + "Restrictions when importing package bundles": "पॅकेज बंडल आयात करताना निर्बंध", + "Ask for administrator privileges once for each batch of operations": "प्रत्येक कार्यवाही गटासाठी एकदाच प्रशासक अधिकारांची विनंती करा", + "Ask only once for administrator privileges": "प्रशासक अधिकारांसाठी फक्त एकदाच विचारा", + "Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "UniGetUI Elevator किंवा GSudo द्वारे कोणत्याही प्रकारची उन्नती प्रतिबंधित करा", + "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "हा पर्याय नक्कीच अडचणी निर्माण करेल. स्वतःला उन्नत करू न शकणारी कोणतीही कार्यवाही अपयशी ठरेल. प्रशासक म्हणून स्थापित/अद्यतनित/विस्थापित करणे कार्य करणार नाही.", + "Allow custom command-line arguments": "सानुकूल कमांड-लाइन आर्ग्युमेंट्सना परवानगी द्या", + "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "सानुकूल कमांड-लाइन आर्ग्युमेंट्समुळे प्रोग्राम स्थापित, अद्ययावत किंवा विस्थापित करण्याची पद्धत UniGetUI च्या नियंत्रणाबाहेर बदलू शकते. सानुकूल कमांड-लाइन वापरल्याने पॅकेजेस बिघडू शकतात. काळजीपूर्वक पुढे जा.", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "बंडलमधून पॅकेजेस आयात करताना सानुकूल pre-install आणि post-install आदेश दुर्लक्षित करा", + "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "pre-install आणि post-install आदेश पॅकेज स्थापित, अद्ययावत किंवा विस्थापित होण्यापूर्वी आणि नंतर चालवले जातील. ते काळजीपूर्वक वापरले नाहीत तर गोष्टी बिघडू शकतात याची जाणीव ठेवा", + "Allow changing the paths for package manager executables": "पॅकेज व्यवस्थापक executable च्या पथांमध्ये बदल करण्यास परवानगी द्या", + "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "हे चालू केल्यावर पॅकेज व्यवस्थापकांशी संवाद साधण्यासाठी वापरली जाणारी executable फाइल बदलता येते. यामुळे तुमच्या स्थापिती प्रक्रियांचे अधिक सूक्ष्म सानुकूलन शक्य होते, पण ते धोकादायकही ठरू शकते", + "Allow importing custom command-line arguments when importing packages from a bundle": "बंडलमधून पॅकेजेस आयात करताना सानुकूल कमांड-लाइन आर्ग्युमेंट्स आयात करण्यास परवानगी द्या", + "Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "चुकीच्या स्वरूपातील कमांड-लाइन आर्ग्युमेंट्स पॅकेजेस बिघडवू शकतात, किंवा एखाद्या दुष्ट घटकाला विशेषाधिकारित कार्यवाही मिळवून देऊ शकतात. त्यामुळे, सानुकूल कमांड-लाइन आर्ग्युमेंट्सची आयात डीफॉल्टनुसार अक्षम आहे", + "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "बंडलमधून पॅकेजेस आयात करताना सानुकूल pre-install आणि post-install आदेश आयात करण्यास परवानगी द्या", + "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "pre-install आणि post-install आदेश तसे रचलेले असल्यास तुमच्या डिव्हाइसवर अत्यंत घातक गोष्टी करू शकतात. त्या पॅकेज बंडलच्या स्रोतावर तुमचा विश्वास नसल्यास, त्यातील आदेश आयात करणे फार धोकादायक ठरू शकते", + "Administrator rights and other dangerous settings": "प्रशासक अधिकार आणि इतर धोकादायक सेटिंग्ज", + "Package backup": "पॅकेज बॅकअप", + "Cloud package backup": "क्लाउड पॅकेज बॅकअप", + "Local package backup": "स्थानिक पॅकेज बॅकअप", + "Local backup advanced options": "स्थानिक बॅकअप प्रगत पर्याय", + "Log in with GitHub": "GitHub सह लॉग इन करा", + "Log out from GitHub": "GitHub मधून लॉग आउट करा", + "Periodically perform a cloud backup of the installed packages": "स्थापित पॅकेजेसचा क्लाउड बॅकअप नियमितपणे घ्या", + "Cloud backup uses a private GitHub Gist to store a list of installed packages": "क्लाउड बॅकअप स्थापित पॅकेजेसची यादी साठवण्यासाठी खाजगी GitHub Gist वापरतो", + "Perform a cloud backup now": "आता क्लाउड बॅकअप घ्या", + "Backup": "बॅकअप", + "Restore a backup from the cloud": "क्लाउडमधून बॅकअप पुनर्संचयित करा", + "Begin the process to select a cloud backup and review which packages to restore": "क्लाउड बॅकअप निवडण्याची आणि कोणती पॅकेजेस पुनर्संचयित करायची ते पाहण्याची प्रक्रिया सुरू करा", + "Periodically perform a local backup of the installed packages": "स्थापित पॅकेजेसचा स्थानिक बॅकअप नियमितपणे घ्या", + "Perform a local backup now": "आता स्थानिक बॅकअप घ्या", + "Change backup output directory": "बॅकअप आउटपुट निर्देशिका बदला", + "Set a custom backup file name": "सानुकूल बॅकअप फाइल नाव सेट करा", + "Leave empty for default": "डीफॉल्टसाठी रिकामे ठेवा", + "Add a timestamp to the backup file names": "बॅकअप फाइल नावांमध्ये टाइमस्टॅम्प जोडा", + "Backup and Restore": "बॅकअप आणि पुनर्संचयित करा", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "पार्श्वभूमी API सक्षम करा (UniGetUI Widgets and Sharing, port 7058)", + "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "इंटरनेट कनेक्टिव्हिटी आवश्यक असलेल्या कार्यांचा प्रयत्न करण्यापूर्वी डिव्हाइस इंटरनेटशी जोडले जाईपर्यंत प्रतीक्षा करा.", + "Disable the 1-minute timeout for package-related operations": "पॅकेज-संबंधित कार्यवाह्यांसाठी 1-मिनिटाचा टाइमआउट अक्षम करा", + "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator ऐवजी स्थापित GSudo वापरा", + "Use a custom icon and screenshot database URL": "सानुकूल आयकॉन आणि स्क्रीनशॉट डेटाबेस URL वापरा", + "Enable background CPU Usage optimizations (see Pull Request #3278)": "पार्श्वभूमीतील CPU वापर अनुकूलन सक्षम करा (Pull Request #3278 पहा)", + "Perform integrity checks at startup": "सुरूवातीला अखंडता तपासण्या करा", + "When batch installing packages from a bundle, install also packages that are already installed": "बंडलमधून पॅकेजेस बॅचने स्थापित करताना, आधीपासून स्थापित असलेली पॅकेजेसही स्थापित करा", + "Experimental settings and developer options": "प्रायोगिक सेटिंग्ज आणि विकसक पर्याय", + "Show UniGetUI's version and build number on the titlebar.": "शीर्षकपट्टीवर UniGetUI ची आवृत्ती आणि बिल्ड क्रमांक दाखवा.", + "Language": "भाषा", + "UniGetUI updater": "UniGetUI अपडेटर", + "Telemetry": "टेलिमेट्री", + "Manage UniGetUI settings": "UniGetUI सेटिंग्ज व्यवस्थापित करा", + "Related settings": "संबंधित सेटिंग्ज", + "Update UniGetUI automatically": "UniGetUI आपोआप अद्ययावत करा", + "Check for updates": "अद्ययावतांची तपासणी करा", + "Install prerelease versions of UniGetUI": "UniGetUI च्या पूर्व-प्रकाशन आवृत्त्या स्थापित करा", + "Manage telemetry settings": "टेलिमेट्री सेटिंग्ज व्यवस्थापित करा", + "Manage": "व्यवस्थापित करा", + "Import settings from a local file": "स्थानिक फाइलमधून सेटिंग्ज आयात करा", + "Import": "आयात करा", + "Export settings to a local file": "सेटिंग्ज स्थानिक फाइलमध्ये निर्यात करा", + "Export": "निर्यात करा", + "Reset UniGetUI": "UniGetUI रीसेट करा", + "User interface preferences": "वापरकर्ता आंतरफलक प्राधान्ये", + "Application theme, startup page, package icons, clear successful installs automatically": "अनुप्रयोग थीम, प्रारंभ पृष्ठ, पॅकेज चिन्हे, यशस्वी स्थापना आपोआप साफ करा", + "General preferences": "सामान्य प्राधान्ये", + "UniGetUI display language:": "UniGetUI प्रदर्शन भाषा:", + "Is your language missing or incomplete?": "तुमची भाषा उपलब्ध नाही किंवा अपूर्ण आहे का?", + "Appearance": "स्वरूप", + "UniGetUI on the background and system tray": "पार्श्वभूमीत आणि सिस्टम ट्रेमध्ये UniGetUI", + "Package lists": "पॅकेज सूची", + "Close UniGetUI to the system tray": "UniGetUI बंद केल्यावर सिस्टम ट्रेमध्ये पाठवा", + "Manage UniGetUI autostart behaviour": "UniGetUI च्या स्वयंप्रारंभ वर्तनाचे व्यवस्थापन करा", + "Show package icons on package lists": "पॅकेज सूचीत पॅकेज चिन्हे दाखवा", + "Clear cache": "कॅशे साफ करा", + "Select upgradable packages by default": "डिफॉल्टने अद्ययावत करता येणारी पॅकेजेस निवडा", + "Light": "उजळ", + "Dark": "गडद", + "Follow system color scheme": "सिस्टमची रंगसंगती अनुसरा", + "Application theme:": "अनुप्रयोग थीम:", + "Discover Packages": "पॅकेजेस शोधा", + "Software Updates": "सॉफ्टवेअर अद्यतने", + "Installed Packages": "स्थापित पॅकेजेस", + "Package Bundles": "पॅकेज बंडल्स", + "Settings": "सेटिंग्ज", + "UniGetUI startup page:": "UniGetUI प्रारंभ पृष्ठ:", + "Proxy settings": "प्रॉक्सी सेटिंग्ज", + "Other settings": "इतर सेटिंग्ज", + "Connect the internet using a custom proxy": "सानुकूल प्रॉक्सी वापरून इंटरनेटशी कनेक्ट करा", + "Please note that not all package managers may fully support this feature": "कृपया लक्षात घ्या की सर्व पॅकेज व्यवस्थापक हे वैशिष्ट्य पूर्णपणे समर्थित करतीलच असे नाही", + "Proxy URL": "प्रॉक्सी URL", + "Enter proxy URL here": "येथे प्रॉक्सी URL प्रविष्ट करा", + "Authenticate to the proxy with a user and a password": "प्रॉक्सीवर वापरकर्तानाव आणि संकेतशब्दासह प्रमाणीकरण करा", + "Internet and proxy settings": "इंटरनेट आणि प्रॉक्सी सेटिंग्ज", + "Package manager preferences": "पॅकेज व्यवस्थापक प्राधान्ये", + "Ready": "तयार", + "Not found": "आढळले नाही", + "Notification preferences": "सूचनांची प्राधान्ये", + "Notification types": "सूचनांचे प्रकार", + "The system tray icon must be enabled in order for notifications to work": "सूचना कार्य करण्यासाठी सिस्टम ट्रे चिन्ह सक्षम असणे आवश्यक आहे", + "Enable UniGetUI notifications": "UniGetUI सूचना सक्षम करा", + "Show a notification when there are available updates": "उपलब्ध अद्यतने असतील तेव्हा सूचना दाखवा", + "Show a silent notification when an operation is running": "एखादी क्रिया चालू असताना मूक सूचना दाखवा", + "Show a notification when an operation fails": "एखादी क्रिया अयशस्वी झाल्यास सूचना दाखवा", + "Show a notification when an operation finishes successfully": "एखादी क्रिया यशस्वीरित्या पूर्ण झाल्यास सूचना दाखवा", + "Concurrency and execution": "समांतरता आणि अंमलबजावणी", + "Automatic desktop shortcut remover": "स्वयंचलित डेस्कटॉप शॉर्टकट काढणारे साधन", + "Choose how many operations should be performed in parallel": "किती क्रिया समांतरपणे करायच्या ते निवडा", + "Clear successful operations from the operation list after a 5 second delay": "5 सेकंद विलंबानंतर क्रिया सूचीमधून यशस्वी क्रिया साफ करा", + "Download operations are not affected by this setting": "डाउनलोड क्रियांवर या सेटिंगचा परिणाम होत नाही", + "Try to kill the processes that refuse to close when requested to": "बंद करण्यास सांगितल्यावरही बंद न होणाऱ्या प्रक्रिया समाप्त करण्याचा प्रयत्न करा", + "You may lose unsaved data": "न जतन केलेला डेटा गमावला जाऊ शकतो", + "Ask to delete desktop shortcuts created during an install or upgrade.": "स्थापना किंवा अद्ययावत दरम्यान तयार झालेले डेस्कटॉप शॉर्टकट हटवायचे का ते विचारा.", + "Package update preferences": "पॅकेज अद्यतन प्राधान्ये", + "Update check frequency, automatically install updates, etc.": "अद्यतन तपासणीची वारंवारता, अद्यतने आपोआप स्थापित करणे इत्यादी.", + "Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "UAC संकेत कमी करा, स्थापनेस डिफॉल्टने उच्चाधिकार द्या, काही धोकादायक वैशिष्ट्ये अनलॉक करा इत्यादी.", + "Package operation preferences": "पॅकेज क्रिया प्राधान्ये", + "Enable {pm}": "{pm} सक्षम करा", + "Not finding the file you are looking for? Make sure it has been added to path.": "तुम्ही शोधत असलेली फाइल सापडत नाहीये का? ती path मध्ये जोडली आहे याची खात्री करा.", + "For security reasons, changing the executable file is disabled by default": "सुरक्षिततेच्या कारणास्तव, executable file बदलणे डिफॉल्टने अक्षम आहे", + "Change this": "हे बदला", + "Select the executable to be used. The following list shows the executables found by UniGetUI": "वापरायची executable file निवडा. खालील सूचीमध्ये UniGetUI ला सापडलेल्या executable files दाखवल्या आहेत", + "Current executable file:": "सध्याची executable file:", + "Ignore packages from {pm} when showing a notification about updates": "अद्यतनांविषयी सूचना दाखवताना {pm} मधील पॅकेजेस दुर्लक्षित करा", + "Update security": "अद्यतन सुरक्षा", + "Use global setting": "जागतिक सेटिंग वापरा", + "e.g. 10": "उदा. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} त्याच्या पॅकेजेससाठी प्रकाशन दिनांक देत नाही, त्यामुळे या सेटिंगचा काही परिणाम होणार नाही", + "Override the global minimum update age for this package manager": "या पॅकेज व्यवस्थापकासाठी जागतिक किमान अद्यतन-वय सेटिंग ओव्हरराइड करा", + "Minimum age for updates": "अद्यतनांसाठी किमान वय", + "Custom minimum age (days)": "सानुकूल किमान वय (दिवस)", + "View {0} logs": "{0} लॉग पहा", + "If Python cannot be found or is not listing packages but is installed on the system, ": "जर Python सापडत नसेल किंवा तो पॅकेजेस दाखवत नसेल पण सिस्टमवर स्थापित असेल, ", + "Advanced options": "प्रगत पर्याय", + "Reset WinGet": "WinGet रीसेट करा", + "This may help if no packages are listed": "जर कोणतीही पॅकेजेस सूचीबद्ध दिसत नसतील तर यामुळे मदत होऊ शकते", + "Force install location parameter when updating packages with custom locations": "सानुकूल स्थानांसह पॅकेजेस अद्ययावत करताना install location parameter सक्तीने वापरा", + "Use bundled WinGet instead of system WinGet": "सिस्टम WinGet ऐवजी bundled WinGet वापरा", + "This may help if WinGet packages are not shown": "WinGet पॅकेजेस दिसत नसल्यास यामुळे मदत होऊ शकते", + "Install Scoop": "Scoop स्थापित करा", + "Uninstall Scoop (and its packages)": "Scoop (आणि त्याची पॅकेजेस) विस्थापित करा", + "Run cleanup and clear cache": "साफसफाई चालवा आणि कॅशे साफ करा", + "Run": "चालवा", + "Enable Scoop cleanup on launch": "सुरुवातीला Scoop cleanup सक्षम करा", + "Use system Chocolatey": "सिस्टम Chocolatey वापरा", + "Default vcpkg triplet": "डीफॉल्ट vcpkg triplet", + "Change vcpkg root location": "vcpkg चे root स्थान बदला", + "Language, theme and other miscellaneous preferences": "भाषा, थीम आणि इतर विविध प्राधान्ये", + "Show notifications on different events": "विविध घटनांवर सूचना दाखवा", + "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI तुमच्या पॅकेजसाठी उपलब्ध अद्यतने कशी तपासते आणि स्थापित करते ते बदला", + "Automatically save a list of all your installed packages to easily restore them.": "तुमची सर्व स्थापित पॅकेजेसची यादी आपोआप जतन करा, म्हणजे ती सहज पुनर्संचयित करता येतील.", + "Enable and disable package managers, change default install options, etc.": "पॅकेज व्यवस्थापक सक्षम किंवा अक्षम करा, डीफॉल्ट स्थापिती पर्याय बदला, इ.", + "Internet connection settings": "इंटरनेट कनेक्शन सेटिंग्ज", + "Proxy settings, etc.": "प्रॉक्सी सेटिंग्ज, इ.", + "Beta features and other options that shouldn't be touched": "बीटा वैशिष्ट्ये आणि इतर पर्याय ज्यांना हात लावू नये", + "Update checking": "अद्यतन तपासणी", + "Automatic updates": "स्वयंचलित अद्यतने", + "Check for package updates periodically": "पॅकेज अद्यतने नियमितपणे तपासा", + "Check for updates every:": "अद्यतने तपासण्याची वारंवारिता:", + "Install available updates automatically": "उपलब्ध अद्यतने आपोआप स्थापित करा", + "Do not automatically install updates when the network connection is metered": "नेटवर्क कनेक्शन मीटर केलेले असल्यास अद्यतने आपोआप स्थापित करू नका", + "Do not automatically install updates when the device runs on battery": "उपकरण बॅटरीवर चालत असल्यास अद्यतने आपोआप स्थापित करू नका", + "Do not automatically install updates when the battery saver is on": "बॅटरी सेवर चालू असल्यास अद्यतने आपोआप स्थापित करू नका", + "Only show updates that are at least the specified number of days old": "फक्त किमान निर्दिष्ट दिवसांइतकी जुनी अद्यतनेच दाखवा", + "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI स्थापिती, अद्यतन आणि विस्थापना क्रिया कशा हाताळते ते बदला.", + "Package Managers": "पॅकेज व्यवस्थापक", + "More": "अधिक", + "Package Manager logs": "पॅकेज व्यवस्थापक नोंदी", + "Operation history": "क्रिया इतिहास", + "Help": "मदत", + "Quit UniGetUI": "UniGetUI बंद करा", + "Order by:": "क्रम लावा:", + "Name": "नाव", + "Id": "आयडी", + "Ascendant": "चढत्या क्रमाने", + "Descendant": "उतरत्या क्रमाने", + "View mode:": "दृश्य मोड:", + "Filters": "फिल्टर्स", + "Sources": "स्रोत", + "Search for packages to start": "सुरुवात करण्यासाठी पॅकेजेस शोधा", + "Select all": "सर्व निवडा", + "Clear selection": "निवड साफ करा", + "Instant search": "त्वरित शोध", + "Distinguish between uppercase and lowercase": "मोठी आणि लहान अक्षरे वेगळी ओळखा", + "Ignore special characters": "विशेष अक्षरांकडे दुर्लक्ष करा", + "Search mode": "शोध मोड", + "Both": "दोन्ही", + "Exact match": "अचूक जुळणारे", + "Show similar packages": "समान पॅकेजेस दाखवा", + "Nothing to share": "शेअर करण्यासाठी काहीही नाही", + "Please select a package first.": "कृपया आधी एक पॅकेज निवडा.", + "Share link copied": "शेअर लिंक कॉपी झाली", + "The share link for {0} has been copied to the clipboard.": "{0} साठीची शेअर लिंक क्लिपबोर्डवर कॉपी केली आहे.", + "No results were found matching the input criteria": "दिलेल्या निकषांशी जुळणारे कोणतेही निकाल आढळले नाहीत", + "No packages were found": "कोणतीही पॅकेजेस आढळली नाहीत", + "Loading packages": "पॅकेजेस लोड होत आहेत", + "Skip integrity checks": "इंटिग्रिटी तपासण्या वगळा", + "Download selected installers": "निवडलेले इंस्टॉलर डाउनलोड करा", + "Install selection": "निवडलेले स्थापित करा", + "Install options": "स्थापिती पर्याय", + "Share": "शेअर", + "Add selection to bundle": "निवड बंडलमध्ये जोडा", + "Download installer": "इंस्टॉलर डाउनलोड करा", + "Share this package": "हे पॅकेज शेअर करा", + "Uninstall selection": "निवडलेले विस्थापित करा", + "Uninstall options": "विस्थापना पर्याय", + "Ignore selected packages": "निवडलेल्या पॅकेजेसकडे दुर्लक्ष करा", + "Open install location": "स्थापितीचे स्थान उघडा", + "Reinstall package": "पॅकेज पुन्हा स्थापित करा", + "Uninstall package, then reinstall it": "पॅकेज विस्थापित करा, नंतर ते पुन्हा स्थापित करा", + "Ignore updates for this package": "या पॅकेजसाठीची अद्यतने दुर्लक्षित करा", + "Do not ignore updates for this package anymore": "या पॅकेजसाठीची अद्यतने आता दुर्लक्षित करू नका", + "Add packages or open an existing package bundle": "पॅकेजेस जोडा किंवा विद्यमान पॅकेज बंडल उघडा", + "Add packages to start": "सुरुवात करण्यासाठी पॅकेजेस जोडा", + "The current bundle has no packages. Add some packages to get started": "सध्याच्या बंडलमध्ये कोणतीही पॅकेजेस नाहीत. सुरुवात करण्यासाठी काही पॅकेजेस जोडा", + "New": "नवीन", + "Save as": "या नावाने जतन करा", + "Remove selection from bundle": "निवड बंडलमधून काढा", + "Skip hash checks": "हॅश तपासण्या वगळा", + "The package bundle is not valid": "पॅकेज बंडल वैध नाही", + "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "तुम्ही लोड करण्याचा प्रयत्न करत असलेले बंडल अवैध दिसत आहे. कृपया फाइल तपासा आणि पुन्हा प्रयत्न करा.", + "Package bundle": "पॅकेज बंडल", + "Could not create bundle": "बंडल तयार करता आले नाही", + "The package bundle could not be created due to an error.": "त्रुटीमुळे पॅकेज बंडल तयार करता आले नाही.", + "Unsaved changes": "न जतन केलेले बदल", + "Discard changes": "बदल रद्द करा", + "You have unsaved changes in the current bundle. Do you want to discard them?": "सध्याच्या बंडलमध्ये तुमचे न जतन केलेले बदल आहेत. तुम्हाला ते रद्द करायचे आहेत का?", + "Bundle security report": "बंडल सुरक्षा अहवाल", + "The bundle contained restricted content": "बंडलमध्ये प्रतिबंधित सामग्री होती", + "Hooray! No updates were found.": "छान! कोणतीही अद्यतने आढळली नाहीत.", + "Everything is up to date": "सर्व काही अद्ययावत आहे", + "Uninstall selected packages": "निवडलेली पॅकेजेस विस्थापित करा", + "Update selection": "निवडलेल्यांचे अद्यतन करा", + "Update options": "अद्यतन पर्याय", + "Uninstall package, then update it": "पॅकेज विस्थापित करा, नंतर त्याचे अद्यतन करा", + "Uninstall package": "पॅकेज विस्थापित करा", + "Skip this version": "ही आवृत्ती वगळा", + "Pause updates for": "अद्यतने इतक्या काळासाठी थांबवा", + "The Rust package manager.
Contains: Rust libraries and programs written in Rust": "Rust पॅकेज व्यवस्थापक.
यात समाविष्ट आहे: Rust लायब्ररी आणि Rust मध्ये लिहिलेले प्रोग्राम", + "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows साठीचा पारंपरिक पॅकेज व्यवस्थापक. तुम्हाला इथे सर्व काही सापडेल.
यात समाविष्ट आहे: सामान्य सॉफ्टवेअर", + "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft च्या .NET परिसंस्थेला लक्षात घेऊन तयार केलेली साधने आणि executable फाइल्सने भरलेले repository.
यात समाविष्ट आहे: .NET संबंधित साधने आणि scripts", + "NuPkg (zipped manifest)": "NuPkg (zip केलेला manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (किंवा Linux) साठीचा अपरिहार्य पॅकेज व्यवस्थापक.
यात समाविष्ट आहे: Formulae, Casks", + "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS चा पॅकेज व्यवस्थापक. JavaScript विश्वाभोवती असलेल्या लायब्ररी आणि इतर उपयुक्त साधनांनी भरलेला
यामध्ये: Node JavaScript लायब्ररी आणि इतर संबंधित उपयुक्त साधने", + "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python चा लायब्ररी व्यवस्थापक. Python लायब्ररी आणि इतर Python-संबंधित उपयुक्त साधनांनी भरलेला
यामध्ये: Python लायब्ररी आणि संबंधित उपयुक्त साधने", + "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell चा पॅकेज व्यवस्थापक. PowerShell ची क्षमता वाढवण्यासाठी लायब्ररी आणि स्क्रिप्ट्स शोधा
यामध्ये: मॉड्यूल्स, स्क्रिप्ट्स, Cmdlets", + "extracted": "एक्स्ट्रॅक्ट केलेले", + "Scoop package": "Scoop पॅकेज", + "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "अपरिचित पण उपयोगी युटिलिटीज आणि इतर रंजक पॅकेजेसचे उत्कृष्ट भांडार.
यामध्ये: युटिलिटीज, कमांड-लाइन प्रोग्राम्स, सर्वसाधारण सॉफ्टवेअर (extras bucket आवश्यक)", + "library": "लायब्ररी", + "feature": "वैशिष्ट्य", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "लोकप्रिय C/C++ लायब्ररी व्यवस्थापक. C/C++ लायब्ररी आणि इतर C/C++-संबंधित उपयुक्त साधनांनी भरलेला
यामध्ये: C/C++ लायब्ररी आणि संबंधित उपयुक्त साधने", + "option": "पर्याय", + "This package cannot be installed from an elevated context.": "हे पॅकेज उच्चाधिकारित संदर्भातून स्थापित करता येणार नाही.", + "Please run UniGetUI as a regular user and try again.": "कृपया UniGetUI सामान्य वापरकर्ता म्हणून चालवा आणि पुन्हा प्रयत्न करा.", + "Please check the installation options for this package and try again": "कृपया या पॅकेजसाठीच्या स्थापना पर्यायांची तपासणी करा आणि पुन्हा प्रयत्न करा", + "Microsoft's official package manager. Full of well-known and verified packages
Contains: General Software, Microsoft Store apps": "Microsoft चा अधिकृत पॅकेज व्यवस्थापक. परिचित आणि पडताळलेली पॅकेजेस यांनी भरलेला
यामध्ये: सर्वसाधारण सॉफ्टवेअर, Microsoft Store अॅप्स", + "Local PC": "स्थानिक PC", + "Android Subsystem": "Android उपप्रणाली", + "Operation on queue (position {0})...": "रांगेतील कार्यवाही (स्थान {0})...", + "Click here for more details": "अधिक तपशीलांसाठी येथे क्लिक करा", + "Operation canceled by user": "कार्यवाही वापरकर्त्याने रद्द केली", + "Running PreOperation ({0}/{1})...": "PreOperation चालू आहे ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "एकूण {1} पैकी PreOperation {0} अयशस्वी झाले आणि ते आवश्यक म्हणून चिन्हांकित होते. रद्द करत आहे...", + "PreOperation {0} out of {1} finished with result {2}": "एकूण {1} पैकी PreOperation {0} हे {2} निकालासह पूर्ण झाले", + "Starting operation...": "कार्यवाही सुरू करत आहे...", + "Running PostOperation ({0}/{1})...": "PostOperation चालू आहे ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "एकूण {1} पैकी PostOperation {0} अयशस्वी झाले आणि ते आवश्यक म्हणून चिन्हांकित होते. रद्द करत आहे...", + "PostOperation {0} out of {1} finished with result {2}": "एकूण {1} पैकी PostOperation {0} हे {2} निकालासह पूर्ण झाले", + "{package} installer download": "{package} इंस्टॉलर डाउनलोड", + "{0} installer is being downloaded": "{0} इंस्टॉलर डाउनलोड केला जात आहे", + "Download succeeded": "डाउनलोड यशस्वी झाले", + "{package} installer was downloaded successfully": "{package} इंस्टॉलर यशस्वीरित्या डाउनलोड झाला", + "Download failed": "डाउनलोड अयशस्वी झाले", + "{package} installer could not be downloaded": "{package} इंस्टॉलर डाउनलोड होऊ शकला नाही", + "{package} Installation": "{package} स्थापना", + "{0} is being installed": "{0} स्थापित केले जात आहे", + "Installation succeeded": "स्थापना यशस्वी झाली", + "{package} was installed successfully": "{package} यशस्वीरित्या स्थापित झाले", + "Installation failed": "स्थापना अयशस्वी झाली", + "{package} could not be installed": "{package} स्थापित होऊ शकले नाही", + "{package} Update": "{package} अद्यतन", + "{0} is being updated to version {1}": "{0} ला आवृत्ती {1} वर अद्यतनित केले जात आहे", + "Update succeeded": "अद्यतन यशस्वी झाले", + "{package} was updated successfully": "{package} यशस्वीरित्या अद्यतनित झाले", + "Update failed": "अद्यतन अयशस्वी झाले", + "{package} could not be updated": "{package} अद्यतनित होऊ शकले नाही", + "{package} Uninstall": "{package} अनइन्स्टॉल", + "{0} is being uninstalled": "{0} अनइन्स्टॉल केले जात आहे", + "Uninstall succeeded": "अनइन्स्टॉल यशस्वी झाले", + "{package} was uninstalled successfully": "{package} यशस्वीरित्या अनइन्स्टॉल झाले", + "Uninstall failed": "अनइन्स्टॉल अयशस्वी झाले", + "{package} could not be uninstalled": "{package} अनइन्स्टॉल होऊ शकले नाही", + "Adding source {source}": "स्रोत {source} जोडत आहे", + "Adding source {source} to {manager}": "{manager} मध्ये स्रोत {source} जोडत आहे", + "Source added successfully": "स्रोत यशस्वीरित्या जोडला गेला", + "The source {source} was added to {manager} successfully": "स्रोत {source} हा {manager} मध्ये यशस्वीरित्या जोडला गेला", + "Could not add source": "स्रोत जोडता आला नाही", + "Could not add source {source} to {manager}": "{manager} मध्ये स्रोत {source} जोडता आला नाही", + "Removing source {source}": "स्रोत {source} काढत आहे", + "Removing source {source} from {manager}": "{manager} मधून स्रोत {source} काढत आहे", + "Source removed successfully": "स्रोत यशस्वीरित्या काढला गेला", + "The source {source} was removed from {manager} successfully": "स्रोत {source} हा {manager} मधून यशस्वीरित्या काढला गेला", + "Could not remove source": "स्रोत काढता आला नाही", + "Could not remove source {source} from {manager}": "{manager} मधून स्रोत {source} काढता आला नाही", + "The package manager \"{0}\" was not found": "पॅकेज व्यवस्थापक \"{0}\" सापडला नाही", + "The package manager \"{0}\" is disabled": "पॅकेज व्यवस्थापक \"{0}\" अक्षम आहे", + "There is an error with the configuration of the package manager \"{0}\"": "पॅकेज व्यवस्थापक \"{0}\" च्या संरचनेत त्रुटी आहे", + "The package \"{0}\" was not found on the package manager \"{1}\"": "पॅकेज व्यवस्थापक \"{1}\" वर पॅकेज \"{0}\" सापडले नाही", + "{0} is disabled": "{0} अक्षम आहे", + "Something went wrong": "काहीतरी चुकले", + "An interal error occurred. Please view the log for further details.": "आंतरिक त्रुटी आली. अधिक तपशीलांसाठी कृपया लॉग पहा.", + "No applicable installer was found for the package {0}": "पॅकेज {0} साठी लागू होणारा कोणताही इंस्टॉलर सापडला नाही", + "We are checking for updates.": "आम्ही अद्यतने तपासत आहोत.", + "Please wait": "कृपया प्रतीक्षा करा", + "UniGetUI version {0} is being downloaded.": "UniGetUI आवृत्ती {0} डाउनलोड केली जात आहे.", + "This may take a minute or two": "यासाठी एक-दोन मिनिटे लागू शकतात", + "The installer authenticity could not be verified.": "इंस्टॉलरची प्रामाणिकता पडताळता आली नाही.", + "The update process has been aborted.": "अद्यतन प्रक्रिया रद्द करण्यात आली आहे.", + "Great! You are on the latest version.": "छान! आपण नवीनतम आवृत्तीवर आहात.", + "There are no new UniGetUI versions to be installed": "स्थापित करण्यासाठी UniGetUI ची कोणतीही नवी आवृत्ती नाही", + "An error occurred when checking for updates: ": "अद्यतने तपासत असताना त्रुटी आली: ", + "UniGetUI is being updated...": "UniGetUI अद्यतनित केले जात आहे...", + "Something went wrong while launching the updater.": "Updater सुरू करताना काहीतरी चुकले.", + "Please try again later": "कृपया नंतर पुन्हा प्रयत्न करा", + "Integrity checks will not be performed during this operation": "या कार्यवाहीदरम्यान अखंडता तपासण्या केल्या जाणार नाहीत", + "This is not recommended.": "याची शिफारस केली जात नाही.", + "Run now": "आता चालवा", + "Run next": "पुढे चालवा", + "Run last": "शेवटी चालवा", + "Retry as administrator": "प्रशासक म्हणून पुन्हा प्रयत्न करा", + "Retry interactively": "संवादी पद्धतीने पुन्हा प्रयत्न करा", + "Retry skipping integrity checks": "अखंडता तपासण्या वगळून पुन्हा प्रयत्न करा", + "Installation options": "स्थापना पर्याय", + "Show in explorer": "Explorer मध्ये दाखवा", + "This package is already installed": "हे पॅकेज आधीच स्थापित आहे", + "This package can be upgraded to version {0}": "हे पॅकेज आवृत्ती {0} पर्यंत अपग्रेड करता येते", + "Updates for this package are ignored": "या पॅकेजसाठीची अद्यतने दुर्लक्षित केली जात आहेत", + "This package is being processed": "या पॅकेजवर प्रक्रिया सुरू आहे", + "This package is not available": "हे पॅकेज उपलब्ध नाही", + "Select the source you want to add:": "जोडायचा स्रोत निवडा:", + "Source name:": "स्रोत नाव:", + "Source URL:": "स्रोत URL:", + "An error occurred": "एक त्रुटी आली", + "An error occurred when adding the source: ": "स्रोत जोडताना एक त्रुटी आली: ", + "Package management made easy": "पॅकेज व्यवस्थापन सोपे झाले", + "version {0}": "आवृत्ती {0}", + "[RAN AS ADMINISTRATOR]": "[प्रशासक म्हणून चालवले]", + "Portable mode": "पोर्टेबल मोड\n", + "DEBUG BUILD": "डीबग बिल्ड", + "Available Updates": "उपलब्ध अद्यतने", + "Show UniGetUI": "UniGetUI दाखवा", + "Quit": "बाहेर पडा", + "Attention required": "लक्ष आवश्यक", + "Restart required": "पुन्हा सुरू करणे आवश्यक", + "1 update is available": "1 अद्यतन उपलब्ध आहे", + "{0} updates are available": "{0} अद्यतने उपलब्ध आहेत", + "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "येथे तुम्ही खालील शॉर्टकट्सबाबत UniGetUI चे वर्तन बदलू शकता. एखादा शॉर्टकट निवडल्यास भविष्यातील अपग्रेडमध्ये तो तयार झाल्यास UniGetUI तो हटवेल. निवड काढल्यास तो शॉर्टकट जसाच्या तसा राहील", + "Manual scan": "हस्तचालित स्कॅन", + "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "तुमच्या डेस्कटॉपवरील विद्यमान शॉर्टकट्स स्कॅन केले जातील, आणि कोणते ठेवायचे व कोणते काढायचे हे तुम्हाला निवडावे लागेल.", + "Continue": "सुरू ठेवा", + "Delete?": "हटवायचे?", + "Missing dependency": "गहाळ अवलंबन", + "Not right now": "आत्ता नाही", + "Install {0}": "{0} स्थापित करा", + "UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI चालण्यासाठी {0} आवश्यक आहे, पण ते तुमच्या प्रणालीवर आढळले नाही.", + "Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "स्थापना प्रक्रिया सुरू करण्यासाठी Install वर क्लिक करा. तुम्ही स्थापना वगळल्यास, UniGetUI अपेक्षेप्रमाणे कार्य न करू शकते.", + "Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "पर्यायाने, तुम्ही Windows PowerShell प्रॉम्प्टमध्ये खालील आदेश चालवून {0} स्थापित करू शकता:", + "Do not show this dialog again for {0}": "{0} साठी हा संवाद पुन्हा दाखवू नका", + "Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "कृपया {0} स्थापित होत असताना प्रतीक्षा करा. काळी (किंवा निळी) विंडो दिसू शकते. ती बंद होईपर्यंत कृपया प्रतीक्षा करा.", + "{0} has been installed successfully.": "{0} यशस्वीरित्या स्थापित झाले आहे.", + "Please click on \"Continue\" to continue": "पुढे सुरू ठेवण्यासाठी कृपया \"Continue\" वर क्लिक करा", + "{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} यशस्वीरित्या स्थापित झाले आहे. स्थापना पूर्ण करण्यासाठी UniGetUI पुन्हा सुरू करण्याची शिफारस केली जाते", + "Restart later": "नंतर पुन्हा सुरू करा", + "An error occurred:": "एक त्रुटी आली:", + "I understand": "मला समजले", + "WinGet was repaired successfully": "WinGet यशस्वीरित्या दुरुस्त झाले", + "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet दुरुस्त झाल्यानंतर UniGetUI पुन्हा सुरू करण्याची शिफारस केली जाते", + "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "टीप: हा समस्या निवारक UniGetUI Settings मधील WinGet विभागातून निष्क्रिय केला जाऊ शकतो", + "Restart": "पुन्हा सुरू करा", + "WinGet could not be repaired": "WinGet दुरुस्त करता आले नाही", + "An unexpected issue occurred while attempting to repair WinGet. Please try again later": "WinGet दुरुस्त करण्याचा प्रयत्न करताना एक अनपेक्षित समस्या आली. कृपया नंतर पुन्हा प्रयत्न करा", + "Are you sure you want to delete all shortcuts?": "तुम्हाला सर्व शॉर्टकट्स हटवायचे आहेत याची खात्री आहे का?", + "Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "इंस्टॉल किंवा अद्यतन प्रक्रियेदरम्यान तयार होणारे कोणतेही नवीन शॉर्टकट्स, पहिल्यांदा आढळल्यावर पुष्टीकरण विचारण्याऐवजी, आपोआप हटवले जातील.", + "Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "UniGetUI च्या बाहेर तयार केलेले किंवा बदललेले कोणतेही शॉर्टकट्स दुर्लक्षित केले जातील. तुम्ही ते {0} बटणाद्वारे जोडू शकाल.", + "Are you really sure you want to enable this feature?": "तुम्हाला हे वैशिष्ट्य सक्षम करायचे आहे याची खरोखर खात्री आहे का?", + "No new shortcuts were found during the scan.": "स्कॅनदरम्यान कोणतेही नवीन शॉर्टकट्स आढळले नाहीत.", + "How to add packages to a bundle": "बंडलमध्ये पॅकेजेस कशी जोडायची", + "In order to add packages to a bundle, you will need to: ": "बंडलमध्ये पॅकेजेस जोडण्यासाठी, तुम्हाला पुढील गोष्टी कराव्या लागतील: ", + "1. Navigate to the \"{0}\" or \"{1}\" page.": "1. \"{0}\" किंवा \"{1}\" पृष्ठावर जा.", + "2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. बंडलमध्ये जोडायची पॅकेजेस शोधा आणि त्यांच्यापैकी प्रत्येकाची डावीकडील चेकबॉक्स निवडा.", + "3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. जोडायची पॅकेजेस निवडल्यानंतर, टूलबारमधील \"{0}\" हा पर्याय शोधून त्यावर क्लिक करा.", + "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. तुमची पॅकेजेस बंडलमध्ये जोडली जातील. तुम्ही आणखी पॅकेजेस जोडू शकता किंवा बंडल निर्यात करू शकता.", + "Which backup do you want to open?": "तुम्हाला कोणता बॅकअप उघडायचा आहे?", + "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "तुम्हाला उघडायचा असलेला बॅकअप निवडा. नंतर, तुम्हाला कोणती पॅकेजेस स्थापित करायची आहेत हे तपासता येईल.", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "काही प्रक्रिया सुरू आहेत. UniGetUI बंद केल्यास त्या अपयशी ठरू शकतात. तुम्हाला पुढे जायचे आहे का?", + "UniGetUI or some of its components are missing or corrupt.": "UniGetUI किंवा त्याचे काही घटक गहाळ आहेत किंवा खराब झाले आहेत.", + "It is strongly recommended to reinstall UniGetUI to adress the situation.": "ही परिस्थिती सोडवण्यासाठी UniGetUI पुन्हा स्थापित करण्याची जोरदार शिफारस केली जाते.", + "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "प्रभावित फाइल्सबद्दल अधिक तपशीलांसाठी UniGetUI Logs पाहा", + "Integrity checks can be disabled from the Experimental Settings": "Experimental Settings मधून अखंडता तपासणी निष्क्रिय करता येते", + "Repair UniGetUI": "UniGetUI दुरुस्त करा", + "Live output": "थेट आउटपुट", + "Package not found": "पॅकेज सापडले नाही", + "An error occurred when attempting to show the package with Id {0}": "Id {0} असलेले पॅकेज दाखवण्याचा प्रयत्न करताना एक त्रुटी आली", + "Package": "पॅकेज", + "This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "या पॅकेज बंडलमध्ये काही अशी सेटिंग्ज आहेत जी संभाव्यतः धोकादायक आहेत आणि डीफॉल्टनुसार दुर्लक्षित केल्या जाऊ शकतात.", + "Entries that show in YELLOW will be IGNORED.": "YELLOW मध्ये दिसणाऱ्या नोंदी IGNORED केल्या जातील.", + "Entries that show in RED will be IMPORTED.": "RED मध्ये दिसणाऱ्या नोंदी IMPORTED केल्या जातील.", + "You can change this behavior on UniGetUI security settings.": "तुम्ही हे वर्तन UniGetUI security settings मध्ये बदलू शकता.", + "Open UniGetUI security settings": "UniGetUI security settings उघडा", + "Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "तुम्ही security settings बदलल्यास, बदल लागू होण्यासाठी तुम्हाला बंडल पुन्हा उघडावे लागेल.", + "Details of the report:": "अहवालाचे तपशील:", + "\"{0}\" is a local package and can't be shared": "\"{0}\" हे स्थानिक पॅकेज आहे आणि ते शेअर करता येत नाही", + "Are you sure you want to create a new package bundle? ": "तुम्हाला नवीन पॅकेज बंडल तयार करायचे आहे याची खात्री आहे का? ", + "Any unsaved changes will be lost": "जतन न केलेले सर्व बदल गमावले जातील", + "Warning!": "इशारा!", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "सुरक्षेच्या कारणास्तव, सानुकूल command-line arguments डीफॉल्टनुसार निष्क्रिय असतात. हे बदलण्यासाठी UniGetUI security settings मध्ये जा. ", + "Change default options": "डीफॉल्ट पर्याय बदला", + "Ignore future updates for this package": "या पॅकेजसाठी भविष्यातील अद्यतने दुर्लक्षित करा", + "For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "सुरक्षेच्या कारणास्तव, pre-operation आणि post-operation scripts डीफॉल्टनुसार निष्क्रिय असतात. हे बदलण्यासाठी UniGetUI security settings मध्ये जा. ", + "You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "हे पॅकेज स्थापित, अद्ययावत किंवा अनइंस्टॉल होण्यापूर्वी किंवा नंतर चालवायचे आदेश तुम्ही ठरवू शकता. ते command prompt वर चालतील, त्यामुळे CMD scripts येथे कार्य करतील.", + "Change this and unlock": "हे बदला आणि अनलॉक करा", + "{0} Install options are currently locked because {0} follows the default install options.": "{0} साठी Install options सध्या लॉक आहेत कारण {0} डीफॉल्ट install options अनुसरते.", + "Select the processes that should be closed before this package is installed, updated or uninstalled.": "हे पॅकेज स्थापित, अद्ययावत किंवा अनइंस्टॉल करण्यापूर्वी कोणत्या प्रक्रिया बंद करायच्या ते निवडा.", + "Write here the process names here, separated by commas (,)": "प्रक्रियांची नावे येथे स्वल्पविरामाने (,) वेगळी करून लिहा", + "Unset or unknown": "सेट केलेले नाही किंवा अज्ञात", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "या समस्येबद्दल अधिक माहितीसाठी कृपया Command-line Output पाहा किंवा Operation History तपासा.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "या पॅकेजमध्ये screenshots नाहीत किंवा icon गहाळ आहे का? आमच्या खुल्या, सार्वजनिक डेटाबेसमध्ये गहाळ icons आणि screenshots जोडून UniGetUI ला योगदान द्या.", + "Become a contributor": "योगदानकर्ता बना", + "Save": "जतन करा", + "Update to {0} available": "{0} साठी अद्यतन उपलब्ध आहे", + "Reinstall": "पुन्हा स्थापित करा", + "Installer not available": "इंस्टॉलर उपलब्ध नाही", + "Version:": "आवृत्ती:", + "Performing backup, please wait...": "बॅकअप घेत आहे, कृपया प्रतीक्षा करा...", + "An error occurred while logging in: ": "लॉग इन करताना एक त्रुटी आली: ", + "Fetching available backups...": "उपलब्ध बॅकअप्स आणत आहे...", + "Done!": "पूर्ण झाले!", + "The cloud backup has been loaded successfully.": "क्लाउड बॅकअप यशस्वीरित्या लोड झाला आहे.", + "An error occurred while loading a backup: ": "बॅकअप लोड करताना एक त्रुटी आली: ", + "Backing up packages to GitHub Gist...": "पॅकेजेसचा बॅकअप GitHub Gist वर घेत आहे...", + "Backup Successful": "बॅकअप यशस्वी", + "The cloud backup completed successfully.": "क्लाउड बॅकअप यशस्वीरित्या पूर्ण झाला.", + "Could not back up packages to GitHub Gist: ": "पॅकेजेसचा GitHub Gist वर बॅकअप घेता आला नाही: ", + "It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "दिलेली लॉगिन माहिती सुरक्षितपणे साठवली जाईल याची हमी नाही, त्यामुळे तुमच्या बँक खात्याची लॉगिन माहिती वापरू नका", + "Enable the automatic WinGet troubleshooter": "स्वयंचलित WinGet ट्रबलशूटर सक्षम करा", + "Enable an [experimental] improved WinGet troubleshooter": "[प्रायोगिक] सुधारित WinGet ट्रबलशूटर सक्षम करा", + "Add updates that fail with a 'no applicable update found' to the ignored updates list": "ज्या अद्यतनांवर 'no applicable update found' अशी त्रुटी येते ती दुर्लक्षित अद्यतनांच्या यादीत जोडा.", + "Invalid selection": "अवैध निवड", + "No package was selected": "कोणतेही पॅकेज निवडले गेले नाही", + "More than 1 package was selected": "1 पेक्षा जास्त पॅकेज निवडले गेले", + "List": "यादी", + "Grid": "ग्रिड", + "Icons": "आयकॉन्स", + "\"{0}\" is a local package and does not have available details": "\"{0}\" हे स्थानिक पॅकेज आहे आणि त्याचे तपशील उपलब्ध नाहीत", + "\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" हे स्थानिक पॅकेज आहे आणि ते या वैशिष्ट्याशी सुसंगत नाही", + "WinGet malfunction detected": "WinGet मध्ये बिघाड आढळला", + "It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "WinGet नीट काम करत नाही असे दिसते. तुम्हाला WinGet दुरुस्त करण्याचा प्रयत्न करायचा आहे का?", + "Repair WinGet": "WinGet दुरुस्त करा", + "Create .ps1 script": ".ps1 स्क्रिप्ट तयार करा", + "Add packages to bundle": "पॅकेजेस बंडलमध्ये जोडा", + "Preparing packages, please wait...": "पॅकेजेस तयार करत आहे, कृपया थांबा...", + "Loading packages, please wait...": "पॅकेजेस लोड करत आहे, कृपया थांबा...", + "Saving packages, please wait...": "पॅकेजेस जतन करत आहे, कृपया थांबा...", + "The bundle was created successfully on {0}": "बंडल {0} येथे यशस्वीरित्या तयार झाले", + "Install script": "स्थापना स्क्रिप्ट", + "The installation script saved to {0}": "स्थापना स्क्रिप्ट {0} येथे जतन केली गेली", + "An error occurred while attempting to create an installation script:": "स्थापना स्क्रिप्ट तयार करण्याचा प्रयत्न करताना त्रुटी आली:", + "{0} packages are being updated": "{0} पॅकेजेस अद्यतनित होत आहेत", + "Error": "त्रुटी", + "Log in failed: ": "लॉग इन अयशस्वी झाले: ", + "Log out failed: ": "लॉग आउट अयशस्वी झाले: ", + "Package backup settings": "पॅकेज बॅकअप सेटिंग्ज", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", - "(Number {0} in the queue)": "", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "", - "0 packages found": "", - "0 updates found": "", - "1 month": "", - "1 package was found": "", - "1 year": "", - "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "", - "A restart is required": "", - "About Qt6": "", - "About WingetUI version {0}": "", - "About the dev": "", - "Action when double-clicking packages, hide successful installations": "", - "Add a source to {0}": "", - "Add a timestamp to the backup files": "", - "Add packages or open an existing bundle": "", - "Addition succeeded": "", - "Administrator privileges preferences": "", - "Administrator rights": "", - "All files": "", - "Allow package operations to be performed in parallel": "", - "Allow parallel installs (NOT RECOMMENDED)": "", - "Allow {pm} operations to be performed in parallel": "", - "Always elevate {pm} installations by default": "", - "Always run {pm} operations with administrator rights": "", - "An unexpected error occurred:": "", - "Another source": "", - "App Name": "", - "Are these screenshots wron or blurry?": "", - "Ask for administrator rights when required": "", - "Ask once or always for administrator rights, elevate installations by default": "", - "Ask only once for administrator privileges (not recommended)": "", - "Authenticate to the proxy with an user and a password": "", - "Automatically save a list of your installed packages on your computer.": "", - "Autostart WingetUI in the notifications area": "", - "Available updates: {0}": "", - "Available updates: {0}, not finished yet...": "", - "Backup installed packages": "", - "Backup location": "", - "But here are other things you can do to learn about WingetUI even more:": "", - "By toggling a package manager off, you will no longer be able to see or update its packages.": "", - "Cache administrator rights and elevate installers by default": "", - "Cache administrator rights, but elevate installers only when required": "", - "Cache was reset successfully!": "", - "Can't {0} {1}": "", - "Cancel all operations": "", - "Change how UniGetUI installs packages, and checks and installs available updates": "", - "Change install location": "", - "Check for updates periodically": "", - "Check for updates regularly, and ask me what to do when updates are found.": "", - "Check for updates regularly, and automatically install available ones.": "", - "Check out my {0} and my {1}!": "", - "Check out some WingetUI overviews": "", - "Checking for other running instances...": "", - "Checking for updates...": "", - "Checking found instace(s)...": "", - "Choose how many operations shouls be performed in parallel": "", - "Clear finished operations": "", - "Clear successful operations": "", - "Clear the local icon cache": "", - "Clearing Scoop cache...": "", - "Close WingetUI to the notification area": "", - "Command-line Output": "", - "Compare query against": "", - "Component Information": "", - "Contribute to the icon and screenshot repository": "", - "Copy": "", - "Could not load announcements - ": "", - "Could not load announcements - HTTP status code is $CODE": "", - "Could not remove {source} from {manager}": "", - "Current Version": "", - "Current user": "", - "Custom arguments:": "", - "Custom command-line arguments:": "", - "Customize WingetUI - for hackers and advanced users only": "", - "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "", - "Default preferences - suitable for regular users": "", - "Description:": "", - "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "", - "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "", - "Disable new share API (port 7058)": "", - "Discover packages": "", - "Distinguish between\nuppercase and lowercase": "", - "Do NOT check for updates": "", - "Do an interactive install for the selected packages": "", - "Do an interactive uninstall for the selected packages": "", - "Do an interactive update for the selected packages": "", - "Do not download new app translations from GitHub automatically": "", - "Do not remove successful operations from the list automatically": "", - "Do not update package indexes on launch": "", - "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "", - "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "", - "Do you really want to uninstall {0} packages?": "", - "Do you want to restart your computer now?": "", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "", - "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "", - "Donate": "", - "Download updated language files from GitHub automatically": "", - "Downloading": "", - "Downloading installer for {package}": "", - "Downloading package metadata...": "", - "Enable the new UniGetUI-Branded UAC Elevator": "", - "Enable the new process input handler (StdIn automated closer)": "", - "Export log as a file": "", - "Export packages": "", - "Export selected packages to a file": "", - "Fetching latest announcements, please wait...": "", - "Finish": "", - "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "", - "Formerly known as WingetUI": "", - "Found": "", - "Found packages: ": "", - "Found packages: {0}": "", - "Found packages: {0}, not finished yet...": "", - "GitHub profile": "", - "Global": "", - "Help and documentation": "", - "Hide details": "", - "How should installations that require administrator privileges be treated?": "", - "Ignore updates for the selected packages": "", - "Ignored updates": "", - "Import packages": "", - "Import packages from a file": "", - "Initializing WingetUI...": "", - "Install and more": "", - "Install and update preferences": "", - "Install packages from a file": "", - "Install selected packages": "", - "Install selected packages with administrator privileges": "", - "Install the latest prerelease version": "", - "Install updates automatically": "", - "Installation canceled by the user!": "", - "Installed packages": "", - "Instance {0} responded, quitting...": "", - "Is this package missing the icon?": "", - "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "", - "Latest Version": "", - "Latest Version:": "", - "Latest details...": "", - "Launching subprocess...": "", - "Licenses": "", - "Live command-line output": "", - "Loading UI components...": "", - "Loading WingetUI...": "", - "Local machine": "", - "Locating {pm}...": "", - "Looking for packages...": "", - "Machine | Global": "", - "Manage WingetUI autostart behaviour from the Settings app": "", - "Manage ignored packages": "", - "Manifests": "", - "New Version": "", - "New bundle": "", - "No packages found": "", - "No packages found matching the input criteria": "", - "No packages have been added yet": "", - "No packages selected": "", - "No sources found": "", - "No sources were found": "", - "No updates are available": "", - "Notes:": "", - "Notification tray options": "", - "Ok": "", - "Open GitHub": "", - "Open WingetUI": "", - "Open backup location": "", - "Open existing bundle": "", - "Open the welcome wizard": "", - "Operation cancelled": "", - "Options saved": "", - "Package Manager": "", - "Package managers": "", - "Package {name} from {manager}": "", - "Packages": "", - "Packages found: {0}": "", - "Paste a valid URL to the database": "", - "Perform a backup now": "", - "Periodically perform a backup of the installed packages": "", - "Please enter at least 3 characters": "", - "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "", - "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "", - "Please select how you want to configure WingetUI": "", - "Please type at least two characters": "", - "Portable": "", - "Publication date:": "", - "Quit WingetUI": "", - "Release notes URL:": "", - "Release notes:": "", - "Reload": "", - "Removal failed": "", - "Removal succeeded": "", - "Remove permanent data": "", - "Remove successful installs/uninstalls/updates from the installation list": "", - "Repository": "", - "Reset Scoop's global app cache": "", - "Reset Winget sources (might help if no packages are listed)": "", - "Reset WingetUI and its preferences": "", - "Reset WingetUI icon and screenshot cache": "", - "Resetting Winget sources - WingetUI": "", - "Restart now": "", - "Restart your PC to finish installation": "", - "Restart your computer to finish the installation": "", - "Retry failed operations": "", - "Retrying, please wait...": "", - "Return to top": "", - "Running the installer...": "", - "Running the uninstaller...": "", - "Running the updater...": "", - "Save File": "", - "Save bundle as": "", - "Save now": "", - "Search": "", - "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "", - "Search on available updates": "", - "Search on your software": "", - "Searching for installed packages...": "", - "Searching for packages...": "", - "Searching for updates...": "", - "Select \"{item}\" to add your custom bucket": "", - "Select a folder": "", - "Select all packages": "", - "Select only if you know what you are doing.": "", - "Select package file": "", - "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "", - "Sent handshake. Waiting for instance listener's answer... ({0}%)": "", - "Set custom backup file name": "", - "Share WingetUI": "", - "Show UniGetUI on the system tray": "", - "Show a notification when an installation fails": "", - "Show a notification when an installation finishes successfully": "", - "Show details": "", - "Show info about the package on the Updates tab": "", - "Show missing translation strings": "", - "Show package details": "", - "Show the live output": "", - "Skip": "", - "Skip the hash check when installing the selected packages": "", - "Skip the hash check when updating the selected packages": "", - "Source addition failed": "", - "Source removal failed": "", - "Source:": "", - "Start": "", - "Starting daemons...": "", - "Startup options": "", - "Status": "", - "Stuck here? Skip initialization": "", - "Suport the developer": "", - "Support me": "", - "Support the developer": "", - "Systems are now ready to go!": "", - "Text file": "", - "Thank you 😉": "", - "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "", - "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "", - "The following packages are going to be installed on your system.": "", - "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "", - "The icons and screenshots are maintained by users like you!": "", - "The installer has an invalid checksum": "", - "The installer hash does not match the expected value.": "", - "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "", - "The package {0} from {1} was not found.": "", - "The selected packages have been blacklisted": "", - "The update will be installed upon closing WingetUI": "", - "The update will not continue.": "", - "The user has canceled {0}, that was a requirement for {1} to be run": "", - "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "", - "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "", - "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "", - "They are the programs in charge of installing, updating and removing packages.": "", - "This could represent a security risk.": "", - "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "", - "This is the default choice.": "", - "This package can be updated": "", - "This package can be updated to version {0}": "", - "This process is running with administrator privileges": "", - "This setting is disabled": "", - "This wizard will help you configure and customize WingetUI!": "", - "Toggle search filters pane": "", - "Type here the name and the URL of the source you want to add, separed by a space.": "", - "Unable to find package": "", - "Unable to load informarion": "", - "Uninstall and more": "", - "Uninstall canceled by the user!": "", - "Uninstall the selected packages with administrator privileges": "", - "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "", - "Update and more": "", - "Update date": "", - "Update found!": "", - "Update package indexes on launch": "", - "Update packages automatically": "", - "Update selected packages": "", - "Update selected packages with administrator privileges": "", - "Update vcpkg's Git portfiles automatically (requires Git installed)": "", - "Updates": "", - "Updates available!": "", - "Updates preferences": "", - "Updating WingetUI": "", - "Url": "", - "Use Legacy bundled WinGet instead of PowerShell CMDLets": "", - "Use bundled WinGet instead of PowerShell CMDlets": "", - "Use installed GSudo instead of the bundled one": "", - "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "", - "Use system Chocolatey (Needs a restart)": "", - "Use system Winget (Needs a restart)": "", - "Use system Winget (System language must be set to english)": "", - "Use the WinGet COM API to fetch packages": "", - "Use the WinGet PowerShell Module instead of the WinGet COM API": "", - "User": "", - "User | Local": "", - "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "", - "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "", - "Vcpkg was not found on your system.": "", - "View WingetUI on GitHub": "", - "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "", - "Waiting for other installations to finish...": "", - "Waiting for {0} to complete...": "", - "We could not load detailed information about this package, because it was not found in any of your package sources": "", - "We could not load detailed information about this package, because it was not installed from an available package manager.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "", - "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "", - "We couldn't find any package": "", - "Welcome to WingetUI": "", - "Which package managers do you want to use?": "", - "Which source do you want to add?": "", - "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "", - "WingetUI": "", - "WingetUI - Everything is up to date": "", - "WingetUI - {0} updates are available": "", - "WingetUI - {0} {1}": "", - "WingetUI Homepage - Share this link!": "", - "WingetUI Settings File": "", - "WingetUI autostart behaviour, application launch settings": "", - "WingetUI can check if your software has available updates, and install them automatically if you want to": "", - "WingetUI has not been machine translated. The following users have been in charge of the translations:": "", - "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "", - "WingetUI is being updated. When finished, WingetUI will restart itself": "", - "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "", - "WingetUI log": "", - "WingetUI tray application preferences": "", - "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "", - "WingetUI version {0} is being downloaded.": "", - "WingetUI will become {newname} soon!": "", - "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "", - "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "", - "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "", - "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "", - "WingetUI {0} is ready to be installed.": "", - "You may restart your computer later if you wish": "", - "You will be prompted only once, and administrator rights will be granted to packages that request them.": "", - "You will be prompted only once, and every future installation will be elevated automatically.": "", - "buy me a coffee": "", - "formerly WingetUI": "", - "homepage": "", - "install": "", - "installation": "", - "uninstall": "", - "uninstallation": "", - "uninstalled": "", - "update(noun)": "", - "update(verb)": "", - "updated": "", - "{0} Uninstallation": "", - "{0} aborted": "", - "{0} can be updated": "", - "{0} failed": "", - "{0} has failed, that was a requirement for {1} to be run": "", - "{0} installation": "", - "{0} is being updated": "", - "{0} months": "", - "{0} packages found": "", - "{0} packages were found": "", - "{0} succeeded": "", - "{0} update": "", - "{0} was {1} successfully!": "", - "{0} weeks": "", - "{0} years": "", - "{0} {1} failed": "", - "{package} installation failed": "", - "{package} uninstall failed": "", - "{package} update failed": "", - "{package} update failed. Click here for more details.": "", - "{pm} could not be found": "", - "{pm} found: {state}": "", - "{pm} package manager specific preferences": "", - "{pm} preferences": "", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "", - "Thank you ❤": "", - "This project has no connection with the official {0} project — it's completely unofficial.": "" + "About WingetUI": "About UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.", + "You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝", + "WingetUI Settings": "UniGetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI", + "Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI Version {0}", + "WingetUI License": "UniGetUI License", + "Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Update UniGetUI automatically", + "Reset WingetUI": "Reset UniGetUI", + "WingetUI display language:": "UniGetUI display language:", + "Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour", + "Enable WingetUI notifications": "Enable UniGetUI notifications", + "WingetUI Log": "UniGetUI Log", + "Show WingetUI": "Show UniGetUI", + "WingetUI Homepage": "UniGetUI Homepage", + "WingetUI Repository": "UniGetUI Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.", + "Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes", + "Restart WingetUI": "Restart UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "(Number {0} in the queue)": "(Number {0} in the queue)", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign", + "0 packages found": "0 packages found", + "0 updates found": "0 updates found", + "1 month": "a month", + "1 package was found": "1 package was found", + "1 year": "1 year", + "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools": "A repository full of tools designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related Tools", + "A restart is required": "A restart is required", + "About Qt6": "About Qt6", + "About WingetUI version {0}": "About UniGetUI version {0}", + "About the dev": "About the dev", + "Action when double-clicking packages, hide successful installations": "Action when double-clicking packages, hide successful installations", + "Add a source to {0}": "Add a source to {0}", + "Add a timestamp to the backup files": "Add a timestamp to the backup files", + "Add packages or open an existing bundle": "Add packages or open an existing bundle", + "Addition succeeded": "Addition succeeded", + "Administrator privileges preferences": "Administrator privileges preferences", + "Administrator rights": "Administrator rights", + "All files": "All files", + "Allow package operations to be performed in parallel": "Allow package operations to be performed in parallel", + "Allow parallel installs (NOT RECOMMENDED)": "Allow parallel installs (NOT RECOMMENDED)", + "Allow {pm} operations to be performed in parallel": "Allow {pm} operations to be performed in parallel", + "Always elevate {pm} installations by default": "Always elevate {pm} installations by default", + "Always run {pm} operations with administrator rights": "Always run {pm} operations with administrator rights", + "An unexpected error occurred:": "An unexpected error occurred:", + "Another source": "Another source", + "App Name": "App Name", + "Are these screenshots wron or blurry?": "Are these screenshots wrong or blurry?", + "Ask for administrator rights when required": "Ask for administrator rights when required", + "Ask once or always for administrator rights, elevate installations by default": "Ask once or always for administrator rights, elevate installations by default", + "Ask only once for administrator privileges (not recommended)": "Ask only once for administrator privileges (not recommended)", + "Authenticate to the proxy with an user and a password": "Authenticate to the proxy with an user and a password", + "Automatically save a list of your installed packages on your computer.": "Automatically save a list of your installed packages on your computer.", + "Autostart WingetUI in the notifications area": "Autostart UniGetUI in the notifications area", + "Available updates: {0}": "Available updates: {0}", + "Available updates: {0}, not finished yet...": "Available updates: {0}, not finished yet...", + "Backup installed packages": "Backup installed packages", + "Backup location": "Backup location", + "But here are other things you can do to learn about WingetUI even more:": "But here are other things you can do to learn about UniGetUI even more:", + "By toggling a package manager off, you will no longer be able to see or update its packages.": "By toggling a package manager off, you will no longer be able to see or update its packages.", + "Cache administrator rights and elevate installers by default": "Cache administrator rights and elevate installers by default", + "Cache administrator rights, but elevate installers only when required": "Cache administrator rights, but elevate installers only when required", + "Cache was reset successfully!": "Cache was reset successfully!", + "Can't {0} {1}": "Can't {0} {1}", + "Cancel all operations": "Cancel all operations", + "Change how UniGetUI installs packages, and checks and installs available updates": "Change how UniGetUI installs packages, and checks and installs available updates", + "Change install location": "Change install location", + "Check for updates periodically": "Check for updates periodically.", + "Check for updates regularly, and ask me what to do when updates are found.": "Check for updates regularly, and ask me what to do when updates are found.", + "Check for updates regularly, and automatically install available ones.": "Check for updates regularly, and automatically install available ones.", + "Check out my {0} and my {1}!": "Check out my {0} and my {1}!", + "Check out some WingetUI overviews": "Check out some UniGetUI reviews", + "Checking for other running instances...": "Checking for other running instances...", + "Checking for updates...": "Checking for updates...", + "Checking found instace(s)...": "Checking found instance(s)...", + "Choose how many operations shouls be performed in parallel": "Choose how many operations should be performed in parallel", + "Clear finished operations": "Clear finished operations", + "Clear successful operations": "Clear successful operations", + "Clear the local icon cache": "Clear the local icon cache", + "Clearing Scoop cache...": "Clearing Scoop cache...", + "Close WingetUI to the notification area": "Close UniGetUI to the notification area", + "Command-line Output": "Command-line Output", + "Compare query against": "Compare query against", + "Component Information": "Component Information", + "Contribute to the icon and screenshot repository": "Contribute to the icon and screenshot repository", + "Copy": "Copy", + "Could not load announcements - ": "Could not load announcements - ", + "Could not load announcements - HTTP status code is $CODE": "Could not load announcements - HTTP status code is $CODE", + "Could not remove {source} from {manager}": "Could not remove {source} from {manager}", + "Current Version": "Current Version", + "Current user": "Current user", + "Custom arguments:": "Custom arguments:", + "Custom command-line arguments:": "Custom command-line arguments:", + "Customize WingetUI - for hackers and advanced users only": "Customize UniGetUI - for hackers and advanced users only", + "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.", + "Default preferences - suitable for regular users": "Default preferences - suitable for regular users", + "Description:": "Description:", + "Developing is hard, and this application is free. But if you liked the application, you can always buy me a coffee :)": "Developing is hard, and this application is free. However, if you found the application helpful, you can always buy me a coffee :)", + "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)", + "Disable new share API (port 7058)": "Disable new share API (port 7058)", + "Discover packages": "Discover Packages", + "Distinguish between\nuppercase and lowercase": "Distinguish between uppercase and lowercase", + "Do NOT check for updates": "Do NOT check for updates", + "Do an interactive install for the selected packages": "Do an interactive install for the selected packages", + "Do an interactive uninstall for the selected packages": "Do an interactive uninstall for the selected packages", + "Do an interactive update for the selected packages": "Do an interactive update for the selected packages", + "Do not download new app translations from GitHub automatically": "Do not download new app translations from GitHub automatically", + "Do not remove successful operations from the list automatically": "Do not remove successful operations from the list automatically", + "Do not update package indexes on launch": "Do not update package indexes on launch", + "Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "Do you find UniGetUI useful? If you can, you may want to support my work, so I can continue making UniGetUI the ultimate package managing interface.", + "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!", + "Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?", + "Do you want to restart your computer now?": "Do you want to restart your computer now?", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Do you want to translate UniGetUI to your language? See how to contribute HERE!", + "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.", + "Donate": "Donate", + "Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically", + "Downloading": "Downloading", + "Downloading installer for {package}": "Downloading installer for {package}", + "Downloading package metadata...": "Downloading package metadata...", + "Enable the new UniGetUI-Branded UAC Elevator": "Enable the new UniGetUI-Branded UAC Elevator", + "Enable the new process input handler (StdIn automated closer)": "Enable the new process input handler (StdIn automated closer)", + "Export log as a file": "Export log as a file", + "Export packages": "Export packages", + "Export selected packages to a file": "Export selected packages to a file", + "Fetching latest announcements, please wait...": "Fetching latest announcements, please wait...", + "Finish": "Finish", + "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)", + "Formerly known as WingetUI": "Formerly known as WingetUI", + "Found": "Found", + "Found packages: ": "Found packages: ", + "Found packages: {0}": "Found packages: {0}", + "Found packages: {0}, not finished yet...": "Found packages: {0}, not finished yet...", + "GitHub profile": "GitHub profile", + "Global": "Global", + "Help and documentation": "Help and documentation", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the developer of UniGetUI. UniGetUI has been entirely made on my free time!", + "Hide details": "Hide details", + "How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?", + "Ignore updates for the selected packages": "Ignore updates for the selected packages", + "Ignored updates": "Ignored updates", + "Import packages": "Import packages", + "Import packages from a file": "Import packages from a file", + "Initializing WingetUI...": "Initializing UniGetUI...", + "Install and more": "Install and more", + "Install and update preferences": "Install and update preferences", + "Install packages from a file": "Install packages from a file", + "Install selected packages": "Install selected packages", + "Install selected packages with administrator privileges": "Install selected packages with administrator privileges", + "Install the latest prerelease version": "Install the latest prerelease version", + "Install updates automatically": "Install updates automatically", + "Installation canceled by the user!": "Installation canceled by the user!", + "Installed packages": "Installed Packages", + "Instance {0} responded, quitting...": "Instance {0} responded, quitting...", + "Is this package missing the icon?": "Is this package missing the icon?", + "It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "It looks like you ran UniGetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges. Click on \"{showDetails}\" to see why.", + "Latest Version": "Latest Version", + "Latest Version:": "Latest Version:", + "Latest details...": "Latest details...", + "Launching subprocess...": "Launching subprocess...", + "Licenses": "Licenses", + "Live command-line output": "Live command-line output", + "Loading UI components...": "Loading UI components...", + "Loading WingetUI...": "Loading UniGetUI...", + "Local machine": "Local machine", + "Locating {pm}...": "Locating {pm}...", + "Looking for packages...": "Looking for packages...", + "Machine | Global": "Machine | Global", + "Manage WingetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app", + "Manage ignored packages": "Manage ignored packages", + "Manifests": "Manifests", + "New Version": "New Version", + "New bundle": "New bundle", + "No packages found": "No packages found", + "No packages found matching the input criteria": "No packages found matching the input criteria", + "No packages have been added yet": "No packages have been added yet", + "No packages selected": "No packages selected", + "No sources found": "No sources found", + "No sources were found": "No sources were found", + "No updates are available": "No updates are available", + "Notes:": "Notes:", + "Notification tray options": "Notification tray options", + "Ok": "OK", + "Open GitHub": "Open GitHub", + "Open WingetUI": "Open UniGetUI", + "Open backup location": "Open backup location", + "Open existing bundle": "Open existing bundle", + "Open the welcome wizard": "Open the welcome wizard", + "Operation cancelled": "Operation cancelled", + "Options saved": "Options saved", + "Package Manager": "Package Manager", + "Package managers": "Package Managers", + "Package {name} from {manager}": "Package {name} from {manager}", + "Packages": "Packages", + "Packages found: {0}": "Packages found: {0}", + "Paste a valid URL to the database": "Paste a valid URL to the database", + "Perform a backup now": "Perform a backup now", + "Periodically perform a backup of the installed packages": "Periodically perform a backup of the installed packages", + "Please enter at least 3 characters": "Please enter at least 3 characters", + "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.", + "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.", + "Please select how you want to configure WingetUI": "Please select how you want to configure UniGetUI", + "Please type at least two characters": "Please type at least two characters", + "Portable": "Portable", + "Publication date:": "Publication date:", + "Quit WingetUI": "Quit UniGetUI", + "Release notes URL:": "Release notes URL:", + "Release notes:": "Release notes:", + "Reload": "Reload", + "Removal failed": "Removal failed", + "Removal succeeded": "Removal succeeded", + "Remove permanent data": "Remove permanent data", + "Remove successful installs/uninstalls/updates from the installation list": "Remove successful installs/uninstalls/updates from the installation list", + "Repository": "Repository", + "Reset Scoop's global app cache": "Reset Scoop's global app cache", + "Reset Winget sources (might help if no packages are listed)": "Reset WinGet sources (might help if no packages are listed)", + "Reset WingetUI and its preferences": "Reset UniGetUI and its preferences", + "Reset WingetUI icon and screenshot cache": "Reset UniGetUI icon and screenshot cache", + "Resetting Winget sources - WingetUI": "Resetting WinGet sources - UniGetUI", + "Restart now": "Restart now", + "Restart your PC to finish installation": "Restart your PC to finish installation", + "Restart your computer to finish the installation": "Restart your computer to finish the installation", + "Retry failed operations": "Retry failed operations", + "Retrying, please wait...": "Retrying, please wait...", + "Return to top": "Return to top", + "Running the installer...": "Running the installer...", + "Running the uninstaller...": "Running the uninstaller...", + "Running the updater...": "Running the updater...", + "Save File": "Save File", + "Save bundle as": "Save bundle as", + "Save now": "Save now", + "Search": "Search", + "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple software store": "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want UniGetUI to overcomplicate, I just want a simple software store", + "Search on available updates": "Search on available updates", + "Search on your software": "Search on your software", + "Searching for installed packages...": "Searching for installed packages...", + "Searching for packages...": "Searching for packages...", + "Searching for updates...": "Searching for updates...", + "Select \"{item}\" to add your custom bucket": "Select \"{item}\" to add your custom bucket", + "Select a folder": "Select a folder", + "Select all packages": "Select all packages", + "Select only if you know what you are doing.": "Select only if you know what you are doing.", + "Select package file": "Select package file", + "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Select which package managers to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.", + "Sent handshake. Waiting for instance listener's answer... ({0}%)": "Sent handshake. Waiting for instance listener's answer... ({0}%)", + "Set custom backup file name": "Set custom backup file name", + "Share WingetUI": "Share UniGetUI", + "Show UniGetUI on the system tray": "Show UniGetUI on the system tray", + "Show a notification when an installation fails": "Show a notification when an installation fails", + "Show a notification when an installation finishes successfully": "Show a notification when an installation finishes successfully", + "Show details": "Show details", + "Show info about the package on the Updates tab": "Show info about the package on the Updates tab", + "Show missing translation strings": "Show missing translation strings", + "Show package details": "Show package details", + "Show the live output": "Show the live output", + "Skip": "Skip", + "Skip the hash check when installing the selected packages": "Skip the hash check when installing the selected packages", + "Skip the hash check when updating the selected packages": "Skip the hash check when updating the selected packages", + "Source addition failed": "Source addition failed", + "Source removal failed": "Source removal failed", + "Source:": "Source:", + "Start": "Start", + "Starting daemons...": "Starting daemons...", + "Startup options": "Startup options", + "Status": "Status", + "Stuck here? Skip initialization": "Stuck here? Skip initialization", + "Suport the developer": "Support the developer", + "Support me": "Support me", + "Support the developer": "Support the developer", + "Systems are now ready to go!": "Systems are now ready to go!", + "Text file": "Text file", + "Thank you Γ¥ñ": "Thank you Γ¥ñ", + "Thank you 😉": "Thank you 😉", + "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.", + "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.", + "The following packages are going to be installed on your system.": "The following packages are going to be installed on your system.", + "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.", + "The icons and screenshots are maintained by users like you!": "The icons and screenshots are maintained by users like you!", + "The installer has an invalid checksum": "The installer has an invalid checksum", + "The installer hash does not match the expected value.": "The installer hash does not match the expected value.", + "The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "The main goal of this project is to create an intuitive UI for the most common CLI package managers for Windows, such as Winget and Scoop.", + "The package {0} from {1} was not found.": "The package {0} from {1} was not found.", + "The selected packages have been blacklisted": "The selected packages have been blacklisted", + "The update will be installed upon closing WingetUI": "The update will be installed upon closing UniGetUI", + "The update will not continue.": "The update will not continue.", + "The user has canceled {0}, that was a requirement for {1} to be run": "The user has canceled {0}, that was a requirement for {1} to be run", + "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "There are some great videos on YouTube that showcase UniGetUI and its capabilities. You could learn useful tricks and tips!", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "There are two main reasons to not run UniGetUI as administrator:\nThe first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\nThe second one is that running UniGetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\nRemember that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.", + "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "There is an installation in progress. If you close UniGetUI, the installation may fail and have unexpected results. Do you still want to quit UniGetUI?", + "They are the programs in charge of installing, updating and removing packages.": "They are the programs in charge of installing, updating and removing packages.", + "This could represent a security risk.": "This could represent a security risk.", + "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}", + "This is the default choice.": "This is the default choice.", + "This package can be updated": "This package can be updated", + "This package can be updated to version {0}": "This package can be updated to version {0}", + "This process is running with administrator privileges": "This process is running with administrator privileges", + "This project has no connection with the official {0} project ΓÇö it's completely unofficial.": "This project has no connection with the official {0} project ΓÇö it's completely unofficial.", + "This setting is disabled": "This setting is disabled", + "This wizard will help you configure and customize WingetUI!": "This wizard will help you configure and customize UniGetUI!", + "Toggle search filters pane": "Toggle search filters pane", + "Type here the name and the URL of the source you want to add, separed by a space.": "Type here the name and the URL of the source you want to add, separated by a space.", + "Unable to find package": "Unable to find the package", + "Unable to load informarion": "Unable to load information", + "Uninstall and more": "Uninstall and more", + "Uninstall canceled by the user!": "Uninstall canceled by the user!", + "Uninstall the selected packages with administrator privileges": "Uninstall the selected packages with administrator privileges", + "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.", + "Update and more": "Update and more", + "Update date": "Update date", + "Update found!": "Update found!", + "Update package indexes on launch": "Update package indexes on launch", + "Update packages automatically": "Update packages automatically", + "Update selected packages": "Update selected packages", + "Update selected packages with administrator privileges": "Update selected packages with administrator privileges", + "Update vcpkg's Git portfiles automatically (requires Git installed)": "Update vcpkg's Git portfiles automatically (requires Git installed)", + "Updates": "Updates", + "Updates available!": "Updates available!", + "Updates preferences": "Updates preferences", + "Updating WingetUI": "Updating UniGetUI", + "Url": "URL", + "Use Legacy bundled WinGet instead of PowerShell CMDLets": "Use Legacy bundled WinGet instead of PowerShell CMDLets", + "Use bundled WinGet instead of PowerShell CMDlets": "Use bundled WinGet instead of PowerShell CMDlets", + "Use installed GSudo instead of the bundled one": "Use installed GSudo instead of the bundled one", + "Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Use legacy UniGetUI Elevator (may be helpful if having issues with UniGetUI Elevator)", + "Use system Chocolatey (Needs a restart)": "Use system Chocolatey (Needs a restart)", + "Use system Winget (Needs a restart)": "Use system Winget (Needs a restart)", + "Use system Winget (System language must be set to english)": "Use WinGet (System language must be set to English)", + "Use the WinGet COM API to fetch packages": "Use the WinGet COM API to fetch packages", + "Use the WinGet PowerShell Module instead of the WinGet COM API": "Use the WinGet PowerShell Module instead of the WinGet COM API", + "User": "User", + "User | Local": "User | Local", + "Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Using UniGetUI implies the acceptance of the GNU Lesser General Public License v2.1 License", + "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings", + "Vcpkg was not found on your system.": "Vcpkg was not found on your system.", + "View WingetUI on GitHub": "View UniGetUI on GitHub", + "View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "View UniGetUI's source code. From there, you can report bugs or suggest features, or even contribute directly to the UniGetUI project", + "Waiting for other installations to finish...": "Waiting for other installations to finish...", + "Waiting for {0} to complete...": "Waiting for {0} to complete...", + "We could not load detailed information about this package, because it was not found in any of your package sources": "We could not load detailed information about this package, because it was not found in any of your package sources.", + "We could not load detailed information about this package, because it was not installed from an available package manager.": "We could not load detailed information about this package, because it was not installed from an available package manager.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.", + "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.", + "We couldn't find any package": "We couldn't find any package", + "Welcome to WingetUI": "Welcome to UniGetUI", + "Which package managers do you want to use?": "Which package managers do you want to use?", + "Which source do you want to add?": "Which source do you want to add?", + "While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "While WinGet can be used within UniGetUI, UniGetUI can be used with other package managers, which can be confusing. In the past, UniGetUI was designed to work only with Winget, but this is not true anymore, and therefore UniGetUI does not represent what this project aims to become.", + "WingetUI": "UniGetUI", + "WingetUI - Everything is up to date": "UniGetUI - Everything is up to date", + "WingetUI - {0} updates are available": "UniGetUI - {0} updates are available", + "WingetUI - {0} {1}": "UniGetUI - {0} {1}", + "WingetUI Homepage - Share this link!": "UniGetUI Homepage - Share this link!", + "WingetUI Settings File": "UniGetUI Settings File", + "WingetUI autostart behaviour, application launch settings": "UniGetUI autostart behaviour, application launch settings", + "WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI can check if your software has available updates, and install them automatically if you want", + "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI has not been machine translated! The following users have been in charge of the translations:", + "WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "UniGetUI is being renamed in order to emphasize the difference between UniGetUI (the interface you are using right now) and WinGet (a package manager developed by Microsoft with which I am not related)", + "WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI is being updated. When finished, UniGetUI will restart itself", + "WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.", + "WingetUI log": "UniGetUI Log", + "WingetUI tray application preferences": "UniGetUI tray application preferences", + "WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.", + "WingetUI version {0} is being downloaded.": "UniGetUI version {0} is being downloaded.", + "WingetUI will become {newname} soon!": "WingetUI will become {newname} soon!", + "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.", + "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI will show a UAC prompt every time a package requires elevation to be installed.", + "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "UniGetUI wouldn't have been possible without the help of our dear contributors. Check out their GitHub profiles, UniGetUI wouldn't be possible without them!", + "WingetUI {0} is ready to be installed.": "UniGetUI {0} is ready to be installed.", + "You may restart your computer later if you wish": "You may restart your computer later if you wish", + "You will be prompted only once, and administrator rights will be granted to packages that request them.": "You will be prompted only once, and administrator rights will be granted to packages that request them.", + "You will be prompted only once, and every future installation will be elevated automatically.": "You will be prompted only once, and every future installation will be elevated automatically.", + "buy me a coffee": "buy me a coffee", + "formerly WingetUI": "formerly WingetUI", + "homepage": "Homepage", + "install": "Install", + "installation": "installation", + "uninstall": "Uninstall", + "uninstallation": "uninstallation", + "uninstalled": "uninstalled", + "update(noun)": "update", + "update(verb)": "update", + "updated": "updated", + "{0} Uninstallation": "{0} Uninstallation", + "{0} aborted": "{0} aborted", + "{0} can be updated": "{0} can be updated", + "{0} failed": "{0} failed", + "{0} has failed, that was a requirement for {1} to be run": "{0} has failed, that was a requirement for {1} to be run", + "{0} installation": "{0} installation", + "{0} is being updated": "{0} is being updated", + "{0} months": "{0} months", + "{0} packages found": "{0} packages found", + "{0} packages were found": "{0} packages were found", + "{0} succeeded": "{0} succeeded", + "{0} update": "{0} update", + "{0} was {1} successfully!": "{0} was {1} successfully!", + "{0} weeks": "{0} weeks", + "{0} years": "{0} years", + "{0} {1} failed": "{0} {1} failed", + "{package} installation failed": "{package} installation failed", + "{package} uninstall failed": "{package} uninstall failed", + "{package} update failed": "{package} update failed", + "{package} update failed. Click here for more details.": "{package} update failed. Click here for more details.", + "{pm} could not be found": "{pm} could not be found", + "{pm} found: {state}": "{pm} found: {state}", + "{pm} package manager specific preferences": "{pm} package manager specific preferences", + "{pm} preferences": "{pm} preferences" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json index 105ce1b68a..bfc57488ff 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nb.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Avbryt avinstallasjonen hvis pre-avinstallasjonskommandoen mislykkes", "Command-line to run:": "Kommandolinje som skal kjøres:", "Save and close": "Lagre og lukk", + "General": "Generelt", + "Architecture & Location": "Arkitektur og plassering", + "Command-line": "Kommandolinje", + "Pre/Post install": "Før/etter installasjon", "Run as admin": "Kjør som administrator", "Interactive installation": "Interaktiv installasjon", "Skip hash check": "Hopp over sjekk av hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Behandle ignorerte oppdateringer", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pakkene i denne listen kommer ikke til å bli tatt hensyn til ved sjekking etter oppdateringer. Dobbeltklikk på dem eller klikk på knappen til høyre for dem for å slutte å ignorere oppdateringene deres.", "Reset list": "Tilbakestill liste", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Vil du virkelig tilbakestille listen over ignorerte oppdateringer? Denne handlingen kan ikke angres.", + "No ignored updates": "Ingen ignorerte oppdateringer", "Package Name": "Pakkenavn", "Package ID": "Pakke-ID", "Ignored version": "Ignorert versjon", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Denne operasjonen kjøres interaktivt.", "You will likely need to interact with the installer.": "Du må sannsynligvis samhandle med installasjonsprogrammet.", "Integrity checks skipped": "Integritetssjekk hoppet over", + "Integrity checks will not be performed during this operation.": "Integritetssjekker vil ikke bli utført under denne handlingen.", "Proceed at your own risk.": "Fortsett på eget ansvar.", "Close": "Lukk", "Loading...": "Laster...", @@ -120,16 +127,17 @@ "optional": "valgfri", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} er klar til å bli installert.", "The update process will start after closing UniGetUI": "Oppdateringsprosessen starter etter at du lukker UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI har blitt kjørt som administrator, noe som ikke anbefales. Når UniGetUI kjører som administrator, vil ALLE handlinger som startes fra UniGetUI ha administratorrettigheter. Du kan fortsatt bruke programmet, men vi anbefaler på det sterkeste å ikke kjøre UniGetUI med administratorrettigheter.", "Share anonymous usage data": "Del anonyme bruksdata", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI samler inn anonyme bruksdata for å forbedre brukeropplevelsen.", "Accept": "Aksepter", - "You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}", + "You have installed UniGetUI Version {0}": "Du har installert UniGetUI versjon {0}", "Disclaimer": "Ansvarsfraskrivelse", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI er ikke knyttet til noen av de kompatible pakkehåndtererne. UniGetUI er et uavhengig prosjekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikke vært mulig uten hjelpen fra alle bidragsyterne. Takk alle sammen🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI bruker følgende biblioteker. Uten dem ville ikke WingetUI vært mulig.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ville ikke vært mulig uten hjelpen fra alle bidragsyterne. Takk alle sammen🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI bruker følgende bibliotek. Uten dem ville ikke UniGetUI vært mulig.", "{0} homepage": "{0} sin hjemmeside", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI har blitt oversatt til mer enn 40 språk takket være frivillige oversettere. Takk 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI har blitt oversatt til mer enn 40 språk takket være frivillige oversettere. Takk 🤝", "Verbose": "Utfyllende", "1 - Errors": "1 - Feilmeldinger", "2 - Warnings": "2 - Advarsler", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Du er logget inn som {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Flott! Sikkerhetskopier vil bli lastet opp til en privat gist på kontoen din", "Select backup": "Velg sikkerhetskopi", - "WingetUI Settings": "Innstillinger for WingetUI", + "UniGetUI Settings": "UniGetUI-innstillinger", "Allow pre-release versions": "Tillat forhåndsversjoner", "Apply": "Bruk", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Av sikkerhetsgrunner er egendefinerte kommandolinjeparametre deaktivert som standard. Gå til UniGetUI-sikkerhetsinnstillingene for å endre dette.", "Go to UniGetUI security settings": "Gå til UniGetUI-sikkerhetsinnstillinger", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Følgende alternativer vil bli brukt som standard hver gang en {0}-pakke blir installert, oppgradert eller avinstallert.", "Package's default": "Pakkens standard", @@ -160,6 +169,7 @@ "Username": "Brukernavn", "Password": "Passord", "Credentials": "Legitimasjon", + "It is not guaranteed that the provided credentials will be stored safely": "Det er ikke garantert at den oppgitte legitimasjonen blir lagret på en sikker måte", "Partially": "Delvis", "Package manager": "Pakkebehandler", "Compatible with proxy": "Kompatibel med mellomtjener", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} er aktivert og klar for bruk", "{pm} version:": "{pm} versjon: ", "{pm} was not found!": "{pm} ble ikke funnet!", - "You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.", - "Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI", - "Clearing Scoop cache - WingetUI": "Renser Scoop-cachen - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Du må kanskje installere {pm} for å bruke det med UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop-installasjonsprogram - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop-avinstallasjonsprogram - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Renser Scoop-cachen - UniGetUI", + "Restart UniGetUI to fully apply changes": "Start UniGetUI på nytt for å ta i bruk endringene fullt ut", "Restart UniGetUI": "Start UniGetUI på nytt", "Manage {0} sources": "Behandle {0} kilder", "Add source": "Legg til kilde", "Add": "Legg til", + "Source name": "Kildenavn", + "Source URL": "Kilde-URL", "Other": "Andre", + "No minimum age": "Ingen minimumsalder", "1 day": "1 dag", "{0} days": "{0} dager", + "Custom...": "Egendefinert...", "{0} minutes": "{0} minutter", "1 hour": "1 time", "{0} hours": "{0} timer", "1 week": "1 uke", - "WingetUI Version {0}": "WingetUI versjon {0}", + "Supports release dates": "Støtter utgivelsesdatoer", + "Release date support per package manager": "Støtte for utgivelsesdatoer per pakkebehandler", + "UniGetUI Version {0}": "UniGetUI versjon {0}", "Search for packages": "Søk etter pakker", "Local": "Lokal", "OK": "Greit", @@ -200,11 +217,13 @@ "Enabled": "Skrudd på", "Disabled": "Skrudd av", "More info": "Mer informasjon", + "GitHub account": "GitHub-konto", "Log in with GitHub to enable cloud package backup.": "Logg inn med GitHub for å skru på skylagrede pakkesikkerhetskopier.", "More details": "Flere detaljer", "Log in": "Logg inn", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Hvis du har skysikkerhetskopi aktivert, blir den lagret som en GitHub Gist på denne kontoen", "Log out": "Logg ut", + "About UniGetUI": "Om UniGetUI", "About": "Om", "Third-party licenses": "Tredjepartslisenser", "Contributors": "Bidragsytere", @@ -212,6 +231,7 @@ "Manage shortcuts": "Behandle snarveier", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI har oppdaget følgende skrivebordssnarveier som kan fjernes automatisk ved fremtidige oppgraderinger", "Do you really want to reset this list? This action cannot be reverted.": "Vil du virkelig tilbakestille denne listen? Denne handlingen kan ikke reverseres.", + "Open in explorer": "Åpne i Filutforsker", "Remove from list": "Fjern fra liste", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Når nye snarveier oppdages, slett dem automatisk i stedet for å vise denne dialogen.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI samler inn anonyme bruksdata utelukkende for å forstå og forbedre brukeropplevelsen.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Godtar du at UniGetUI samler inn og sender anonyme bruksstatistikker, utelukkende for å forstå og forbedre brukeropplevelsen?", "Decline": "Avslå", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Ingen personlig informasjon blir samlet inn eller sendt, og de innsamlede dataene er anonymiserte, slik at de ikke kan spores tilbake til deg.", - "About WingetUI": "Om WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI er en applikasjon som forenkler håndtering av programvare, ved å tilby et alt-i-ett grafisk grensesnitt for kommandolinjepakkehåndtererne dine.", + "Toggle navigation panel": "Vis/skjul navigasjonspanelet", + "Minimize": "Minimer", + "Maximize": "Maksimer", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er en applikasjon som forenkler håndtering av programvare, ved å tilby et alt-i-ett grafisk grensesnitt for kommandolinjepakkehåndtererne dine.", "Useful links": "Nyttige lenker", + "UniGetUI Homepage": "UniGetUI-hjemmeside", "Report an issue or submit a feature request": "Si fra om en feil eller send inn forslag til nye funksjoner", + "UniGetUI Repository": "UniGetUI-repositorium", "View GitHub Profile": "Vis GitHub-profil", - "WingetUI License": "WingetUI - Lisens", - "Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI innebærer å godta MIT-lisensen", + "UniGetUI License": "UniGetUI - Lisens", + "Using UniGetUI implies the acceptation of the MIT License": "Bruk av UniGetUI innebærer å godta MIT-lisensen", "Become a translator": "Bli en oversetter", "View page on browser": "Vis siden i nettleseren", "Copy to clipboard": "Kopier til utklippstavlen", "Export to a file": "Eksporter til en fil", "Log level:": "Loggnivå:", "Reload log": "Last inn logg på nytt", + "Export log": "Eksporter logg", + "UniGetUI Log": "UniGetUI-logg", "Text": "Tekst", "Change how operations request administrator rights": "Endre hvordan handlinger spør om adminrettigheter", "Restrictions on package operations": "Begrensninger for pakkeoperasjoner", @@ -243,7 +269,7 @@ "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Dette alternativet VIL forårsake problemer. Enhver operasjon som ikke klarer å opphøye seg selv VIL MISLYKKES. Installasjon/oppdatering/avinstallering som administrator VIL IKKE FUNGERE.", "Allow custom command-line arguments": "Tillat tilpassede kommandolinjeparametre", "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Egendefinerte kommandolinjeparametre kan endre måten programmer installeres, oppgraderes eller avinstalleres på, på en måte som UniGetUI ikke kan kontrollere. Bruk av egendefinerte kommandolinjer kan ødelegge pakker. Fortsett med forsiktighet.", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Tillat at egendefinerte pre-installasjons- og post-installasjonskommandoer kjøres", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "Ignorer egendefinerte pre-installasjons- og post-installasjonskommandoer ved import av pakker fra en pakkegruppe", "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Pre- og post-installasjonskommandoer vil kjøres før og etter at en pakke blir installert, oppgradert eller avinstallert. Vær oppmerksom på at de kan ødelegge ting med mindre de brukes nøye", "Allow changing the paths for package manager executables": "Tillat endring av stier for pakkehåndtereres kjørbare filer", "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Hvis du slår dette på, kan du endre den kjørbare filen som brukes til å samhandle med pakkehåndterere. Selv om dette gir mer detaljert tilpasning av installasjonsprosessene dine, kan det også være farlig", @@ -271,7 +297,7 @@ "Leave empty for default": "La stå tomt for standardvalget", "Add a timestamp to the backup file names": "Legg til et tidsstempel til sikkerhetskopi-filnavnene", "Backup and Restore": "Sikkerhetskopier og gjenopprett", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (UniGetUI Widgets and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Vent til enheten er koblet til internett før du prøver å utføre oppgaver som krever internettilkobling.", "Disable the 1-minute timeout for package-related operations": "Deaktiver 1-minutters tidsavbrudd for pakkerelaterte operasjoner", "Use installed GSudo instead of UniGetUI Elevator": "Bruk installert GSudo i stedet for UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "Behandle UniGetUI-innstillinger", "Related settings": "Relaterte innstillinger", - "Update WingetUI automatically": "Oppdater WingetUI automatisk", + "Update UniGetUI automatically": "Oppdater UniGetUI automatisk", "Check for updates": "Se etter oppdateringer", "Install prerelease versions of UniGetUI": "Installer forhåndsversjoner av UniGetUI", "Manage telemetry settings": "Administrer telemetriinnstillinger", @@ -295,17 +321,17 @@ "Import": "Importer", "Export settings to a local file": "Eksporter innstillinger til en lokal fil", "Export": "Eksporter", - "Reset WingetUI": "Tilbakestill WingetUI", "Reset UniGetUI": "Tilbakestill UniGetUI", "User interface preferences": "Alternativer for brukergrensesnitt", "Application theme, startup page, package icons, clear successful installs automatically": "App-tema, oppstartsfane, pakkeikoner, fjern suksessfulle installasjoner automatisk", "General preferences": "Generelle innstillinger", - "WingetUI display language:": "WingetUI sitt visningsspråk:", + "UniGetUI display language:": "UniGetUI sitt visningsspråk:", "Is your language missing or incomplete?": "Mangler språket ditt eller er det uferdig?", "Appearance": "Utseende", "UniGetUI on the background and system tray": "UniGetUI i bakgrunnen og systemkurven", "Package lists": "Pakkelister", "Close UniGetUI to the system tray": "Lukk UniGetUI til systemkurven", + "Manage UniGetUI autostart behaviour": "Administrer UniGetUIs autostartoppførsel", "Show package icons on package lists": "Vis pakkeikoner i pakkelistene", "Clear cache": "Tøm hurtigbuffer (cache)", "Select upgradable packages by default": "Velg oppgraderbare pakker som standard", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Vær oppmerksom på at ikke alle pakkehåndterere kan støtte denne funksjonen fullt ut", "Proxy URL": "Mellomtjener-URL", "Enter proxy URL here": "Skriv inn mellomtjener-URL her", + "Authenticate to the proxy with a user and a password": "Autentiser mot mellomtjeneren med brukernavn og passord", + "Internet and proxy settings": "Internett- og mellomtjenerinnstillinger", "Package manager preferences": "Innstillinger for pakkehåndterer", "Ready": "Klar", "Not found": "Ikke funnet", "Notification preferences": "Varslingsinnstillinger", "Notification types": "Varslingstyper", "The system tray icon must be enabled in order for notifications to work": "Systemkurv-ikonet må være aktivert for at varsler skal fungere", - "Enable WingetUI notifications": "Aktiver varsler fra WingetUI", + "Enable UniGetUI notifications": "Aktiver varsler fra UniGetUI", "Show a notification when there are available updates": "Vis et varsel når oppdateringer er tilgjengelige", "Show a silent notification when an operation is running": "Vis en stille varsling når en operasjon kjører", "Show a notification when an operation fails": "Vis en varsling når en operasjon feiler", "Show a notification when an operation finishes successfully": "Vis en varsling når en operasjon fullføres", "Concurrency and execution": "Samtidighet og kjøring", "Automatic desktop shortcut remover": "Automatisk fjerner av skrivebordssnarveier", + "Choose how many operations should be performed in parallel": "Velg hvor mange handlinger som skal utføres parallelt", "Clear successful operations from the operation list after a 5 second delay": "Tøm vellykkede handlinger fra handlingslisten etter en 5-sekunders forsinkelse", "Download operations are not affected by this setting": "Nedlastningshandlinger er ikke påvirket av denne innstillingen", "Try to kill the processes that refuse to close when requested to": "Prøv å tvangsavslutte prosesser som nekter å lukkes når de blir bedt om det", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Velg den kjørbare filen som skal brukes. Følgende liste viser de kjørbare filene funnet av UniGetUI", "Current executable file:": "Gjeldende kjørbar fil:", "Ignore packages from {pm} when showing a notification about updates": "Ignorer pakker fra {pm} når det vises et varsel om oppdateringer", + "Update security": "Oppdateringssikkerhet", + "Use global setting": "Bruk global innstilling", + "e.g. 10": "f.eks. 10", + "{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", + "Override the global minimum update age for this package manager": "Overstyr den globale minimumsalderen for oppdateringer for denne pakkebehandleren", + "Minimum age for updates": "Minimumsalder for oppdateringer", + "Custom minimum age (days)": "Egendefinert minimumsalder (dager)", "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, ", "Advanced options": "Avanserte innstillinger", "Reset WinGet": "Tilbakestill UniGetUI", "This may help if no packages are listed": "Dette kan hjelpe hvis ingen pakker vises", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktiver Scoop-cleanup (nullstilling av buffer) ved oppstart", "Use system Chocolatey": "Bruk systemets Chocolatey", "Default vcpkg triplet": "Standard vcpkg-triplet", + "Change vcpkg root location": "Endre plasseringen til vcpkg-roten", "Language, theme and other miscellaneous preferences": "Språk, tema og diverse andre preferanser", "Show notifications on different events": "Vis varslinger for ulike hendelser", "Change how UniGetUI checks and installs available updates for your packages": "Endre hvordan UniGetUI sjekker for og installerer tilgjengelige oppdateringer for pakkene dine", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ikke automatisk oppdater pakker hvis nettverkstilkoblingen er på mobildata", "Do not automatically install updates when the device runs on battery": "Ikke automatisk oppdater pakker mens enheten kjører på batteri", "Do not automatically install updates when the battery saver is on": "Ikke automatisk installer oppdateringer mens Batterisparing er på", + "Only show updates that are at least the specified number of days old": "Vis bare oppdateringer som er minst det angitte antallet dager gamle", "Change how UniGetUI handles install, update and uninstall operations.": "Endre hvordan UniGetUI håndterer installasjons-, oppdaterings- og avinstallasjonsoperasjoner.", "Package Managers": "Pakkehåndterere", "More": "Mer", - "WingetUI Log": "WingetUI-logg", "Package Manager logs": "Pakkehåndteringslogger", "Operation history": "Handlingshistorikk", "Help": "Hjelp", + "Quit UniGetUI": "Avslutt UniGetUI", "Order by:": "Sortér etter:", "Name": "Navn", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Begge", "Exact match": "Eksakt samsvar", "Show similar packages": "Vis lignende pakker", + "Nothing to share": "Ingenting å dele", + "Please select a package first.": "Velg en pakke først.", + "Share link copied": "Delingslenke kopiert", + "The share link for {0} has been copied to the clipboard.": "Delingslenken for {0} er kopiert til utklippstavlen.", "No results were found matching the input criteria": "Ingen resultater som matchet kriteriene ble funnet", "No packages were found": "Ingen pakker ble funnet", "Loading packages": "Laster inn pakker", @@ -440,7 +483,11 @@ "Package bundle": "Pakkebundle", "Could not create bundle": "Klarte ikke å lage pakkebundle", "The package bundle could not be created due to an error.": "Pakkebundlen kunne ikke opprettes på grunn av en feil.", + "Unsaved changes": "Ulagrede endringer", + "Discard changes": "Forkast endringer", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Du har ulagrede endringer i den nåværende bunken. Vil du forkaste dem?", "Bundle security report": "Sikkerhetsrapport for pakkebundle", + "The bundle contained restricted content": "Bunken inneholdt begrenset innhold", "Hooray! No updates were found.": "Hurra! Ingen oppdateringer ble funnet!", "Everything is up to date": "Alt er oppdatert", "Uninstall selected packages": "Avinstaller valgte pakker", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Den klassiske pakkehåndtereren for Windows. Du kan finne alt mulig rart der.
Inneholder: Generell programvare", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Et pakkelager fullt av verktøy og programmer designet for Microsoft sitt .NET-økosystem.
Inneholder: .NET-relaterte verktøy og skript", "NuPkg (zipped manifest)": "NuPkg (zippet manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Den manglende pakkebehandleren for macOS (eller Linux).
Inneholder: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS sin pakkehåndterer. Full av biblioteker og andre verktøy som svever rundt i JavaScript-universet
Inneholder: Node.js-biblioteker og andre relaterte verktøy", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python sin bibliotekshåndterer. Full av Python-biblioteker og andre python-relaterte verktøy
Inneholder: Python-biblioteker og relaterte verktøy", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell sin pakkehåndterer. Finn bibliotek og skript for å utvide PowerShell sine evner
Inneholder: Moduler, skript, cmdlets", @@ -462,7 +510,7 @@ "Great repository of unknown but useful utilities and other interesting packages.
Contains: Utilities, Command-line programs, General Software (extras bucket required)": "Flott pakkehåndterer med ukjente men nyttige verktøy og andre interessante pakker.
Inneholder:Verktøy, kommandolinjeprogrammer, generell programvare (ekstra buckets trengs)", "library": "bibliotek", "feature": "funksjon", - "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities\nEn populær C/C++-bibliotekhåndterer. Full av C/C++-biblioteer og andre relaterte verktøy.
Inneholder:C/C++-biblioteker og relaterte verktøy", + "A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities
Contains: C/C++ libraries and related utilities": "En populær C/C++-bibliotekhåndterer. Full av C/C++-biblioteker og andre relaterte verktøy.
Inneholder: C/C++-biblioteker og relaterte verktøy", "option": "valg", "This package cannot be installed from an elevated context.": "Denne pakken kan ikke installeres fra en opphøyd kontekst.", "Please run UniGetUI as a regular user and try again.": "Kjør UniGetUI som en vanlig bruker og prøv igjen.", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Handlingen er i køen (posisjon {0})...", "Click here for more details": "Klikk her for flere detaljer", "Operation canceled by user": "Operasjon avbrutt av bruker", + "Running PreOperation ({0}/{1})...": "Kjører PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} av {1} mislyktes og var merket som nødvendig. Avbryter...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} av {1} fullførte med resultat {2}", "Starting operation...": "Starter operasjon...", + "Running PostOperation ({0}/{1})...": "Kjører PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} av {1} mislyktes og var merket som nødvendig. Avbryter...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} av {1} fullførte med resultat {2}", "{package} installer download": "{package} installasjonsprogramnedlasting", "{0} installer is being downloaded": "{0} installasjonsprogram lastes ned", "Download succeeded": "Nedlasting var suksessfull", @@ -556,14 +610,12 @@ "Portable mode": "Bærbar modus\n", "DEBUG BUILD": "FEILSØKINGSVERSJON", "Available Updates": "Tilgjengelige oppdateringer", - "Show WingetUI": "Vis WingetUI", + "Show UniGetUI": "Vis UniGetUI", "Quit": "Lukk", "Attention required": "Oppmerksomhet kreves", "Restart required": "Omstart kreves", "1 update is available": "1 oppdatering er tilgjengelig", "{0} updates are available": "{0} oppdateringer er tilgjengelige", - "WingetUI Homepage": "WingetUI - Hjemmeside", - "WingetUI Repository": "WingetUI - Pakkelagre", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Her kan du endre hvordan UniGetUI håndterer følgende snarveier. Hvis en snarvei er avkrysset, vil UniGetUI slette den hvis den opprettes under en fremtidig oppgradering. Hvis den ikke er avkrysset, vil snarveien forbli uendret.", "Manual scan": "Manuell skanning", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Eksisterende snarveier på skrivebordet ditt vil bli skannet, og du må velge hvilke du vil beholde og hvilke du vil fjerne.", @@ -583,7 +635,6 @@ "Restart later": "Start på nytt senere", "An error occurred:": "En feil oppstod:", "I understand": "Jeg forstår", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI har blitt kjørt som administrator, noe som ikke anbefales. Når du kjører WingetUI som administrator, får ALLE programmer WingetUI starter administratortillatelser. Du kan fortsatt bruke programmet, men vi anbefaler på det sterkeste å ikke kjøre WingetUI med administratortillatelser.", "WinGet was repaired successfully": "WinGet ble reparert vellykket", "It is recommended to restart UniGetUI after WinGet has been repaired": "Det anbefales å starte UniGetUI på nytt etter at WinGet har blitt reparert", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "MERK: Denne feilsøkeren kan deaktiveres fra UniGetUI-innstillinger, i WinGet-seksjonen", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Pakkene dine vil ha blitt lagt til i pakkebundlen. Du kan fortsette med å legge til pakker, eller eksportere pakkebundlen.", "Which backup do you want to open?": "Hvilken sikkerhetskopi vil du åpne?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Velg sikkerhetskopien du vil åpne. Senere vil du kunne gjennomgå hvilke pakker/programmer du vil gjenopprette.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det er mange pågående operasjoner. Å avslutte WingetUI kan føre til at de feiler. Vil du fortsette?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Det er mange pågående operasjoner. Å avslutte UniGetUI kan føre til at de feiler. Vil du fortsette?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller noen av komponentene mangler eller er ødelagte.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Det anbefales sterkt å reinstallere UniGetUI for å håndtere situasjonen.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Se UniGetUI-loggene for å få mer informasjon om de berørte filene", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Skriv prosessnavnene her, atskilt med kommaer (,)", "Unset or unknown": "Ikke satt eller ukjent", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Vennligst se på kommandolinje-outputen eller handlingshistorikken for mer informasjon om problemet.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakken har ingen skjermbilder eller mangler et ikon? Bidra til WingetUI ved å legge til de manglende ikonene og skjermbildene til vår åpne, offentlige database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakken har ingen skjermbilder eller mangler et ikon? Bidra til UniGetUI ved å legge til de manglende ikonene og skjermbildene til vår åpne, offentlige database.", "Become a contributor": "Bli en bidragsyter", "Save": "Lagre", "Update to {0} available": "Oppdatering for {0} er tilgjengelig", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktiver den automatiske WinGet-feilsøkeren", "Enable an [experimental] improved WinGet troubleshooter": "Aktiver en [eksperimentell] forbedret WinGet-feilsøker", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Legg til oppdateringer som mislykkes med \"ingen gjeldende oppdatering funnet\" i listen over ignorerte oppdateringer.", - "Restart WingetUI to fully apply changes": "Start WingetUI på nytt for at alle endringene skal bli tatt i bruk", - "Restart WingetUI": "Start WingetUI på nytt", "Invalid selection": "Ugyldig utvalg", "No package was selected": "Ingen pakke ble valgt", "More than 1 package was selected": "Mer enn 1 pakke var valgt", @@ -684,6 +733,37 @@ "Log out failed: ": "Utlogging mislyktes: ", "Package backup settings": "Innstillinger for pakkesikkerhetskopi", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Om WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI er en applikasjon som forenkler håndtering av programvare, ved å tilby et alt-i-ett grafisk grensesnitt for kommandolinjepakkehåndtererne dine.", + "You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikke vært mulig uten hjelpen fra alle bidragsyterne. Takk alle sammen🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI bruker følgende biblioteker. Uten dem ville ikke WingetUI vært mulig.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI har blitt oversatt til mer enn 40 språk takket være frivillige oversettere. Takk 🤝", + "WingetUI Settings": "Innstillinger for WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.", + "Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI", + "Clearing Scoop cache - WingetUI": "Renser Scoop-cachen - WingetUI", + "WingetUI Version {0}": "WingetUI versjon {0}", + "WingetUI License": "WingetUI - Lisens", + "Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI innebærer å godta MIT-lisensen", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)", + "Update WingetUI automatically": "Oppdater WingetUI automatisk", + "Reset WingetUI": "Tilbakestill WingetUI", + "WingetUI display language:": "WingetUI sitt visningsspråk:", + "Manage WingetUI autostart behaviour": "Administrer WingetUIs autostartoppførsel", + "Enable WingetUI notifications": "Aktiver varsler fra WingetUI", + "WingetUI Log": "WingetUI-logg", + "Show WingetUI": "Vis WingetUI", + "WingetUI Homepage": "WingetUI - Hjemmeside", + "WingetUI Repository": "WingetUI - Pakkelagre", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI har blitt kjørt som administrator, noe som ikke anbefales. Når du kjører WingetUI som administrator, får ALLE programmer WingetUI starter administratortillatelser. Du kan fortsatt bruke programmet, men vi anbefaler på det sterkeste å ikke kjøre WingetUI med administratortillatelser.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det er mange pågående operasjoner. Å avslutte WingetUI kan føre til at de feiler. Vil du fortsette?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakken har ingen skjermbilder eller mangler et ikon? Bidra til WingetUI ved å legge til de manglende ikonene og skjermbildene til vår åpne, offentlige database.", + "Restart WingetUI to fully apply changes": "Start WingetUI på nytt for at alle endringene skal bli tatt i bruk", + "Restart WingetUI": "Start WingetUI på nytt", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Behandle autostartoppførsel for UniGetUI fra innstillingsappen", "(Number {0} in the queue)": "(Nummer {0} i køen)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@yrjarv, @mikaelkw, @DandelionSprout", "0 packages found": "0 pakker funnet", @@ -778,7 +858,7 @@ "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Synes du at WingetUI er nyttig? Ønsker du å støtte utvikleren? I så fall kan du {0}, det hjelper masse!", "Do you really want to uninstall {0} packages?": "Vil du virkelig avinstallere {0} pakker?", "Do you want to restart your computer now?": "Vil du starte datamaskinen på nytt nå?", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Vil du oversette WingetUI til ditt språk? Se hvordan du kan bidra HER!", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "Vil du oversette UniGetUI til ditt språk? Se hvordan du kan bidra HER!", "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Har du ikke lyst til å donere? Null stress, du kan alltid dele WingetUI med vennene dine. Spre ordet om WingetUI.", "Donate": "Donér", "Download updated language files from GitHub automatically": "Last ned oppdaterte språkfiler fra GitHub automatisk", @@ -950,7 +1030,7 @@ "The update will not continue.": "Oppdateringen kommer ikke til å fortsette.", "The user has canceled {0}, that was a requirement for {1} to be run": "Brukeren har avbrutt {0}, og det var et krav for at {1} skulle kjøre", "There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "Det finnes noen flotte videoer på YouTube som viser frem WingetUI og dets funksjonalitet. Du kan lære nyttige triks og tips!", - "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "Det er to hovedgrunner til ikke å kjøre WingetUI som administrator: Den første er at Scoop-pakkebehandleren kan forårsake problemer med noen kommandoer når den kjøres med administratorrettigheter. Den andre grunnen er at å kjøre WingetUI som administrator betyr at alle pakkene du laster ned vil kjøres som administrator (og dette er ikke trygt). Husk at hvis du trenger å installere en spesifikk pakke som administrator, kan du alltid høyreklikke på elementet -> Installer/Oppdater/Avinstaller som administrator.", + "There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "Det er to hovedgrunner til ikke å kjøre WingetUI som administrator:\nDen første er at Scoop-pakkebehandleren kan forårsake problemer med noen kommandoer når den kjøres med administratorrettigheter.\nDen andre grunnen er at å kjøre WingetUI som administrator betyr at alle pakkene du laster ned vil kjøres som administrator (og dette er ikke trygt).\nHusk at hvis du trenger å installere en spesifikk pakke som administrator, kan du alltid høyreklikke på elementet -> Installer/Oppdater/Avinstaller som administrator.", "There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "En installasjon utføres. Hvis du lukker WingetUI, kan installasjonen feile og gi uventede resultater. Vil du fortsatt avslutte WingetUI?", "They are the programs in charge of installing, updating and removing packages.": "De er programmer som er ansvarlige for å installere, oppdatere, og fjerne pakker.", "This could represent a security risk.": "Dette kan medføre en sikkerhetsrisiko.", @@ -1068,8 +1148,5 @@ "{pm} could not be found": "{pm} kunne ikke bli funnet", "{pm} found: {state}": "{pm} funnet: {state}", "{pm} package manager specific preferences": "Innstillinger som er spesifikke for {pm}-pakkehåndtereren", - "{pm} preferences": "Innstillinger for {pm}", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Hei, mitt navn er Martí, og jeg er utvikleren som står bak WingetUI. WingetUI har utelukkende blitt laget på fritiden min!", - "Thank you ❤": "Takk ❤", - "This project has no connection with the official {0} project — it's completely unofficial.": "Dette prosjektet har ingen kobling til det offisielle {0}-prosjektet - det er fullstendig uoffisielt." + "{pm} preferences": "Innstillinger for {pm}" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json index 39164e1274..70d69db146 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nl.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Verwijdering afbreken als pre-verwijder opdracht mislukt", "Command-line to run:": "Te gebruiken opdrachtregel:", "Save and close": "Opslaan en sluiten", + "General": "Algemeen", + "Architecture & Location": "Architectuur en locatie", + "Command-line": "Opdrachtregel", + "Pre/Post install": "Voor/na installatie", "Run as admin": "Als administrator uitvoeren", "Interactive installation": "Interactieve installatie", "Skip hash check": "Hashcontrole overslaan", @@ -71,6 +75,8 @@ "Manage ignored updates": "Genegeerde updates beheren", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "De hier vermelde pakketten worden niet in aanmerking genomen bij het controleren op updates. Dubbelklik erop of klik op de knop aan de rechterkant om te stoppen met het negeren van hun updates.", "Reset list": "Lijst opnieuw instellen", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Wil je de lijst met genegeerde updates echt opnieuw instellen? Deze actie kan niet worden teruggedraaid", + "No ignored updates": "Geen genegeerde updates", "Package Name": "Pakketnaam", "Package ID": "Pakket-ID", "Ignored version": "Genegeerde versie", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Deze bewerking wordt interactief uitgevoerd.", "You will likely need to interact with the installer.": "Je zult waarschijnlijk moeten communiceren met het installatieprogramma.", "Integrity checks skipped": "Integriteitscontroles overgeslagen", + "Integrity checks will not be performed during this operation.": "Tijdens deze bewerking worden geen integriteitscontroles uitgevoerd.", "Proceed at your own risk.": "Doorgaan op eigen risico.", "Close": "Sluiten", "Loading...": "Laden…", @@ -120,16 +127,17 @@ "optional": "optioneel", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} is klaar om geïnstalleerd te worden.", "The update process will start after closing UniGetUI": "Het updateproces start na het sluiten van UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI is als administrator uitgevoerd, wat niet wordt aanbevolen. Wanneer UniGetUI als administrator wordt uitgevoerd, krijgt ELKE vanuit UniGetUI gestarte bewerking administratorrechten. Je kunt het programma nog steeds gebruiken, maar we raden sterk af om UniGetUI met administratorrechten uit te voeren.", "Share anonymous usage data": "Anonieme gebruiksgegevens delen", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI verzamelt anonieme gebruiksgegevens om de gebruikerservaring te verbeteren.", "Accept": "Accepteren", - "You have installed WingetUI Version {0}": "Je hebt UniGetUI versie {0} geïnstalleerd", + "You have installed UniGetUI Version {0}": "Je hebt UniGetUI versie {0} geïnstalleerd", "Disclaimer": "Clausule", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI is niet gebonden aan een van de compatibele pakketbeheerders. UniGetUI is een onafhankelijk project.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI zou niet mogelijk zijn geweest zonder de bijdragen van deze personen. \nBedankt allemaal 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI maakt gebruik van de volgende bibliotheken, zonder welke UniGetUI niet mogelijk zou zijn geweest.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI zou niet mogelijk zijn geweest zonder de bijdragen van deze personen. \nBedankt allemaal 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI maakt gebruik van de volgende bibliotheken, zonder welke UniGetUI niet mogelijk zou zijn geweest.", "{0} homepage": "{0} website", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is dankzij deze vrijwilligers in meer dan 40 talen vertaald. Hartelijk bedankt 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is dankzij deze vrijwilligers in meer dan 40 talen vertaald. Hartelijk bedankt 🤝", "Verbose": "Uitvoerig", "1 - Errors": "1 - Fouten", "2 - Warnings": "2 - Waarschuwingen", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Je bent ingelogd als {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Mooi! Back-ups zullen als een privé Gist op je account worden geüpload", "Select backup": "Back-up selecteren", - "WingetUI Settings": "UniGetUI instellingen", + "UniGetUI Settings": "UniGetUI-instellingen", "Allow pre-release versions": "Pre-release versies toestaan", "Apply": "Toepassen", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Om veiligheidsredenen zijn aangepaste opdrachtregelargumenten standaard uitgeschakeld. Ga naar de beveiligingsinstellingen van UniGetUI om dit te wijzigen.", "Go to UniGetUI security settings": "Ga naar UniGetUI veiligheidsinstellingen", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "De volgende opties zullen standaard worden toegepast wanneer een {0} pakket wordt geïnstalleerd, geüpdatet of verwijderd.", "Package's default": "Standaard van het pakket", @@ -160,6 +169,7 @@ "Username": "Gebruikersnaam", "Password": "Wachtwoord", "Credentials": "Referenties", + "It is not guaranteed that the provided credentials will be stored safely": "Het is niet gegarandeerd dat de opgegeven referenties veilig worden opgeslagen", "Partially": "Gedeeltelijk", "Package manager": "Pakketbeheerder", "Compatible with proxy": "Compatibel met proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} is ingeschakeld en klaar voor gebruik", "{pm} version:": "{pm} versie:", "{pm} was not found!": "{pm} niet aangetroffen!", - "You may need to install {pm} in order to use it with WingetUI.": "Mogelijk moet je {pm} installeren om het met UniGetUI te kunnen gebruiken.", - "Scoop Installer - WingetUI": "Scoop installatie - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop verwijderen - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop-buffer wissen - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Mogelijk moet je {pm} installeren om het met UniGetUI te kunnen gebruiken.", + "Scoop Installer - UniGetUI": "Scoop installatie - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop verwijderen - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop-buffer wissen - UniGetUI", + "Restart UniGetUI to fully apply changes": "Start UniGetUI opnieuw om de wijzigingen volledig toe te passen", "Restart UniGetUI": "UniGetUI opnieuw starten", "Manage {0} sources": "{0}-bronnen beheren", "Add source": "Bron toevoegen", "Add": "Toevoegen", + "Source name": "Bronnaam", + "Source URL": "Bron-URL", "Other": "Overig", + "No minimum age": "Geen minimale leeftijd", "1 day": "1 dag", "{0} days": "{0} dagen", + "Custom...": "Aangepast...", "{0} minutes": "{0} minuten", "1 hour": "1 uur", "{0} hours": "{0} uur", "1 week": "1 week", - "WingetUI Version {0}": "UniGetUI-versie {0}", + "Supports release dates": "Ondersteunt releasedatums", + "Release date support per package manager": "Ondersteuning voor releasedatums per pakketbeheerder", + "UniGetUI Version {0}": "UniGetUI-versie {0}", "Search for packages": "Pakketten zoeken", "Local": "Lokaal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Ingeschakeld", "Disabled": "Uitgeschakeld", "More info": "Meer informatie", + "GitHub account": "GitHub-account", "Log in with GitHub to enable cloud package backup.": "Log in bij GitHub om cloud pakket back-ups in te schakelen.", "More details": "Meer details", "Log in": "Inloggen", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Als je cloud back-up hebt ingeschakeld, wordt deze opgeslagen als een GitHub Gist op dit account", "Log out": "Uitloggen", + "About UniGetUI": "Over UniGetUI", "About": "Over", "Third-party licenses": "Licenties van derden", "Contributors": "Bijdragen", @@ -212,6 +231,7 @@ "Manage shortcuts": "Snelkoppelingen beheren", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI heeft de volgende snelkoppelingen op het bureaublad gedetecteerd die bij toekomstige upgrades automatisch kunnen worden verwijderd", "Do you really want to reset this list? This action cannot be reverted.": "Wil je deze lijst echt opnieuw instellen? Deze actie kan niet worden teruggedraaid.", + "Open in explorer": "Openen in Verkenner", "Remove from list": "Van lijst wissen", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Nieuwe snelkoppelingen bij detectie automatisch verwijderen worden gedetecteerd, in plaats van dit dialoogvenster te tonen.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI verzamelt anonieme gebruiksgegevens met als enig doel inzicht te verkrijgen in de gebruikerservaring en deze te verbeteren.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Ga je ermee akkoord dat UniGetUI anonieme gebruiksstatistieken verzamelt en verzendt, met als enig doel inzicht te krijgen op de gebruikerservaring en deze te verbeteren?", "Decline": "Afwijzen", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Er wordt geen persoonlijke informatie verzameld of verzonden en de verzamelde gegevens worden geanonimiseerd, zodat deze niet naar jou kunnen worden teruggevoerd.", - "About WingetUI": "Over UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is een applicatie die het beheer van jouw software eenvoudiger maakt door een alles-in-één grafische interface te bieden voor je opdrachtregelpakketbeheerders.", + "Toggle navigation panel": "Navigatiepaneel wisselen", + "Minimize": "Minimaliseren", + "Maximize": "Maximaliseren", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is een applicatie die het beheer van jouw software eenvoudiger maakt door een alles-in-één grafische interface te bieden voor je opdrachtregelpakketbeheerders.", "Useful links": "Nuttige links", + "UniGetUI Homepage": "UniGetUI-homepage", "Report an issue or submit a feature request": "Een probleem melden of een functieverzoek indienen", + "UniGetUI Repository": "UniGetUI-repository", "View GitHub Profile": "GitHub-profiel bekijken", - "WingetUI License": "UniGetUI-licentie", - "Using WingetUI implies the acceptation of the MIT License": "Met het gebruik van UniGetUI ga je akkoord met de MIT-licentie", + "UniGetUI License": "UniGetUI-licentie", + "Using UniGetUI implies the acceptation of the MIT License": "Met het gebruik van UniGetUI ga je akkoord met de MIT-licentie", "Become a translator": "Meld je aan als vertaler", "View page on browser": "Pagina in browser bekijken", "Copy to clipboard": "Naar klembord kopiëren", "Export to a file": "Exporteren naar bestand", "Log level:": "Logboek-niveau", "Reload log": "Logboek opnieuw laden", + "Export log": "Logboek exporteren", + "UniGetUI Log": "UniGetUI-logboek", "Text": "Tekst", "Change how operations request administrator rights": "Wijzigen hoe bewerkingen administratorrechten aanvragen", "Restrictions on package operations": "Beperkingen op pakketbewerkingen", @@ -271,7 +297,7 @@ "Leave empty for default": "Leeg laten voor standaard", "Add a timestamp to the backup file names": "Voeg een tijdstempel toe aan de namen van de back-upbestanden", "Backup and Restore": "Back-up en Herstel", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Achtergrond-API inschakelen (UniGetUI Widgets en Delen, poort 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Achtergrond-API inschakelen (UniGetUI Widgets en Delen, poort 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Taken die een internetverbinding verlangen uitstellen totdat het apparaat met internet is verbonden.", "Disable the 1-minute timeout for package-related operations": "Time-out van 1 minuut voor pakketgerelateerde bewerkingen uitschakelen", "Use installed GSudo instead of UniGetUI Elevator": "Geïnstalleerde GSudio gebruiken in plaats van UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrie", "Manage UniGetUI settings": "UniGetUI-instellingen beheren", "Related settings": "Gerelateerde instellingen", - "Update WingetUI automatically": "UniGetUI automatisch bijwerken", + "Update UniGetUI automatically": "UniGetUI automatisch bijwerken", "Check for updates": "Controleren op updates", "Install prerelease versions of UniGetUI": "Prerelease-versies van UniGetUI installeren", "Manage telemetry settings": "Telemetrie-instellingen beheren", @@ -295,17 +321,17 @@ "Import": "Importeren", "Export settings to a local file": "Instellingen exporteren naar een lokaal bestand", "Export": "Exporteren", - "Reset WingetUI": "UniGetUI opnieuw instellen", "Reset UniGetUI": "UniGetUI opnieuw instellen", "User interface preferences": "Voorkeuren gebruikersinterface", "Application theme, startup page, package icons, clear successful installs automatically": "App-thema, startpagina, pakketpictogrammen, succesvolle installaties automatisch wissen", "General preferences": "Algemene voorkeuren", - "WingetUI display language:": "UniGetUI weergavetaal:", + "UniGetUI display language:": "UniGetUI weergavetaal:", "Is your language missing or incomplete?": "Ontbreekt jouw taal of is deze onjuist of incompleet?", "Appearance": "Uiterlijk", "UniGetUI on the background and system tray": "UniGetUI op de achtergrond en het systeemvak", "Package lists": "Pakketlijsten", "Close UniGetUI to the system tray": "UniGetUI sluiten naar het systeemvak", + "Manage UniGetUI autostart behaviour": "Automatisch opstartgedrag van UniGetUI beheren", "Show package icons on package lists": "Pakketpictogrammen weergeven in pakketlijsten", "Clear cache": "Buffer wissen", "Select upgradable packages by default": "Standaard upgradebare pakketten selecteren", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Houd er rekening mee dat niet alle pakketbeheerders deze functie volledig ondersteunen", "Proxy URL": "Proxy-url", "Enter proxy URL here": "Voer hier de proxy-URL in", + "Authenticate to the proxy with a user and a password": "Bij de proxy verifiëren met een gebruikersnaam en wachtwoord", + "Internet and proxy settings": "Internet- en proxy-instellingen", "Package manager preferences": "Voorkeuren voor Pakketbeheerders", "Ready": "Klaar", "Not found": "Niet gevonden", "Notification preferences": "Meldingsvoorkeuren", "Notification types": "Typen meldingen", "The system tray icon must be enabled in order for notifications to work": "Het systeemvakpictogram moet ingeschakeld zijn om meldingen te laten werken", - "Enable WingetUI notifications": "Meldingen van UniGetUI inschakelen", + "Enable UniGetUI notifications": "Meldingen van UniGetUI inschakelen", "Show a notification when there are available updates": "Toon een melding wanneer updates beschikbaar zijn", "Show a silent notification when an operation is running": "Toon een stille melding wanneer een bewerking wordt uitgevoerd", "Show a notification when an operation fails": "Toon een melding wanneer een bewerking mislukt", "Show a notification when an operation finishes successfully": "Toon een melding wanneer een bewerking met succes is voltooid", "Concurrency and execution": "Gelijktijdigheid en uitvoering", "Automatic desktop shortcut remover": "Bureaubladsnelkoppelingen automatisch verwijderen", + "Choose how many operations should be performed in parallel": "Kies hoeveel bewerkingen parallel moeten worden uitgevoerd", "Clear successful operations from the operation list after a 5 second delay": "Geslaagde bewerkingen na 5 seconden uit de bewerkingslijst wissen", "Download operations are not affected by this setting": "Download-handelingen worden niet beïnvloed door deze instelling", "Try to kill the processes that refuse to close when requested to": "Probeer programma's te beëindigen als ze weigeren te sluiten op verzoek", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecteer het uitvoerbare bestand dat gebruikt moet worden. De volgende lijst toont de uitvoerbare bestanden die door UniGetUI zijn gevonden.", "Current executable file:": "Huidig uitvoerbaar bestand:", "Ignore packages from {pm} when showing a notification about updates": "Pakketten van {pm} negeren bij het tonen van een melding over updates", + "Update security": "Updatebeveiliging", + "Use global setting": "Globale instelling gebruiken", + "e.g. 10": "bijv. 10", + "{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", + "Override the global minimum update age for this package manager": "Overschrijf de globale minimale updateleeftijd voor deze pakketbeheerder", + "Minimum age for updates": "Minimale leeftijd voor updates", + "Custom minimum age (days)": "Aangepaste minimale leeftijd (dagen)", "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, ", "Advanced options": "Geavanceerde opties", "Reset WinGet": "WinGet opnieuw instellen", "This may help if no packages are listed": "Dit kan helpen als er geen pakketten worden vermeld", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Scoop opschonen inschakelen bij de start", "Use system Chocolatey": "Systeem-Chocolatey gebruiken", "Default vcpkg triplet": "Standaard vcpk tripel", + "Change vcpkg root location": "vcpkg-hoofdlocatie wijzigen", "Language, theme and other miscellaneous preferences": "Taal, thema en andere diverse voorkeuren", "Show notifications on different events": "Meldingen tonen over verschillende gebeurtenissen", "Change how UniGetUI checks and installs available updates for your packages": "Wijzig hoe UniGetUI beschikbare updates voor jouw pakketten controleert en installeert", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Geen automatisch updates installeren wanneer bij betaalde netwerkverbinding", "Do not automatically install updates when the device runs on battery": "Installeer geen updates automatisch wanneer het apparaat op de batterij werkt", "Do not automatically install updates when the battery saver is on": "Niet automatisch updates installeren wanneer de batterijbeveiliging is ingeschakeld", + "Only show updates that are at least the specified number of days old": "Toon alleen updates die minstens het opgegeven aantal dagen oud zijn", "Change how UniGetUI handles install, update and uninstall operations.": "Wijzigen hoe UniGetUI de installatie-, update- en verwijderingsbewerkingen afhandelt.", "Package Managers": "Pakketbeheerders", "More": "Meer", - "WingetUI Log": "UniGetUI-logboek", "Package Manager logs": "Pakketbeheerder-logboeken", "Operation history": "Bewerkingsgeschiedenis", "Help": "Hulp (Engels)", + "Quit UniGetUI": "UniGetUI afsluiten", "Order by:": "Sortering:", "Name": "Naam", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Beide", "Exact match": "Exacte overeenkomst", "Show similar packages": "Vergelijkbaar pakket tonen", + "Nothing to share": "Niets om te delen", + "Please select a package first.": "Selecteer eerst een pakket.", + "Share link copied": "Deellink gekopieerd", + "The share link for {0} has been copied to the clipboard.": "De deellink voor {0} is naar het klembord gekopieerd.", "No results were found matching the input criteria": "Er zijn geen resultaten gevonden die voldoen aan de invoercriteria", "No packages were found": "Er zijn geen pakketten gevonden", "Loading packages": "Pakketten laden", @@ -440,7 +483,11 @@ "Package bundle": "Pakkettenbundel", "Could not create bundle": "Kan bundel niet aanmaken", "The package bundle could not be created due to an error.": "De pakketbundel kan vanwege een fout niet worden angemaakt.", + "Unsaved changes": "Niet-opgeslagen wijzigingen", + "Discard changes": "Wijzigingen verwerpen", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Je hebt niet-opgeslagen wijzigingen in de huidige bundel. Wil je die verwerpen?", "Bundle security report": "Veiligheidsrapportage bundelen", + "The bundle contained restricted content": "De bundel bevatte beperkte inhoud", "Hooray! No updates were found.": "Top! Alles is bijgewerkt!", "Everything is up to date": "Alles is bijgewerkt", "Uninstall selected packages": "Geselecteerde pakketten verwijderen", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "De klassieke Windows pakketbeheerder. Hier kun je van alles vinden.
Bevat: Algemene software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Een opslagplaats vol hulpmiddelen en uitvoerbare bestanden ontworpen voor het .NET-ecosysteem van Microsoft.
Bevat: .NET-gerelateerde hulpmiddelen en scripts", "NuPkg (zipped manifest)": "NuPkg (gezipte manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "De ontbrekende pakketbeheerder voor macOS (of Linux).
Bevat: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS pakketbeheer. Vol met bibliotheken en andere hulpprogramma's die rond de javascript-wereld draaien
Bevat: Node javascript-bibliotheken en andere gerelateerde hulpprogramma's", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python bibliotheekbeheer. Vol met python-bibliotheken en andere python-gerelateerde hulpprogramma's
Bevat: Python-bibliotheken en gerelateerde hulpprogramma's", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "De pakketbeheerder van PowerShell. Bibliotheken en scripts zoeken om de PowerShell-mogelijkheden uit te breiden
Bevat: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Bewerking in de wachtrij (positie {0})", "Click here for more details": "Klik hier voor meer details", "Operation canceled by user": "Bewerking geannuleerd door gebruiker", + "Running PreOperation ({0}/{1})...": "PreOperation uitvoeren ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} van {1} is mislukt en is als noodzakelijk gemarkeerd. Afbreken...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} van {1} is voltooid met resultaat {2}", "Starting operation...": "Bewerking starten...", + "Running PostOperation ({0}/{1})...": "PostOperation uitvoeren ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} van {1} is mislukt en is als noodzakelijk gemarkeerd. Afbreken...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} van {1} is voltooid met resultaat {2}", "{package} installer download": "Installatieprogramma voor {package} downloaden", "{0} installer is being downloaded": "Installatieprogramma voor {0} wordt gedownload", "Download succeeded": "Download voltooid", @@ -556,14 +610,12 @@ "Portable mode": "Portable modus", "DEBUG BUILD": "TESTVERSIE", "Available Updates": "Beschikbare updates", - "Show WingetUI": "UniGetUI openen", + "Show UniGetUI": "UniGetUI openen", "Quit": "Afsluiten", "Attention required": "Aandacht vereist", "Restart required": "Opnieuw starten vereist", "1 update is available": "1 update beschikbaar", "{0} updates are available": "Er zijn {0} updates beschikbaar", - "WingetUI Homepage": "UniGetUI website", - "WingetUI Repository": "UniGetUI-opslagplaats", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Hier kun je het gedrag van UniGetUI met betrekking tot de volgende snelkoppelingen veranderen. Als je een snelkoppeling aanvinkt, wordt deze door UniGetUI verwijderd als deze bij een toekomstige upgrade wordt aangemaakt. Als je dit niet aanvinkt, blijft de snelkoppeling intact", "Manual scan": "Handmatig scannen", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Bestaande snelkoppelingen op je bureaublad worden gescand en je moet kiezen welke je wilt bewaren en welke je wilt verwijderen.", @@ -583,7 +635,6 @@ "Restart later": "Later opnieuw starten", "An error occurred:": "Er is een fout opgetreden:", "I understand": "Ik begrijp het", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI is uitgevoerd als administrator, wat niet wordt aanbevolen. Wanneer UniGetUI als administrator wordt uitgevoerd, heeft ELKE bewerking die vanuit UniGetUI wordt gestart, admninistratorrechten. Je kunt het programma nog steeds gebruiken, maar we raden je ten zeerste aan UniGetUI niet uit te voeren met administratorrechten.", "WinGet was repaired successfully": "WinGet is met succes gerepareerd", "It is recommended to restart UniGetUI after WinGet has been repaired": "Het is raadzaam om UniGetUI opnieuw op te starten nadat WinGet is gerepareerd", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "OPMERKING: Deze probleemoplosser kan worden uitgeschakeld via UniGetUI instellingen - Pakketbeheerders - WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. De pakketten zijn dan aan de bundel zijn toegevoegd. Je kunt doorgaan met het toevoegen van pakketten of de bundel exporteren.", "Which backup do you want to open?": "Welke back-up wil je openen?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecteer welke back-up je wilt openen. Later kun je ook bepalen welke pakketten/programma's je wilt herstellen.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Er zijn lopende bewerkingen. Als je UniGetUI afsluit, kunnen deze mislukken. Wil je doorgaan?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Er zijn lopende bewerkingen. Als je UniGetUI afsluit, kunnen deze mislukken. Wil je doorgaan?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI of componenten ervan ontbreken of zijn beschadigd.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Het wordt sterk aanbevolen om UniGetUI opnieuw te installeren om de situatie aan te pakken.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Raadpleeg de UniGetUI logboeken voor meer details met betrekking tot de getroffen bestand(en)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Schrijf de programma-namen hier, gescheiden door komma's (,)", "Unset or unknown": "Onbepaald of onbekend", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Raadpleeg de opdrachtregeluitvoer of raadpleeg de Bewerkingsgeschiedenis voor meer informatie over het probleem.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Heeft dit pakket geen schermopnames of pictogram? Draag bij aan UniGetUI door ontbrekende pictogrammen en schermopnames toe te voegen aan onze openbare database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Heeft dit pakket geen schermopnames of pictogram? Draag bij aan UniGetUI door ontbrekende pictogrammen en schermopnames toe te voegen aan onze openbare database.", "Become a contributor": "Lever een bijdrage", "Save": "Opslaan", "Update to {0} available": "Update naar {0} beschikbaar", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Automatische WinGet-probleemoplosser inschakelen", "Enable an [experimental] improved WinGet troubleshooter": "[Experimentele] verbeterde WinGet-probleemoplosser inschakelen", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Voeg updates die mislukken met 'geen toepasselijke update gevonden' toe aan de lijst met genegeerde updates.", - "Restart WingetUI to fully apply changes": "Start UniGetUI opnieuw om wijzigingen volledig toe te passen", - "Restart WingetUI": "UniGetUI opnieuw starten", "Invalid selection": "Ongeldige selectie", "No package was selected": "Er is geen pakket geselecteerd", "More than 1 package was selected": "Er is meer dan 1 pakket geselecteerd", @@ -684,6 +733,37 @@ "Log out failed: ": "Uitloggen mislukt:", "Package backup settings": "Back-up instellingen van het pakket", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Over UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI is een applicatie die het beheer van jouw software eenvoudiger maakt door een alles-in-één grafische interface te bieden voor je opdrachtregelpakketbeheerders.", + "You have installed WingetUI Version {0}": "Je hebt UniGetUI versie {0} geïnstalleerd", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI zou niet mogelijk zijn geweest zonder de bijdragen van deze personen. \nBedankt allemaal 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI maakt gebruik van de volgende bibliotheken, zonder welke UniGetUI niet mogelijk zou zijn geweest.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI is dankzij deze vrijwilligers in meer dan 40 talen vertaald. Hartelijk bedankt 🤝", + "WingetUI Settings": "UniGetUI instellingen", + "You may need to install {pm} in order to use it with WingetUI.": "Mogelijk moet je {pm} installeren om het met UniGetUI te kunnen gebruiken.", + "Scoop Installer - WingetUI": "Scoop installatie - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop verwijderen - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop-buffer wissen - UniGetUI", + "WingetUI Version {0}": "UniGetUI-versie {0}", + "WingetUI License": "UniGetUI-licentie", + "Using WingetUI implies the acceptation of the MIT License": "Met het gebruik van UniGetUI ga je akkoord met de MIT-licentie", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Achtergrond-API inschakelen (UniGetUI Widgets en Delen, poort 7058)", + "Update WingetUI automatically": "UniGetUI automatisch bijwerken", + "Reset WingetUI": "UniGetUI opnieuw instellen", + "WingetUI display language:": "UniGetUI weergavetaal:", + "Manage WingetUI autostart behaviour": "Automatisch opstartgedrag van UniGetUI beheren", + "Enable WingetUI notifications": "Meldingen van UniGetUI inschakelen", + "WingetUI Log": "UniGetUI-logboek", + "Show WingetUI": "UniGetUI openen", + "WingetUI Homepage": "UniGetUI website", + "WingetUI Repository": "UniGetUI-opslagplaats", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI is uitgevoerd als administrator, wat niet wordt aanbevolen. Wanneer UniGetUI als administrator wordt uitgevoerd, heeft ELKE bewerking die vanuit UniGetUI wordt gestart, admninistratorrechten. Je kunt het programma nog steeds gebruiken, maar we raden je ten zeerste aan UniGetUI niet uit te voeren met administratorrechten.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Er zijn lopende bewerkingen. Als je UniGetUI afsluit, kunnen deze mislukken. Wil je doorgaan?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Heeft dit pakket geen schermopnames of pictogram? Draag bij aan UniGetUI door ontbrekende pictogrammen en schermopnames toe te voegen aan onze openbare database.", + "Restart WingetUI to fully apply changes": "Start UniGetUI opnieuw om wijzigingen volledig toe te passen", + "Restart WingetUI": "UniGetUI opnieuw starten", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Het autostart-gedrag van UniGetUI beheren via de app-instellingen", "(Number {0} in the queue)": "(Nummer {0} in de wachtrij)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@abbydiode, @CateyeNL, @mia-riezebos, @Stephan-P", "0 packages found": "0 pakketten gevonden", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json index 57b08efa2f..e50550f6db 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_nn.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Avbryt avinstallasjonen viss pre-avinstallasjonskommandoen mislykjast", "Command-line to run:": "Kommandolinje som skal køyrast:", "Save and close": "Lagre og lukk", + "General": "Generelt", + "Architecture & Location": "Arkitektur og plassering", + "Command-line": "Kommandolinje", + "Pre/Post install": "Før/etter installasjon", "Run as admin": "Køyr som administrator", "Interactive installation": "Interaktiv installasjon", "Skip hash check": "Hopp over sjekk av hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Behandle ignorerte oppdateringar", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pakkane i denne lista kjem ikkje til å bli tatt hensyn til ved sjekking etter oppdateringar. Dobbeltklikk på dei eller klikk på knappen til høgre for dei for å slutte å ignorere oppdateringa deira.", "Reset list": "Nullstill liste", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Vil du verkeleg nullstille lista over ignorerte oppdateringar? Denne handlinga kan ikkje omgjerast", + "No ignored updates": "Ingen ignorerte oppdateringar", "Package Name": "Pakkenamn", "Package ID": "Pakke-ID", "Ignored version": "Ignorert versjon", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Denne handlinga køyrer interaktivt.", "You will likely need to interact with the installer.": "Du vil truleg måtta samhandle med installasjonsprogram.", "Integrity checks skipped": "Integritetssjekkar hoppa over", + "Integrity checks will not be performed during this operation.": "Integritetssjekkar blir ikkje utførte under denne handlinga.", "Proceed at your own risk.": "Gå fram på eiga hand og risiko.", "Close": "Lukk", "Loading...": "Lastar...", @@ -120,16 +127,17 @@ "optional": "valfritt", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} er klar til å bli installert.", "The update process will start after closing UniGetUI": "Oppdateringsprosessen vil starta etter at UniGetUI blir lukka", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI har vorte køyrt som administrator, noko som ikkje er tilrådd. Når du køyrer UniGetUI som administrator, vil ALLE handlingar som blir starta frå UniGetUI få administratorrettar. Du kan framleis bruke programmet, men vi tilrår sterkt at du ikkje køyrer UniGetUI med administratorrettar.", "Share anonymous usage data": "Del anonyme brukardata", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI samlar anonyme brukardata for å forbetre brukarerfaringa.", "Accept": "Aksepter", - "You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}", + "You have installed UniGetUI Version {0}": "Du har installert UniGetUI versjon {0}", "Disclaimer": "Ansvarsfråskriving", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGet UI er ikkje knytta til nokon av dei kompatible pakkehandterarne. UniGetUI er eit uavhengig prosjekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikkje vore mogleg uten hjelp frå alle bidragsytarane. Takk alle saman🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI brukar føljande bibliotek. Utan dei ville ikkje WingetUI ha vore mogleg.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ville ikkje vore mogleg uten hjelp frå alle bidragsytarane. Takk alle saman🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI brukar føljande bibliotek. Utan dei ville ikkje UniGetUI ha vore mogleg.", "{0} homepage": "{0} si heimeside", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI har blitt omsett til meir enn 40 språk takka vere frivillige omsetjare. Takk 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI har blitt omsett til meir enn 40 språk takka vere frivillige omsetjare. Takk 🤝", "Verbose": "Uttømmande", "1 - Errors": "1 - Feilmeldingar", "2 - Warnings": "2 - Åtvaringar", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Du er innlogga som {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Fint! Sikkerheitskopiar vil bli lasta opp til ein privat gist på kontoen din", "Select backup": "Vel sikkerheitskopi", - "WingetUI Settings": "Innstillingar for WingetUI", + "UniGetUI Settings": "UniGetUI-innstillingar", "Allow pre-release versions": "Tillat forhandsversjonar", "Apply": "Bruk", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Av tryggingsgrunnar er tilpassa kommandolinjeparametrar deaktiverte som standard. Gå til UniGetUI-tryggingsinnstillingane for å endre dette.", "Go to UniGetUI security settings": "Gå til UniGetUI-tryggjingsinnstillingar", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Dei følgjande vala vil bli brukte som standard kvar gong ein {0}-pakke blir installert, oppgradert eller avinstallert.", "Package's default": "Pakkens standard", @@ -160,6 +169,7 @@ "Username": "Brukarnamn", "Password": "Passord", "Credentials": "Legitimasjon", + "It is not guaranteed that the provided credentials will be stored safely": "Det er ikkje garantert at dei oppgjevne legitimasjonsopplysningane blir lagra trygt", "Partially": "Delvis", "Package manager": "Pakkehåndterar", "Compatible with proxy": "Kompatibel med proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} er aktivert og klar for bruk", "{pm} version:": "{pm} versjon:", "{pm} was not found!": "{pm} vart ikkje funne!", - "You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.", - "Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI", - "Clearing Scoop cache - WingetUI": "Rensar Scoop-cachen - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Du må kanskje installere {pm} for å bruke det med UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop-installasjonsprogram - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop-avinstallasjonsprogram - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Rensar Scoop-cachen - UniGetUI", + "Restart UniGetUI to fully apply changes": "Start UniGetUI på nytt for å ta i bruk endringane fullt ut", "Restart UniGetUI": "Start UniGetUI på nytt", "Manage {0} sources": "Behandle {0} kjelder", "Add source": "Legg til kjelde", "Add": "Legg til", + "Source name": "Kjeldenamn", + "Source URL": "Kjelde-URL", "Other": "Andre", + "No minimum age": "Ingen minimumsalder", "1 day": "1 dag", "{0} days": "{0} dagar", + "Custom...": "Tilpassa...", "{0} minutes": "{0} minutt", "1 hour": "1 time", "{0} hours": "{0} timar", "1 week": "1 veke", - "WingetUI Version {0}": "WingetUI versjon {0}", + "Supports release dates": "Støttar utgivingsdatoar", + "Release date support per package manager": "Støtte for utgivingsdatoar per pakkehandterar", + "UniGetUI Version {0}": "UniGetUI versjon {0}", "Search for packages": "Søk etter pakkar", "Local": "Lokal", "OK": "Ok", @@ -200,11 +217,13 @@ "Enabled": "Aktivert", "Disabled": "Deaktivert", "More info": "Meir informasjon", + "GitHub account": "GitHub-konto", "Log in with GitHub to enable cloud package backup.": "Logg inn med GitHub for å aktivere skya-pakke-sikkerheitskopi.", "More details": "Fleire detaljar", "Log in": "Logg inn", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Viss du har skya-sikkerheitskopi aktivert, vil ho bli lagra som ein GitHub Gist på denne kontoen", "Log out": "Logg ut", + "About UniGetUI": "Om UniGetUI", "About": "Om", "Third-party licenses": "Tredjepartslisensar", "Contributors": "Bidragsytare", @@ -212,6 +231,7 @@ "Manage shortcuts": "Handsamar snarveiar", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI har oppdaga dei følgjande skrivebordssnarveiane som kan bli fjerna automatisk på framtidige oppgraderingar", "Do you really want to reset this list? This action cannot be reverted.": "Vil du verkeleg nullstille denne lista? Denne handlinga kan ikkje omgjørast.", + "Open in explorer": "Opne i Filutforskar", "Remove from list": "Fjern frå liste", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Når nye snarveiar blir oppdaga, slette dei automatisk i staden for å visa denne dialogen.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI samlar anonyme brukardata med det einaste formålet å forstå og forbetre brukarerfaringa.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Godtar du at UniGetUI samlar og sendar anonyme brukarstatistikkar, med det einaste formålet å forstå og forbetre brukarerfaringa?", "Decline": "Avslå", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Ingen personleg informasjon blir samla eller sendt, og den samla dataa er anonymisert, så ho kan ikkje bli tilbakefølgd til deg.", - "About WingetUI": "Om WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI er ein applikasjon som forenklar handtering av programvare, ved å tilby eit alt-i-eitt grafisk grensesnitt for kommandolinjepakkehandterarane dine.", + "Toggle navigation panel": "Vis/skjul navigasjonspanelet", + "Minimize": "Minimer", + "Maximize": "Maksimer", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er ein applikasjon som forenklar handtering av programvare, ved å tilby eit alt-i-eitt grafisk grensesnitt for kommandolinjepakkehandterarane dine.", "Useful links": "Nyttige lenkar", + "UniGetUI Homepage": "UniGetUI-heimeside", "Report an issue or submit a feature request": "Si frå om ein feil eller send inn forslag til nye funksjonar", + "UniGetUI Repository": "UniGetUI-kodelager", "View GitHub Profile": "Vis GitHub-profil", - "WingetUI License": "WingetUI - Lisens", - "Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen", + "UniGetUI License": "UniGetUI - Lisens", + "Using UniGetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen", "Become a translator": "Bli ein omsettar", "View page on browser": "Vis sida i nettlesaren", "Copy to clipboard": "Kopier til utklippstavla", "Export to a file": "Eksporter til ei fil", "Log level:": "Loggnivå:", "Reload log": "Last inn logg på ny", + "Export log": "Eksporter logg", + "UniGetUI Log": "UniGetUI-logg", "Text": "Tekst", "Change how operations request administrator rights": "Endra korleis handlingar ber om administratorrettar", "Restrictions on package operations": "Avgrensingar på pakkehandlingar", @@ -271,7 +297,7 @@ "Leave empty for default": "La stå tomt for standardvalet", "Add a timestamp to the backup file names": "Legg til eit tidsstempel til backup-filnamna", "Backup and Restore": "Sikkerheitskopi og gjenoppretting", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (UniGetUI Widgets and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Vent til eininga er kopla til internett før du forsøk å utføre oppgåver som krev internettsamband.", "Disable the 1-minute timeout for package-related operations": "Deaktiver 1-minutts-tidsavbrøytinga for pakke-relaterte handlingar", "Use installed GSudo instead of UniGetUI Elevator": "Bruk installert GSudo i staden for UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "Handsamar UniGetUI-innstillingar", "Related settings": "Relaterte innstillingar", - "Update WingetUI automatically": "Oppdater WingetUI automatisk", + "Update UniGetUI automatically": "Oppdater UniGetUI automatisk", "Check for updates": "Sjekk for oppdateringar", "Install prerelease versions of UniGetUI": "Installer forhandsversjonar av UniGetUI", "Manage telemetry settings": "Handsamar telemetri-innstillingar", @@ -295,17 +321,17 @@ "Import": "Importer", "Export settings to a local file": "Eksporter innstillingar til ei lokal fil", "Export": "Eksporter", - "Reset WingetUI": "Tilbakestill WingetUI", "Reset UniGetUI": "Nullstill UniGetUI", "User interface preferences": "Alternativar for brukargrensesnitt", "Application theme, startup page, package icons, clear successful installs automatically": "App-tema, startsida, pakkeikon, fjern ferdige installasjonar automatisk", "General preferences": "Generelle innstillingar", - "WingetUI display language:": "WingetUI sitt visningsspråk:", + "UniGetUI display language:": "UniGetUI sitt visningsspråk:", "Is your language missing or incomplete?": "Manglar språket ditt eller er det uferdig? (viss språket ditt er bokmål eller nynorsk jobbar eg med saka)", "Appearance": "Utsjånad", "UniGetUI on the background and system tray": "UniGetUI i bakgrunnen og systemstatusfeltet", "Package lists": "Pakkelister", "Close UniGetUI to the system tray": "Lukk UniGetUI til systemstatusfeltet", + "Manage UniGetUI autostart behaviour": "Handsam autostartåtferda til UniGetUI", "Show package icons on package lists": "Vis pakkeikon på pakkelister", "Clear cache": "Tøm buffer", "Select upgradable packages by default": "Vel oppgradeingsbare pakkar som standard", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Ver merksam på at ikkje alle pakkehåndterarar kan fullstendig støtte denne funksjonen", "Proxy URL": "Proxy-URL", "Enter proxy URL here": "Skriv inn proxy-URL her", + "Authenticate to the proxy with a user and a password": "Autentiser mot proxyen med brukarnamn og passord", + "Internet and proxy settings": "Internett- og proxyinnstillingar", "Package manager preferences": "Innstillingar for pakkehandterar", "Ready": "Klar", "Not found": "Ikkje funne", "Notification preferences": "Varselinstillingar", "Notification types": "Varslingtypar", "The system tray icon must be enabled in order for notifications to work": "Systemstatusfeltet-ikonet må vera aktivert for at varslingane skal virke", - "Enable WingetUI notifications": "Aktiver varslingar frå WingetUI", + "Enable UniGetUI notifications": "Aktiver varslingar frå UniGetUI", "Show a notification when there are available updates": "Vis ei varsling når oppdateringar er tilgjengelege", "Show a silent notification when an operation is running": "Vis ein stille varsling når ein operasjon køyrar", "Show a notification when an operation fails": "Vis ein varsling når ein operasjon feilar", "Show a notification when an operation finishes successfully": "Vis ein varsling når ein operasjon er fullført", "Concurrency and execution": "Parallell prosessering og eksekusjon", "Automatic desktop shortcut remover": "Automatisk fjerning av skrivebordssnarveiar", + "Choose how many operations should be performed in parallel": "Vel kor mange handlingar som skal utførast parallelt", "Clear successful operations from the operation list after a 5 second delay": "Tøm vellukkede handlingar frå handlingslista etter ein 5-sekunders forsinking", "Download operations are not affected by this setting": "Nedlastingshandlingar blir ikkje påverka av denne innstillinga", "Try to kill the processes that refuse to close when requested to": "Forsøk å doda dei prosessane som nektar av lukke seg når dei blir bedt om det", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Vel kjørbar fil som skal brukast. Den følgjande lista viser kjørbare filer funne av UniGetUI", "Current executable file:": "Gjeldande kjørbar fil:", "Ignore packages from {pm} when showing a notification about updates": "Ignorer pakkar frå {pm} når ein varsling om oppdateringar blir vist", + "Update security": "Oppdateringstryggleik", + "Use global setting": "Bruk global innstilling", + "e.g. 10": "t.d. 10", + "{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", + "Override the global minimum update age for this package manager": "Overstyr den globale minimumsalderen for oppdateringar for denne pakkehandteraren", + "Minimum age for updates": "Minimumsalder for oppdateringar", + "Custom minimum age (days)": "Tilpassa minimumsalder (dagar)", "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, ", "Advanced options": "Avanserte val", "Reset WinGet": "Nullstill WinGet", "This may help if no packages are listed": "Dette kan hjelpe viss ingen pakkar blir lista opp", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktiver Scoop-cleanup (nullstilling av buffer) ved oppstart", "Use system Chocolatey": "Bruk systemet Chocolatey", "Default vcpkg triplet": "Standard vcpkg-triplett", + "Change vcpkg root location": "Endre rotplasseringa for vcpkg", "Language, theme and other miscellaneous preferences": "Språk, tema, og diverse andre preferansar", "Show notifications on different events": "Vis varslingar for ulike hendingar", "Change how UniGetUI checks and installs available updates for your packages": "Endre korleis UniGetUI sjekkar for og installerar tilgjengelege oppdateringar for pakkane dine", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ikkje installer oppdateringar automatisk når nettverksforbindinga er målbar", "Do not automatically install updates when the device runs on battery": "Ikkje installer oppdateringar automatisk når eininga køyrer på batteri", "Do not automatically install updates when the battery saver is on": "Ikkje installer oppdateringar automatisk når batteri-sparing er på", + "Only show updates that are at least the specified number of days old": "Vis berre oppdateringar som er minst det oppgjevne talet på dagar gamle", "Change how UniGetUI handles install, update and uninstall operations.": "Endra korleis UniGetUI handsamar installasjon, oppdatering og avinstallasjon.", "Package Managers": "Pakkehåndterarar", "More": "Meir", - "WingetUI Log": "WingetUI-logg", "Package Manager logs": "Pakkehandteringsloggar", "Operation history": "Handlingshistorikk", "Help": "Hjelp", + "Quit UniGetUI": "Avslutt UniGetUI", "Order by:": "Sorter etter:", "Name": "Namn", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Båe", "Exact match": "Eksakt match", "Show similar packages": "Vis lignande pakkar", + "Nothing to share": "Ingenting å dele", + "Please select a package first.": "Vel ei pakke først.", + "Share link copied": "Delenkja vart kopiert", + "The share link for {0} has been copied to the clipboard.": "Delenkja for {0} er kopiert til utklippstavla.", "No results were found matching the input criteria": "Ingen resultatar som matcha kriteria vart funne", "No packages were found": "Ingen pakkar vart funne", "Loading packages": "Lastar inn pakkar", @@ -440,7 +483,11 @@ "Package bundle": "Pakkebundle", "Could not create bundle": "Kunne ikkje lage bundle", "The package bundle could not be created due to an error.": "Pakke-bundlen kunne ikkje bli laga på grunn av ein feil.", + "Unsaved changes": "Ulagra endringar", + "Discard changes": "Forkast endringar", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Du har ulagra endringar i den noverande pakkebundelen. Vil du forkaste dei?", "Bundle security report": "Sikkerheitsrapport for bundle", + "The bundle contained restricted content": "Pakkebundelen inneheldt avgrensa innhald", "Hooray! No updates were found.": "Hurra! Ingen oppdateringar funne!", "Everything is up to date": "Alt er oppdatert", "Uninstall selected packages": "Avinstaller valte pakkar", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Den klassiske pakkehandteraren for Windows. Du kan finne alt der.
Inneheld: Generell programvare", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Eit repository fullt av verktøy og programmar desingna for Microsoft sitt .NET-økosystem.
Inneheld: .NET-relaterte verktøy og skript", "NuPkg (zipped manifest)": "NuPkg (zippa manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Den manglande pakkehandteraren for macOS (eller Linux).
Inneheld: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS sin pakkehandterer. Full av bibliotek og andre verktøy som svevar rundt i JavaScript-universet
Inneheld: Node.js-bibliotek og andre relaterte verktøy", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python sin pakkehandterer. Full av bibliotek og andre Python-relaterte verktøy
Inneheld: Python-bibliotek og andre relaterte verktøy", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell sin pakkehandterar. Finn bibliotek og skript for å utvide PowerShell sine evnar
Inneheld: Modular, skript, cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Handlinga er i køen (posisjon {0})...", "Click here for more details": "Klikk her for fleire detaljar", "Operation canceled by user": "Operasjon avbroten av brukar", + "Running PreOperation ({0}/{1})...": "Køyrer PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} av {1} mislukkast og var merkt som naudsynt. Avbryt...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} av {1} blei fullført med resultatet {2}", "Starting operation...": "Startar handling...", + "Running PostOperation ({0}/{1})...": "Køyrer PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} av {1} mislukkast og var merkt som naudsynt. Avbryt...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} av {1} blei fullført med resultatet {2}", "{package} installer download": "{package} installasjonsprogram nedlasting", "{0} installer is being downloaded": "{0} installasjonsprogram blir lasta ned", "Download succeeded": "Nedlasting var suksessfull", @@ -556,14 +610,12 @@ "Portable mode": "Bærbar modus\n", "DEBUG BUILD": "DEBUG-BUILD", "Available Updates": "Tilgjengelege oppdateringar", - "Show WingetUI": "Vis WingetUI", + "Show UniGetUI": "Vis UniGetUI", "Quit": "Lukk", "Attention required": "Oppmerksemd krevst", "Restart required": "Omstart krevst", "1 update is available": "1 oppdatering er tilgjengeleg", "{0} updates are available": "{0} oppdateringar er tilgjengelege", - "WingetUI Homepage": "WingetUI - Heimeside", - "WingetUI Repository": "WingetUI - Repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Her kan du endra UniGetUI si åtferd angåande dei følgjande snarviene. Om du merkar av ein snarvei vil UniGetUI slette den viss ho blir opprett på ein framtidig oppgradering. Om du ikkje merkar ho av vil snarveia bli bevart intakt", "Manual scan": "Manuell skanning", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Eksisterande snarveiar på skriveborddet ditt vil bli skannade, og du må velje kva du vil behalde og kva du vil fjerne.", @@ -583,7 +635,6 @@ "Restart later": "Start på ny seinare", "An error occurred:": "Ein feil oppstod:", "I understand": "Eg forstår", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI blir køyrd som administrator, noko som ikkje anbefalast. Når du køyrer WingetUI som administrator, får ALLE programmar som WingetUI startar administratortillatingar. Du kan fortfarande bruke programmet, men vi anbefalar på det sterkaste å ikke køyre WingetUI med administratortillatingar.", "WinGet was repaired successfully": "WinGet vart reparert med suksess", "It is recommended to restart UniGetUI after WinGet has been repaired": "Det blir tilrådd å starte UniGetUI på nytt etter at WinGet har vorte reparert", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "MERK: Denne feilsøkaren kan deaktiveringast frå UniGetUI-innstillingar, på WinGet-delen", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Pakkane dine vil ha vorte lagde til i bundlen. Du kan fortsette med å legge til pakkar, eller eksportere bundlen.", "Which backup do you want to open?": "Kva sikkerheitskopi vil du opne?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Vel sikkerheitskopien du vil opne. Seinare vil du kunne gjennomgå kva pakkar du vil installere.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det er mange pågåande operasjonar. Å avslutte WingetUI kan føre til at dei feilar. Vil du fortsetje?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Det er mange pågåande operasjonar. Å avslutte UniGetUI kan føre til at dei feilar. Vil du fortsetje?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller nokre av komponenta hans manglar eller er øydelagde.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Det blir sterkt tilrådd å reinstallere UniGetUI for å løyse situasjonen.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Sjå UniGetUI-loggane for å få fleire detaljar angåande dei påverka fil(ane)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Skriv her prosessnamna, separerte med komma (,)", "Unset or unknown": "Ikkje sett eller ukjend", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Venlegst sjå på kommandolinje-outputen eller handlingshistorikken for meir informasjon om problemet.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakka har ingen skjermbilde eller manglar eit ikon? Bidra til WingetUI ved å leggje til dei manglande ikona og skjermbilda til vår opne, offentlege database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakka har ingen skjermbilde eller manglar eit ikon? Bidra til UniGetUI ved å leggje til dei manglande ikona og skjermbilda til vår opne, offentlege database.", "Become a contributor": "Bli ein bidragsytar", "Save": "Lagre", "Update to {0} available": "Oppdatering for {0} er tilgjengeleg", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktiver automatisk WinGet-feilsøkjar", "Enable an [experimental] improved WinGet troubleshooter": "Aktiver ein [eksperimental] forbetrad WinGet-feilsøkar", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Legg til oppdateringar som mislykjast med «ingen gjeldande oppdatering funne» i lista over ignorerte oppdateringar.", - "Restart WingetUI to fully apply changes": "Start WingetUI på ny for at alle endringane skal bli brukt", - "Restart WingetUI": "Start WingetUI på ny", "Invalid selection": "Ugyldig val", "No package was selected": "Ingen pakke vart vald", "More than 1 package was selected": "Meir enn 1 pakke vart vald", @@ -684,6 +733,37 @@ "Log out failed: ": "Utlogging feilet: ", "Package backup settings": "Innstillingar for pakke-sikkerheitskopi", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Om WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI er ein applikasjon som forenklar handtering av programvare, ved å tilby eit alt-i-eitt grafisk grensesnitt for kommandolinjepakkehandterarane dine.", + "You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikkje vore mogleg uten hjelp frå alle bidragsytarane. Takk alle saman🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI brukar føljande bibliotek. Utan dei ville ikkje WingetUI ha vore mogleg.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI har blitt omsett til meir enn 40 språk takka vere frivillige omsetjare. Takk 🤝", + "WingetUI Settings": "Innstillingar for WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.", + "Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI", + "Clearing Scoop cache - WingetUI": "Rensar Scoop-cachen - WingetUI", + "WingetUI Version {0}": "WingetUI versjon {0}", + "WingetUI License": "WingetUI - Lisens", + "Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)", + "Update WingetUI automatically": "Oppdater WingetUI automatisk", + "Reset WingetUI": "Tilbakestill WingetUI", + "WingetUI display language:": "WingetUI sitt visningsspråk:", + "Manage WingetUI autostart behaviour": "Handsam autostartåtferda til WingetUI", + "Enable WingetUI notifications": "Aktiver varslingar frå WingetUI", + "WingetUI Log": "WingetUI-logg", + "Show WingetUI": "Vis WingetUI", + "WingetUI Homepage": "WingetUI - Heimeside", + "WingetUI Repository": "WingetUI - Repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI blir køyrd som administrator, noko som ikkje anbefalast. Når du køyrer WingetUI som administrator, får ALLE programmar som WingetUI startar administratortillatingar. Du kan fortfarande bruke programmet, men vi anbefalar på det sterkaste å ikke køyre WingetUI med administratortillatingar.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det er mange pågåande operasjonar. Å avslutte WingetUI kan føre til at dei feilar. Vil du fortsetje?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakka har ingen skjermbilde eller manglar eit ikon? Bidra til WingetUI ved å leggje til dei manglande ikona og skjermbilda til vår opne, offentlege database.", + "Restart WingetUI to fully apply changes": "Start WingetUI på ny for at alle endringane skal bli brukt", + "Restart WingetUI": "Start WingetUI på ny", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Behandle autostartåtferd for UniGetUI frå innstillingsappen", "(Number {0} in the queue)": "(Nummer {0} i køen)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@yrjarv", "0 packages found": "0 pakkar funne", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json index b59b8ee2f4..cce7e30b23 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pl.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Przerwij dezinstalację, jeśli wykonanie komendy przeddezinstalacyjnej zakończy się niepowodzeniem", "Command-line to run:": "Polecenie do wykonania:", "Save and close": "Zapisz i zamknij", + "General": "Ogólne", + "Architecture & Location": "Architektura i lokalizacja", + "Command-line": "Wiersz poleceń", + "Pre/Post install": "Przed/po instalacji", "Run as admin": "Uruchom jako administrator", "Interactive installation": "Interaktywna instalacja", "Skip hash check": "Pomiń weryfikacje hash'a", @@ -71,6 +75,8 @@ "Manage ignored updates": "Zarządzaj ignorowanymi aktualizacjami", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pakiety wymienione tutaj nie będą brane pod uwagę podczas sprawdzania aktualizacji. Kliknij je dwukrotnie lub kliknij przycisk po ich prawej stronie, aby przestać ignorować ich aktualizacje.", "Reset list": "Zresetuj listę", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Czy na pewno chcesz zresetować listę ignorowanych aktualizacji? Tego działania nie można cofnąć.", + "No ignored updates": "Brak ignorowanych aktualizacji", "Package Name": "Nazwa pakietu", "Package ID": "ID pakietu", "Ignored version": "Ignorowane wersje", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Operacja ta jest wykonywana interaktywnie.", "You will likely need to interact with the installer.": "Prawdopodobnie konieczna będzie interakcja z instalatorem.", "Integrity checks skipped": "Pominięto sprawdzanie spójności", + "Integrity checks will not be performed during this operation.": "Sprawdzenia integralności nie będą wykonywane podczas tej operacji.", "Proceed at your own risk.": "Postępuj na własne ryzyko.", "Close": "Zamknij", "Loading...": "Ładowanie...", @@ -120,16 +127,17 @@ "optional": "opcjonalne", "UniGetUI {0} is ready to be installed.": "UniGetUI w wersji {0} jest gotowy do zainstalowania.", "The update process will start after closing UniGetUI": "Proces aktualizacji rozpocznie się po zamknięciu UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI został uruchomiony jako administrator, co nie jest zalecane. Gdy UniGetUI działa jako administrator, KAŻDA operacja uruchomiona z UniGetUI będzie miała uprawnienia administratora. Nadal możesz używać programu, ale zdecydowanie zalecamy, aby nie uruchamiać UniGetUI z uprawnieniami administratora.", "Share anonymous usage data": "Udostępnij anonimowe dane o użytkowaniu", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI zbiera anonimowe dane dotyczące użytkowania w celu poprawy doświadczeń użytkownika.", "Accept": "Akceptuj", - "You have installed WingetUI Version {0}": "Zainstalowano UniGetUI w wersji {0}", + "You have installed UniGetUI Version {0}": "Zainstalowano UniGetUI w wersji {0}", "Disclaimer": "Zastrzeżenie", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nie jest powiązany z żadnym z kompatybilnych menedżerów pakietów. UniGetUI jest niezależnym projektem.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nie powstałby bez pomocy kontrybutorów. Dziękuję wam wszystkim 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI używa poniższych bibliotek. Bez nich UniGetUI by nie powstał.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nie powstałby bez pomocy kontrybutorów. Dziękuję wam wszystkim 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI korzysta z następujących bibliotek. Bez nich UniGetUI by nie powstał.", "{0} homepage": "Strona domowa {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI został przetłumaczony na ponad 40 języków dzięki tłumaczom-wolontariuszom. Dziękuję 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI został przetłumaczony na ponad 40 języków dzięki tłumaczom-wolontariuszom. Dziękuję 🤝", "Verbose": "Wyczerpujący", "1 - Errors": "1 - Błędy", "2 - Warnings": "2 - Ostrzeżenia", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Zalogowano jako {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Świetnie! Kopie zapasowe zostaną przesłane do prywatnego gistu na Twoim koncie.", "Select backup": "Wybierz kopię zapasową", - "WingetUI Settings": "Ustawienia UniGetUI", + "UniGetUI Settings": "Ustawienia UniGetUI", "Allow pre-release versions": "Zezwól na wersje wczesnego dostępu", "Apply": "Zastosuj", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Ze względów bezpieczeństwa niestandardowe argumenty wiersza poleceń są domyślnie wyłączone. Aby to zmienić, przejdź do ustawień zabezpieczeń UniGetUI.", "Go to UniGetUI security settings": "Przejdź do ustawień bezpieczeństwa UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Następujące opcje będą stosowane domyślnie za każdym razem, gdy pakiet {0} zostanie zainstalowany, zaktualizowany lub odinstalowany.", "Package's default": "Domyślne ustawienia pakietu", @@ -160,6 +169,7 @@ "Username": "Nazwa użytkownika", "Password": "Hasło", "Credentials": "Poświadczenia", + "It is not guaranteed that the provided credentials will be stored safely": "Nie ma gwarancji, że podane poświadczenia będą przechowywane w bezpieczny sposób", "Partially": "Częściowo", "Package manager": "Menedżer pakietów", "Compatible with proxy": "Kompatybilny z proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} jest włączony i gotowy do użycia", "{pm} version:": "Wersja {pm}:", "{pm} was not found!": "Nie znaleziono {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "Może być konieczne zainstalowanie {pm}, aby używać go z UniGetUI.", - "Scoop Installer - WingetUI": "Instalator Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Deinstalator Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Czyszczenia pamięci podręcznej Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Może być konieczne zainstalowanie {pm}, aby używać go z UniGetUI.", + "Scoop Installer - UniGetUI": "Instalator Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Deinstalator Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Czyszczenia pamięci podręcznej Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Uruchom ponownie UniGetUI, aby w pełni zastosować zmiany", "Restart UniGetUI": "Uruchom ponownie UniGetUI", "Manage {0} sources": "Zarządzaj źródłami {0}", "Add source": "Dodaj źródło", "Add": "Dodaj", + "Source name": "Nazwa źródła", + "Source URL": "Adres URL źródła", "Other": "Inne", + "No minimum age": "Brak minimalnego wieku", "1 day": "1 dzień", "{0} days": "{0} dni", + "Custom...": "Niestandardowe...", "{0} minutes": "{0} minut", "1 hour": "1 godzina", "{0} hours": "{0} godzin(y)", "1 week": "1 tydzień", - "WingetUI Version {0}": "Wersja UniGetUI {0}", + "Supports release dates": "Obsługuje daty wydań", + "Release date support per package manager": "Obsługa dat wydań według menedżera pakietów", + "UniGetUI Version {0}": "Wersja UniGetUI {0}", "Search for packages": "Wyszukaj pakiety", "Local": "Lokalnie", "OK": "Potwierdź", @@ -200,11 +217,13 @@ "Enabled": "Włączony", "Disabled": "Wyłączony", "More info": "Więcej informacji", + "GitHub account": "Konto GitHub", "Log in with GitHub to enable cloud package backup.": "Zaloguj się do GitHub, aby umożliwić tworzenie kopii zapasowych pakietów w chmurze.", "More details": "Więcej szczegółów", "Log in": "Zaloguj się", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Jeśli aktywowano kopię zapasową w chmurze, będzie ona zapisywana jako GitHub Gist na tym koncie", "Log out": "Wyloguj się", + "About UniGetUI": "O UniGetUI", "About": "O programie", "Third-party licenses": "Licencje zewnętrzne", "Contributors": "Kontrybutorzy", @@ -212,6 +231,7 @@ "Manage shortcuts": "Zarządzaj skrótami", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI wykrył następujące skróty na pulpicie, które mogą zostać automatycznie usunięte podczas przyszłych aktualizacji", "Do you really want to reset this list? This action cannot be reverted.": "Czy naprawdę chcesz zresetować tę listę? Tej akcji nie można cofnąć.", + "Open in explorer": "Otwórz w eksploratorze", "Remove from list": "Usuń z listy", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Gdy zostaną wykryte nowe skróty, usuń je automatycznie zamiast wyświetlać to okno dialogowe.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI zbiera anonimowe dane dotyczące użytkowania w celu zrozumienia i poprawy doświadczeń użytkownika.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Czy zgadzasz się, że UniGetUI zbiera i wysyła anonimowe statystyki użytkowania, wyłącznie w celu zrozumienia i poprawy doświadczenia użytkownika?", "Decline": "Odrzuć", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nie gromadzimy ani nie przesyłamy żadnych danych osobowych. Zebrane dane są anonimizowane, więc nie ma możliwości ich powiązania z Twoją osobą.", - "About WingetUI": "O UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI to aplikacja, która ułatwia zarządzanie oprogramowaniem, zapewniając kompleksowy interfejs graficzny dla menedżerów pakietów wiersza poleceń.", + "Toggle navigation panel": "Przełącz panel nawigacyjny", + "Minimize": "Minimalizuj", + "Maximize": "Maksymalizuj", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI to aplikacja, która ułatwia zarządzanie oprogramowaniem, zapewniając kompleksowy interfejs graficzny dla menedżerów pakietów wiersza poleceń.", "Useful links": "Użyteczne adresy", + "UniGetUI Homepage": "Strona główna UniGetUI", "Report an issue or submit a feature request": "Zgłoś problem lub prośbę o dodanie funkcji", + "UniGetUI Repository": "Repozytorium UniGetUI", "View GitHub Profile": "Zobacz profil na GitHub", - "WingetUI License": "Licencja UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Korzystanie z UniGetUI oznacza akceptację licencji MIT.", + "UniGetUI License": "Licencja UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Korzystanie z UniGetUI oznacza akceptację licencji MIT.", "Become a translator": "Zostań tłumaczem", "View page on browser": "Zobacz w przeglądarce", "Copy to clipboard": "Kopiuj do schowka", "Export to a file": "Eksportuj do pliku", "Log level:": "Poziom logowania:", "Reload log": "Przeładuj dziennik", + "Export log": "Eksportuj dziennik", + "UniGetUI Log": "Dziennik zdarzeń UniGetUI", "Text": "Tekst", "Change how operations request administrator rights": "Zmień sposób, w jaki operacje żądają uprawnień administratora", "Restrictions on package operations": "Ograniczenia dotyczące operacji związanych z pakietami", @@ -271,7 +297,7 @@ "Leave empty for default": "Zostaw puste dla ustawień domyślnych", "Add a timestamp to the backup file names": "Dodaj znacznik czasu do nazwy plików kopii zapasowych", "Backup and Restore": "Tworzenie i przywracanie kopii zapasowej", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Włącz API w tle (Widgets for UniGetUI and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Włącz API w tle (Widgets for UniGetUI and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Przed przystąpieniem do wykonywania zadań wymagających połączenia internetowego należy zaczekać, aż urządzenie zostanie połączone z internetem.", "Disable the 1-minute timeout for package-related operations": "Wyłącz 1-minutowy limit czasu dla operacji pakietów", "Use installed GSudo instead of UniGetUI Elevator": "Użyj zainstalowanego GSudo zamiast UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Zarządzaj ustawieniami UniGetUI", "Related settings": "Powiązane ustawienia", - "Update WingetUI automatically": "Aktualizuj UniGetUI automatycznie", + "Update UniGetUI automatically": "Aktualizuj UniGetUI automatycznie", "Check for updates": "Sprawdź aktualizacje", "Install prerelease versions of UniGetUI": "Zainstaluj wstępne wersje UniGetUI", "Manage telemetry settings": "Zarządzaj ustawieniami telemetrii", @@ -295,17 +321,17 @@ "Import": "Importuj", "Export settings to a local file": "Eksportuj ustawienia do pliku", "Export": "Eksport", - "Reset WingetUI": "Zresetuj UniGetUI", "Reset UniGetUI": "Zresetuj UniGetUI", "User interface preferences": "Ustawienia interfejsu użytkownika", "Application theme, startup page, package icons, clear successful installs automatically": "Motyw aplikacji, strona startowa, ikony pakietów, wyczyść pomyślne instalacje automatycznie", "General preferences": "Ogólne ustawienia", - "WingetUI display language:": "Język interfejsu UniGetUI:", + "UniGetUI display language:": "Język interfejsu UniGetUI:", "Is your language missing or incomplete?": "Czy brakuje Twojego języka lub jest on niekompletny?", "Appearance": "Wygląd", "UniGetUI on the background and system tray": "UniGetUI na tle i pasku zadań", "Package lists": "Lista pakietów", "Close UniGetUI to the system tray": "Zamknij UniGetUI do paska zadań", + "Manage UniGetUI autostart behaviour": "Zarządzaj zachowaniem autostartu UniGetUI", "Show package icons on package lists": "Pokaż ikony pakietu na liście pakietów", "Clear cache": "Wyczyść pamięć podręczną", "Select upgradable packages by default": "Wybierz domyślnie pakiety z możliwością aktualizacji", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Nie wszystkie menedżery pakietów mogą w pełni obsługiwać tę funkcję", "Proxy URL": "Adres serwera proxy", "Enter proxy URL here": "Wprowadź tutaj adres serwera proxy", + "Authenticate to the proxy with a user and a password": "Uwierzytelnij się w serwerze proxy za pomocą nazwy użytkownika i hasła", + "Internet and proxy settings": "Ustawienia Internetu i proxy", "Package manager preferences": "Preferencje menedżerów pakietów", "Ready": "Gotowy", "Not found": "Nie znaleziono", "Notification preferences": "Ustawienia powiadomień", "Notification types": "Typy powiadomień", "The system tray icon must be enabled in order for notifications to work": "Aby powiadomienia działały, ikona na pasku zadań musi być włączona", - "Enable WingetUI notifications": "Włącz powiadomienia UniGetUI", + "Enable UniGetUI notifications": "Włącz powiadomienia UniGetUI", "Show a notification when there are available updates": "Wyświetl powiadomienie gdy aktualizacje są dostępne", "Show a silent notification when an operation is running": "Pokaż ciche powiadomienie gdy operacja jest wykonywana", "Show a notification when an operation fails": "Pokaż powiadomienie gdy operacja się nie powiedzie", "Show a notification when an operation finishes successfully": "Pokaż powiadomienie gdy operacja się powiedzie", "Concurrency and execution": "Równoczesność i wykonywanie zadań", "Automatic desktop shortcut remover": "Automatyczne narzędzie do usuwania skrótów z pulpitu", + "Choose how many operations should be performed in parallel": "Wybierz, ile operacji ma być wykonywanych równolegle", "Clear successful operations from the operation list after a 5 second delay": "Wyczyść pomyślne operacje z listy operacji po 5 sekundach przerwy", "Download operations are not affected by this setting": "To ustawienie nie ma wpływu na operacje pobierania", "Try to kill the processes that refuse to close when requested to": "Spróbuj wymusić zatrzymanie procesów, które odmawiają zamknięcia", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Wybierz plik wykonywalny, który ma zostać użyty. Poniższa lista zawiera pliki wykonywalne znalezione przez UniGetUI.", "Current executable file:": "Aktualny plik wykonywalny:", "Ignore packages from {pm} when showing a notification about updates": "Ignoruj pakiety z {pm} podczas wyświetlania powiadomień o aktualizacjach", + "Update security": "Bezpieczeństwo aktualizacji", + "Use global setting": "Użyj ustawienia globalnego", + "e.g. 10": "np. 10", + "{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", + "Override the global minimum update age for this package manager": "Zastąp globalny minimalny wiek aktualizacji dla tego menedżera pakietów", + "Minimum age for updates": "Minimalny wiek aktualizacji", + "Custom minimum age (days)": "Niestandardowy minimalny wiek (dni)", "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, ", "Advanced options": "Zaawansowane", "Reset WinGet": "Zresetuj WinGet", "This may help if no packages are listed": "To może pomóc, gdy żadne pakiety nie są pokazywane", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Włącz czyszczenie Scoop podczas uruchamiania", "Use system Chocolatey": "Użyj systemowego Chocolatey", "Default vcpkg triplet": "Domyślne zmienne potrójne vcpkg", + "Change vcpkg root location": "Zmień lokalizację katalogu głównego vcpkg", "Language, theme and other miscellaneous preferences": "Język, motyw i inne preferencje", "Show notifications on different events": "Pokaż powiadomienia o różnych wydarzeniach", "Change how UniGetUI checks and installs available updates for your packages": "Zmień sposób, w jaki UniGetUI sprawdza i instaluje dostępne aktualizacje pakietów.", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Nie instaluj automatycznie aktualizacji, gdy połączenie sieciowe jest taryfowe", "Do not automatically install updates when the device runs on battery": "Nie instaluj automatycznie aktualizacji, gdy urządzenie jest zasilane z baterii", "Do not automatically install updates when the battery saver is on": "Nie instaluj automatycznie aktualizacji, gdy oszczędzanie baterii jest włączone", + "Only show updates that are at least the specified number of days old": "Pokazuj tylko aktualizacje, które mają co najmniej określoną liczbę dni", "Change how UniGetUI handles install, update and uninstall operations.": "Zmień sposób, w jaki UniGetUI obsługuje operacje instalacji, aktualizacji i odinstalowywania.", "Package Managers": "Menedżery pakietów", "More": "Więcej", - "WingetUI Log": "Dziennik zdarzeń UniGetUI", "Package Manager logs": "Dziennik zdarzeń menedżera pakietów", "Operation history": "Historia", "Help": "Pomoc", + "Quit UniGetUI": "Zamknij UniGetUI", "Order by:": "Sortuj według:", "Name": "Nazwa", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Oba", "Exact match": "Dokładne dopasowanie", "Show similar packages": "Pokaż podobne pakiety", + "Nothing to share": "Nie ma nic do udostępnienia", + "Please select a package first.": "Najpierw wybierz pakiet.", + "Share link copied": "Skopiowano link udostępniania", + "The share link for {0} has been copied to the clipboard.": "Link udostępniania dla {0} został skopiowany do schowka.", "No results were found matching the input criteria": "Nie znaleziono żadnych wyników spełniających podane kryteria", "No packages were found": "Nie znaleziono pakietów", "Loading packages": "Wczytywanie pakietów", @@ -440,7 +483,11 @@ "Package bundle": "Paczka pakietów", "Could not create bundle": "Nie można utworzyć paczki", "The package bundle could not be created due to an error.": "Nie można utworzyć paczki pakietów z powodu błędu.", + "Unsaved changes": "Niezapisane zmiany", + "Discard changes": "Odrzuć zmiany", + "You have unsaved changes in the current bundle. Do you want to discard them?": "W bieżącej paczce są niezapisane zmiany. Czy chcesz je odrzucić?", "Bundle security report": "Raport bezpieczeństwa paczki", + "The bundle contained restricted content": "Paczka zawierała ograniczoną zawartość", "Hooray! No updates were found.": "Super! Nie znaleziono żadnych aktualizacji.", "Everything is up to date": "Wszystko jest aktualne", "Uninstall selected packages": "Odinstaluj wybrane pakiety", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasyczny menedżer pakietów dla Windows. Znajdziesz tam wszystko.
Zawiera: ogólne oprogramowanie", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repozytorium zawierające pełny pakiet narzędzi i plików wykonywalnych zaprojektowanych z myślą o ekosystemie .NET firmy Microsoft.
Zawiera: narzędzia i skrypty powiązane z .NET", "NuPkg (zipped manifest)": "NuPkg (spakowany manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Brakujący menedżer pakietów dla macOS (lub Linuksa).
Zawiera: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Mendedżer pakietów NodeJS. Pełen bibliotek i innych narzędzi, które krążą po świecie JavaScriptu
Zawiera: biblioteki javascriptowe dla Node i powiązane narzędzia", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Menedżer bibliotek Pythona. Pełen bibliotek Pythona i innych narzędzi związanych z Pythonem
Zawiera: biblioteki Pythona i powiązane narzędzia", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Menedżer pakietów PowerShella. Znajdź biblioteki i skrypty, aby rozszerzyć możliwości PowerShella
Zawiera: moduły, skrypty, polecenia", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operacja jest w kolejce (pozycja {0})...", "Click here for more details": "Kliknij tutaj, aby uzyskać więcej szczegółów", "Operation canceled by user": "Operacja anulowana przez użytkownika", + "Running PreOperation ({0}/{1})...": "Trwa wykonywanie PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} z {1} zakończyła się niepowodzeniem i została oznaczona jako wymagana. Przerywanie...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} z {1} zakończyła się z wynikiem {2}", "Starting operation...": "Rozpoczęcie działania...", + "Running PostOperation ({0}/{1})...": "Trwa wykonywanie PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} z {1} zakończyła się niepowodzeniem i została oznaczona jako wymagana. Przerywanie...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} z {1} zakończyła się z wynikiem {2}", "{package} installer download": "Pobierz instalator {package}", "{0} installer is being downloaded": "Trwa pobieranie instalatora {0}", "Download succeeded": "Pobieranie powiodło się", @@ -556,14 +610,12 @@ "Portable mode": "Tryb przenośny", "DEBUG BUILD": "KOMPILACJA DEBUG", "Available Updates": "Aktualnie są dostępne aktualizacje", - "Show WingetUI": "Pokaż UniGetUI", + "Show UniGetUI": "Pokaż UniGetUI", "Quit": "Wyjdź", "Attention required": "Potrzebna uwaga", "Restart required": "Wymagane ponowne uruchomienie", "1 update is available": "Jest dostępna 1 aktualizacja", "{0} updates are available": "{0} aktualizacji jest dostępnych", - "WingetUI Homepage": "Strona domowa UniGetUI", - "WingetUI Repository": "Repozytorium UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Tutaj możesz zmienić zachowanie UniGetUI w odniesieniu do następujących skrótów. Zaznaczenie skrótu spowoduje, że UniGetUI usunie go, jeśli zostanie utworzony podczas przyszłej aktualizacji. Odznaczenie go spowoduje, że skrót pozostanie nienaruszony", "Manual scan": "Ręczne skanowanie", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Istniejące skróty na pulpicie zostaną przeskanowane i będziesz musiał(a) wybrać, które z nich zachować, a które usunąć.", @@ -583,7 +635,6 @@ "Restart later": "Uruchom ponownie później", "An error occurred:": "Wystąpił błąd:", "I understand": "Rozumiem", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI został uruchomiony z prawami administratora, co nie jest zalecane. Po uruchomieniu UniGetUI z prawmi administratora, KAŻDA operacja uruchomiona z UniGetUI będzie miała uprawnienia administratora. Możesz nadal korzystać z programu, ale zdecydowanie zalecamy, aby nie uruchamiać UniGetUI z uprawnieniami administratora.\n", "WinGet was repaired successfully": "WinGet naprawiono pomyślnie", "It is recommended to restart UniGetUI after WinGet has been repaired": "Zalecany jest restart UniGetUI po naprawieniu WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "UWAGA: Funkcję rozwiązywania problemów można wyłączyć w ustawieniach UniGetUI, w sekcji WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Twoje pakiety zostaną dodane do pakietu. Kontynuuj dodawanie, lub eksportuj pakiet.", "Which backup do you want to open?": "Którą kopię zapasową chcesz otworzyć?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Wybierz kopię zapasową, którą chcesz otworzyć. Później będziesz mógł sprawdzić, które pakiety/programy chcesz przywrócić.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Operacje są w toku. Zamknięcie UniGetUI może spowodować ich niepowodzenie. Czy chcesz kontynuować?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Operacje są w toku. Zamknięcie UniGetUI może spowodować ich niepowodzenie. Czy chcesz kontynuować?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI lub niektóre jego komponenty są niekompletne albo uszkodzone.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Zdecydowanie zaleca się przeinstalowanie UniGetUI, w celu rozwiązania sytuacji.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Zapoznaj się z dziennikami UniGetUI, aby uzyskać więcej szczegółów dotyczących pliku(ów), których dotyczy problem", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Wpisz tutaj nazwy procesów, odseparowane przecinkami (,)", "Unset or unknown": "Nieustawiona lub nieznana", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Więcej informacji na ten temat można znaleźć w Wyjściu wiersza poleceń lub w Historii operacji.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ten pakiet nie ma zrzutów ekranu lub brakuje ikony? Pomóż UniGetUI dodając brakujące ikony i zrzuty ekranu do naszej otwartej, publicznej bazy danych.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ten pakiet nie ma zrzutów ekranu lub brakuje ikony? Pomóż UniGetUI dodając brakujące ikony i zrzuty ekranu do naszej otwartej, publicznej bazy danych.", "Become a contributor": "Zostań współtwórcą", "Save": "Zapisz", "Update to {0} available": "jest dostępna aktualizacja do {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Włącz automatyczne rozwiązywanie problemów dla WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Włącz [eksperymentalne] ulepszone narzędzie do rozwiązywania problemów z WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Dodaj aktualizacje, które zakończyły się niepowodzeniem z komunikatem „nie znaleziono odpowiedniej aktualizacji” do listy ignorowanych aktualizacji", - "Restart WingetUI to fully apply changes": "Uruchom ponownie UniGetUI żeby zastosowac wszystkie zmiany", - "Restart WingetUI": "Zrestartuj UniGetUI", "Invalid selection": "Niepoprawny wybór", "No package was selected": "Nie wybrano pakietu", "More than 1 package was selected": "Wybrano więcej niż 1 pakiet", @@ -684,6 +733,37 @@ "Log out failed: ": "Wylogowywanie nie powiodło się:", "Package backup settings": "Ustawienia kopii zapasowych pakietów", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "O UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI to aplikacja, która ułatwia zarządzanie oprogramowaniem, zapewniając kompleksowy interfejs graficzny dla menedżerów pakietów wiersza poleceń.", + "You have installed WingetUI Version {0}": "Zainstalowano UniGetUI w wersji {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nie powstałby bez pomocy kontrybutorów. Dziękuję wam wszystkim 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI używa poniższych bibliotek. Bez nich UniGetUI by nie powstał.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI został przetłumaczony na ponad 40 języków dzięki tłumaczom-wolontariuszom. Dziękuję 🤝", + "WingetUI Settings": "Ustawienia UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Może być konieczne zainstalowanie {pm}, aby używać go z UniGetUI.", + "Scoop Installer - WingetUI": "Instalator Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Deinstalator Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Czyszczenia pamięci podręcznej Scoop - UniGetUI", + "WingetUI Version {0}": "Wersja UniGetUI {0}", + "WingetUI License": "Licencja UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Korzystanie z UniGetUI oznacza akceptację licencji MIT.", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Włącz API w tle (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Aktualizuj UniGetUI automatycznie", + "Reset WingetUI": "Zresetuj UniGetUI", + "WingetUI display language:": "Język interfejsu UniGetUI:", + "Manage WingetUI autostart behaviour": "Zarządzaj zachowaniem autostartu UniGetUI", + "Enable WingetUI notifications": "Włącz powiadomienia UniGetUI", + "WingetUI Log": "Dziennik zdarzeń UniGetUI", + "Show WingetUI": "Pokaż UniGetUI", + "WingetUI Homepage": "Strona domowa UniGetUI", + "WingetUI Repository": "Repozytorium UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI został uruchomiony z prawami administratora, co nie jest zalecane. Po uruchomieniu UniGetUI z prawmi administratora, KAŻDA operacja uruchomiona z UniGetUI będzie miała uprawnienia administratora. Możesz nadal korzystać z programu, ale zdecydowanie zalecamy, aby nie uruchamiać UniGetUI z uprawnieniami administratora.\n", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Operacje są w toku. Zamknięcie UniGetUI może spowodować ich niepowodzenie. Czy chcesz kontynuować?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ten pakiet nie ma zrzutów ekranu lub brakuje ikony? Pomóż UniGetUI dodając brakujące ikony i zrzuty ekranu do naszej otwartej, publicznej bazy danych.", + "Restart WingetUI to fully apply changes": "Uruchom ponownie UniGetUI żeby zastosowac wszystkie zmiany", + "Restart WingetUI": "Zrestartuj UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Zarządzanie autostartem UniGetUI z poziomu aplikacji Ustawienia", "(Number {0} in the queue)": "(Numer {0} w kolejce)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@juliazero, @RegularGvy13, @KamilZielinski, @kwiateusz, @ThePhaseless, @GrzegorzKi, @ikarmus2001, @szumsky, @H4qu3r, @AdiMajsterek", "0 packages found": "Znaleziono 0 pakietów", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json index 2b2379288f..fc2bd6c464 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_BR.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Cancelar desinstalação se o comando de pré-deinstalação falhar", "Command-line to run:": "Linha de comando para executar:", "Save and close": "Salvar e fechar", + "General": "Geral", + "Architecture & Location": "Arquitetura e local", + "Command-line": "Linha de comando", + "Pre/Post install": "Pré/Pós-instalação", "Run as admin": "Executar como administrador", "Interactive installation": "Instalação interativa", "Skip hash check": "Ignorar verificação de hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Gerenciar atualizações ignoradas", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Os pacotes listados aqui não serão levados em conta ao verificar atualizações. Clique duas vezes neles ou clique no botão à direita para parar de ignorar suas atualizações.", "Reset list": "Redefinir lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Você realmente deseja redefinir a lista de atualizações ignoradas? Esta ação não pode ser desfeita", + "No ignored updates": "Nenhuma atualização ignorada", "Package Name": "Nome do Pacote", "Package ID": "ID do Pacote", "Ignored version": "Versão Ignorada", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Esta operação está sendo executada de forma interativa.", "You will likely need to interact with the installer.": "Provavelmente você precisará interagir com o instalador.", "Integrity checks skipped": "Verificações de integridade ignoradas", + "Integrity checks will not be performed during this operation.": "As verificações de integridade não serão realizadas durante esta operação.", "Proceed at your own risk.": "Prossiga por sua conta e risco.", "Close": "Fechar", "Loading...": "Carregando...", @@ -120,16 +127,17 @@ "optional": "opcional", "UniGetUI {0} is ready to be installed.": "O UniGetUI {0} está pronto para ser instalado.", "The update process will start after closing UniGetUI": "O processo de atualização será iniciado após encerrar o UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Ao executar o UniGetUI como administrador, TODAS as operações iniciadas pelo UniGetUI terão privilégios de administrador. Você ainda pode usar o programa, mas recomendamos fortemente não executar o UniGetUI com privilégios de administrador.", "Share anonymous usage data": "Compartilhar dados de uso anônimos", "UniGetUI collects anonymous usage data in order to improve the user experience.": "O UniGetUI coleta dados de uso anônimas para melhorar a experiência do usuário.", "Accept": "Aceitar", - "You have installed WingetUI Version {0}": "Você instalou a versão {0} do UniGetUI", + "You have installed UniGetUI Version {0}": "Você instalou a versão {0} do UniGetUI", "Disclaimer": "Aviso Legal", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "O UniGetUI não está relacionado a nenhum dos gerenciadores de pacotes compatíveis. O UniGetUI é um projeto independente.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não seria possível sem a ajuda dos colaboradores. Obrigado a todos 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "O UniGetUI utiliza as seguintes bibliotecas. Sem elas, o UniGetUI não seria possível.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não seria possível sem a ajuda dos colaboradores. Obrigado a todos 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "O UniGetUI usa as seguintes bibliotecas. Sem elas, o UniGetUI não seria possível.", "{0} homepage": "página inicial de {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças aos tradutores voluntários. Obrigado 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças aos tradutores voluntários. Obrigado 🤝", "Verbose": "Detalhado", "1 - Errors": "1 - Erros", "2 - Warnings": "2 - Avisos", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Você está logado como {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Ótimo! Os backups serão enviados para um gist privado na sua conta.", "Select backup": "Selecionar backup", - "WingetUI Settings": "Configurações do UniGetUI", + "UniGetUI Settings": "Configurações do UniGetUI", "Allow pre-release versions": "Permitir versões de pré-lançamento", "Apply": "Aplicar", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por motivos de segurança, os argumentos de linha de comando personalizados são desabilitados por padrão. Acesse as configurações de segurança do UniGetUI para alterar isso.", "Go to UniGetUI security settings": "Acessar configurações de segurança do UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "As seguintes opções serão aplicadas por padrão sempre que um pacote {0} for instalado, atualizado ou desinstalado.", "Package's default": "Padrão do pacote", @@ -160,6 +169,7 @@ "Username": "Nome de usuário", "Password": "Senha", "Credentials": "Credenciais", + "It is not guaranteed that the provided credentials will be stored safely": "Não é garantido que as credenciais fornecidas serão armazenadas com segurança", "Partially": "Parcialmente", "Package manager": "Gerenciador de pacotes", "Compatible with proxy": "Compatível com proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} está ativado e pronto para ser usado", "{pm} version:": "Versão do {pm}:", "{pm} was not found!": "{pm} não foi encontrado!", - "You may need to install {pm} in order to use it with WingetUI.": "Você pode precisar instalar {pm} para usá-lo com o UniGetUI.", - "Scoop Installer - WingetUI": "Instalador do Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Desinstalador do Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Limpando cache do Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Você pode precisar instalar {pm} para usá-lo com o UniGetUI.", + "Scoop Installer - UniGetUI": "Instalador do Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstalador do Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Limpando cache do Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicie o UniGetUI para aplicar totalmente as alterações", "Restart UniGetUI": "Reiniciar UniGetUI", "Manage {0} sources": "Gerenciar {0} fontes", "Add source": "Adicionar fonte", "Add": "Adicionar", + "Source name": "Nome da fonte", + "Source URL": "URL da fonte", "Other": "Outros", + "No minimum age": "Sem idade mínima", "1 day": "1 dia", "{0} days": "{0} dias", + "Custom...": "Personalizado...", "{0} minutes": "{0} minutos", "1 hour": "1 hora", "{0} hours": "{0} horas", "1 week": "1 semana", - "WingetUI Version {0}": "UniGetUI Versão {0}", + "Supports release dates": "Suporta datas de lançamento", + "Release date support per package manager": "Suporte a datas de lançamento por gerenciador de pacotes", + "UniGetUI Version {0}": "UniGetUI Versão {0}", "Search for packages": "Procurar por pacotes", "Local": "Locais", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Habilitado", "Disabled": "Desativado", "More info": "Mais informações", + "GitHub account": "Conta do GitHub", "Log in with GitHub to enable cloud package backup.": "Faça login com o GitHub para ativar o backup de pacotes na nuvem.", "More details": "Mais detalhes", "Log in": "Login", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se você tiver o backup em nuvem habilitado, ele será salvo como um GitHub Gist nesta conta", "Log out": "Sair", + "About UniGetUI": "Sobre o UniGetUI", "About": "Sobre", "Third-party licenses": "Licenças de terceiros", "Contributors": "Colaboradores", @@ -212,6 +231,7 @@ "Manage shortcuts": "Gerenciar atalhos", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "O UniGetUI detectou os seguintes atalhos na área de trabalho, que poderão ser removidos automaticamente em futuras atualizações", "Do you really want to reset this list? This action cannot be reverted.": "Você deseja realmente redefinir esta lista? Esta ação não pode ser desfeita.", + "Open in explorer": "Abrir no Explorador", "Remove from list": "Remover da lista", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Quando novos atalhos forem detectados, exclua-os automaticamente em vez de mostrar esta caixa de diálogo.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "O UniGetUI coleta dados de uso anônimos com o único propósito de entender e melhorar a experiência do usuário.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Você permite que o UniGetUI colete e envie estatísticas de uso anônimas, com o único objetivo de entender e melhorar a experiência do usuário?", "Decline": "Recusar", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nenhuma informação pessoal é coletada e enviada. Os dados coletados não anônimos, assim não podem ser rastreados.", - "About WingetUI": "Sobre o UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é um aplicativo que facilita o gerenciamento de seu software, fornecendo uma interface gráfica completa para seus gerenciadores de pacotes de linha de comando.", + "Toggle navigation panel": "Alternar painel de navegação", + "Minimize": "Minimizar", + "Maximize": "Maximizar", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é um aplicativo que facilita o gerenciamento de seu software, fornecendo uma interface gráfica completa para seus gerenciadores de pacotes de linha de comando.", "Useful links": "Links Úteis", + "UniGetUI Homepage": "Página inicial do UniGetUI", "Report an issue or submit a feature request": "Reportar um problema ou solicitar um recurso", + "UniGetUI Repository": "Repositório do UniGetUI", "View GitHub Profile": "Ver perfil do GitHub", - "WingetUI License": "Licença do UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "O uso do UniGetUI implica na aceitação da Licença MIT", + "UniGetUI License": "Licença do UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "O uso do UniGetUI implica na aceitação da Licença MIT", "Become a translator": "Torne-se um tradutor", "View page on browser": "Ver página no navegador", "Copy to clipboard": "Copiar para a área de transferência", "Export to a file": "Exportar para um arquivo", "Log level:": "Nível de log:", "Reload log": "Recarregar log", + "Export log": "Exportar log", + "UniGetUI Log": "Log do UniGetUI", "Text": "Texto", "Change how operations request administrator rights": "Alterar como as operações solicitam direitos de administrador", "Restrictions on package operations": "Restrições nas operações de pacotes", @@ -271,7 +297,7 @@ "Leave empty for default": "Deixe em branco para padrão", "Add a timestamp to the backup file names": "Adicionar um registro de data e hora aos nomes dos arquivos de backup", "Backup and Restore": "Backup e Restauração", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Habilitar API em segundo plano (Widgets e Compartilhamento do UniGetUI, porta 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Habilitar API em segundo plano (Widgets e Compartilhamento do UniGetUI, porta 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Aguarde até que o dispositivo esteja conectado à internet antes de tentar realizar tarefas que exijam conectividade à internet.", "Disable the 1-minute timeout for package-related operations": "Desativar o tempo limite de 1 minuto para operações relacionadas a pacotes", "Use installed GSudo instead of UniGetUI Elevator": "Usar o GSudo instalado em vez do UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Gerenciar configurações do UniGetUI", "Related settings": "Configurações relacionadas", - "Update WingetUI automatically": "Atualizar o UniGetUI automaticamente", + "Update UniGetUI automatically": "Atualizar o UniGetUI automaticamente", "Check for updates": "Verificar atualizações", "Install prerelease versions of UniGetUI": "Instalar versões de pré-lançamento do UniGetUI", "Manage telemetry settings": "Gerenciar configurações de telemetria", @@ -295,17 +321,17 @@ "Import": "Importar", "Export settings to a local file": "Exportar configurações para um arquivo local", "Export": "Exportar", - "Reset WingetUI": "Redefinir UniGetUI", "Reset UniGetUI": "Redefinir UniGetUI", "User interface preferences": "Preferências da interface do usuário", "Application theme, startup page, package icons, clear successful installs automatically": "Tema do aplicativo, página inicial, ícones dos pacotes, remover instalações concluídas automaticamente", "General preferences": "Preferências gerais", - "WingetUI display language:": "Idioma de exibição do UniGetUI:", + "UniGetUI display language:": "Idioma de exibição do UniGetUI:", "Is your language missing or incomplete?": "Seu idioma está faltando ou incompleto?", "Appearance": "Aparência", "UniGetUI on the background and system tray": "UniGetUi em segundo plano e área de notificação", "Package lists": "Listas de pacotes", "Close UniGetUI to the system tray": "Fechar o UniGetUi para a área de notificação", + "Manage UniGetUI autostart behaviour": "Gerenciar o comportamento de inicialização automática do UniGetUI", "Show package icons on package lists": "Exibir ícones dos pacotes nas listas de pacotes", "Clear cache": "Limpar cache", "Select upgradable packages by default": "Selecionar pacotes que podem ser atualizados por padrão", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Observe que nem todos os gerenciadores de pacotes podem suportar totalmente este recurso", "Proxy URL": "URL do proxy", "Enter proxy URL here": "Insira o URL do proxy aqui", + "Authenticate to the proxy with a user and a password": "Autenticar no proxy com um usuário e uma senha", + "Internet and proxy settings": "Configurações de internet e proxy", "Package manager preferences": "Preferências do gerenciador de pacotes", "Ready": "Pronto", "Not found": "Não encontrado", "Notification preferences": "Preferências de notificação", "Notification types": "Tipos de notificação", "The system tray icon must be enabled in order for notifications to work": "O ícone da área de notificação precisa estar ativado para que as notificações funcionem", - "Enable WingetUI notifications": "Ativar notificações do UniGetUI", + "Enable UniGetUI notifications": "Ativar notificações do UniGetUI", "Show a notification when there are available updates": "Mostrar uma notificação quando houver atualizações disponíveis", "Show a silent notification when an operation is running": "Exibir uma notificação silenciosa enquanto uma operação está em andamento", "Show a notification when an operation fails": "Exibir uma notificação quando uma operação falhar", "Show a notification when an operation finishes successfully": "Exibir uma notificação quando uma operação for concluída com sucesso", "Concurrency and execution": "Concorrência e execução", "Automatic desktop shortcut remover": "Removedor automático de atalhos na área de trabalho", + "Choose how many operations should be performed in parallel": "Escolha quantas operações devem ser executadas em paralelo", "Clear successful operations from the operation list after a 5 second delay": "Limpar as operações bem-sucedidas da lista após um atraso de 5 segundos", "Download operations are not affected by this setting": "Operações de download não são afetadas por esta configuração", "Try to kill the processes that refuse to close when requested to": "Tentar encerrar os processos que se recusam a fechar quando solicitados", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecione o executável a ser usado. A seguinte lista exibe os executáveis encontrados pelo UniGetUI", "Current executable file:": "Arquivo executável atual:", "Ignore packages from {pm} when showing a notification about updates": "Ignorar pacotes do {pm} ao exibir notificação sobre atualização", + "Update security": "Segurança das atualizações", + "Use global setting": "Usar configuração global", + "e.g. 10": "ex.: 10", + "{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", + "Override the global minimum update age for this package manager": "Substituir a idade mínima global de atualização para este gerenciador de pacotes", + "Minimum age for updates": "Idade mínima para atualizações", + "Custom minimum age (days)": "Idade mínima personalizada (dias)", "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, ", "Advanced options": "Opções avançadas", "Reset WinGet": "Redefinir WinGet", "This may help if no packages are listed": "Isso pode ajudar se nenhum pacote estiver listado", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Ativar limpeza do Scoop na inicialização", "Use system Chocolatey": "Usar Chocolatey do sistema", "Default vcpkg triplet": "Triplet padrão do vcpkg", + "Change vcpkg root location": "Alterar o local raiz do vcpkg", "Language, theme and other miscellaneous preferences": "Idioma, tema e outras preferências diversas", "Show notifications on different events": "Exibir notificações em diferentes eventos", "Change how UniGetUI checks and installs available updates for your packages": "Alterar como o UniGetUI verifica e instala atualizações disponíveis para seus pacotes", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Não instalar atualizações automaticamente quando a conexão de rede for limitada", "Do not automatically install updates when the device runs on battery": "Não instalar atualizações automaticamente quando o dispositivo estiver funcionando com bateria", "Do not automatically install updates when the battery saver is on": "Não instalar atualizações automaticamente com a economia de bateria ativada", + "Only show updates that are at least the specified number of days old": "Mostrar apenas atualizações com pelo menos o número especificado de dias", "Change how UniGetUI handles install, update and uninstall operations.": "Altere como o UniGetUI lida com as operações de instalação, atualização e desinstalação.", "Package Managers": "Gerenciadores de pacotes", "More": "Mais", - "WingetUI Log": "Log do UniGetUI", "Package Manager logs": "Logs do Gerenciador de Pacotes", "Operation history": "Histórico de operações", "Help": "Ajuda", + "Quit UniGetUI": "Sair do UniGetUI", "Order by:": "Classificar por:", "Name": "Nome", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Ambos", "Exact match": "Correspondência exata", "Show similar packages": "Mostrar pacotes semelhantes", + "Nothing to share": "Nada para compartilhar", + "Please select a package first.": "Selecione um pacote primeiro.", + "Share link copied": "Link de compartilhamento copiado", + "The share link for {0} has been copied to the clipboard.": "O link de compartilhamento de {0} foi copiado para a área de transferência.", "No results were found matching the input criteria": "Nenhum resultado foi encontrado que corresponda aos critérios informados", "No packages were found": "Nenhum pacote foi encontrado", "Loading packages": "Carregando pacotes", @@ -440,7 +483,11 @@ "Package bundle": "Coleção de pacotes", "Could not create bundle": "Não foi possível criar a coleção de pacotes", "The package bundle could not be created due to an error.": "Não foi possível criar a coleção de pacotes devido a um erro.", + "Unsaved changes": "Alterações não salvas", + "Discard changes": "Descartar alterações", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Há alterações não salvas no pacote atual. Deseja descartá-las?", "Bundle security report": "Relatório de segurança do pacote", + "The bundle contained restricted content": "O pacote continha conteúdo restrito", "Hooray! No updates were found.": "Uhu! Nenhuma atualização foi encontrada.", "Everything is up to date": "Tudo está atualizado", "Uninstall selected packages": "Desinstalar pacotes selecionados", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "O gerenciador de pacotes clássico para Windows. Você encontrará tudo lá.
Contém: Software Geral", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Um repositório repleto de ferramentas e executáveis projetados para o ecossistema .NET da Microsoft.
Contém: ferramentas e scripts relacionados ao .NET", "NuPkg (zipped manifest)": "NuPkg (manifesto compactado)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "O gerenciador de pacotes que faltava para macOS (ou Linux).
Contém: Fórmulas, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Gerenciador de pacotes do Node JS. Repleto de bibliotecas e outros utilitários que orbitam o mundo JavaScript
Contém: Bibliotecas JavaScript do Node e outros utilitários relacionados", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Gerenciador de bibliotecas do Python. Repleto de bibliotecas Python e outros utilitários relacionados ao Python
Contém: Bibliotecas Python e utilitários relacionados", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Gerenciador de pacotes do PowerShell. Encontre bibliotecas e scripts para expandir as capacidades do PowerShell
Contém: Módulos, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operação na fila (posição {0})...", "Click here for more details": "Clique aqui para mais detalhes", "Operation canceled by user": "Operação cancelada pelo usuário", + "Running PreOperation ({0}/{1})...": "Executando PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A PreOperation {0} de {1} falhou e foi marcada como necessária. Abortando...", + "PreOperation {0} out of {1} finished with result {2}": "A PreOperation {0} de {1} terminou com o resultado {2}", "Starting operation...": "Iniciando operação...", + "Running PostOperation ({0}/{1})...": "Executando PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A PostOperation {0} de {1} falhou e foi marcada como necessária. Abortando...", + "PostOperation {0} out of {1} finished with result {2}": "A PostOperation {0} de {1} terminou com o resultado {2}", "{package} installer download": "Download do instalador do {package}", "{0} installer is being downloaded": "O instalador do {0} está sendo baixado", "Download succeeded": "Download concluído", @@ -556,14 +610,12 @@ "Portable mode": "Modo portátil", "DEBUG BUILD": "COMPILAÇÃO DE DEPURAÇÃO", "Available Updates": "Atualizações Disponíveis", - "Show WingetUI": "Mostrar UniGetUI", + "Show UniGetUI": "Mostrar UniGetUI", "Quit": "Sair", "Attention required": "Requer atenção", "Restart required": "Reinicialização necessária", "1 update is available": "1 atualização está disponível", "{0} updates are available": "{0} atualizações disponíveis", - "WingetUI Homepage": "Página inicial do UniGetUI", - "WingetUI Repository": "Repositório do UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aqui você pode alterar o comportamento do UniGetUI em relação aos atalhos abaixo. Marcar um atalho fará com que o UniGetUI o exclua caso ele seja criado em uma futura atualização. Desmarcar manterá o atalho intacto", "Manual scan": "Verificação manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Atalhos existentes na sua área de trabalho serão verificados, e você precisará escolher quais manter e quais remover.", @@ -583,7 +635,6 @@ "Restart later": "Reiniciar mais tarde", "An error occurred:": "Ocorreu um erro:", "I understand": "Entendi", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Quando executado como administrador, TODAS as operações iniciadas pelo UniGetUI terão privilégios de administrador. Você ainda pode usar o programa, mas é altamente recomendável não executar o UniGetUI com privilégios de administrador.", "WinGet was repaired successfully": "O WinGet foi reparado com sucesso", "It is recommended to restart UniGetUI after WinGet has been repaired": "É recomendado reiniciar o UniGetUI após o WinGet ser reparado", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "OBSERVAÇÃO: esta solução de problemas pode ser desabilitada nas Configurações do UniGetUI, na seção WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Os seus pacotes serão adicionados ao conjunto. Você pode continuar adicionando pacotes ou exportar o conjunto.", "Which backup do you want to open?": "Qual backup você deseja abrir?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecione o backup que deseja abrir. Posteriormente, você poderá verificar quais pacotes/programas deseja restaurar.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Há operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Deseja continuar?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Há operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Deseja continuar?", "UniGetUI or some of its components are missing or corrupt.": "O UniGetUI ou alguns de seus componentes estão ausentes ou corrompidos.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "É altamente recomendável reinstalar o UniGetUI para resolver a situação.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Consulte os registros do UniGetUI para obter mais detalhes sobre os arquivos afetados", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Escreva aqui os nomes dos processos, separados por vírgulas (,)", "Unset or unknown": "Não definido ou desconhecido", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Consulte a saída da linha de comando ou o histórico de operações para mais informações sobre o problema.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não tem capturas de tela ou está faltando o ícone? Contribua para o UniGetUI adicionando os ícones e capturas de tela ausentes ao nosso banco de dados público e aberto.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não tem capturas de tela ou está faltando o ícone? Contribua para o UniGetUI adicionando os ícones e capturas de tela ausentes ao nosso banco de dados público e aberto.", "Become a contributor": "Torne-se um colaborador", "Save": "Salvar", "Update to {0} available": "Atualização para {0} disponível", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Habilitar a solução de problemas automática do WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Ativar solucionador de problemas do WinGet aprimorado [experimental]", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Adicionar atualizações com falha 'nenhuma atualização aplicável encontrada' à lista de atualizações ignoradas", - "Restart WingetUI to fully apply changes": "Reinicie o UniGetUI para aplicar todas as alterações", - "Restart WingetUI": "Reiniciar UniGetUI", "Invalid selection": "Seleção inválida", "No package was selected": "Nenhum pacote foi selecionado", "More than 1 package was selected": "Mais de 1 pacote foi selecionado", @@ -684,6 +733,37 @@ "Log out failed: ": "Falha ao sair:", "Package backup settings": "Configurações de backup do pacote", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Sobre o UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é um aplicativo que facilita o gerenciamento de seu software, fornecendo uma interface gráfica completa para seus gerenciadores de pacotes de linha de comando.", + "You have installed WingetUI Version {0}": "Você instalou a versão {0} do UniGetUI", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não seria possível sem a ajuda dos colaboradores. Obrigado a todos 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "O UniGetUI utiliza as seguintes bibliotecas. Sem elas, o UniGetUI não seria possível.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças aos tradutores voluntários. Obrigado 🤝", + "WingetUI Settings": "Configurações do UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Você pode precisar instalar {pm} para usá-lo com o UniGetUI.", + "Scoop Installer - WingetUI": "Instalador do Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Desinstalador do Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Limpando cache do Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI Versão {0}", + "WingetUI License": "Licença do UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "O uso do UniGetUI implica na aceitação da Licença MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Habilitar API em segundo plano (Widgets e Compartilhamento do UniGetUI, porta 7058)", + "Update WingetUI automatically": "Atualizar o UniGetUI automaticamente", + "Reset WingetUI": "Redefinir UniGetUI", + "WingetUI display language:": "Idioma de exibição do UniGetUI:", + "Manage WingetUI autostart behaviour": "Gerenciar o comportamento de inicialização automática do UniGetUI", + "Enable WingetUI notifications": "Ativar notificações do UniGetUI", + "WingetUI Log": "Log do UniGetUI", + "Show WingetUI": "Mostrar UniGetUI", + "WingetUI Homepage": "Página inicial do UniGetUI", + "WingetUI Repository": "Repositório do UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Quando executado como administrador, TODAS as operações iniciadas pelo UniGetUI terão privilégios de administrador. Você ainda pode usar o programa, mas é altamente recomendável não executar o UniGetUI com privilégios de administrador.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Há operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Deseja continuar?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não tem capturas de tela ou está faltando o ícone? Contribua para o UniGetUI adicionando os ícones e capturas de tela ausentes ao nosso banco de dados público e aberto.", + "Restart WingetUI to fully apply changes": "Reinicie o UniGetUI para aplicar todas as alterações", + "Restart WingetUI": "Reiniciar UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Gerenciar o comportamento de inicialização automática do UniGetUI no aplicativo Configurações", "(Number {0} in the queue)": "(Posição {0} na fila)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@thiagojramos, @ppvnf, @wanderleihuttel, @maisondasilva, @Rodrigo-Matsuura, @renanalencar", "0 packages found": "0 pacotes encontrados", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json index 232a5cd50e..2c5249d8f4 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_pt_PT.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Abortar desinstalação se comando pré-desinstalação falhar", "Command-line to run:": "Linha de comandos para correr:", "Save and close": "Salvar e fechar", + "General": "Geral", + "Architecture & Location": "Arquitetura e localização", + "Command-line": "Linha de comandos", + "Pre/Post install": "Pré/pós-instalação", "Run as admin": "Executar como administrador", "Interactive installation": "Instalação interativa ", "Skip hash check": "Ignorar verificação de hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Gerir atualizações ignoradas", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Os pacotes listados aqui não serão tidos em conta na verificação de atualizações. Clique duas vezes neles ou clique no botão à direita para parar de ignorar suas atualizações.", "Reset list": "Repôr lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Tem a certeza de que pretende repor a lista de atualizações ignoradas? Esta ação não pode ser revertida", + "No ignored updates": "Sem atualizações ignoradas", "Package Name": "Nome do Pacote", "Package ID": "ID do Pacote", "Ignored version": "Versão Ignorada", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Esta operação está a correr de forma interativa.", "You will likely need to interact with the installer.": "Provavelmente terá de interagir com o instalador.", "Integrity checks skipped": "Verificações de integridade ignoradas", + "Integrity checks will not be performed during this operation.": "As verificações de integridade não serão realizadas durante esta operação.", "Proceed at your own risk.": "Prossiga por sua conta e risco.", "Close": "Fechar", "Loading...": "A carregar...", @@ -120,16 +127,17 @@ "optional": "opcional", "UniGetUI {0} is ready to be installed.": "O UniGetUI {0} está pronto para ser instalado.", "The update process will start after closing UniGetUI": "A atualização será iniciada após fechar o UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Ao executar o UniGetUI como administrador, TODAS as operações iniciadas a partir do UniGetUI terão privilégios de administrador. Ainda pode utilizar o programa, mas recomendamos vivamente que não execute o UniGetUI com privilégios de administrador.", "Share anonymous usage data": "Partilhar dados de utilização anónimos", "UniGetUI collects anonymous usage data in order to improve the user experience.": "O UniGetUI coleta dados de uso anónimos para melhorar a experiência do utilizador.", "Accept": "Aceitar", - "You have installed WingetUI Version {0}": "Instalou o UniGetUI versão {0}", + "You have installed UniGetUI Version {0}": "Instalou o UniGetUI versão {0}", "Disclaimer": "Renúncia de responsabilidade", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "O UniGetUI não está relacionado com nenhum gestor de pacotes compatível. O UniGetUI é um projeto independente.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não teria sido possível sem a ajuda dos seus colaboradores. Obrigado a todos 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI usa as seguintes bibliotecas. Sem elas, o UniGetUI não teria sido possível.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não teria sido possível sem a ajuda dos seus colaboradores. Obrigado a todos 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI usa as seguintes bibliotecas. Sem elas, o UniGetUI não teria sido possível.", "{0} homepage": "{0} página inicial", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças a tradutores voluntários. Obrigado 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças a tradutores voluntários. Obrigado 🤝", "Verbose": "Detalhado", "1 - Errors": "1 - Erros", "2 - Warnings": "2 - Avisos", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Tem sessão iniciada como {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Boa! Cópias de segurança vai ser carregada para um gist privado na tua conta", "Select backup": "Selecionar cópia de segurança", - "WingetUI Settings": "Definições", + "UniGetUI Settings": "Definições do UniGetUI", "Allow pre-release versions": "Permitir versões pré-lançamento", "Apply": "Aplicar", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por razões de segurança, os argumentos personalizados da linha de comandos estão desativados por defeito. Aceda às definições de segurança do UniGetUI para alterar isto.", "Go to UniGetUI security settings": "Vai ás definições de segurança do UniGet UI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "As seguintes opções vão ser aplicadas por padrão cada vez um {0} pacote é instalado, atualizado ou desinstalado.", "Package's default": "Padrão do pacote", @@ -160,6 +169,7 @@ "Username": "Nome de utilizador", "Password": "Palavra-passe", "Credentials": "Credenciais", + "It is not guaranteed that the provided credentials will be stored safely": "Não é garantido que as credenciais fornecidas sejam armazenadas em segurança", "Partially": "Parcialmente", "Package manager": "Gestor de pacotes", "Compatible with proxy": "Compatível com proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} está ativo e pronto a funcionar", "{pm} version:": "{pm} versão:", "{pm} was not found!": "{pm} não foi encontrado!", - "You may need to install {pm} in order to use it with WingetUI.": "Pode ser necessário instalar {pm} para ser possível usá-lo com o UniGetUI.", - "Scoop Installer - WingetUI": "Instalador Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Desinstalador Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "A limpar a cache do Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Pode ser necessário instalar {pm} para ser possível usá-lo com o UniGetUI.", + "Scoop Installer - UniGetUI": "Instalador Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Desinstalador Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "A limpar a cache do Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reinicie o UniGetUI para aplicar totalmente as alterações", "Restart UniGetUI": "Reiniciar o UniGetUI", "Manage {0} sources": "Gerir {0} fontes", "Add source": "Adicionar fonte", "Add": "Adicionar", + "Source name": "Nome da fonte", + "Source URL": "URL da fonte", "Other": "Outro(a)", + "No minimum age": "Sem idade mínima", "1 day": "1 dia", "{0} days": "{0} dias", + "Custom...": "Personalizado...", "{0} minutes": "{0} minutos", "1 hour": "1 hora", "{0} hours": "{0} horas", "1 week": "1 semana", - "WingetUI Version {0}": "Versão UniGetUI {0}", + "Supports release dates": "Suporta datas de lançamento", + "Release date support per package manager": "Suporte de datas de lançamento por gestor de pacotes", + "UniGetUI Version {0}": "Versão UniGetUI {0}", "Search for packages": "Pesquisar pacotes", "Local": "Local", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Ativado", "Disabled": "Desabilitado", "More info": "Mais informações", + "GitHub account": "Conta GitHub", "Log in with GitHub to enable cloud package backup.": "Inicia sessão com o GitHub para ativar cópias de segurança de pacotes na nuvem.", "More details": "Mais detalhes", "Log in": "Iniciar sessão", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se tens a cópia de segurança na nuvem habilitada, vai ser guardada como um GitHub Gist nesta conta", "Log out": "Terminar sessão", + "About UniGetUI": "Sobre o UniGetUI", "About": "Sobre", "Third-party licenses": "Licenças de terceiros", "Contributors": "Contribuidores", @@ -212,6 +231,7 @@ "Manage shortcuts": "Gerir atalhos", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "O UniGetUI detetou os seguintes atalhos na área de trabalho que podem ser removidos automaticamente em futuras atualizações", "Do you really want to reset this list? This action cannot be reverted.": "Tem a certeza que deseja repor esta lista? Esta ação não pode ser revertida.", + "Open in explorer": "Abrir no Explorador", "Remove from list": "Remover da lista", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Quando novos atalhos são detetados, apagá-los automaticamente em vez de mostrar este diálogo.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "O UniGetUI coleta dados de utilização anónimos com o único propósito de compreender e melhor a experiência do utilizador.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aceita que o UniGetUI recolha e envie estatísticas de uso anónimas, com o único propósito de entender e melhorar a experiência do utilizador?", "Decline": "Rejeitar", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nenhuma informação pessoal é coletada nem enviada e, os dados coletados são anonimizados, de modo a que não possam ser rastreados até si.", - "About WingetUI": "Sobre o UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é uma aplicação que facilita a gestão do seu software, fornecendo uma interface gráfica completa para os seus gestores de pacotes de linha de comandos.", + "Toggle navigation panel": "Alternar painel de navegação", + "Minimize": "Minimizar", + "Maximize": "Maximizar", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é uma aplicação que facilita a gestão do seu software, fornecendo uma interface gráfica completa para os seus gestores de pacotes de linha de comandos.", "Useful links": "Links úteis", + "UniGetUI Homepage": "Página inicial do UniGetUI", "Report an issue or submit a feature request": "Reportar um problema ou submeter um pedido de um recurso", + "UniGetUI Repository": "Repositório do UniGetUI", "View GitHub Profile": "Ver perfil GitHub", - "WingetUI License": "Licença UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "A utilização do UniGetUI implica a aceitação da Licença MIT", + "UniGetUI License": "Licença UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "A utilização do UniGetUI implica a aceitação da Licença MIT", "Become a translator": "Torne-se num tradutor", "View page on browser": "Ver página no Browser", "Copy to clipboard": "Copiar para área de transferência", "Export to a file": "Exportar para um ficheiro", "Log level:": "Nível de registo:", "Reload log": "Recarregar log", + "Export log": "Exportar registo", + "UniGetUI Log": "Registo do UniGetUI", "Text": "Texto", "Change how operations request administrator rights": "Mudar como as operações pedem direitos de administrador", "Restrictions on package operations": "Restrições nas operações de pacotes", @@ -271,7 +297,7 @@ "Leave empty for default": "Deixar vazio para padrão", "Add a timestamp to the backup file names": "Adicionar data e hora aos nomes dos ficheiros de cópia de segurança", "Backup and Restore": "Cópia de segurança e restauro", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ativar api em segundo plano (UniGetUI Widgets and Sharing, porta 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Ativar api em segundo plano (UniGetUI Widgets and Sharing, porta 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Aguardar que o dispositivo esteja ligado à internet antes de tentar executar tarefas que requerem conexão à internet.", "Disable the 1-minute timeout for package-related operations": "Desativar o tempo limite de 1 minuto para operações relacionadas com pacotes", "Use installed GSudo instead of UniGetUI Elevator": "Usar GSudo instalado em vez do UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Gerir definições do UniGetUI", "Related settings": "Definições relacionadas", - "Update WingetUI automatically": "Atualizar o UniGetUI automaticamente", + "Update UniGetUI automatically": "Atualizar o UniGetUI automaticamente", "Check for updates": "Verificar atualizações", "Install prerelease versions of UniGetUI": "Instalar versões beta do UniGetUI", "Manage telemetry settings": "Gerir definições de telemetria", @@ -295,17 +321,17 @@ "Import": "Importar", "Export settings to a local file": "Exportar definições para um ficheiro local", "Export": "Exportar", - "Reset WingetUI": "Repor UniGetUI", "Reset UniGetUI": "Repôr UniGetUI", "User interface preferences": "Preferências da interface do utilizador", "Application theme, startup page, package icons, clear successful installs automatically": "Tema da aplicação, página de arranque, ícones de pacotes, limpar instalações bem-sucedidas automaticamente", "General preferences": "Preferências gerais", - "WingetUI display language:": "Idioma de exibição do UniGetUI:", + "UniGetUI display language:": "Idioma de exibição do UniGetUI:", "Is your language missing or incomplete?": "O seu idioma está em falta ou incompleto?", "Appearance": "Aparência", "UniGetUI on the background and system tray": "Manter o UniGetUI no fundo e na bandeja do sistema", "Package lists": "Listas de pacotes", "Close UniGetUI to the system tray": "Fechar o UniGetUI para a bandeja do sistema", + "Manage UniGetUI autostart behaviour": "Gerir o comportamento de arranque automático do UniGetUI", "Show package icons on package lists": "Mostrar ícones de pacotes em listas de pacotes", "Clear cache": "Limpar cache", "Select upgradable packages by default": "Selecione os pacotes atualizáveis por defeito", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Por favor tenha em conta que nem todos os gestores de pacotes conseguem suportar totalmente esta funcionalidade ", "Proxy URL": "URL do proxy", "Enter proxy URL here": "Introduza o URL do proxy aqui", + "Authenticate to the proxy with a user and a password": "Autenticar no proxy com um utilizador e uma palavra-passe", + "Internet and proxy settings": "Definições de internet e proxy", "Package manager preferences": "Preferências do gestor de pacotes", "Ready": "Pronto.", "Not found": "Não encontrado", "Notification preferences": "Preferências de notificações", "Notification types": "Tipos de notificação", "The system tray icon must be enabled in order for notifications to work": "O ícone da bandeja do sistema deve estar ativo para que as notificações funcionem", - "Enable WingetUI notifications": "Ativar notificações do UniGetUI", + "Enable UniGetUI notifications": "Ativar notificações do UniGetUI", "Show a notification when there are available updates": "Mostrar uma notificação quando houver atualizações disponíveis", "Show a silent notification when an operation is running": "Mostrar uma notificação silenciosa quando uma operação está a decorrer", "Show a notification when an operation fails": "Mostrar uma notificação quando uma operação falha", "Show a notification when an operation finishes successfully": "Mostrar uma notificação quando uma operação é completada com sucesso", "Concurrency and execution": "Simultaneidade e execução", "Automatic desktop shortcut remover": "Remoção automática de atalhos do ambiente de trabalho", + "Choose how many operations should be performed in parallel": "Escolha quantas operações devem ser executadas em paralelo", "Clear successful operations from the operation list after a 5 second delay": "Limpar as operações bem-sucedidas da lista de operações após 5 segundos", "Download operations are not affected by this setting": "Operações de descarga não são afetadas por esta definição", "Try to kill the processes that refuse to close when requested to": "Tenta matar os processos que se recusam a fechar após pedido", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Seleciona o executável que vai ser executado. A lista seguinte mostra os executáveis encontrados pelo UniGetUI", "Current executable file:": "Ficheiro executável atual:", "Ignore packages from {pm} when showing a notification about updates": "Ignorar pacotes de {pm} ao mostrar uma notificação sobre atualizações", + "Update security": "Segurança das atualizações", + "Use global setting": "Usar definição global", + "e.g. 10": "p. ex., 10", + "{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", + "Override the global minimum update age for this package manager": "Substituir a idade mínima global das atualizações para este gestor de pacotes", + "Minimum age for updates": "Idade mínima das atualizações", + "Custom minimum age (days)": "Idade mínima personalizada (dias)", "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, ", "Advanced options": "Opções avançadas", "Reset WinGet": "Repôr WinGet", "This may help if no packages are listed": "Isto pode ajudar se nenhum pacote for listado", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Ativar a limpeza do Scoop ao iniciar", "Use system Chocolatey": "Utilizar do Chocolatey do sistema", "Default vcpkg triplet": "Trio vcpkg por defeito", + "Change vcpkg root location": "Alterar a localização da raiz do vcpkg", "Language, theme and other miscellaneous preferences": "Idioma, tema e outras preferências", "Show notifications on different events": "Mostrar notificações sobre eventos diferentes", "Change how UniGetUI checks and installs available updates for your packages": "Altera a forma como o UniGetUI verifica e instala as atualizações disponíveis para os seus pacotes", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Não instalar atualizações automaticamente quando a ligação à rede é limitada", "Do not automatically install updates when the device runs on battery": "Não instalar atualizações automáticas quando o dispositivo estiver a usar bateria", "Do not automatically install updates when the battery saver is on": "Não instalar atualizações automaticamente quando a poupança de bateria está ativa", + "Only show updates that are at least the specified number of days old": "Mostrar apenas atualizações com pelo menos o número de dias especificado", "Change how UniGetUI handles install, update and uninstall operations.": "Mudar como o UniGetUI lida com as operações de instalação, atualização e desinstalação.", "Package Managers": "Gestores de pacotes", "More": "Mais", - "WingetUI Log": "Log do UniGetUI", "Package Manager logs": "Logs do gestor de pacotes", "Operation history": "Histórico de operações ", "Help": "Ajuda", + "Quit UniGetUI": "Sair do UniGetUI", "Order by:": "Ordenar por:", "Name": "Nome", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Ambos", "Exact match": "Correspondência exata", "Show similar packages": "Mostrar pacotes similares", + "Nothing to share": "Nada para partilhar", + "Please select a package first.": "Selecione primeiro um pacote.", + "Share link copied": "Ligação de partilha copiada", + "The share link for {0} has been copied to the clipboard.": "A ligação de partilha de {0} foi copiada para a área de transferência.", "No results were found matching the input criteria": "Nenhum resultado encontrado correspondente aos critérios de pesquisa", "No packages were found": "Nenhum pacote encontrado", "Loading packages": "A carregar pacotes", @@ -440,7 +483,11 @@ "Package bundle": "Conjunto de pacotes", "Could not create bundle": "Não foi possível criar o conjunto de pacotes", "The package bundle could not be created due to an error.": "O conjunto de pacotes não pôde ser criado devido a um erro.", + "Unsaved changes": "Alterações não guardadas", + "Discard changes": "Descartar alterações", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Tem alterações não guardadas no conjunto atual. Pretende descartá-las?", "Bundle security report": "Relatório de segurança do conjunto", + "The bundle contained restricted content": "O conjunto continha conteúdo restrito", "Hooray! No updates were found.": "Viva! Nenhuma atualização encontrada!", "Everything is up to date": "Todos os pacotes estão atualizados", "Uninstall selected packages": "Desinstalar selecionados", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "O gestor de pacotes mais conhecido para Windows. Irá encontrar de tudo lá.
Contém: Software Geral", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Um repositório cheio de ferramentas projetadas com o ecossistema .NET da Microsoft em mente.
Contém: Ferramentas e scripts relacionado(a)s com o .NET", "NuPkg (zipped manifest)": "NuPkg (manifesto comprimido)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "O gestor de pacotes em falta para macOS (ou Linux).
Contém: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Gestor de pacotes do Node JS. Cheio de bibliotecas e outros utilitários no mundo Javascript.
Contém: Bibliotecas Javascript do Node e outros utilitários relacionados", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Gestor de bibliotecas do Python. Cheio de bibliotecas Python e outros utilitários relacionados com o Python.
Contém: Bibliotecas Python e utilitários relacionados", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Gestor de pacotes do PowerShell. Encontrar bibliotecas e scripts para expandir os recursos do PowerShell.
Contém: Módulos, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operação em fila de espera (posição {0})", "Click here for more details": "Clique aqui para mais detalhes", "Operation canceled by user": "Operação cancelada pelo utilizador", + "Running PreOperation ({0}/{1})...": "A executar PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A PreOperation {0} de {1} falhou e foi marcada como necessária. A abortar...", + "PreOperation {0} out of {1} finished with result {2}": "A PreOperation {0} de {1} terminou com o resultado {2}", "Starting operation...": "A iniciar a operação...", + "Running PostOperation ({0}/{1})...": "A executar PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "A PostOperation {0} de {1} falhou e foi marcada como necessária. A abortar...", + "PostOperation {0} out of {1} finished with result {2}": "A PostOperation {0} de {1} terminou com o resultado {2}", "{package} installer download": "Descarregar instalador do {package}", "{0} installer is being downloaded": "O instalador {0} está a ser descarregado", "Download succeeded": "Descarga bem sucedida", @@ -556,14 +610,12 @@ "Portable mode": "Modo portátil", "DEBUG BUILD": "COMPILAÇÃO DE DEPURAÇÃO", "Available Updates": "Atualizações disponíveis", - "Show WingetUI": "Mostrar o UniGetUI", + "Show UniGetUI": "Mostrar o UniGetUI", "Quit": "Sair", "Attention required": "Atenção necessária", "Restart required": "É necessário reiniciar", "1 update is available": "1 atualização disponível", "{0} updates are available": "{0} atualizações disponíveis", - "WingetUI Homepage": "Página do UniGetUI", - "WingetUI Repository": "Repositório UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Aqui pode alterar o comportamento do UniGetUI em relação aos seguintes atalhos. Marcar um atalho fará com que o UniGetUI o apague se for criado numa atualização futura. Desmarcá-lo manterá o atalho intacto", "Manual scan": "Pesquisa manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Atalhos existentes na área de trabalho serão analizados e, terá de escolher quais deseja manter e quais deseja remover.", @@ -583,7 +635,6 @@ "Restart later": "Reiniciar mais tarde", "An error occurred:": "Ocorreu um erro:", "I understand": "Entendi", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Ao executar o UniGetUI como administrador, TODAS as operações iniciadas a partir do UniGetUI terão privilégios de administrador. Ainda pode usar o programa, mas é altamente recomendável não executar o UniGetUI com privilégios de administrador.", "WinGet was repaired successfully": "O WinGet foi reparado com sucesso", "It is recommended to restart UniGetUI after WinGet has been repaired": "É recomendado reiniciar o UniGetUI após o WinGet ter sido reparado", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Esta resolução de problemas pode ser desativada nas definições do UniGetUI, na secção WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Os seus pacotes foram adicionados ao conjunto. Pode continuar a adicionar pacotes ou, exportar o conjunto.", "Which backup do you want to open?": "Que cópia de segurança quer abrir?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Seleciona a cópia de segurança que queres abrir. Mais tarde, vais poder rever quais os pacotes/programas que queres restaurar.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Existem operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Quer continuar?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Existem operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Quer continuar?", "UniGetUI or some of its components are missing or corrupt.": "O UniGetUI ou alguns dos seus componentes estão a faltar ou corrompidos.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "É muito recomendado que reinstales o UniGetUI para resolver esta situação.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Consulte os registos do UniGetUI para obter mais detalhes sobre o(s) ficheiro(s) afetado(s)", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Escreve aqui o nome(s) do(s) processo(s), separado por virgulas (,)", "Unset or unknown": "Não selecionado ou desconhecido", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Por fovar, verifique o output da linha de comando ou o Histórico de Operações para obter mais informações sobre o problema.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não possui capturas de ecrã ou o ícone está em falta? Contribua para o UniGetUI adicionando os ícones e capturas de ecrã ausentes à nossa base de dados pública e aberta.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não possui capturas de ecrã ou o ícone está em falta? Contribua para o UniGetUI adicionando os ícones e capturas de ecrã ausentes à nossa base de dados pública e aberta.", "Become a contributor": "Torne-se num contribuidor", "Save": "Guardar", "Update to {0} available": "Atualização para {0} disponível", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Ativar a resolução de problemas automática do WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Ativar um solucionador de problemas melhorado [experimental] do UniGetUI", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Adicionar atualizações que falham com o erro \"nenhuma atualização encontrada\" à lista de atualizações ignoradas.", - "Restart WingetUI to fully apply changes": "Reinicia o UniGetUI para aplicar as alterações", - "Restart WingetUI": "Reiniciar UniGetUI", "Invalid selection": "Selecção invalida", "No package was selected": "Sem pacotes selecionados", "More than 1 package was selected": "Mais de 1 pacote foi selecionado", @@ -684,6 +733,37 @@ "Log out failed: ": "Falha ao terminar sessão:", "Package backup settings": "Definições da cópia de segurança de pacotes", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Sobre o UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "O UniGetUI é uma aplicação que facilita a gestão do seu software, fornecendo uma interface gráfica completa para os seus gestores de pacotes de linha de comandos.", + "You have installed WingetUI Version {0}": "Instalou o UniGetUI versão {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "O UniGetUI não teria sido possível sem a ajuda dos seus colaboradores. Obrigado a todos 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI usa as seguintes bibliotecas. Sem elas, o UniGetUI não teria sido possível.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "O UniGetUI foi traduzido para mais de 40 idiomas graças a tradutores voluntários. Obrigado 🤝", + "WingetUI Settings": "Definições", + "You may need to install {pm} in order to use it with WingetUI.": "Pode ser necessário instalar {pm} para ser possível usá-lo com o UniGetUI.", + "Scoop Installer - WingetUI": "Instalador Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Desinstalador Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "A limpar a cache do Scoop - UniGetUI", + "WingetUI Version {0}": "Versão UniGetUI {0}", + "WingetUI License": "Licença UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "A utilização do UniGetUI implica a aceitação da Licença MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Ativar api em segundo plano (UniGetUI Widgets and Sharing, porta 7058)", + "Update WingetUI automatically": "Atualizar o UniGetUI automaticamente", + "Reset WingetUI": "Repor UniGetUI", + "WingetUI display language:": "Idioma de exibição do UniGetUI:", + "Manage WingetUI autostart behaviour": "Gerir o comportamento de arranque automático do UniGetUI", + "Enable WingetUI notifications": "Ativar notificações do UniGetUI", + "WingetUI Log": "Log do UniGetUI", + "Show WingetUI": "Mostrar o UniGetUI", + "WingetUI Homepage": "Página do UniGetUI", + "WingetUI Repository": "Repositório UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "O UniGetUI foi executado como administrador, o que não é recomendado. Ao executar o UniGetUI como administrador, TODAS as operações iniciadas a partir do UniGetUI terão privilégios de administrador. Ainda pode usar o programa, mas é altamente recomendável não executar o UniGetUI com privilégios de administrador.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Existem operações em andamento. Sair do UniGetUI pode fazer com que elas falhem. Quer continuar?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Este pacote não possui capturas de ecrã ou o ícone está em falta? Contribua para o UniGetUI adicionando os ícones e capturas de ecrã ausentes à nossa base de dados pública e aberta.", + "Restart WingetUI to fully apply changes": "Reinicia o UniGetUI para aplicar as alterações", + "Restart WingetUI": "Reiniciar UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Gerir o comportamento de inicialização automática do UniGetUI a partir da aplicação Deffinições do Windows", "(Number {0} in the queue)": "(Número {0} na fila)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Tiago_Ferreira, @PoetaGA, @Putocoroa, @100Nome, @NimiGames68", "0 packages found": "Nenhum pacote encontrado", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json index d14bee8174..6109e9ae3b 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ro.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Anulează dezinstalarea dacă comanda pre-dezinstalare eșuează.", "Command-line to run:": "Linia de comandă de rulat:", "Save and close": "Salvează și închide", + "General": "Generale", + "Architecture & Location": "Arhitectură și locație", + "Command-line": "Linie de comandă", + "Pre/Post install": "Pre/Post instalare", "Run as admin": "Rulează ca administrator", "Interactive installation": "Instalare interactivă", "Skip hash check": "Omite verificarea sumei de control", @@ -71,6 +75,8 @@ "Manage ignored updates": "Administrează actualizările ignorate", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pachetele enumerate aici nu vor fi luate în considerare la verificarea actualizărilor. Fă dublu clic pe ele sau fă clic pe butonul din dreapta lor pentru a nu mai mai ignora actualizările.", "Reset list": "Resetează lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Chiar dorești să resetezi lista actualizărilor ignorate? Această acțiune nu poate fi anulată", + "No ignored updates": "Nicio actualizare ignorată", "Package Name": "Nume pachet", "Package ID": "ID pachet", "Ignored version": "Versiune ignorată", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Această operație este rulată interactiv.", "You will likely need to interact with the installer.": "S-ar putea să trebuiască să interacționezi cu instalatorul.", "Integrity checks skipped": "Verificările de integritate au fost omise", + "Integrity checks will not be performed during this operation.": "Verificările de integritate nu vor fi efectuate în timpul acestei operații.", "Proceed at your own risk.": "Continuă pe riscul tău.", "Close": "Închide", "Loading...": "Se încarcă...", @@ -120,16 +127,17 @@ "optional": "opțional", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} este gata pentru a fi instalat.", "The update process will start after closing UniGetUI": "Procesul de actualizare va porni după închiderea UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI a fost pornit ca administrator, ceea ce nu este recomandat. Când rulezi UniGetUI ca administrator, FIECARE operație lansată din UniGetUI va avea privilegii de administrator. Poți folosi programul în continuare, dar îți recomandăm insistent să nu rulezi UniGetUI cu privilegii de administrator.", "Share anonymous usage data": "Partajează date de utilizare anonime", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI colectează date de utilizare anonime pentru a îmbunătăți experiența utilizatorilor.", "Accept": "Acceptă", - "You have installed WingetUI Version {0}": "Ai instalat UniGetUI versiunea {0}", + "You have installed UniGetUI Version {0}": "Ai instalat UniGetUI versiunea {0}", "Disclaimer": "Negarea responsabilității", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nu este înrudit cu niciunul dintre managerele de pachete. UniGetUI este un proiect independent.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nu ar fi fost posibil fără ajutorul contribuitorilor. Mulțumesc vouă, tuturor 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI folosește următoarele biblioteci. Fără acestea, UniGetUI nu ar fi fost existat.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nu ar fi fost posibil fără ajutorul contribuitorilor. Mulțumesc vouă, tuturor 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI folosește următoarele biblioteci. Fără ele, UniGetUI nu ar fi fost existat.", "{0} homepage": "Pagina principală a {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI a fost tradus în mai mult de 40 de limbi mulțumită voluntarilor. Mulțumesc🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI a fost tradus în mai mult de 40 de limbi mulțumită voluntarilor. Mulțumesc🤝", "Verbose": "Verbos", "1 - Errors": "1 - Erori", "2 - Warnings": "2 - Avertismente", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Ești autentificat ca {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Fain! Backup-urile se vor încărca automat într-un gist privat în contul tău", "Select backup": "Alege backup", - "WingetUI Settings": "Setări UniGetUI", + "UniGetUI Settings": "Setări UniGetUI", "Allow pre-release versions": "Permite versiuni beta", "Apply": "Aplică", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Din motive de securitate, argumentele personalizate din linia de comandă sunt dezactivate implicit. Mergi la setările de securitate UniGetUI pentru a schimba acest lucru.", "Go to UniGetUI security settings": "Mergi la setările de securitate UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Următoarele opțiuni vor fi aplicate implicit de fiecare dată când un pachet {0} este instalat, actualizat sau dezinstalat.", "Package's default": "Implicitele pachetului", @@ -160,6 +169,7 @@ "Username": "Nume utilizator", "Password": "Parolă", "Credentials": "Acreditări", + "It is not guaranteed that the provided credentials will be stored safely": "Nu este garantat că acreditările furnizate vor fi stocate în siguranță", "Partially": "Parțial", "Package manager": "Manager de pachete", "Compatible with proxy": "Compatibil cu proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} este activat și gata de lucru", "{pm} version:": "{pm} versiunea:", "{pm} was not found!": "{pm} nu a fost găsit!", - "You may need to install {pm} in order to use it with WingetUI.": "Ar putea fi necesar să instalezi {pm} pentru a-l utiliza cu UniGetUI.", - "Scoop Installer - WingetUI": "Instalator Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Dezinstalator Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Se curăță cache-ul pentru Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Ar putea fi necesar să instalezi {pm} pentru a-l utiliza cu UniGetUI.", + "Scoop Installer - UniGetUI": "Instalator Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Dezinstalator Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Se curăță cache-ul pentru Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Repornește UniGetUI pentru a aplica complet modificările", "Restart UniGetUI": "Repornește UniGetUI", "Manage {0} sources": "Administrează {0} surse", "Add source": "Adaugă sursă", "Add": "Adaugă", + "Source name": "Nume sursă", + "Source URL": "URL sursă", "Other": "Altele", + "No minimum age": "Fără vechime minimă", "1 day": "1 zi", "{0} days": "{0} zile", + "Custom...": "Personalizat...", "{0} minutes": "{0} minute", "1 hour": "o oră", "{0} hours": "{0} ore", "1 week": "o săptămână", - "WingetUI Version {0}": "Versiunea UniGetUI {0}", + "Supports release dates": "Suportă date de lansare", + "Release date support per package manager": "Suport pentru date de lansare per manager de pachete", + "UniGetUI Version {0}": "Versiunea UniGetUI {0}", "Search for packages": "Caută pachete", "Local": "La nivel local", "OK": "Bine", @@ -200,11 +217,13 @@ "Enabled": "Activat", "Disabled": "Dezactivat", "More info": "Mai multe informații", + "GitHub account": "Cont GitHub", "Log in with GitHub to enable cloud package backup.": "Autentifică-te cu GitHub pentru a activa backup de pachete în cloud.", "More details": "Mai multe detalii", "Log in": "Autentifică-te", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Dacă ai activat backup în cloud, acesta va fi salvat ca un GitHub Gist în acest cont", "Log out": "Deconectează-te", + "About UniGetUI": "Despre UniGetUI", "About": "Despre", "Third-party licenses": "Licențe terțe", "Contributors": "Contribuitori", @@ -212,6 +231,7 @@ "Manage shortcuts": "Administrează scurtăturile", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI a detectat următoarele scurtături pe spațiul de lucru care pot fi șterse automat la actualizările viitoare", "Do you really want to reset this list? This action cannot be reverted.": "Chiar vrei să resetezi această listă? Această acțiune nu poate fi anulată.", + "Open in explorer": "Deschide în Explorer", "Remove from list": "Elimină din listă", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Când noi scurtături sunt detectate, șterge-le automat în loc de a arăta acest dialog.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI colectează date de utilizare anonime cu unicul scop de a înțelege și a îmbunătăți experiența utilizatorilor.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Accepți ca UniGetUI să colecteze și să trimită statistici de utilizare anonime, cu unicul scop de a înțelege și îmbunătăți experiența utilizatorilor?", "Decline": "Refuză", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nicio informație personală nu este colectată sau trimisă, iar datele colectate sunt anonimizate, deci nu pot fi asociate cu tine.", - "About WingetUI": "Despre UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI este o aplicație care face managementul software-ului instalat mai ușor aducând o interfață grafică comună tuturor managerelor de pachete în linie de comandă.", + "Toggle navigation panel": "Comută panoul de navigare", + "Minimize": "Minimizează", + "Maximize": "Maximizează", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI este o aplicație care face managementul software-ului instalat mai ușor aducând o interfață grafică comună tuturor managerelor de pachete în linie de comandă.", "Useful links": "Legături utile", + "UniGetUI Homepage": "Pagina principală UniGetUI", "Report an issue or submit a feature request": "Raportează o problemă sau creează o cerere pentru o funcție nouă", + "UniGetUI Repository": "Repozitoriul UniGetUI", "View GitHub Profile": "Vezi profil GitHub", - "WingetUI License": "Licență UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Folosirea UniGetUI implică acceptarea licenței MIT.", + "UniGetUI License": "Licență UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Folosirea UniGetUI implică acceptarea licenței MIT.", "Become a translator": "Devino un traducător", "View page on browser": "Vezi pagina în navigatorul web", "Copy to clipboard": "Copiază în clipboard", "Export to a file": "Exportă într-un fișier", "Log level:": "Nivel jurnalizare:", "Reload log": "Reîncarcă jurnalul", + "Export log": "Exportă jurnalul", + "UniGetUI Log": "Jurnal UniGetUI", "Text": "Textual", "Change how operations request administrator rights": "Schimbă modul cum operațiile cer drepturi de administrator", "Restrictions on package operations": "Restricții asupra operațiilor cu pachete", @@ -271,7 +297,7 @@ "Leave empty for default": "Lasă liber pentru valoarea implicită", "Add a timestamp to the backup file names": "Adaugă data și ora în numele copiei de siguranță", "Backup and Restore": "Backup și restaurare", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activează API în fundal (Widgets for UniGetUI and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Activează API în fundal (Widgets for UniGetUI and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Așteaptă ca dispozitivul să fie conectat la internet înainte să rulezi sarcini care necesită o conexiune la internet.", "Disable the 1-minute timeout for package-related operations": "Dezactivează întârzierea de 1 minut pentru operațiile legate de pachete", "Use installed GSudo instead of UniGetUI Elevator": "Folosește GSudo instalat în loc de UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrie", "Manage UniGetUI settings": "Administrează setările UniGetUI", "Related settings": "Setări înrudite", - "Update WingetUI automatically": "Actualizează UniGetUI automat", + "Update UniGetUI automatically": "Actualizează UniGetUI automat", "Check for updates": "Verifică pentru actualizări", "Install prerelease versions of UniGetUI": "Instalează versiuni în fază de testare ale UniGetUI", "Manage telemetry settings": "Administrează setări telemetrie", @@ -295,17 +321,17 @@ "Import": "Importă", "Export settings to a local file": "Exportă setările într-un fișier local", "Export": "Exportă", - "Reset WingetUI": "Resetează UniGetUI", "Reset UniGetUI": "Resetează UniGetUI", "User interface preferences": "Preferințele interfeței utilizatorului", "Application theme, startup page, package icons, clear successful installs automatically": "Tema aplicației, pagina de pornire, pictogramele pachetelor, elimină instalările reușite automat", "General preferences": "Preferințe generale", - "WingetUI display language:": "Limba de afișare pentru UniGetUI:", + "UniGetUI display language:": "Limba de afișare pentru UniGetUI:", "Is your language missing or incomplete?": "Lipsește limba ta sau este incompletă?", "Appearance": "Aspect", "UniGetUI on the background and system tray": "UniGetUI în fundal și zona de notificări a sistemului", "Package lists": "Liste de pachete", "Close UniGetUI to the system tray": "Închide UniGetUI în tăvița sistemului", + "Manage UniGetUI autostart behaviour": "Gestionează comportamentul de pornire automată al UniGetUI", "Show package icons on package lists": "Afișează pictogramele pachetelor în listele de pachete", "Clear cache": "Golește cache-ul", "Select upgradable packages by default": "Selectează pachetele actualizabile în mod implicit", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Te rog ia aminte că nu toți managerii de pachete pot suporta această funcție", "Proxy URL": "URL proxy", "Enter proxy URL here": "Introdu URL proxy aici", + "Authenticate to the proxy with a user and a password": "Autentifică-te la proxy cu un utilizator și o parolă", + "Internet and proxy settings": "Setări Internet și proxy", "Package manager preferences": "Preferințe manageri pachete", "Ready": "Pregătit", "Not found": "Negăsit", "Notification preferences": "Preferințe notificări", "Notification types": "Tipuri de notificări", "The system tray icon must be enabled in order for notifications to work": "Pictograma din tăvița sistemului trebuie să fie activată pentru a putea primi notificări", - "Enable WingetUI notifications": "Activează notificările de la UniGetUI", + "Enable UniGetUI notifications": "Activează notificările de la UniGetUI", "Show a notification when there are available updates": "Arată o notificare când există actualizări disponibile", "Show a silent notification when an operation is running": "Afișează o notificare silențioasă când se rulează o operațiune", "Show a notification when an operation fails": "Afișează o notificare dacă o operație eșuează", "Show a notification when an operation finishes successfully": "Afișează o notificare dacă o operație se finalizează cu succes", "Concurrency and execution": "Concurență și execuție", "Automatic desktop shortcut remover": "Eliminarea automată a scurtăturilor de pe spațiul de lucru", + "Choose how many operations should be performed in parallel": "Alege câte operații să fie efectuate în paralel", "Clear successful operations from the operation list after a 5 second delay": "Curăță operațiile terminate cu succes din lista de operații după 5 secunde", "Download operations are not affected by this setting": "Operațiile de descărcare nu sunt afectate de această setare", "Try to kill the processes that refuse to close when requested to": "Încearcă să ucizi procesul care refuză a fi închis la cerere.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Selectează executabilul de folosit. Lista următoare arată executabilele găsite de UniGetUI", "Current executable file:": "Fișierul executabil curent:", "Ignore packages from {pm} when showing a notification about updates": "Ignoră pachetele din {pm} când este arătată o notificare despre actualizări", + "Update security": "Securitatea actualizărilor", + "Use global setting": "Folosește setarea globală", + "e.g. 10": "ex. 10", + "{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", + "Override the global minimum update age for this package manager": "Suprascrie vechimea minimă globală a actualizărilor pentru acest manager de pachete", + "Minimum age for updates": "Vechimea minimă pentru actualizări", + "Custom minimum age (days)": "Vechime minimă personalizată (zile)", "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, ", "Advanced options": "Opțiuni avansate", "Reset WinGet": "Resetează WinGet", "This may help if no packages are listed": "Acest lucru poate ajuta dacă nu este listat niciun pachet", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Activează curățarea pentru Scoop la pornire", "Use system Chocolatey": "Folosește Chocolatey de sistem", "Default vcpkg triplet": "Triplet vcpkg implicit", + "Change vcpkg root location": "Schimbă locația rădăcină pentru vcpkg", "Language, theme and other miscellaneous preferences": "Limbă, temă și alte preferințe diverse", "Show notifications on different events": "Arată notificări pentru diverse evenimente", "Change how UniGetUI checks and installs available updates for your packages": "Schimbă modul în care UniGetUI verifică și instalează actualizările disponibile pentru pachetele tale", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Nu instala actualizările automat când conexiunea la internet este monitorizată", "Do not automatically install updates when the device runs on battery": "Nu instala automat actualizările când dispozitivul rulează pe baterie", "Do not automatically install updates when the battery saver is on": "Nu instala actualizările automat când economizorul de baterie este activat", + "Only show updates that are at least the specified number of days old": "Afișează doar actualizările care au cel puțin numărul de zile specificat", "Change how UniGetUI handles install, update and uninstall operations.": "Schimbă modul cum abordează UniGetUI operațiile de instalare, actualizare și dezinstalare.", "Package Managers": "Manageri pachete", "More": "Mai mult", - "WingetUI Log": "Jurnal UniGetUI", "Package Manager logs": "Jurnale manager de pachete", "Operation history": "Istoric operații", "Help": "Ajutor", + "Quit UniGetUI": "Închide UniGetUI", "Order by:": "Ordonează după:", "Name": "Nume", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Amândouă", "Exact match": "Potrivire exactă", "Show similar packages": "Pachete similare", + "Nothing to share": "Nimic de partajat", + "Please select a package first.": "Te rog selectează mai întâi un pachet.", + "Share link copied": "Linkul de partajare a fost copiat", + "The share link for {0} has been copied to the clipboard.": "Linkul de partajare pentru {0} a fost copiat în clipboard.", "No results were found matching the input criteria": "Nu s-au găsit rezultate potrivite cu criteriile selectate", "No packages were found": "Nu au fost găsite pachete", "Loading packages": "Se încarcă pachetele", @@ -440,7 +483,11 @@ "Package bundle": "Grup pachete", "Could not create bundle": "Nu s-a putut crea grupul", "The package bundle could not be created due to an error.": "Grupul de pachete nu a putut fi creat din cauza unei erori.", + "Unsaved changes": "Modificări nesalvate", + "Discard changes": "Renunță la modificări", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Ai modificări nesalvate în pachetul curent. Vrei să renunți la ele?", "Bundle security report": "Raport de securitate grup", + "The bundle contained restricted content": "Pachetul a conținut conținut restricționat", "Hooray! No updates were found.": "Ura! Nu a fost găsită nicio actualizare!", "Everything is up to date": "Totul este la zi", "Uninstall selected packages": "Dezinstalează pachetele selectate", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Managerul de pachete clasic pentru Windows. Vei găsi totul acolo.
Conține: Programe generale", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Un repository plin de unelte și executabile concepute pe baza ecosistemului Microsoft .NET.
Conține: Unelte și scripturi legate de .NET", "NuPkg (zipped manifest)": "NuPkg (manifest zip)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Managerul de pachete lipsă pentru macOS (sau Linux).
Conține: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Managerul de pachete al lui Node JS. Plin de biblioteci și alte utilitare care orbitează lumea javascript
Conține: Biblioteci javascript Node și alte utilitare conexe", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Managerul bibliotecii Python. Plin de biblioteci Python și alte utilitare legate de Python
Conține: Biblioteci Python și utilități aferente", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Managerul de pachete al PowerShell. Găsește biblioteci și scripturi pentru a extinde capabilitățile PowerShell
Conține: Module, Scripturi, Comenzi", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operație în coadă (poziția {0})...", "Click here for more details": "Clic aici pentru mai multe detalii", "Operation canceled by user": "Operația a fost anulată de utilizator", + "Running PreOperation ({0}/{1})...": "Se rulează PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} din {1} a eșuat și a fost marcată ca necesară. Se anulează...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} din {1} s-a încheiat cu rezultatul {2}", "Starting operation...": "Se începe operația...", + "Running PostOperation ({0}/{1})...": "Se rulează PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} din {1} a eșuat și a fost marcată ca necesară. Se anulează...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} din {1} s-a încheiat cu rezultatul {2}", "{package} installer download": "Descărcare installer {package}", "{0} installer is being downloaded": "Instalatorul {0} este în curs de descărcare", "Download succeeded": "Descărcarea a fost realizată", @@ -556,14 +610,12 @@ "Portable mode": "Mod portabil", "DEBUG BUILD": "BUILD DEPANARE", "Available Updates": "Actualizări disponibile", - "Show WingetUI": "Arată UniGetUI", + "Show UniGetUI": "Arată UniGetUI", "Quit": "Ieșire", "Attention required": "Este necesară atenție", "Restart required": "Repornire necesară", "1 update is available": "1 actualizare este disponibilă", "{0} updates are available": "{0} actualizări sunt disponibile", - "WingetUI Homepage": "Pagină web UniGetUI", - "WingetUI Repository": "Repository UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "De aici poți schimba comportamentul UniGetUI legat de scurtături. Bifând o scurtătură vei face ca UniGetUI să o șteargă dacă ea va fi creată la o actualizare viitoare. Debifând-o, vei păstra scurtătura intactă.", "Manual scan": "Scanare manuală", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Scurtăturile existente pe Desktop vor fi scanate și va trebui să alegi pe care le păstrezi și pe care le ștergi.", @@ -583,7 +635,6 @@ "Restart later": "Repornește mai târziu", "An error occurred:": "A apărut o eroare:", "I understand": "Am înțeles", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI a fost lansat cu drepturi de administrator, ceea ce nu este recomandat. Când UnigetUI este rulat ca administrator, FIECARE operație lansată din UniGetUI va avea și ea drepturi de administrator. Poți desigur să folosești programul în continuare, dar încurajăm să nu mai rulezi UniGetUI în acest mod.", "WinGet was repaired successfully": "WinGet a fost reparat cu succes", "It is recommended to restart UniGetUI after WinGet has been repaired": "Este recomandat să repornești UniGetUI după ce WinGet a fost reparat", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTĂ: Acest depanator poate fi dezactivat din setările UniGetUI, din secțiunea WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Pachetele tale vor fi fost adăugate în grup. Poți continua să adaugi pachete sau să exporți grupul.", "Which backup do you want to open?": "Ce backup dorești să deschizi?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selectează backup-ul pe care dorești să îl deschizi. Mai târziu vei putea să revizuiești ce pachete dorești să instalezi.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Există operații în curs. Închizând UniGetUI va face ca ele să eșueze. Dorești să continui?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Există operații în curs. Închizând UniGetUI va face ca ele să eșueze. Dorești să continui?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI sau unele din componentele sale lipsesc sau sunt corupte.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Este recomandat cu tărie să reinstalezi UniGetUI pentru a adresa această situație.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Fă referire la jurnalele UniGetUI pentru a obține mai multe detalii despre fișierele afectate", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Scrie aici numele proceselor, separate de virgule (,)", "Unset or unknown": "Nesetat sau necunoscut", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Te rog uită-te în output-ul liniei de comandă sau vezi istoricul operațiilor pentru mai multe informații legate de problemă.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Lipsesc capturile de ecran sau pictograma acestui pachet? Contribuie la UniGetUI adăugând pictogramele sau capturile de ecran lipsă în baza noastră de date deschisă și publică.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Lipsesc capturile de ecran sau pictograma acestui pachet? Contribuie la UniGetUI adăugând pictogramele sau capturile de ecran lipsă în baza noastră de date deschisă și publică.", "Become a contributor": "Devino un contribuitor", "Save": "Salvează", "Update to {0} available": "Actualizare la {0} disponibilă", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Activează depanatorul automat pentru WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Activează un depanator îmbunătățit WinGet [experimental]", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Adaugă actualizările care eșuează cu „nicio actualizare aplicabilă găsită” în lista de actualizări ignorate", - "Restart WingetUI to fully apply changes": "Repornește UniGetUI pentru a aplica schimbările în totalitate", - "Restart WingetUI": "Repornește WingetUI", "Invalid selection": "Selecție invalidă", "No package was selected": "Niciun pachet selectat", "More than 1 package was selected": "A fost selectat mai mult de un pachet", @@ -684,6 +733,37 @@ "Log out failed: ": "Deconectarea a eșuat:", "Package backup settings": "Setări backup pachete", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Despre UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI este o aplicație care face managementul software-ului instalat mai ușor aducând o interfață grafică comună tuturor managerelor de pachete în linie de comandă.", + "You have installed WingetUI Version {0}": "Ai instalat UniGetUI versiunea {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nu ar fi fost posibil fără ajutorul contribuitorilor. Mulțumesc vouă, tuturor 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI folosește următoarele biblioteci. Fără acestea, UniGetUI nu ar fi fost existat.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI a fost tradus în mai mult de 40 de limbi mulțumită voluntarilor. Mulțumesc🤝", + "WingetUI Settings": "Setări UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Ar putea fi necesar să instalezi {pm} pentru a-l utiliza cu UniGetUI.", + "Scoop Installer - WingetUI": "Instalator Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Dezinstalator Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Se curăță cache-ul pentru Scoop - UniGetUI", + "WingetUI Version {0}": "Versiunea UniGetUI {0}", + "WingetUI License": "Licență UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Folosirea UniGetUI implică acceptarea licenței MIT.", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Activează API în fundal (Widgets for UniGetUI and Sharing, port 7058)", + "Update WingetUI automatically": "Actualizează UniGetUI automat", + "Reset WingetUI": "Resetează UniGetUI", + "WingetUI display language:": "Limba de afișare pentru UniGetUI:", + "Manage WingetUI autostart behaviour": "Gestionează comportamentul de pornire automată al UniGetUI", + "Enable WingetUI notifications": "Activează notificările de la UniGetUI", + "WingetUI Log": "Jurnal UniGetUI", + "Show WingetUI": "Arată UniGetUI", + "WingetUI Homepage": "Pagină web UniGetUI", + "WingetUI Repository": "Repository UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI a fost lansat cu drepturi de administrator, ceea ce nu este recomandat. Când UnigetUI este rulat ca administrator, FIECARE operație lansată din UniGetUI va avea și ea drepturi de administrator. Poți desigur să folosești programul în continuare, dar încurajăm să nu mai rulezi UniGetUI în acest mod.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Există operații în curs. Închizând UniGetUI va face ca ele să eșueze. Dorești să continui?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Lipsesc capturile de ecran sau pictograma acestui pachet? Contribuie la UniGetUI adăugând pictogramele sau capturile de ecran lipsă în baza noastră de date deschisă și publică.", + "Restart WingetUI to fully apply changes": "Repornește UniGetUI pentru a aplica schimbările în totalitate", + "Restart WingetUI": "Repornește WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Configurează pornirea automată a UniGetUI din Setările sistemului de operare", "(Number {0} in the queue)": "(Poziția {0} în coadă)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@lucadsign, @SilverGreen93, TZACANEL, @David735453", "0 packages found": "0 pachete găsite", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json index 5e1d303b4c..fb4f16ab9a 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ru.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Отменить удаление при ошибке выполнения предварительной команды", "Command-line to run:": "Команда для запуска:", "Save and close": "Сохранить и закрыть", + "General": "Общие", + "Architecture & Location": "Архитектура и расположение", + "Command-line": "Командная строка", + "Pre/Post install": "До/после установки", "Run as admin": "Запуск от имени администратора", "Interactive installation": "Интерактивная установка", "Skip hash check": "Пропустить проверку хэша", @@ -71,6 +75,8 @@ "Manage ignored updates": "Управление игнорируемыми обновлениями", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Перечисленные здесь пакеты не будут учитываться при проверке обновлений. Дважды щелкните по ним или нажмите кнопку справа, чтобы перестать игнорировать их обновления.", "Reset list": "Сбросить список", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Вы действительно хотите сбросить список игнорируемых обновлений? Это действие нельзя отменить", + "No ignored updates": "Нет игнорируемых обновлений", "Package Name": "Название пакета", "Package ID": "ID пакета", "Ignored version": "Игнорируемая версия", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Данная операция запущена интерактивно", "You will likely need to interact with the installer.": "Вам скорее всего потребуется взаимодействовать с установщиком", "Integrity checks skipped": "Проверка целостности пропущена", + "Integrity checks will not be performed during this operation.": "Во время этой операции проверки целостности выполняться не будут.", "Proceed at your own risk.": "Действуйте на свой страх и риск", "Close": "Закрыть", "Loading...": "Загрузка...", @@ -120,16 +127,17 @@ "optional": "необязательно", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} готов к установке.", "The update process will start after closing UniGetUI": "Процесс обновления начнется после закрытия UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI был запущен от имени администратора, что не рекомендуется. При запуске UniGetUI от имени администратора КАЖДАЯ операция, запущенная из UniGetUI, будет иметь права администратора. Вы всё ещё можете использовать программу, но мы настоятельно рекомендуем не запускать UniGetUI с правами администратора.", "Share anonymous usage data": "Отправлять анонимные пользовательские данные", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI собирает анонимную статистику использования в целях улучшения опыта использования", "Accept": "Применить", - "You have installed WingetUI Version {0}": "Вы установили WingetUI версию {0}", + "You have installed UniGetUI Version {0}": "Вы установили UniGetUI версию {0}", "Disclaimer": "Отказ от ответственности", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не связан ни с одним из совместимых менеджеров пакетов. UniGetUI - это независимый проект.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI был бы невозможен без помощи участников. Спасибо вам всем 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "В WingetUI используются следующие библиотеки. Без них WingetUI был бы невозможен.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI был бы невозможен без помощи участников. Спасибо вам всем 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "В UniGetUI используются следующие библиотеки. Без них UniGetUI был бы невозможен.", "{0} homepage": "{0} домашняя страница", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI был переведен более чем на 40 языков благодаря переводчикам-добровольцам. Спасибо 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI был переведен более чем на 40 языков благодаря переводчикам-добровольцам. Спасибо 🤝", "Verbose": "Подробно", "1 - Errors": "1 - Ошибки", "2 - Warnings": "2 - Предупреждения", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Вы вошли как {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Резервные копии будут загружены в приватный Gist на вашем аккаунте", "Select backup": "Выбрать резервную копию", - "WingetUI Settings": "Настройки WingetUI", + "UniGetUI Settings": "Настройки UniGetUI", "Allow pre-release versions": "Разрешить обновление до предварительных версий", "Apply": "Применить", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Из соображений безопасности пользовательские аргументы командной строки по умолчанию отключены. Перейдите в настройки безопасности UniGetUI, чтобы изменить это.", "Go to UniGetUI security settings": "Перейти в настройки безопасности UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Следующие настройки будут применяться по умолчанию каждый раз после установки, обновления или удаления {0} пакетов.", "Package's default": "По умолчанию для пакета", @@ -160,6 +169,7 @@ "Username": "Имя пользователя", "Password": "Пароль", "Credentials": "Учетные данные", + "It is not guaranteed that the provided credentials will be stored safely": "Нет гарантии, что предоставленные учетные данные будут храниться безопасно", "Partially": "Частично", "Package manager": "Менеджер пакетов", "Compatible with proxy": "Совместимо с прокси", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} включен и готов к работе", "{pm} version:": "{pm} версия:", "{pm} was not found!": "{pm} не найден!", - "You may need to install {pm} in order to use it with WingetUI.": "Вам может потребоваться установить {pm}, чтобы использовать его с WingetUI.", - "Scoop Installer - WingetUI": "Установщик Scoop - WingetUI", - "Scoop Uninstaller - WingetUI": "Деинсталлятор Scoop - WingetUI", - "Clearing Scoop cache - WingetUI": "Очистка кэша Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Вам может потребоваться установить {pm}, чтобы использовать его с UniGetUI.", + "Scoop Installer - UniGetUI": "Установщик Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Деинсталлятор Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Очистка кэша Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Перезапустите UniGetUI, чтобы полностью применить изменения", "Restart UniGetUI": "Перезапустить UniGetUI", "Manage {0} sources": "Управление источниками {0}", "Add source": "Добавить источник", "Add": "Добавить", + "Source name": "Имя источника", + "Source URL": "URL источника", "Other": "Другой", + "No minimum age": "Без минимального срока", "1 day": "1 день", "{0} days": "{0} дни", + "Custom...": "Другое...", "{0} minutes": "{0} минут", "1 hour": "1 час", "{0} hours": "{0} часы", "1 week": "1 неделя", - "WingetUI Version {0}": "WingetUI Версия {0}", + "Supports release dates": "Поддерживает даты выпуска", + "Release date support per package manager": "Поддержка дат выпуска по менеджерам пакетов", + "UniGetUI Version {0}": "UniGetUI Версия {0}", "Search for packages": "Поиск пакетов", "Local": "Локально", "OK": "ОК", @@ -200,11 +217,13 @@ "Enabled": "Включено", "Disabled": "Выключен", "More info": "Дополнительная информация", + "GitHub account": "Учетная запись GitHub", "Log in with GitHub to enable cloud package backup.": "Войдите с GitHub для включения облачного резервного копирования пакета.", "More details": "Более подробная информация", "Log in": "Вход", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Если включено резервное копирование в облако, копия будет сохранена как GitHub Gist в этом аккаунте", "Log out": "Выйти", + "About UniGetUI": "О UniGetUI", "About": "О приложении", "Third-party licenses": "Сторонние лицензии", "Contributors": "Участники", @@ -212,6 +231,7 @@ "Manage shortcuts": "Управление ярлыками", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI обнаружил следующие ярлыки на рабочем столе, которые могут быть автоматически удалены при будущих обновлениях", "Do you really want to reset this list? This action cannot be reverted.": "Вы действительно хотите сбросить этот список? Это действие нельзя отменить.", + "Open in explorer": "Открыть в проводнике", "Remove from list": "Удалить из списка", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Когда обнаружены новые ярлыки, удалять их автоматически вместо отображения этого диалога.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI собирает анонимную статистику использования с единственной целью изучения и улучшения опыта использования", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Разрешаете ли Вы UniGetUI сбор и отправку анонимной статистики использования с целью изучения и улучшения пользовательского опыта?", "Decline": "Отменить", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Сбор и обработка персональных данных не производятся. Собранные данные анонимизированы, поэтому по ним невозможно определить Вашу личность", - "About WingetUI": "О программе UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI - это приложение, которое упрощает управление вашим программным обеспечением, предоставляя универсальный графический интерфейс для ваших менеджеров пакетов командной строки.", + "Toggle navigation panel": "Переключить панель навигации", + "Minimize": "Свернуть", + "Maximize": "Развернуть", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI - это приложение, которое упрощает управление вашим программным обеспечением, предоставляя универсальный графический интерфейс для ваших менеджеров пакетов командной строки.", "Useful links": "Полезные ссылки", + "UniGetUI Homepage": "Домашняя страница UniGetUI", "Report an issue or submit a feature request": "Сообщить о проблеме или отправить запрос на функцию", + "UniGetUI Repository": "Репозиторий UniGetUI", "View GitHub Profile": "Посмотреть профиль GitHub", - "WingetUI License": "Лицензия WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "Использование WingetUI подразумевает согласие с лицензией MIT", + "UniGetUI License": "Лицензия UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Использование UniGetUI подразумевает согласие с лицензией MIT", "Become a translator": "Стать переводчиком", "View page on browser": "Просмотреть страницу в браузере", "Copy to clipboard": "Копировать в буфер обмена", "Export to a file": "Экспорт в файл", "Log level:": "Уровень журнала:", "Reload log": "Перезагрузить журнал", + "Export log": "Экспортировать журнал", + "UniGetUI Log": "Журнал UniGetUI", "Text": "Текст", "Change how operations request administrator rights": "Изменить как операции запрашивают права администратора", "Restrictions on package operations": "Ограничения операций с пакетами", @@ -271,7 +297,7 @@ "Leave empty for default": "Оставьте пустым по умолчанию", "Add a timestamp to the backup file names": "Добавить временную метку к именам файлов резервных копий", "Backup and Restore": "Резервная копия и восстановление", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Включить фоновый API (WingetUI виджеты и возможность поделиться, порт 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Включить фоновый API (UniGetUI виджеты и возможность поделиться, порт 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Ожидать подключения устройства к сети перед запуском операций, требующих подключения к сети", "Disable the 1-minute timeout for package-related operations": "Отключить 1-минутный тайм-аут для операций, связанных с пакетами", "Use installed GSudo instead of UniGetUI Elevator": "Использовать установленный GSudo вместо UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Телеметрия", "Manage UniGetUI settings": "Управление настройками UniGetUI", "Related settings": "Связанные настройки", - "Update WingetUI automatically": "Обновлять WingetUI автоматически", + "Update UniGetUI automatically": "Обновлять UniGetUI автоматически", "Check for updates": "Проверка обновлений", "Install prerelease versions of UniGetUI": "Устанавливать предварительные версии UniGetUI", "Manage telemetry settings": "Управление настройками телеметрии", @@ -295,17 +321,17 @@ "Import": "Импорт", "Export settings to a local file": "Экспорт настроек в файл", "Export": "Экспорт", - "Reset WingetUI": "Сброс настроек WingetUI", "Reset UniGetUI": "Сброс UniGetUI", "User interface preferences": "Настройки пользовательского интерфейса", "Application theme, startup page, package icons, clear successful installs automatically": "Тема приложения, стартовая страница, значки пакетов, автоматическая очистка успешных установок", "General preferences": "Общие настройки", - "WingetUI display language:": "Язык интерфейса WingetUI:", + "UniGetUI display language:": "Язык интерфейса UniGetUI:", "Is your language missing or incomplete?": "Ваш язык отсутствует или является неполным?", "Appearance": "Внешний вид", "UniGetUI on the background and system tray": "UniGetUI в фоновом режиме и системном трее", "Package lists": "Списки пакетов", "Close UniGetUI to the system tray": "Закрепить UniGetUI в системном трее", + "Manage UniGetUI autostart behaviour": "Управление автозапуском UniGetUI", "Show package icons on package lists": "Показывать иконки в списке пакетов", "Clear cache": "Очистить кэш", "Select upgradable packages by default": "Выбирать пакеты с возможностью обновления по умолчанию", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Обратите внимание, что не все менеджеры пакетов могут полностью поддерживать эту функцию", "Proxy URL": "Прокси URL", "Enter proxy URL here": "Введите URL прокси здесь", + "Authenticate to the proxy with a user and a password": "Выполнять аутентификацию на прокси с помощью имени пользователя и пароля", + "Internet and proxy settings": "Настройки интернета и прокси", "Package manager preferences": "Настройки менеджеров пакетов", "Ready": "Готов", "Not found": "Не найден", "Notification preferences": "Параметры уведомлений", "Notification types": "Типы уведомлений", "The system tray icon must be enabled in order for notifications to work": "Иконка в системном трее должна быть включена, чтобы уведомления работали", - "Enable WingetUI notifications": "Включить уведомления WingetUI", + "Enable UniGetUI notifications": "Включить уведомления UniGetUI", "Show a notification when there are available updates": "Показывать уведомление, когда есть доступные обновления", "Show a silent notification when an operation is running": "Показывать беззвучное уведомление, когда операция запущена", "Show a notification when an operation fails": "Показывать уведомление в случае ошибки операции", "Show a notification when an operation finishes successfully": "Показывать уведомление, когда операция завершена успешно", "Concurrency and execution": "Параллелизм и выполнение", "Automatic desktop shortcut remover": "Автоматическое удаление ярлыков на рабочем столе", + "Choose how many operations should be performed in parallel": "Выберите, сколько операций должно выполняться параллельно", "Clear successful operations from the operation list after a 5 second delay": "Очищать успешные операции из списка операций после 5-секундной задержки", "Download operations are not affected by this setting": "Этот параметр не влияет на операции загрузки", "Try to kill the processes that refuse to close when requested to": "Пробовать останавливать процессы, препятствующие закрытию во время запроса.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Укажите исполняемый файл. В данном списке перечислены исполняемые файлы найденные UniGetUI", "Current executable file:": "Текущий исполняемый файл:", "Ignore packages from {pm} when showing a notification about updates": "Игнорировать пакеты из {pm} при показе уведомления о обновлениях", + "Update security": "Безопасность обновлений", + "Use global setting": "Использовать глобальную настройку", + "e.g. 10": "например, 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не предоставляет даты выпуска для своих пакетов, поэтому этот параметр не будет иметь эффекта", + "Override the global minimum update age for this package manager": "Переопределить глобальный минимальный возраст обновлений для этого менеджера пакетов", + "Minimum age for updates": "Минимальный возраст обновлений", + "Custom minimum age (days)": "Пользовательский минимальный возраст (дни)", "View {0} logs": "Посмотреть журналы {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Если Python не удаётся найти или он не отображает пакеты, хотя установлен в системе, ", "Advanced options": "Расширенные настройки", "Reset WinGet": "Сброс WinGet", "This may help if no packages are listed": "Это может помочь, если в списке нет пакетов", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Включить очистку Scoop при запуске", "Use system Chocolatey": "Использовать системный Chocolatey", "Default vcpkg triplet": "Триплет vcpkg по умолчанию", + "Change vcpkg root location": "Изменить расположение корня vcpkg", "Language, theme and other miscellaneous preferences": "Язык, тема и другие настройки", "Show notifications on different events": "Показывать уведомления о различных событиях", "Change how UniGetUI checks and installs available updates for your packages": "Изменить способ проверки и установки доступных обновлений для пакетов в UniGetUI", @@ -384,16 +422,17 @@ "Do not automatically install updates when the network connection is metered": "Не устанавливать обновления автоматически при использовании лимитированного подключения", "Do not automatically install updates when the device runs on battery": "Не устанавливать обновления автоматически, когда включён режим экономии заряда батареи", "Do not automatically install updates when the battery saver is on": "Не устанавливать обновления автоматически, когда включён режим экономии заряда батареи", + "Only show updates that are at least the specified number of days old": "Показывать только обновления, которым не меньше указанного количества дней", "Change how UniGetUI handles install, update and uninstall operations.": "Изменить управление операциями установки, обновления и удаления.", "Package Managers": "Менеджеры пакетов", "More": "Еще", - "WingetUI Log": "Журнал WingetUI", "Package Manager logs": "Журналы событий пакетного менеджера", "Operation history": "История действий", "Help": "Помощь", + "Quit UniGetUI": "Выйти из UniGetUI", "Order by:": "Сортировать по:", "Name": "Название", - "Id": "Id", + "Id": "ID", "Ascendant": "По возрастанию", "Descendant": "По убыванию", "View mode:": "Представление:", @@ -409,6 +448,10 @@ "Both": "Оба", "Exact match": "Точное совпадение", "Show similar packages": "Показать похожие пакеты", + "Nothing to share": "Нечего отправлять", + "Please select a package first.": "Сначала выберите пакет.", + "Share link copied": "Ссылка для отправки скопирована", + "The share link for {0} has been copied to the clipboard.": "Ссылка для отправки {0} скопирована в буфер обмена.", "No results were found matching the input criteria": "Не найдено результатов, соответствующих критериям ввода", "No packages were found": "Пакеты не найдены", "Loading packages": "Загрузка пакетов", @@ -440,7 +483,11 @@ "Package bundle": "Набор пакетов", "Could not create bundle": "Не удалось создать набор", "The package bundle could not be created due to an error.": "В связи с ошибкой набор пакетов не может быть создан", + "Unsaved changes": "Несохраненные изменения", + "Discard changes": "Отменить изменения", + "You have unsaved changes in the current bundle. Do you want to discard them?": "В текущем наборе есть несохраненные изменения. Хотите их отменить?", "Bundle security report": "Сводный отчет по безопасности", + "The bundle contained restricted content": "Набор содержал ограниченное содержимое", "Hooray! No updates were found.": "Ура! Обновления не найдены!", "Everything is up to date": "Все актуально", "Uninstall selected packages": "Удалить выбранные пакеты", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Классический пакетный менеджер для Windows. Там ты найдешь все.
Содержит: General Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Репозиторий, полный инструментов и исполняемых файлов, разработан с учетом экосистемы Microsoft .NET.
Содержит: инструменты и сценарии, связанные с .NET ", "NuPkg (zipped manifest)": "NuPkg (заархивированный манифест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Недостающий менеджер пакетов для macOS (или Linux).
Содержит: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Пакетный менеджер NodeJS. Наполнен библиотеками и другими утилитами, которые вращаются вокруг мира javascript
Содержит: Библиотеки Node javascript и другие связанные с ними утилиты", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Менеджер библиотек Python. Полон библиотек Python и других утилит, связанных с Python
Содержит: Библиотеки Python и связанные с ними утилиты", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Менеджер пакетов PowerShell. Поиск библиотек и сценариев для расширения возможностей PowerShell
Содержит: Модули, скрипты, команды", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Операция в очереди (позиция {0})...", "Click here for more details": "Нажмите здесь для получения подробностей", "Operation canceled by user": "Операция отменена пользователем", + "Running PreOperation ({0}/{1})...": "Выполняется PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} из {1} завершилась неудачей и была помечена как обязательная. Прерывание...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} из {1} завершилась с результатом {2}", "Starting operation...": "Запуск операции...", + "Running PostOperation ({0}/{1})...": "Выполняется PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} из {1} завершилась неудачей и была помечена как обязательная. Прерывание...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} из {1} завершилась с результатом {2}", "{package} installer download": "{package} установщик загружается", "{0} installer is being downloaded": "{0} установщиков было загружено", "Download succeeded": "Загрузка прошла успешно", @@ -556,14 +610,12 @@ "Portable mode": "Портативный режим", "DEBUG BUILD": "СБОРКА ДЛЯ ОТЛАДКИ", "Available Updates": "Доступные обновления", - "Show WingetUI": "Показать WingetUI", + "Show UniGetUI": "Показать UniGetUI", "Quit": "Выход", "Attention required": "Требуется внимание пользователя", "Restart required": "Требуется перезагрузка", "1 update is available": "Доступно 1 обновление", "{0} updates are available": "{0} доступны обновления", - "WingetUI Homepage": "Домашняя страница WingetUI", - "WingetUI Repository": "Репозиторий WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Здесь вы можете изменить поведение UniGetUI в отношении следующих сочетаний клавиш. Проверка ярлыка приведет к тому, что UniGetUI удалит его, если он будет создан при будущем обновлении. Если снять флажок, ярлык останется нетронутым", "Manual scan": "Ручное сканирование", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Существующие ярлыки на вашем рабочем столе будут отсканированы, и вам нужно будет выбрать, какие из них оставить, а какие удалить.", @@ -583,7 +635,6 @@ "Restart later": "Перезагрузить позже", "An error occurred:": "Возникла ошибка:", "I understand": "Я понимаю", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI был запущен от имени администратора, что не рекомендуется. При запуске WingetUI от имени администратора КАЖДАЯ операция, запущенная из WingetUI, будет иметь привилегии администратора. Вы можете продолжать пользоваться программой, но мы настоятельно рекомендуем не запускать WingetUI с правами администратора.", "WinGet was repaired successfully": "WinGet восстановлен успешно", "It is recommended to restart UniGetUI after WinGet has been repaired": "Рекомендуется перезапустить UniGetUI после восстановления WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ПРИМЕЧАНИЕ: Это средство устранения неполадок можно отключить в настройках UniGetUI в разделе WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Ваши пакеты будут добавлены в набор. Вы можете продолжить добавление пакетов или экспортировать набор.", "Which backup do you want to open?": "Какую резервную копию вы хотите открыть?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Выберите резервную копию для открытия. Позже вы сможете ознакомиться с пакетами для установки.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Операции продолжаются. Выход из UniGetUI может привести к их сбою. Вы хотите продолжить?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Операции продолжаются. Выход из UniGetUI может привести к их сбою. Вы хотите продолжить?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI или некоторые ее компоненты утеряны или повреждены.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Настоятельно рекомендуется переустановить UniGetUI, чтобы исправить ситуацию.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Обратитесь к логам UniGetUI, чтобы получить больше информации, связанной с затронутыми файлами.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Укажите здесь имена процессов, разделяя их запятыми (,)", "Unset or unknown": "Отключено или неизвестно", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Пожалуйста, посмотрите вывод командной строки или обратитесь к истории операций для получения дополнительной информации о проблеме.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "У этого пакета нет скриншотов или отсутствует иконка? Внесите свой вклад в WingetUI, добавив недостающие иконки и скриншоты в нашу открытую, общедоступную базу данных.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "У этого пакета нет скриншотов или отсутствует иконка? Внесите свой вклад в UniGetUI, добавив недостающие иконки и скриншоты в нашу открытую, общедоступную базу данных.", "Become a contributor": "Стать участником", "Save": "Сохранить", "Update to {0} available": "Обновление для {0} найдено", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Включить автоматическое средство устранения неполадок WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Включить [экспериментальное] улучшенное средство устранения неполадок WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Добавить обновления, которые завершаются ошибкой с сообщением \"не найдено подходящего обновления\", в список игнорируемых обновлений", - "Restart WingetUI to fully apply changes": "Перезапустить WingetUI для применения всех настроек", - "Restart WingetUI": "Перезапустить WingetUI", "Invalid selection": "Недопустимый выбор", "No package was selected": "Не был выбран ни один пакет", "More than 1 package was selected": "Было выбрано более одного пакета", @@ -684,6 +733,37 @@ "Log out failed: ": "Ошибка выхода:", "Package backup settings": "Настройки резервного копирования пакета", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "О программе UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI - это приложение, которое упрощает управление вашим программным обеспечением, предоставляя универсальный графический интерфейс для ваших менеджеров пакетов командной строки.", + "You have installed WingetUI Version {0}": "Вы установили WingetUI версию {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI был бы невозможен без помощи участников. Спасибо вам всем 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "В WingetUI используются следующие библиотеки. Без них WingetUI был бы невозможен.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI был переведен более чем на 40 языков благодаря переводчикам-добровольцам. Спасибо 🤝", + "WingetUI Settings": "Настройки WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Вам может потребоваться установить {pm}, чтобы использовать его с WingetUI.", + "Scoop Installer - WingetUI": "Установщик Scoop - WingetUI", + "Scoop Uninstaller - WingetUI": "Деинсталлятор Scoop - WingetUI", + "Clearing Scoop cache - WingetUI": "Очистка кэша Scoop - UniGetUI", + "WingetUI Version {0}": "WingetUI Версия {0}", + "WingetUI License": "Лицензия WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "Использование WingetUI подразумевает согласие с лицензией MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Включить фоновый API (WingetUI виджеты и возможность поделиться, порт 7058)", + "Update WingetUI automatically": "Обновлять WingetUI автоматически", + "Reset WingetUI": "Сброс настроек WingetUI", + "WingetUI display language:": "Язык интерфейса WingetUI:", + "Manage WingetUI autostart behaviour": "Управление автозапуском WingetUI", + "Enable WingetUI notifications": "Включить уведомления WingetUI", + "WingetUI Log": "Журнал WingetUI", + "Show WingetUI": "Показать WingetUI", + "WingetUI Homepage": "Домашняя страница WingetUI", + "WingetUI Repository": "Репозиторий WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI был запущен от имени администратора, что не рекомендуется. При запуске WingetUI от имени администратора КАЖДАЯ операция, запущенная из WingetUI, будет иметь привилегии администратора. Вы можете продолжать пользоваться программой, но мы настоятельно рекомендуем не запускать WingetUI с правами администратора.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Операции продолжаются. Выход из UniGetUI может привести к их сбою. Вы хотите продолжить?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "У этого пакета нет скриншотов или отсутствует иконка? Внесите свой вклад в WingetUI, добавив недостающие иконки и скриншоты в нашу открытую, общедоступную базу данных.", + "Restart WingetUI to fully apply changes": "Перезапустить WingetUI для применения всех настроек", + "Restart WingetUI": "Перезапустить WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Настроить поведение автозапуска UniGetUI из приложения \"Параметры\"", "(Number {0} in the queue)": "({0} позиция в очереди)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Vertuhai, Sergey, sklart, @flatron4eg, @bropines, @katrovsky, @DvladikD, Gleb Saygin, @Denisskas, @solarscream, @tapnisu, Alexander", "0 packages found": "Найдено 0 пакетов", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json index d9a857255a..260a79f002 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sa.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "pre-uninstall आदेशः विफलः चेत् अनस्थापनं निरस्यतु", "Command-line to run:": "चालयितव्यं command-line:", "Save and close": "संगृह्य पिधाय", + "General": "सामान्यम्", + "Architecture & Location": "संरचना तथा स्थानम्", + "Command-line": "आदेश-पङ्क्तिः", + "Pre/Post install": "पूर्व/पश्चात्-स्थापनम्", "Run as admin": "admin रूपेण चालय", "Interactive installation": "interactive स्थापना", "Skip hash check": "hash check त्यज", @@ -71,6 +75,8 @@ "Manage ignored updates": "उपेक्षित-अद्यतनानि प्रबन्धय", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "अत्र सूचीकृताः packages अद्यतन-परीक्षणकाले गणनायां न गृहीष्यन्ते। तेषां अद्यतनानाम् उपेक्षां निरोद्धुं तेषु double-click कुरु अथवा तेषां दक्षिणभागस्थं button क्लिक् कुरु।", "Reset list": "सूचीं पुनर्स्थापय", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "भवान् उपेक्षित-अद्यतन-सूचीं पुनर्स्थापयितुम् इच्छति किम्? एषा क्रिया प्रत्यावर्तयितुं न शक्यते", + "No ignored updates": "उपेक्षित-अद्यतनानि न सन्ति", "Package Name": "पैकेज्-नाम", "Package ID": "पैकेज् ID", "Ignored version": "उपेक्षित-संस्करणम्", @@ -86,6 +92,7 @@ "This operation is running interactively.": "अयं operation interactive रूपेण चलति।", "You will likely need to interact with the installer.": "installer सह परस्परं कार्यं कर्तुं सम्भाव्यं आवश्यकं भविष्यति।", "Integrity checks skipped": "Integrity checks लङ्घितानि", + "Integrity checks will not be performed during this operation.": "अस्यां क्रियायां अखण्डता-परीक्षणानि न करिष्यन्ते।", "Proceed at your own risk.": "स्वीय-जोखिमेन अग्रे गच्छ।", "Close": "समापयतु", "Loading...": "load क्रियते...", @@ -120,16 +127,17 @@ "optional": "वैकल्पिकम्", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} स्थापयितुं सज्जम् अस्ति।", "The update process will start after closing UniGetUI": "UniGetUI पिधाय अनन्तरं अद्यतन-प्रक्रिया आरभ्यते", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI प्रशासकरूपेण चालितम् अस्ति, यत् अनुशंसितं नास्ति। UniGetUI प्रशासकरूपेण चालिते सति UniGetUI तः आरब्धाः सर्वाः क्रियाः प्रशासकाधिकारैः सह भविष्यन्ति। भवन्तः कार्यक्रमम् उपयोक्तुं शक्नुवन्ति, किन्तु वयं दृढतया अनुशंसामः यत् UniGetUI प्रशासकाधिकारैः सह न चालयेत्।", "Share anonymous usage data": "अनामिक-उपयोग-दत्तांशं साम्भाजय", "UniGetUI collects anonymous usage data in order to improve the user experience.": "उपयोक्तृ-अनुभवं सुधारयितुं UniGetUI अनामिक-उपयोग-दत्तांशं संगृह्णाति।", "Accept": "स्वीकरोतु", - "You have installed WingetUI Version {0}": "त्वया UniGetUI संस्करणम् {0} स्थापितम्", + "You have installed UniGetUI Version {0}": "त्वया UniGetUI संस्करणम् {0} स्थापितम्", "Disclaimer": "अस्वीकरणम्", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI कस्यापि संगत-package manager सह सम्बद्धं नास्ति। UniGetUI स्वतन्त्रः परियोजना अस्ति।", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors सहाय्यं विना UniGetUI सम्भवमेव न स्यात्। सर्वेभ्यः धन्यवादाः 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI निम्नलिखित-libraries उपयोजयति। एताभिः विना UniGetUI सम्भवमेव न स्यात्।", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors सहाय्यं विना UniGetUI सम्भवमेव न स्यात्। सर्वेभ्यः धन्यवादाः 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI निम्नलिखित-libraries उपयोजयति। एताभिः विना UniGetUI सम्भवमेव न स्यात्।", "{0} homepage": "{0} मुखपृष्ठम्", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवक-अनुवादकानां कृते UniGetUI 40 तः अधिकासु भाषासु अनूदितम् अस्ति। धन्यवादः 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवक-अनुवादकानां कृते UniGetUI 40 तः अधिकासु भाषासु अनूदितम् अस्ति। धन्यवादः 🤝", "Verbose": "विस्तृतम्", "1 - Errors": "1 - दोषाः", "2 - Warnings": "2 - चेतावन्यः", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "त्वं {0} (@{1}) इति नाम्ना logged in असि", "Nice! Backups will be uploaded to a private gist on your account": "उत्तमम्! backups भवतः account इत्यस्मिन् निजी gist मध्ये अपलोड् भविष्यन्ति", "Select backup": "backup चयनय", - "WingetUI Settings": "UniGetUI विन्यासाः", + "UniGetUI Settings": "UniGetUI विन्यासाः", "Allow pre-release versions": "pre-release संस्करणानि अनुमन्यन्ताम्", "Apply": "प्रयोजयतु", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "सुरक्षार्थं स्वनिर्धारित-आदेश-पङ्क्ति-तर्काः मूलतः निष्क्रियाः सन्ति। एतत् परिवर्तयितुं UniGetUI सुरक्षा-विन्यासान् गच्छतु।", "Go to UniGetUI security settings": "UniGetUI security settings गच्छतु", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "यदा यदा {0} package स्थाप्यते, उन्नीयते, अथवा अनस्थाप्यते तदा तदा निम्न-विकल्पाः पूर्वनिर्धारितरूपेण प्रयुज्यन्ते।", "Package's default": "पैकेजस्य पूर्वनिर्धारितम्", @@ -160,6 +169,7 @@ "Username": "उपयोक्तृनाम", "Password": "गुह्यशब्दः", "Credentials": "credentials", + "It is not guaranteed that the provided credentials will be stored safely": "प्रदत्तानि प्रमाणपत्राणि सुरक्षितरूपेण संग्रहीष्यन्ते इति न सुनिश्चितम्", "Partially": "आंशिकरूपेण", "Package manager": "पैकेज्-प्रबन्धकः", "Compatible with proxy": "proxy सह सुसंगतम्", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} सक्षमः अस्ति तथा सज्जः अस्ति", "{pm} version:": "{pm} संस्करणम्:", "{pm} was not found!": "{pm} न लब्धः!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI सह उपयोक्तुं {pm} स्थापयितुं त्वया आवश्यकं भवेत्।", - "Scoop Installer - WingetUI": "Scoop स्थापक - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop अनस्थापक - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop सञ्चिकायाः निर्मूल्यताम् - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI सह उपयोक्तुं {pm} स्थापयितुं त्वया आवश्यकं भवेत्।", + "Scoop Installer - UniGetUI": "Scoop स्थापक - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop अनस्थापक - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop सञ्चिकायाः निर्मूल्यताम् - UniGetUI", + "Restart UniGetUI to fully apply changes": "परिवर्तनानि पूर्णतया प्रयोजयितुं UniGetUI पुनरारभताम्", "Restart UniGetUI": "UniGetUI पुनरारभस्व", "Manage {0} sources": "{0} स्रोतांसि प्रबन्धय", "Add source": "स्रोतं योजय", "Add": "योजय", + "Source name": "स्रोत-नाम", + "Source URL": "स्रोत-URL", "Other": "अन्यत्", + "No minimum age": "न्यूनतम-कालः नास्ति", "1 day": "1 दिनम्", "{0} days": "{0} दिवसाः", + "Custom...": "स्वनिर्धारितम्...", "{0} minutes": "{0} निमिषाः", "1 hour": "1 होरात्रम्", "{0} hours": "{0} घण्टाः", "1 week": "1 सप्ताहः", - "WingetUI Version {0}": "UniGetUI संस्करणम् {0}", + "Supports release dates": "प्रकाशन-तिथीनां समर्थनम् अस्ति", + "Release date support per package manager": "प्रत्येक-पुटक-प्रबन्धकस्य प्रकाशन-तिथि-समर्थनम्", + "UniGetUI Version {0}": "UniGetUI संस्करणम् {0}", "Search for packages": "packages अन्वेषय", "Local": "स्थानीयम्", "OK": "अस्तु", @@ -200,11 +217,13 @@ "Enabled": "सक्रियम्", "Disabled": "निष्क्रियीकृतम्", "More info": "अधिक-सूचना", + "GitHub account": "GitHub खातम्", "Log in with GitHub to enable cloud package backup.": "cloud package backup सक्रियीकरणाय GitHub सह प्रविशतु।", "More details": "अधिक-विवरणानि", "Log in": "प्रविशतु", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "यदि cloud backup सक्रियीकृतम् अस्ति, तर्हि एतस्मिन् खाते GitHub Gist रूपेण रक्षितं भविष्यति", "Log out": "निर्गच्छतु", + "About UniGetUI": "UniGetUI विषये", "About": "सम्बन्धे", "Third-party licenses": "तृतीय-पक्ष-अनुज्ञापत्राणि", "Contributors": "योगदातारः", @@ -212,6 +231,7 @@ "Manage shortcuts": "shortcuts प्रबन्धय", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI इत्यनेन निम्नलिखिताः desktop shortcuts ज्ञाताः ये भविष्यत् upgrades मध्ये स्वयमेव अपाकर्तुं शक्यन्ते", "Do you really want to reset this list? This action cannot be reverted.": "भवान् अस्याः सूच्याः reset कर्तुम् एव इच्छति किम्? एषा क्रिया प्रत्यावर्तयितुं न शक्यते।", + "Open in explorer": "Explorer मध्ये उद्घाटय", "Remove from list": "सूच्यातः अपाकुरु", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "नूतनाः shortcuts ज्ञायमाने अस्य dialog दर्शनस्य स्थाने तान् स्वयमेव अपाकुरु।", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "उपयोक्तृ-अनुभवम् अवगन्तुं सुधारयितुं च केवलं UniGetUI अनामिक-उपयोग-दत्तांशं संगृह्णाति।", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "उपयोक्तृ-अनुभवं ज्ञातुं सुधरितुं च केवल-उद्देशेन UniGetUI अनाम-usage-statistics संकलयति प्रेषयति च, इति भवान् स्वीकरोति किम्?", "Decline": "अस्वीकुरुत", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "काचिदपि व्यक्तिगत-सूचना न संगृह्यते न प्रेष्यते च, संगृहीत-दत्तांशश्च अनामिकीकृतः अस्ति, अतः सः पुनः त्वयि अनुसर्तुं न शक्यते।", - "About WingetUI": "WingetUI सम्बन्धे", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एषा application अस्ति या तव command-line package managers कृते सर्वसमावेशकं graphical interface प्रदाय software-प्रबन्धनं सुकरं करोति।", + "Toggle navigation panel": "नाविकन-पट्टिकां दर्शय वा गोपय", + "Minimize": "न्यूनीकुरु", + "Maximize": "वर्धय", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एषा application अस्ति या तव command-line package managers कृते सर्वसमावेशकं graphical interface प्रदाय software-प्रबन्धनं सुकरं करोति।", "Useful links": "उपयोगिनः links", + "UniGetUI Homepage": "UniGetUI मुखपृष्ठम्", "Report an issue or submit a feature request": "समस्यां निवेदय अथवा feature request प्रेषय", + "UniGetUI Repository": "UniGetUI संग्रहः", "View GitHub Profile": "GitHub Profile पश्य", - "WingetUI License": "UniGetUI अनुज्ञापत्रम्", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI उपयोक्तुं MIT License इत्यस्य स्वीकृतिः सूच्यते", + "UniGetUI License": "UniGetUI अनुज्ञापत्रम्", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI उपयोक्तुं MIT License इत्यस्य स्वीकृतिः सूच्यते", "Become a translator": "अनुवादकः भव", "View page on browser": "browser मध्ये पृष्ठं पश्य", "Copy to clipboard": "clipboard प्रति प्रतिलिखतु", "Export to a file": "file इत्यस्मिन् निर्यातयतु", "Log level:": "log स्तरः:", "Reload log": "log पुनर्लोडय", + "Export log": "log निर्यातय", + "UniGetUI Log": "UniGetUI log-पत्रम्", "Text": "पाठः", "Change how operations request administrator rights": "क्रियाः administrator rights कथं याचन्ते इति परिवर्तयतु", "Restrictions on package operations": "package operations विषये प्रतिबन्धाः", @@ -271,7 +297,7 @@ "Leave empty for default": "मूलनिर्धारणाय रिक्तं त्यजतु", "Add a timestamp to the backup file names": "प्रतिस्थापनसञ्चिकानामसु कालचिह्नं योजय", "Backup and Restore": "backup तथा पुनर्स्थापनम्", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background api (WingetUI Widgets and Sharing, port 7058) सक्रियीकुरुत", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "background api (UniGetUI Widgets and Sharing, port 7058) सक्रियीकुरुत", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "internet-संयोजनम् अपेक्षन्ते यानि कार्याणि तानि कर्तुं प्रयतमानः सन् उपकरणं प्रथमं internet सह सम्बद्धं भवतु इति प्रतीक्षस्व।", "Disable the 1-minute timeout for package-related operations": "package-संबद्ध-क्रियाभ्यः 1-minute timeout निष्क्रियं कुरुत", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator इत्यस्य स्थाने स्थापितं GSudo उपयोजय", @@ -286,7 +312,7 @@ "Telemetry": "दूरमिति", "Manage UniGetUI settings": "UniGetUI settings प्रबन्धय", "Related settings": "सम्बद्ध settings", - "Update WingetUI automatically": "UniGetUI स्वयमेव अद्यतय", + "Update UniGetUI automatically": "UniGetUI स्वयमेव अद्यतय", "Check for updates": "अद्यतनानि परीक्ष्यन्ताम्", "Install prerelease versions of UniGetUI": "UniGetUI इत्यस्य prerelease versions स्थापयतु", "Manage telemetry settings": "telemetry settings प्रबन्धय", @@ -295,17 +321,17 @@ "Import": "आयातयतु", "Export settings to a local file": "settings स्थानीय-file इत्यस्मिन् निर्यातयतु", "Export": "निर्यातयतु", - "Reset WingetUI": "UniGetUI पुनर्स्थापय", "Reset UniGetUI": "UniGetUI पुनर्स्थापय", "User interface preferences": "उपयोक्ता-अन्तरफल-अभिरुचयः", "Application theme, startup page, package icons, clear successful installs automatically": "application theme, startup page, package icons, सफलस्थापनानि स्वयमेव अपसारयतु", "General preferences": "सामान्य-अभिरुचयः", - "WingetUI display language:": "UniGetUI प्रदर्शन-भाषा:", + "UniGetUI display language:": "UniGetUI प्रदर्शन-भाषा:", "Is your language missing or incomplete?": "भवतः भाषा अनुपस्थितास्ति वा अपूर्णा अस्ति किम्?", "Appearance": "रूपम्", "UniGetUI on the background and system tray": "background तथा system tray मध्ये UniGetUI", "Package lists": "पैकेज्-सूचयः", "Close UniGetUI to the system tray": "UniGetUI system tray प्रति पिधत्ताम्", + "Manage UniGetUI autostart behaviour": "UniGetUI स्वयमारम्भ-व्यवहारं प्रबन्धय", "Show package icons on package lists": "package सूचिषु package icons दर्शय", "Clear cache": "cache अपसारयतु", "Select upgradable packages by default": "उन्नेय-packages पूर्वनिर्धारितरूपेण चयनय", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "कृपया ज्ञापयामः यत् सर्वे package managers एतत् feature पूर्णतया न समर्थयेयुः।", "Proxy URL": "proxy URL", "Enter proxy URL here": "अत्र proxy URL लिखतु", + "Authenticate to the proxy with a user and a password": "उपयोक्तृनाम्ना गुह्यशब्देन च proxy मध्ये प्रमाणीकरोतु", + "Internet and proxy settings": "internet तथा proxy विन्यासाः", "Package manager preferences": "पैकेज्-प्रबन्धक-अभिरुचयः", "Ready": "सज्जम्", "Not found": "न लब्धम्", "Notification preferences": "सूचना-अभिरुचयः", "Notification types": "सूचना-प्रकाराः", "The system tray icon must be enabled in order for notifications to work": "notifications कार्यकर्तुं system tray icon सक्षमः भवितुम् आवश्यकः।", - "Enable WingetUI notifications": "WingetUI notifications सक्रियीकुरुत", + "Enable UniGetUI notifications": "UniGetUI notifications सक्रियीकुरुत", "Show a notification when there are available updates": "उपलब्ध-अद्यतनानि सन्ति चेत् notification दर्शय", "Show a silent notification when an operation is running": "operation प्रचलति चेत् निःशब्द notification दर्शय", "Show a notification when an operation fails": "operation विफलः चेत् notification दर्शय", "Show a notification when an operation finishes successfully": "operation सफलतया समाप्तः चेत् notification दर्शय", "Concurrency and execution": "समकालिकता तथा execution", "Automatic desktop shortcut remover": "स्वयंचलित desktop shortcut remover", + "Choose how many operations should be performed in parallel": "कियत् क्रियाः समकालिकरूपेण क्रियेरन् इति चयनय", "Clear successful operations from the operation list after a 5 second delay": "5 second विलम्बेन operation list तः सफलाः क्रियाः अपसारयतु", "Download operations are not affected by this setting": "Download operations एतया setting इत्यया न प्रभाविताः", "Try to kill the processes that refuse to close when requested to": "येषां processes पिधानार्थं अनुरोधे सति अपि न पिधीयन्ते तान् समाप्तुं प्रयतस्व", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "उपयोक्तव्यं executable चयनय। अधोलिखिता सूची UniGetUI द्वारा लब्धानि executables दर्शयति।", "Current executable file:": "वर्तमान executable सञ्चिका:", "Ignore packages from {pm} when showing a notification about updates": "updates विषये notification दर्शने {pm} तः packages उपेक्षध्वम्", + "Update security": "अद्यतन-सुरक्षा", + "Use global setting": "वैश्विक-विन्यासम् उपयोजय", + "e.g. 10": "यथा 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} स्वेषां packages कृते प्रकाशन-तिथीः न ददाति, अतः अस्य विन्यासस्य प्रभावो न भविष्यति", + "Override the global minimum update age for this package manager": "अस्य package manager कृते वैश्विकं न्यूनतम-अद्यतन-कालम् अधिलिख्य स्थापय", + "Minimum age for updates": "अद्यतनानां न्यूनतम-कालः", + "Custom minimum age (days)": "स्वनिर्धारितः न्यूनतम-कालः (दिवसाः)", "View {0} logs": "{0} logs पश्य", + "If Python cannot be found or is not listing packages but is installed on the system, ": "यदि Python न लभ्यते अथवा packages न सूचयति किन्तु प्रणालीषु स्थापितम् अस्ति, ", "Advanced options": "उन्नतविकल्पाः", "Reset WinGet": "WinGet पुनर्स्थापय", "This may help if no packages are listed": "यदि packages न सूचीकृतानि स्युः तर्हि एतत् साहाय्यं कुर्यात्", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "launch काले Scoop cleanup सक्रियं कुरुत", "Use system Chocolatey": "system Chocolatey उपयोजय", "Default vcpkg triplet": "मूलनिर्धारित vcpkg triplet", + "Change vcpkg root location": "vcpkg मूल-स्थानं परिवर्तय", "Language, theme and other miscellaneous preferences": "भाषा, theme तथा अन्याः miscellaneous अभिरुचयः", "Show notifications on different events": "विविध-घटनासु notifications दर्शय", "Change how UniGetUI checks and installs available updates for your packages": "तव पुटकानां अद्यतनानि परीक्ष्य स्थापयति च इति UniGetUI कथं परिवर्तय", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "network connection metered सति updates स्वयमेव मा स्थापयतु", "Do not automatically install updates when the device runs on battery": "उपकरणं battery इत्यस्मिन् धावति चेत् updates स्वयमेव मा स्थापयतु", "Do not automatically install updates when the battery saver is on": "battery saver सक्रियः सति updates स्वयमेव मा स्थापयतु", + "Only show updates that are at least the specified number of days old": "केवलं तानि अद्यतनानि दर्शय यानि न्यूनतया निर्दिष्ट-दिवस-संख्यया पुरातनानि सन्ति", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI स्थापन, अद्यतन, अनस्थापन-क्रियाः कथं नियच्छति इति परिवर्तयतु।", "Package Managers": "पैकेज्-प्रबन्धकाः", "More": "अधिकम्", - "WingetUI Log": "UniGetUI log-पत्रम्", "Package Manager logs": "पैकेज्-प्रबन्धक-logs", "Operation history": "operation-इतिहासः", "Help": "साहाय्यम्", + "Quit UniGetUI": "UniGetUI त्यज", "Order by:": "क्रमेण:", "Name": "नाम", "Id": "परिचयः", @@ -409,6 +448,10 @@ "Both": "उभे", "Exact match": "सटीक-साम्यं", "Show similar packages": "सदृश packages दर्शय", + "Nothing to share": "साझीकरणार्थं किमपि नास्ति", + "Please select a package first.": "प्रथमं package चयनयतु।", + "Share link copied": "साझीकरण-कडी प्रतिलिखिता", + "The share link for {0} has been copied to the clipboard.": "{0} इत्यस्य साझीकरण-कडी clipboard मध्ये प्रतिलिखिता।", "No results were found matching the input criteria": "प्रविष्ट-मानदण्डैः अनुरूपाणि परिणामानि न लब्धानि", "No packages were found": "packages न लब्धानि", "Loading packages": "packages load क्रियन्ते", @@ -440,7 +483,11 @@ "Package bundle": "पैकेज्-bundle", "Could not create bundle": "bundle निर्मातुं न शक्यते", "The package bundle could not be created due to an error.": "दोषकारणात् package bundle निर्मातुं न शक्यत।", + "Unsaved changes": "असंगृहीत-परिवर्तनानि", + "Discard changes": "परिवर्तनानि परित्यज", + "You have unsaved changes in the current bundle. Do you want to discard them?": "वर्तमान-bundle मध्ये तव असंगृहीत-परिवर्तनानि सन्ति। किं तानि परित्यक्तुम् इच्छसि?", "Bundle security report": "bundle security report", + "The bundle contained restricted content": "bundle मध्ये प्रतिबद्ध-विषयवस्तु आसीत्", "Hooray! No updates were found.": "साधु! updates न लब्धाः।", "Everything is up to date": "सर्वम् अद्यतनम् अस्ति", "Uninstall selected packages": "चयनित-packages अनस्थापय", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows कृते पारम्परिकः package manager। तत्र सर्वं प्राप्स्यसि।
अन्तर्भवति: General Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft इत्यस्य .NET परिसंस्थां मनसि निधाय निर्मितैः tools तथा executables इत्येतैः पूर्णः repository
अन्तर्भवति: .NET सम्बन्धित tools तथा scripts", "NuPkg (zipped manifest)": "NuPkg (सङ्कुचित manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (वा Linux) कृते लुप्तः Package Manager.
अन्तर्भवति: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS इत्यस्य package manager। javascript-जगतः परिभ्रमन्तीभिः libraries तथा अन्याभिः utilities पूर्णः
अन्तर्भवति: Node javascript libraries तथा अन्याः सम्बद्ध-utilities", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python इत्यस्य library manager। python libraries तथा अन्याभिः python-सम्बद्ध-utilities इत्यैः पूर्णः
अन्तर्भवति: Python libraries and related utilities", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell इत्यस्य package manager। PowerShell क्षमताः विस्तरयितुं libraries तथा scripts अन्विष्यताम्
अन्तर्भवति: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "queue मध्ये operation ({0} स्थानम्)...", "Click here for more details": "अधिकविवरणार्थम् अत्र क्लिक् करोतु", "Operation canceled by user": "उपयोक्त्रा operation निरस्तम्", + "Running PreOperation ({0}/{1})...": "PreOperation ({0}/{1}) प्रचलति...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} मध्ये PreOperation {0} विफलम् अभवत्, आवश्यकम् इति चिह्नितम् आसीत्। निरस्यते...", + "PreOperation {0} out of {1} finished with result {2}": "{1} मध्ये PreOperation {0} {2} परिणामेन समाप्तम्", "Starting operation...": "operation आरभ्यते...", + "Running PostOperation ({0}/{1})...": "PostOperation ({0}/{1}) प्रचलति...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} मध्ये PostOperation {0} विफलम् अभवत्, आवश्यकम् इति चिह्नितम् आसीत्। निरस्यते...", + "PostOperation {0} out of {1} finished with result {2}": "{1} मध्ये PostOperation {0} {2} परिणामेन समाप्तम्", "{package} installer download": "{package} installer अवतरणम्", "{0} installer is being downloaded": "{0} installer अवतार्यते", "Download succeeded": "Download सफलम्", @@ -556,14 +610,12 @@ "Portable mode": "पोर्टेबल्-मोडः\n", "DEBUG BUILD": "DEBUG build", "Available Updates": "उपलब्धानि अद्यतनानि", - "Show WingetUI": "UniGetUI दर्शय", + "Show UniGetUI": "UniGetUI दर्शय", "Quit": "निर्गच्छ", "Attention required": "सावधानता आवश्यकम्", "Restart required": "पुनरारम्भः अपेक्षितः", "1 update is available": "1 अद्यतनं उपलब्धम् अस्ति", "{0} updates are available": "{0} अद्यतनानि उपलब्धानि", - "WingetUI Homepage": "UniGetUI मुखपृष्ठम्", - "WingetUI Repository": "UniGetUI भण्डारः", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "अत्र भवान् निम्नलिखित-shortcuts विषये UniGetUI इत्यस्य व्यवहारं परिवर्तयितुं शक्नोति। shortcut चयनं कृत्वा यदि भविष्यात् upgrade काले तत् निर्मीयते तर्हि UniGetUI तत् अपासारयिष्यति। चयनं निष्कास्य shortcut अक्षुण्णं भविष्यति।", "Manual scan": "हस्तचालित-स्कैन", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "भवतः desktop इत्यत्र विद्यमानाः shortcuts परीक्षिताः भविष्यन्ति, तथा च केषां रक्षणं कर्तव्यम्, केषां अपसारणं कर्तव्यम् इति त्वया चयनं करणीयम्।", @@ -583,7 +635,6 @@ "Restart later": "पश्चात् पुनरारभस्व", "An error occurred:": "दोषः अभवत्:", "I understand": "अहं बोधामि", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI administrator रूपेण चालितम्, यत् न अनुशंस्यते। UniGetUI administrator रूपेण चलति चेत् UniGetUI तः आरब्धः प्रत्येकः operation administrator privileges धारयिष्यति। त्वं कार्यक्रमम् अद्यापि उपयोक्तुं शक्नोषि, किन्तु UniGetUI administrator privileges सह न चालयितव्यम् इति वयं दृढतया अनुशंसामः।", "WinGet was repaired successfully": "WinGet सफलतया मरम्मितः", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet मरम्मतस्य अनन्तरं UniGetUI पुनरारभितुं अनुशंस्यते", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "टिप्पणी: अयं troubleshooter UniGetUI Settings इत्यत्र WinGet विभागे निष्क्रियः कर्तुं शक्यते", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. भवतः पुटकानि बण्डले योजितानि भविष्यन्ति। भवन्तः अन्यानि पुटकानि अपि योजयितुं वा बण्डलम् निर्यातयितुं शक्नुवन्ति।", "Which backup do you want to open?": "कं backup उद्घाटयितुम् इच्छसि?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "यत् backup उद्घाटयितुम् इच्छसि तत् चयनय। पश्चात् केषु packages स्थापनीयाः इति समीक्षितुं शक्नोषि।", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "प्रचलिताः operations सन्ति। UniGetUI त्यागेन ताः विफलाः भवेयुः। किं त्वम् अग्रे गन्तुम् इच्छसि?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "प्रचलिताः operations सन्ति। UniGetUI त्यागेन ताः विफलाः भवेयुः। किं त्वम् अग्रे गन्तुम् इच्छसि?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI अथवा तस्य केचन components अनुपस्थिताः अथवा भ्रष्टाः सन्ति।", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "अस्य स्थितेः समाधानाय UniGetUI पुनः स्थापयितुं दृढतया अनुशंस्यते।", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "प्रभावित-file(s) विषये अधिक-विवरणानि प्राप्तुं UniGetUI Logs प्रति सन्दर्भं कुरु", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "अत्र process-names लिख, अल्पविरामैः (,) पृथक्कृताः", "Unset or unknown": "अनिर्धारितम् अथवा अज्ञातम्", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "कृपया Command-line Output पश्यतु अथवा समस्यायाः विषये अधिक-सूचनार्थं Operation History प्रति सन्दर्भं कुरु।", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "अस्य package इत्यस्य screenshots न सन्ति अथवा icon अनुपस्थितम्? अस्माकं उन्मुक्त-सार्वजनिक-database मध्ये अनुपस्थित-icons तथा screenshots योजयित्वा UniGetUI प्रति योगदानं कुरु।", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "अस्य package इत्यस्य screenshots न सन्ति अथवा icon अनुपस्थितम्? अस्माकं उन्मुक्त-सार्वजनिक-database मध्ये अनुपस्थित-icons तथा screenshots योजयित्वा UniGetUI प्रति योगदानं कुरु।", "Become a contributor": "योगदातारं भव", "Save": "संगृहाण", "Update to {0} available": "{0} पर्यन्तम् अद्यतनम् उपलब्धम्", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "स्वयंचलित WinGet troubleshooter सक्रियीकुरुत", "Enable an [experimental] improved WinGet troubleshooter": "[experimental] उन्नत WinGet troubleshooter सक्रियीकुरुत", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'no applicable update found' इति कारणेन विफलानि अद्यतनानि उपेक्षित-अद्यतन-सूच्यां योजयतु", - "Restart WingetUI to fully apply changes": "परिवर्तनानि पूर्णतया लागूकर्तुं UniGetUI पुनरारभस्व", - "Restart WingetUI": "UniGetUI पुनरारभस्व", "Invalid selection": "अमान्य-चयनम्", "No package was selected": "किमपि package न चयनितम्", "More than 1 package was selected": "एकात् अधिकं package चयनितम्", @@ -684,6 +733,37 @@ "Log out failed: ": "निर्गमनं विफलम्:", "Package backup settings": "पैकेज्-backup settings", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI सम्बन्धे", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI एषा application अस्ति या तव command-line package managers कृते सर्वसमावेशकं graphical interface प्रदाय software-प्रबन्धनं सुकरं करोति।", + "You have installed WingetUI Version {0}": "त्वया UniGetUI संस्करणम् {0} स्थापितम्", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors सहाय्यं विना UniGetUI सम्भवमेव न स्यात्। सर्वेभ्यः धन्यवादाः 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI निम्नलिखित-libraries उपयोजयति। एताभिः विना UniGetUI सम्भवमेव न स्यात्।", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "स्वयंसेवक-अनुवादकानां कृते UniGetUI 40 तः अधिकासु भाषासु अनूदितम् अस्ति। धन्यवादः 🤝", + "WingetUI Settings": "UniGetUI विन्यासाः", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI सह उपयोक्तुं {pm} स्थापयितुं त्वया आवश्यकं भवेत्।", + "Scoop Installer - WingetUI": "Scoop स्थापक - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop अनस्थापक - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop सञ्चिकायाः निर्मूल्यताम् - WingetUI", + "WingetUI Version {0}": "UniGetUI संस्करणम् {0}", + "WingetUI License": "UniGetUI अनुज्ञापत्रम्", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI उपयोक्तुं MIT License इत्यस्य स्वीकृतिः सूच्यते", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background api (WingetUI Widgets and Sharing, port 7058) सक्रियीकुरुत", + "Update WingetUI automatically": "UniGetUI स्वयमेव अद्यतय", + "Reset WingetUI": "UniGetUI पुनर्स्थापय", + "WingetUI display language:": "UniGetUI प्रदर्शन-भाषा:", + "Manage WingetUI autostart behaviour": "UniGetUI स्वयमारम्भ-व्यवहारं प्रबन्धय", + "Enable WingetUI notifications": "WingetUI notifications सक्रियीकुरुत", + "WingetUI Log": "UniGetUI log-पत्रम्", + "Show WingetUI": "UniGetUI दर्शय", + "WingetUI Homepage": "UniGetUI मुखपृष्ठम्", + "WingetUI Repository": "UniGetUI भण्डारः", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI administrator रूपेण चालितम्, यत् न अनुशंस्यते। UniGetUI administrator रूपेण चलति चेत् UniGetUI तः आरब्धः प्रत्येकः operation administrator privileges धारयिष्यति। त्वं कार्यक्रमम् अद्यापि उपयोक्तुं शक्नोषि, किन्तु UniGetUI administrator privileges सह न चालयितव्यम् इति वयं दृढतया अनुशंसामः।", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "प्रचलिताः operations सन्ति। UniGetUI त्यागेन ताः विफलाः भवेयुः। किं त्वम् अग्रे गन्तुम् इच्छसि?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "अस्य package इत्यस्य screenshots न सन्ति अथवा icon अनुपस्थितम्? अस्माकं उन्मुक्त-सार्वजनिक-database मध्ये अनुपस्थित-icons तथा screenshots योजयित्वा UniGetUI प्रति योगदानं कुरु।", + "Restart WingetUI to fully apply changes": "परिवर्तनानि पूर्णतया लागूकर्तुं UniGetUI पुनरारभस्व", + "Restart WingetUI": "UniGetUI पुनरारभस्व", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Settings app मध्ये UniGetUI स्वयमारम्भ-व्यवहारं प्रबन्धय", "(Number {0} in the queue)": "(पङ्क्तौ संख्या {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@skanda890", "0 packages found": "0 पुटकं न लब्धम्", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json index ce96db420f..f59cfa12ed 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_si.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "pre-uninstall විධානය අසාර්ථක වුවහොත් අස්ථාපනය නවත්වන්න", "Command-line to run:": "ධාවනය කිරීමට command-line:", "Save and close": "සුරකින්න සහ වසන්න", + "General": "සාමාන්‍ය", + "Architecture & Location": "ව්‍යුහය සහ ස්ථානය", + "Command-line": "විධාන පේළිය", + "Pre/Post install": "පෙර/පසු ස්ථාපනය", "Run as admin": "admin ලෙස ධාවනය කරන්න", "Interactive installation": "Interactive ස්ථාපනය", "Skip hash check": "hash check මඟ හරින්න", @@ -71,6 +75,8 @@ "Manage ignored updates": "නොසලකා හරින ලද යාවත්කාලීන කළමනාකරණය කරන්න", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "මෙහි ලැයිස්තුගත කළ පැකේජ updates පරීක්ෂා කිරීමේදී සැලකිල්ලට ගනු නොලැබේ. ඒවා දෙවරක් ක්ලික් කරන්න හෝ දකුණු පැත්තේ බොත්තම ක්ලික් කර එම updates නොසලකා හැරීම නවත්වන්න.", "Reset list": "ලැයිස්තුව reset කරන්න", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "නොසලකා හරින ලද යාවත්කාලීන ලැයිස්තුව යළි පිහිටුවීමට ඔබට ඇත්තටම අවශ්‍යද? මෙම ක්‍රියාව ආපසු හැරවිය නොහැක", + "No ignored updates": "නොසලකා හරින ලද යාවත්කාලීන නොමැත", "Package Name": "පැකේජ නම", "Package ID": "පැකේජ ID", "Ignored version": "නොසලකා හරින ලද සංස්කරණය", @@ -86,6 +92,7 @@ "This operation is running interactively.": "මෙම මෙහෙයුම interactive ආකාරයෙන් ක්‍රියාත්මක වෙමින් පවතී.", "You will likely need to interact with the installer.": "ඔබට බොහෝවිට installer සමඟ අන්තර්ක්‍රියා කිරීමට සිදුවේ.", "Integrity checks skipped": "Integrity checks මඟ හරින ලදි", + "Integrity checks will not be performed during this operation.": "මෙම මෙහෙයුම අතරතුර integrity checks සිදු නොකෙරේ.", "Proceed at your own risk.": "ඔබගේම අවදානම මත ඉදිරියට යන්න.", "Close": "වසා දමන්න", "Loading...": "පූරණය කරමින්...", @@ -120,16 +127,17 @@ "optional": "විකල්ප", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} ස්ථාපනය කිරීමට සූදානම්ය.", "The update process will start after closing UniGetUI": "UniGetUI වසා දැමූ පසු update process එක ආරම්භ වේ", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI පරිපාලක ලෙස ධාවනය කර ඇත, එය නිර්දේශ නොකෙරේ. UniGetUI පරිපාලක ලෙස ධාවනය කරන විට, UniGetUI වෙතින් ආරම්භ කරන සියලුම මෙහෙයුම් පරිපාලක බලතල සමඟ ක්‍රියාත්මක වේ. ඔබට තවමත් වැඩසටහන භාවිතා කළ හැකි නමුත්, UniGetUI පරිපාලක බලතල සමඟ ධාවනය නොකිරීම තදින්ම නිර්දේශ කරමු.", "Share anonymous usage data": "අනාමික භාවිත දත්ත බෙදාගන්න", "UniGetUI collects anonymous usage data in order to improve the user experience.": "පරිශීලක අත්දැකීම වැඩිදියුණු කිරීම සඳහා UniGetUI අනාමික භාවිත දත්ත රැස් කරයි.", "Accept": "එකඟ වන්න", - "You have installed WingetUI Version {0}": "ඔබ WingetUI Version {0} ස්ථාපනය කර ඇත", + "You have installed UniGetUI Version {0}": "ඔබ UniGetUI Version {0} ස්ථාපනය කර ඇත", "Disclaimer": "වියාචනය", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI කිසිදු compatible package manager එකකට සම්බන්ධ නැත. UniGetUI ස්වාධීන ව්‍යාපෘතියකි.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "දායකයින්ගේ සහාය නොමැතිව WingetUI හැකි නොවනු ඇත. ඔබ සැමට ස්තුතියි 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI පහත libraries භාවිතා කරයි. ඒවා නොමැතිව WingetUI තිබීමට නොහැකි විය.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "දායකයින්ගේ සහාය නොමැතිව UniGetUI හැකි නොවනු ඇත. ඔබ සැමට ස්තුතියි 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI පහත libraries භාවිතා කරයි. ඒවා නොමැතිව UniGetUI තිබීමට නොහැකි විය.", "{0} homepage": "{0} මුල් පිටුව", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ස්වේච්ඡා පරිවර්තකයන්ගේ շնորհයෙන් WingetUI භාෂා 40 කට වඩා වැඩි ගණනකට පරිවර්තනය කර ඇත. ස්තුතියි 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ස්වේච්ඡා පරිවර්තකයන්ගේ շնորհයෙන් UniGetUI භාෂා 40 කට වඩා වැඩි ගණනකට පරිවර්තනය කර ඇත. ස්තුතියි 🤝", "Verbose": "සවිස්තරාත්මක", "1 - Errors": "1 - දෝෂ", "2 - Warnings": "2 - අනතුරු ඇඟවීම්", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "ඔබ {0} (@{1}) ලෙස පිවිසී ඇත", "Nice! Backups will be uploaded to a private gist on your account": "හොඳයි! backup ඔබගේ ගිණුමේ private gist එකකට upload කෙරේ", "Select backup": "backup තෝරන්න", - "WingetUI Settings": "WingetUI Settings", + "UniGetUI Settings": "UniGetUI සැකසුම්", "Allow pre-release versions": "pre-release සංස්කරණ සඳහා ඉඩ දෙන්න", "Apply": "යොදන්න", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "ආරක්ෂක හේතු මත අභිරුචි command-line arguments පෙරනිමියෙන් අක්‍රීය කර ඇත. මෙය වෙනස් කිරීමට UniGetUI ආරක්ෂක සැකසුම් වෙත යන්න.", "Go to UniGetUI security settings": "UniGetUI ආරක්ෂක සැකසුම් වෙත යන්න", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "{0} පැකේජයක් ස්ථාපනය, upgrade හෝ uninstall කරන සෑම අවස්ථාවකම පහත විකල්ප පෙරනිමියෙන් යෙදේ.", "Package's default": "පැකේජයේ පෙරනිමිය", @@ -160,6 +169,7 @@ "Username": "පරිශීලක නාමය", "Password": "මුරපදය", "Credentials": "අක්තපත්‍ර", + "It is not guaranteed that the provided credentials will be stored safely": "ලබා දී ඇති අක්තපත්‍ර ආරක්ෂිතව ගබඩා වන බවට සහතික කළ නොහැක", "Partially": "අර්ධ වශයෙන්", "Package manager": "පැකේජ කළමනාකරු", "Compatible with proxy": "proxy සමඟ අනුකූලයි", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} සක්‍රීය කර ඇති අතර සූදානම්ය", "{pm} version:": "{pm} සංස්කරණය:", "{pm} was not found!": "{pm} හමු නොවීය!", - "You may need to install {pm} in order to use it with WingetUI.": "WingetUI සමඟ භාවිතා කිරීමට ඔබට {pm} ස්ථාපනය කිරීමට අවශ්‍ය විය හැක.", - "Scoop Installer - WingetUI": "Scoop ස්ථාපකය - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop අස්ථාපකය - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop cache ඉවත් කරමින් - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI සමඟ භාවිතා කිරීමට ඔබට {pm} ස්ථාපනය කිරීමට අවශ්‍ය විය හැක.", + "Scoop Installer - UniGetUI": "Scoop ස්ථාපකය - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop අස්ථාපකය - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop cache ඉවත් කරමින් - UniGetUI", + "Restart UniGetUI to fully apply changes": "වෙනස්කම් සම්පූර්ණයෙන් යෙදීමට UniGetUI නැවත ආරම්භ කරන්න", "Restart UniGetUI": "UniGetUI නැවත ආරම්භ කරන්න", "Manage {0} sources": "{0} මූලාශ්‍ර කළමනාකරණය කරන්න", "Add source": "මූලාශ්‍රය එක් කරන්න", "Add": "එකතු කරන්න", + "Source name": "මූලාශ්‍ර නම", + "Source URL": "මූලාශ්‍ර URL ලිපිනය", "Other": "වෙනත්", + "No minimum age": "අවම වයස් සීමාවක් නැත", "1 day": "දින 1", "{0} days": "දින {0}", + "Custom...": "අභිරුචි...", "{0} minutes": "මිනිත්තු {0} ", "1 hour": "පැය 1", "{0} hours": "පැය {0} ", "1 week": "සති 1", - "WingetUI Version {0}": "WingetUI සංස්කරණය {0}", + "Supports release dates": "නිකුතු දින සඳහා සහය දක්වයි", + "Release date support per package manager": "එක් එක් පැකේජ කළමනාකරු අනුව නිකුතු දින සහය", + "UniGetUI Version {0}": "UniGetUI සංස්කරණය {0}", "Search for packages": "පැකේජ සොයන්න", "Local": "ස්ථානීය", "OK": "හරි", @@ -200,11 +217,13 @@ "Enabled": "සක්‍රීයයි", "Disabled": "අක්‍රීයයි", "More info": "වැඩි තොරතුරු", + "GitHub account": "GitHub ගිණුම", "Log in with GitHub to enable cloud package backup.": "cloud package backup සක්‍රීය කිරීමට GitHub සමඟ පිවිසෙන්න.", "More details": "වැඩි විස්තර", "Log in": "පිවිසෙන්න", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "ඔබ cloud backup සක්‍රීය කර තිබේ නම්, එය මෙම ගිණුමේ GitHub Gist එකක් ලෙස සුරකිනු ලැබේ", "Log out": "ඉවත් වන්න", + "About UniGetUI": "UniGetUI පිළිබඳ", "About": "පිළිබඳ", "Third-party licenses": "Third-party බලපත්‍ර", "Contributors": "සහයෝගිකයින්", @@ -212,6 +231,7 @@ "Manage shortcuts": "shortcuts කළමනාකරණය කරන්න", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "අනාගත upgrades වලදී ස්වයංක්‍රීයව ඉවත් කළ හැකි පහත desktop shortcuts UniGetUI හඳුනාගෙන ඇත.", "Do you really want to reset this list? This action cannot be reverted.": "මෙම ලැයිස්තුව reset කිරීමට ඔබට ඇත්තටම අවශ්‍යද? මෙම ක්‍රියාව ආපසු හැරවිය නොහැක.", + "Open in explorer": "explorer තුළ විවෘත කරන්න", "Remove from list": "ලැයිස්තුවෙන් ඉවත් කරන්න", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "නව shortcuts හඳුනාගත් විට, මෙම dialog එක පෙන්වීම වෙනුවට ඒවා ස්වයංක්‍රීයව මකා දමන්න.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "පරිශීලක අත්දැකීම වටහාගෙන වැඩිදියුණු කිරීමේ එකම අරමුණින් UniGetUI අනාමික භාවිත දත්ත රැස් කරයි.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "පරිශීලක අත්දැකීම වටහාගෙන වැඩිදියුණු කිරීමේ එකම අරමුණින් UniGetUI අනාමික භාවිත සංඛ්‍යාන රැස්කර යවන බව ඔබ පිළිගන්නවාද?", "Decline": "ප්‍රතික්ෂේප කරන්න", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "පුද්ගලික තොරතුරු කිසිවක් රැස්කර හෝ යවා නැති අතර, රැස් කළ දත්ත අනාමික කර ඇති බැවින් ඒවා ඔබ වෙත හඹාගොස් හඳුනාගත නොහැක.", - "About WingetUI": "WingetUI පිළිබඳව ", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ඔබේ command-line package managers සඳහා all-in-one graphical interface එකක් ලබා දීමෙන් ඔබේ මෘදුකාංග කළමනාකරණය පහසු කරන යෙදුමක් WingetUI වේ.", + "Toggle navigation panel": "සංචාලන පැනලය මාරු කරන්න", + "Minimize": "කුඩා කරන්න", + "Maximize": "විශාල කරන්න", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ඔබේ command-line package managers සඳහා all-in-one graphical interface එකක් ලබා දීමෙන් ඔබේ මෘදුකාංග කළමනාකරණය පහසු කරන යෙදුමක් UniGetUI වේ.", "Useful links": "ප්‍රයෝජනවත් සබැඳි", + "UniGetUI Homepage": "UniGetUI මුල් පිටුව", "Report an issue or submit a feature request": "ගැටලුවක් වාර්තා කරන්න හෝ feature request එකක් යවන්න", + "UniGetUI Repository": "UniGetUI ගබඩාව", "View GitHub Profile": "GitHub profile බලන්න", - "WingetUI License": "WingetUI බලපත්‍රය", - "Using WingetUI implies the acceptation of the MIT License": "WingetUI භාවිතා කිරීමෙන් MIT බලපත්‍රය පිළිගැනීම අදහස් වේ", + "UniGetUI License": "UniGetUI බලපත්‍රය", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI භාවිතා කිරීමෙන් MIT බලපත්‍රය පිළිගැනීම අදහස් වේ", "Become a translator": "පරිවර්තකයෙක් වෙන්න", "View page on browser": "browser එකේ පිටුව බලන්න", "Copy to clipboard": "clipboard වෙත පිටපත් කරන්න", "Export to a file": "ගොනුවකට අපනයනය කරන්න", "Log level:": "Log මට්ටම:", "Reload log": "log නැවත පූරණය කරන්න", + "Export log": "ලොගය අපනයනය කරන්න", + "UniGetUI Log": "UniGetUI ලොගය", "Text": "පෙළ", "Change how operations request administrator rights": "මෙහෙයුම් පරිපාලක හිමිකම් ඉල්ලන ආකාරය වෙනස් කරන්න", "Restrictions on package operations": "පැකේජ මෙහෙයුම් පිළිබඳ සීමා", @@ -271,7 +297,7 @@ "Leave empty for default": "පෙරනිමිය සඳහා හිස්ව තබන්න", "Add a timestamp to the backup file names": "උපස්ථ ගොනු නාමවලට වේලා මුද්‍රාවක් එක් කරන්න", "Backup and Restore": "උපස්ථ සහ ප්‍රතිස්ථාපනය", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API සක්‍රීය කරන්න (UniGetUI Widgets සහ Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "background API සක්‍රීය කරන්න (UniGetUI Widgets සහ Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "internet සම්බන්ධතාව අවශ්‍ය කාර්යයන් කිරීමට උත්සාහ කිරීමට පෙර උපාංගය internet එකට සම්බන්ධ වනතුරු රැඳී සිටින්න.", "Disable the 1-minute timeout for package-related operations": "පැකේජ සම්බන්ධ මෙහෙයුම් සඳහා මිනිත්තු 1 timeout එක අක්‍රීය කරන්න", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator වෙනුවට ස්ථාපිත GSudo භාවිතා කරන්න", @@ -286,7 +312,7 @@ "Telemetry": "භාවිත දත්ත රැස්කිරීම", "Manage UniGetUI settings": "UniGetUI සැකසුම් කළමනාකරණය කරන්න", "Related settings": "සම්බන්ධ සැකසුම්", - "Update WingetUI automatically": "WingetUI ස්වයංක්‍රීයව යාවත්කාලීන කරන්න", + "Update UniGetUI automatically": "UniGetUI ස්වයංක්‍රීයව යාවත්කාලීන කරන්න", "Check for updates": "යාවත්කාලීන කිරීම් සදහා පරීක්ෂා කරන්න", "Install prerelease versions of UniGetUI": "UniGetUI හි prerelease සංස්කරණ ස්ථාපනය කරන්න", "Manage telemetry settings": "telemetry සැකසුම් කළමනාකරණය කරන්න", @@ -295,17 +321,17 @@ "Import": "ආයාත කරන්න", "Export settings to a local file": "සැකසුම් ස්ථානීය ගොනුවකට අපනයනය කරන්න", "Export": "අපනයනය", - "Reset WingetUI": "UniGetUI reset කරන්න", "Reset UniGetUI": "UniGetUI reset කරන්න", "User interface preferences": "පරිශීලක අතුරුමුහුණත් අභිරුචි", "Application theme, startup page, package icons, clear successful installs automatically": "යෙදුම් තේමාව, ආරම්භක පිටුව, පැකේජ අයිකන, සාර්ථක ස්ථාපනයන් ස්වයංක්‍රීයව ඉවත් කිරීම", "General preferences": "සාමාන්‍ය මනාපයන්", - "WingetUI display language:": "WingetUI දර්ශන භාෂාව:", + "UniGetUI display language:": "UniGetUI දර්ශන භාෂාව:", "Is your language missing or incomplete?": "ඔබගේ භාෂාව අතුරුදන්වී තිබේද නැතහොත් අසම්පූර්ණද?", "Appearance": "පෙනුම", "UniGetUI on the background and system tray": "background සහ system tray තුළ UniGetUI", "Package lists": "පැකේජ ලැයිස්තු", "Close UniGetUI to the system tray": "UniGetUI system tray වෙත වසන්න", + "Manage UniGetUI autostart behaviour": "UniGetUI ස්වයං ආරම්භ හැසිරීම කළමනාකරණය කරන්න", "Show package icons on package lists": "පැකේජ ලැයිස්තු මත පැකේජ icons පෙන්වන්න", "Clear cache": "cache ඉවත් කරන්න", "Select upgradable packages by default": "upgrade කළ හැකි පැකේජ පෙරනිමියෙන් තෝරන්න", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "සියලුම පැකේජ කළමනාකරුවන් මෙම විශේෂාංගයට සම්පූර්ණ සහය නොදක්වන්නට පුළුවන් බව සලකන්න", "Proxy URL": "Proxy URL ලිපිනය", "Enter proxy URL here": "proxy URL එක මෙතැන ඇතුල් කරන්න", + "Authenticate to the proxy with a user and a password": "පරිශීලක නාමයක් සහ මුරපදයක් සමඟ proxy වෙත සත්‍යාපනය කරන්න", + "Internet and proxy settings": "අන්තර්ජාල සහ proxy සැකසුම්", "Package manager preferences": "පැකේජ කළමනාකරු මනාපයන්", "Ready": "සූදානම්", "Not found": "හමු නොවීය", "Notification preferences": "දැනුම්දීම් මනාපයන්", "Notification types": "දැනුම්දීම් වර්ග", "The system tray icon must be enabled in order for notifications to work": "notifications වැඩ කිරීමට system tray icon එක සක්‍රීය කර තිබිය යුතුය", - "Enable WingetUI notifications": "UniGetUI දැනුම්දීම් සක්‍රීය කරන්න", + "Enable UniGetUI notifications": "UniGetUI දැනුම්දීම් සක්‍රීය කරන්න", "Show a notification when there are available updates": "ලබාගත හැකි යාවත්කාලීන ඇති විට දැනුම්දීමක් පෙන්වන්න", "Show a silent notification when an operation is running": "මෙහෙයුමක් ක්‍රියාත්මක වන විට නිහඬ දැනුම්දීමක් පෙන්වන්න", "Show a notification when an operation fails": "මෙහෙයුමක් අසාර්ථක වන විට දැනුම්දීමක් පෙන්වන්න", "Show a notification when an operation finishes successfully": "මෙහෙයුමක් සාර්ථකව අවසන් වූ විට දැනුම්දීමක් පෙන්වන්න", "Concurrency and execution": "සමාන්තර ක්‍රියාත්මක කිරීම සහ ධාවනය", "Automatic desktop shortcut remover": "ස්වයංක්‍රීය desktop shortcut remover", + "Choose how many operations should be performed in parallel": "එකවර ක්‍රියාත්මක කළ යුතු මෙහෙයුම් ගණන තෝරන්න", "Clear successful operations from the operation list after a 5 second delay": "තත්පර 5ක ප්‍රමාදයකින් පසු මෙහෙයුම් ලැයිස්තුවෙන් සාර්ථක මෙහෙයුම් ඉවත් කරන්න", "Download operations are not affected by this setting": "මෙම සැකසුම බාගැනීම් මෙහෙයුම් වලට බලපාන්නේ නැත", "Try to kill the processes that refuse to close when requested to": "වසා දමන්නැයි ඉල්ලා සිටින විට වසා නොදමන processes අවසන් කිරීමට උත්සාහ කරන්න", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "භාවිතා කළ යුතු executable එක තෝරන්න. පහත ලැයිස්තුව UniGetUI විසින් සොයාගත් executables පෙන්වයි", "Current executable file:": "වත්මන් executable ගොනුව:", "Ignore packages from {pm} when showing a notification about updates": "යාවත්කාලීන පිළිබඳ දැනුම්දීමක් පෙන්වීමේදී {pm} හි පැකේජ නොසලකා හරින්න", + "Update security": "යාවත්කාලීන ආරක්ෂාව", + "Use global setting": "ගෝලීය සැකසුම භාවිතා කරන්න", + "e.g. 10": "උදා. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} එහි පැකේජ සඳහා නිකුතු දින ලබා නොදෙන බැවින්, මෙම සැකසුමට කිසිදු බලපෑමක් නොමැත", + "Override the global minimum update age for this package manager": "මෙම පැකේජ කළමනාකරු සඳහා ගෝලීය අවම යාවත්කාලීන වයස් සීමාව අභිබවා සකසන්න", + "Minimum age for updates": "යාවත්කාලීන සඳහා අවම වයස", + "Custom minimum age (days)": "අභිරුචි අවම වයස (දින)", "View {0} logs": "{0} logs බලන්න", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Python හමු නොවන්නේ නම් හෝ පද්ධතියේ ස්ථාපිතව තිබුණත් පැකේජ ලැයිස්තුගත නොකරන්නේ නම්, ", "Advanced options": "උසස් විකල්ප", "Reset WinGet": "WinGet reset කරන්න", "This may help if no packages are listed": "පැකේජ කිසිවක් ලැයිස්තුගත නොවන්නේ නම් මෙය උපකාරී විය හැක", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "launch වෙද්දී Scoop cleanup සක්‍රීය කරන්න", "Use system Chocolatey": "system Chocolatey භාවිතා කරන්න", "Default vcpkg triplet": "පෙරනිමි vcpkg triplet", + "Change vcpkg root location": "vcpkg මූල ස්ථානය වෙනස් කරන්න", "Language, theme and other miscellaneous preferences": "භාෂාව, තේමාව සහ වෙනත් විවිධ මනාපයන්", "Show notifications on different events": "විවිධ සිදුවීම්වලදී දැනුම්දීම් පෙන්වන්න", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI ඔබගේ පැකේජ සඳහා ලබාගත හැකි යාවත්කාලීන පරීක්ෂා කරන සහ ස්ථාපනය කරන ආකාරය වෙනස් කරන්න", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "network connection එක metered වූ විට යාවත්කාලීන ස්වයංක්‍රීයව ස්ථාපනය නොකරන්න", "Do not automatically install updates when the device runs on battery": "උපාංගය battery මත ධාවනය වන විට යාවත්කාලීන ස්වයංක්‍රීයව ස්ථාපනය නොකරන්න", "Do not automatically install updates when the battery saver is on": "battery saver සක්‍රීය විට යාවත්කාලීන ස්වයංක්‍රීයව ස්ථාපනය නොකරන්න", + "Only show updates that are at least the specified number of days old": "අවම වශයෙන් සඳහන් කළ දින ගණනක් පැරණි යාවත්කාලීන පමණක් පෙන්වන්න", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI ස්ථාපනය, යාවත්කාලීන සහ අස්ථාපන මෙහෙයුම් හසුරුවන ආකාරය වෙනස් කරන්න.", "Package Managers": "පැකේජ කළමනාකරුවන්", "More": "තවත්", - "WingetUI Log": "WingetUI log", "Package Manager logs": "පැකේජ කළමනාකරු logs", "Operation history": "මෙහෙයුම් ඉතිහාසය", "Help": "උපදෙස්", + "Quit UniGetUI": "UniGetUI වෙතින් ඉවත් වන්න", "Order by:": "පිළිවෙලට ගොනු කරන්න:", "Name": "නම", "Id": "අංකය", @@ -409,6 +448,10 @@ "Both": "දෙකම", "Exact match": "සුදුසුම ගැලපීම", "Show similar packages": "සමාන පැකේජ පෙන්වන්න", + "Nothing to share": "බෙදාගැනීමට කිසිවක් නැත", + "Please select a package first.": "කරුණාකර පළමුව පැකේජයක් තෝරන්න.", + "Share link copied": "බෙදාගැනීමේ සබැඳිය පිටපත් කරන ලදී", + "The share link for {0} has been copied to the clipboard.": "{0} සඳහා බෙදාගැනීමේ සබැඳිය clipboard වෙත පිටපත් කර ඇත.", "No results were found matching the input criteria": "ඇතුළත් කළ නිර්ණායකයට ගැළපෙන ප්‍රතිඵල කිසිවක් හමු නොවීය", "No packages were found": "පැකේජ කිසිවක් හමු නොවීය", "Loading packages": "පැකේජ පූරණය කරමින්", @@ -440,7 +483,11 @@ "Package bundle": "පැකේජ bundle", "Could not create bundle": "බණ්ඩලය සෑදිය නොහැකි විය", "The package bundle could not be created due to an error.": "දෝෂයක් හේතුවෙන් package bundle එක සෑදිය නොහැකි විය.", + "Unsaved changes": "සුරකින්නේ නැති වෙනස්කම්", + "Discard changes": "වෙනස්කම් ඉවත දමන්න", + "You have unsaved changes in the current bundle. Do you want to discard them?": "වත්මන් bundle තුළ සුරකින්නේ නැති වෙනස්කම් ඇත. ඒවා ඉවත දමන්න අවශ්‍යද?", "Bundle security report": "බණ්ඩල ආරක්ෂක වාර්තාව", + "The bundle contained restricted content": "bundle එකේ සීමා කළ අන්තර්ගතය තිබුණි", "Hooray! No updates were found.": "සුභ ආරංචියක්! කිසිදු යාවත්කාලීනයක් හමු නොවීය.", "Everything is up to date": "සියල්ල යාවත්කාලීනව ඇත", "Uninstall selected packages": "තෝරාගත් පැකේජ uninstall කරන්න", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows සඳහා සාම්ප්‍රදායික පැකේජ කළමනාකරු. ඔබට එහි සෑම දෙයක්ම හමුවේ.
අඩංගු වන්නේ: සාමාන්‍ය මෘදුකාංග", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoftගේ .NET පරිසර පද්ධතිය සැලකිල්ලට ගනිමින් නිර්මාණය කරන ලද මෙවලම් සහ ක්‍රියාත්මක ගොනු වලින් පිරුණු repository එකක්.
අඩංගු වන්නේ: .NET සම්බන්ධ මෙවලම් සහ scripts", "NuPkg (zipped manifest)": "NuPkg (සම්පීඩිත manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (හෝ Linux) සඳහා අතුරුදන් වූ පැකේජ කළමනාකරු.
අඩංගු වන්නේ: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS හි පැකේජ කළමනාකරු. javascript ලෝකය වටා පවතින libraries සහ වෙනත් utilities වලින් පිරී ඇත
අඩංගු වන්නේ: Node javascript libraries සහ වෙනත් සම්බන්ධ utilities", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python හි library manager. python libraries සහ වෙනත් python-සම්බන්ධ utilities වලින් පිරී ඇත
අඩංගු වන්නේ: Python libraries සහ සම්බන්ධ utilities", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell හි පැකේජ කළමනාකරු. PowerShell හැකියාවන් පුළුල් කිරීමට libraries සහ scripts සොයා ගන්න
අඩංගු වන්නේ: Modules, Scripts, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "මෙහෙයුම queue හි ඇත (ස්ථානය {0})...", "Click here for more details": "වැඩි විස්තර සඳහා මෙතැන ක්ලික් කරන්න", "Operation canceled by user": "පරිශීලකයා මෙහෙයුම අවලංගු කළේය", + "Running PreOperation ({0}/{1})...": "PreOperation ධාවනය කරමින් ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} න් {0} වන PreOperation අසාර්ථක වූ අතර එය අත්‍යවශ්‍ය ලෙස සලකුණු කර තිබුණි. නවත්වමින්...", + "PreOperation {0} out of {1} finished with result {2}": "{1} න් {0} වන PreOperation {2} ප්‍රතිඵලය සමඟ අවසන් විය", "Starting operation...": "මෙහෙයුම ආරම්භ කරමින්...", + "Running PostOperation ({0}/{1})...": "PostOperation ධාවනය කරමින් ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} න් {0} වන PostOperation අසාර්ථක වූ අතර එය අත්‍යවශ්‍ය ලෙස සලකුණු කර තිබුණි. නවත්වමින්...", + "PostOperation {0} out of {1} finished with result {2}": "{1} න් {0} වන PostOperation {2} ප්‍රතිඵලය සමඟ අවසන් විය", "{package} installer download": "{package} installer බාගත කිරීම", "{0} installer is being downloaded": "{0} installer බාගත කරමින් පවතී", "Download succeeded": "බාගත කිරීම සම්පූර්ණයි", @@ -556,14 +610,12 @@ "Portable mode": "ගෙන යා හැකි මාදිලිය\n", "DEBUG BUILD": "DEBUG build සංස්කරණය", "Available Updates": "යාවත්කාලීන කිරීම්", - "Show WingetUI": "UniGetUI පෙන්වන්න", + "Show UniGetUI": "UniGetUI පෙන්වන්න", "Quit": "ඉවත් වන්න", "Attention required": "අවධානය අවශ්‍යයි.", "Restart required": "නැවත ආරම්භ කිරීම අවශ්‍යයි", "1 update is available": "යාවත්කාලීන කිරීම් 1ක් ඇත", "{0} updates are available": "යාවත්කාලීන {0} ක් ලබාගත හැක", - "WingetUI Homepage": "WingetUI මුල් පිටුව", - "WingetUI Repository": "WingetUI repository ගබඩාව", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "මෙහි ඔබට පහත shortcuts සම්බන්ධයෙන් UniGetUI හි හැසිරීම වෙනස් කළ හැකිය. shortcut එකක් ටික් කළහොත් එය ඉදිරි upgrade එකකදී සෑදුවහොත් UniGetUI එය මකා දමයි. ටික් ඉවත් කළහොත් shortcut එක එලෙසම පවතී.", "Manual scan": "අතින් scan කිරීම", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "ඔබගේ desktop හි පවතින shortcuts scan කරනු ලැබේ, සහ තබා ගත යුත්තේ කුමනද, ඉවත් කළ යුත්තේ කුමනද යන්න ඔබට තෝරාගත යුතුය.", @@ -583,7 +635,6 @@ "Restart later": "පසුව නැවත ආරම්භ කරන්න", "An error occurred:": "දෝෂයක් සිදු විය:", "I understand": "මම දැනුවත්", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI පරිපාලක ලෙස ධාවනය කර ඇත, එය නිර්දේශ නොකෙරේ. WingetUI පරිපාලක ලෙස ධාවනය කරන විට, WingetUI වලින් ආරම්භ කරන සෑම මෙහෙයුමක්ම පරිපාලක බලතල ලබා ගනී. ඔබට තවමත් වැඩසටහන භාවිතා කළ හැකි නමුත්, WingetUI පරිපාලක බලතල සමඟ ධාවනය නොකිරීමට අපි දැඩි ලෙස නිර්දේශ කරමු.", "WinGet was repaired successfully": "WinGet සාර්ථකව අලුත්වැඩියා කරන ලදී", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet අලුත්වැඩියා කළ පසු UniGetUI නැවත ආරම්භ කිරීම නිර්දේශ කෙරේ", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "සටහන: මෙම troubleshooter UniGetUI Settings හි WinGet කොටසෙන් අක්‍රීය කළ හැක", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. ඔබගේ පැකේජ බණ්ඩලයට එක් කර ඇත. ඔබට තවත් පැකේජ එක් කිරීමට හෝ බණ්ඩලය අපනයනය කිරීමට හැකිය.", "Which backup do you want to open?": "ඔබට විවෘත කිරීමට අවශ්‍ය backup එක කුමක්ද?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "ඔබට විවෘත කිරීමට අවශ්‍ය backup එක තෝරන්න. පසුව, ස්ථාපනය කිරීමට අවශ්‍ය පැකේජ කුමනදැයි සමාලෝචනය කළ හැකිය.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ක්‍රියාත්මක වෙමින් පවතින මෙහෙයුම් ඇත. UniGetUI ඉවත් වීමෙන් ඒවා අසාර්ථක විය හැක. ඔබට ඉදිරියට යාමට අවශ්‍යද?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "ක්‍රියාත්මක වෙමින් පවතින මෙහෙයුම් ඇත. UniGetUI ඉවත් වීමෙන් ඒවා අසාර්ථක විය හැක. ඔබට ඉදිරියට යාමට අවශ්‍යද?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI හෝ එහි කොටස් කිහිපයක් අතුරුදන් හෝ දූෂිත වී ඇත.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "මෙම තත්ත්වය නිවැරදි කිරීමට UniGetUI නැවත ස්ථාපනය කිරීම තදින්ම නිර්දේශ කෙරේ.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "බලපෑමට ලක්වූ ගොනු පිළිබඳ වැඩි විස්තර සඳහා UniGetUI Logs වෙත යොමු වන්න", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "මෙහි process නාම comma (,) මගින් වෙන් කර ලියන්න", "Unset or unknown": "set කර නොමැති හෝ නොදන්නා", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "ගැටලුව පිළිබඳ වැඩිදුර තොරතුරු සඳහා Command-line Output බලන්න හෝ Operation History වෙත යොමු වන්න.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "මෙම පැකේජයට screenshots නොමැතිද හෝ icon එක අතුරුදන්වී තිබේද? අපගේ විවෘත, පොදු දත්ත සමුදායට අතුරුදන් icons සහ screenshots එක් කර UniGetUI වෙත දායක වන්න.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "මෙම පැකේජයට screenshots නොමැතිද හෝ icon එක අතුරුදන්වී තිබේද? අපගේ විවෘත, පොදු දත්ත සමුදායට අතුරුදන් icons සහ screenshots එක් කර UniGetUI වෙත දායක වන්න.", "Become a contributor": "සහයෝගිකයෙකු වන්න", "Save": "සුරකින්න", "Update to {0} available": "{0} වෙත යාවත්කාලීන කිරීම ලබාගත හැක", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "ස්වයංක්‍රීය WinGet troubleshooter සක්‍රීය කරන්න", "Enable an [experimental] improved WinGet troubleshooter": "[experimental] වැඩිදියුණු කළ WinGet troubleshooter සක්‍රීය කරන්න", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'no applicable update found' යන දෝෂයෙන් අසාර්ථක වන යාවත්කාලීන ignored updates ලැයිස්තුවට එක් කරන්න", - "Restart WingetUI to fully apply changes": "වෙනස්කම් සම්පූර්ණයෙන් යෙදීමට UniGetUI නැවත ආරම්භ කරන්න", - "Restart WingetUI": "UniGetUI නැවත ආරම්භ කරන්න", "Invalid selection": "වලංගු නොවන තේරීම", "No package was selected": "කිසිදු පැකේජයක් තෝරා නොමැත", "More than 1 package was selected": "පැකේජ 1කට වඩා තෝරා ඇත", @@ -684,6 +733,37 @@ "Log out failed: ": "ඉවත් වීම අසාර්ථකයි: ", "Package backup settings": "පැකේජ backup සැකසුම්", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI පිළිබඳව ", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "ඔබේ command-line package managers සඳහා all-in-one graphical interface එකක් ලබා දීමෙන් ඔබේ මෘදුකාංග කළමනාකරණය පහසු කරන යෙදුමක් WingetUI වේ.", + "You have installed WingetUI Version {0}": "ඔබ WingetUI Version {0} ස්ථාපනය කර ඇත", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "දායකයින්ගේ සහාය නොමැතිව WingetUI හැකි නොවනු ඇත. ඔබ සැමට ස්තුතියි 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI පහත libraries භාවිතා කරයි. ඒවා නොමැතිව WingetUI තිබීමට නොහැකි විය.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "ස්වේච්ඡා පරිවර්තකයන්ගේ շնորհයෙන් WingetUI භාෂා 40 කට වඩා වැඩි ගණනකට පරිවර්තනය කර ඇත. ස්තුතියි 🤝", + "WingetUI Settings": "WingetUI Settings", + "You may need to install {pm} in order to use it with WingetUI.": "WingetUI සමඟ භාවිතා කිරීමට ඔබට {pm} ස්ථාපනය කිරීමට අවශ්‍ය විය හැක.", + "Scoop Installer - WingetUI": "Scoop ස්ථාපකය - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop අස්ථාපකය - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop cache ඉවත් කරමින් - UniGetUI", + "WingetUI Version {0}": "WingetUI සංස්කරණය {0}", + "WingetUI License": "WingetUI බලපත්‍රය", + "Using WingetUI implies the acceptation of the MIT License": "WingetUI භාවිතා කිරීමෙන් MIT බලපත්‍රය පිළිගැනීම අදහස් වේ", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API සක්‍රීය කරන්න (UniGetUI Widgets සහ Sharing, port 7058)", + "Update WingetUI automatically": "WingetUI ස්වයංක්‍රීයව යාවත්කාලීන කරන්න", + "Reset WingetUI": "UniGetUI reset කරන්න", + "WingetUI display language:": "WingetUI දර්ශන භාෂාව:", + "Manage WingetUI autostart behaviour": "WingetUI ස්වයං ආරම්භ හැසිරීම කළමනාකරණය කරන්න", + "Enable WingetUI notifications": "UniGetUI දැනුම්දීම් සක්‍රීය කරන්න", + "WingetUI Log": "WingetUI log", + "Show WingetUI": "UniGetUI පෙන්වන්න", + "WingetUI Homepage": "WingetUI මුල් පිටුව", + "WingetUI Repository": "WingetUI repository ගබඩාව", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI පරිපාලක ලෙස ධාවනය කර ඇත, එය නිර්දේශ නොකෙරේ. WingetUI පරිපාලක ලෙස ධාවනය කරන විට, WingetUI වලින් ආරම්භ කරන සෑම මෙහෙයුමක්ම පරිපාලක බලතල ලබා ගනී. ඔබට තවමත් වැඩසටහන භාවිතා කළ හැකි නමුත්, WingetUI පරිපාලක බලතල සමඟ ධාවනය නොකිරීමට අපි දැඩි ලෙස නිර්දේශ කරමු.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "ක්‍රියාත්මක වෙමින් පවතින මෙහෙයුම් ඇත. UniGetUI ඉවත් වීමෙන් ඒවා අසාර්ථක විය හැක. ඔබට ඉදිරියට යාමට අවශ්‍යද?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "මෙම පැකේජයට screenshots නොමැතිද හෝ icon එක අතුරුදන්වී තිබේද? අපගේ විවෘත, පොදු දත්ත සමුදායට අතුරුදන් icons සහ screenshots එක් කර UniGetUI වෙත දායක වන්න.", + "Restart WingetUI to fully apply changes": "වෙනස්කම් සම්පූර්ණයෙන් යෙදීමට UniGetUI නැවත ආරම්භ කරන්න", + "Restart WingetUI": "UniGetUI නැවත ආරම්භ කරන්න", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Settings යෙදුමෙන් UniGetUI autostart හැසිරීම කළමනාකරණය කරන්න", "(Number {0} in the queue)": "(පෝලිමේ අංකය {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Savithu-s3,@SashikaSandeepa, @ttheek", "0 packages found": "ඇසුරුම් 0ක් හමුවිය ", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json index aedc592b87..d187cadc04 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sk.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Zrušiť odinštalovanie, ak zlyhá príkaz pred odinštalovaním", "Command-line to run:": "Príkazový riadok pre spustenie:", "Save and close": "Uložiť a zavrieť", + "General": "Všeobecné", + "Architecture & Location": "Architektúra a umiestnenie", + "Command-line": "Príkazový riadok", + "Pre/Post install": "Pred/po inštalácii", "Run as admin": "Spustiť ako správca", "Interactive installation": "Interaktívna inštalácia", "Skip hash check": "Preskočiť kontrolný súčet", @@ -71,6 +75,8 @@ "Manage ignored updates": "Spravovať ignorované aktualizácie", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Uvedené balíčky nebudú pri kontrole aktualizácií brané do úvahy. Dvakrát kliknite na ne alebo kliknite na tlačidlo vpravo, aby ste prestali ignorovať ich aktualizácie.", "Reset list": "Obnoviť zoznam", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Naozaj chcete obnoviť zoznam ignorovaných aktualizácií? Túto akciu nemožno vrátiť späť.", + "No ignored updates": "Žiadne ignorované aktualizácie", "Package Name": "Názov balíčka", "Package ID": "ID balíčka", "Ignored version": "Ignorovaná verzia", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Táto operácia je spustená interaktívne.", "You will likely need to interact with the installer.": "Pravdepodobne budete musieť s inštalátorom interagovať.", "Integrity checks skipped": "Kontrola integrity preskočená", + "Integrity checks will not be performed during this operation.": "Počas tejto operácie sa nebudú vykonávať kontroly integrity.", "Proceed at your own risk.": "Pokračujte na vlastné nebezpečenstvo.", "Close": "Zavrieť", "Loading...": "Načítavam...", @@ -120,16 +127,17 @@ "optional": "voliteľné", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} je pripravený k inštalácii.", "The update process will start after closing UniGetUI": "Aktualizácie začne po zavrení UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI bol spustený ako správca, čo sa neodporúča. Keď UniGetUI spúšťate ako správca, KAŽDÁ operácia spustená z UniGetUI bude mať oprávnenia správcu. Program môžete používať aj naďalej, no dôrazne odporúčame nespúšťať UniGetUI s oprávneniami správcu.", "Share anonymous usage data": "Zdieľanie anonymných dát o používaní", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI zhromažďuje anonymné údaje o používaní za účelom zlepšenia používateľského komfortu.", "Accept": "Prijať", - "You have installed WingetUI Version {0}": "Je nainštalovaný UniGetUI verzie {0}", + "You have installed UniGetUI Version {0}": "Je nainštalovaný UniGetUI verzie {0}", "Disclaimer": "Upozornenie", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nesúvisí so žiadnym z kompatibilných správcov balíčkov. UniGetUI je nezávislý projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebolo možné vytvoriť bez pomoci prispievateľov. Ďakujem Vám všetkým 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI používa nasledovné knižnice. Bez nich by UniGetUI nebol možný.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebolo možné vytvoriť bez pomoci prispievateľov. Ďakujem Vám všetkým 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI používa nasledovné knižnice. Bez nich by UniGetUI nebol možný.", "{0} homepage": "{0} domovská stránka", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI bol vďaka dobrovoľným prekladateľom preložený do viac než 40 jazykov. Ďakujeme 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI bol vďaka dobrovoľným prekladateľom preložený do viac než 40 jazykov. Ďakujeme 🤝", "Verbose": "Podrobný výstup", "1 - Errors": "1 - Chyby", "2 - Warnings": "2 - Varovania", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "ste prihlásený ako {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Pekne! Zálohy budú nahraté do súkromného gistu na vašom účte.", "Select backup": "Výber zálohy", - "WingetUI Settings": "Nastavenia UniGetUI", + "UniGetUI Settings": "Nastavenia UniGetUI", "Allow pre-release versions": "Povoliť predbežné verzie", "Apply": "Použiť", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Z bezpečnostných dôvodov sú vlastné argumenty príkazového riadku predvolene zakázané. Ak to chcete zmeniť, prejdite do nastavení zabezpečenia UniGetUI.", "Go to UniGetUI security settings": "Prejdite do nastavenia zabezpečenia UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Pri každej inštalácii, aktualizácii alebo odinštalácii balíčku {0} sa v predvolenom nastavení použijú nasledovné možnosti.", "Package's default": "Predvolené nastavenie balíčka", @@ -160,6 +169,7 @@ "Username": "Používateľské meno", "Password": "Heslo", "Credentials": "Osobné údaje", + "It is not guaranteed that the provided credentials will be stored safely": "Nie je zaručené, že poskytnuté prihlasovacie údaje budú uložené bezpečne", "Partially": "Čiastočne", "Package manager": "Správca balíčkov", "Compatible with proxy": "Kompatibilné s proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} je povolený a pripravený k použitiu", "{pm} version:": "{pm} verzia:", "{pm} was not found!": "{pm} nebol nájdený!", - "You may need to install {pm} in order to use it with WingetUI.": "Môže byť nutné nainštalovať {pm} pre použitie s UniGetUI.", - "Scoop Installer - WingetUI": "Scoop inštalátor - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop odinštalátor - UniGetUI", - "Clearing Scoop cache - WingetUI": "Mazanie medzipamäte Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Môže byť nutné nainštalovať {pm} pre použitie s UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop inštalátor - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop odinštalátor - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Mazanie medzipamäte Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Reštartujte UniGetUI, aby sa zmeny úplne prejavili", "Restart UniGetUI": "Reštartovať UniGetUI", "Manage {0} sources": "Správa zdrojov {0}", "Add source": "Pridať zdroj", "Add": "Pridať", + "Source name": "Názov zdroja", + "Source URL": "URL zdroja", "Other": "Iné", + "No minimum age": "Bez minimálnej doby", "1 day": "1 deň", "{0} days": "{0} dní", + "Custom...": "Vlastné...", "{0} minutes": "{0} minút", "1 hour": "1 hodina", "{0} hours": "{0} hodin", "1 week": "1 týždeň", - "WingetUI Version {0}": "UniGetUI verzie {0}", + "Supports release dates": "Podporuje dátumy vydania", + "Release date support per package manager": "Podpora dátumu vydania podľa správcu balíčkov", + "UniGetUI Version {0}": "UniGetUI verzie {0}", "Search for packages": "Vyhľadávanie balíčkov", "Local": "Lokálny", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Povolené", "Disabled": "Vypnutý", "More info": "Viac informácií", + "GitHub account": "Účet GitHub", "Log in with GitHub to enable cloud package backup.": "Prihláste sa cez GitHub, aby sa povolilo zálohovanie do cloudu", "More details": "Viac detailov", "Log in": "Prihlásiť sa", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Pokiaľ máte povolené zálohovanie do cloudu, bude na tomto účte uložený ako GitHub Gist.", "Log out": "Odhlásiť sa", + "About UniGetUI": "O aplikácii UniGetUI", "About": "Aplikácie", "Third-party licenses": "Licencie tretích strán", "Contributors": "Prispievatelia", @@ -212,6 +231,7 @@ "Manage shortcuts": "Spravovať odkazy", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI zistil nasledovné odkazy na ploche, ktoré je možné pri budúcich aktualizáciách automaticky odstrániť", "Do you really want to reset this list? This action cannot be reverted.": "Naozaj chcete tento zoznam obnoviť? Túto akciu nejde vrátiť späť.", + "Open in explorer": "Otvoriť v Prieskumníkovi", "Remove from list": "Odstrániť zo zoznamu", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Keď sú detekované nové odkazy, automaticky ich zmazať, namiesto aby sa zobrazovalo toto dialógové okno.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI zhromažďuje anonymné údaje o používaní iba za účelom pochopenia a zlepšenia používateľských skúseností.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Súhlasíte s tým, že UniGetUI zhromažďuje a odosiela anonymné štatistiky o používaní, a to výhradne za účelom pochopenia a zlepšenia používateľských skúseností?", "Decline": "Zamietnuť", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Nie sú zhromažďované ani odosielané osobné údaje a zhromaždené údaje sú anonymizované, takže ich nejde spätne vysledovať.", - "About WingetUI": "O WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI je aplikácia, ktorá uľahčuje správu vášho softvéru tak, že poskytuje grafické rozhranie pre vašich správcov balíčkov príkazového riadku.", + "Toggle navigation panel": "Prepnúť navigačný panel", + "Minimize": "Minimalizovať", + "Maximize": "Maximalizovať", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikácia, ktorá uľahčuje správu vášho softvéru tak, že poskytuje grafické rozhranie pre vašich správcov balíčkov príkazového riadku.", "Useful links": "Užitočné odkazy", + "UniGetUI Homepage": "Domovská stránka UniGetUI", "Report an issue or submit a feature request": "Nahlásiť problém alebo odoslať požiadavku na funkciu", + "UniGetUI Repository": "Repozitár UniGetUI", "View GitHub Profile": "Zobraziť GitHub profil", - "WingetUI License": "UniGetUI licencia", - "Using WingetUI implies the acceptation of the MIT License": "Používanie UniGetUI znamená súhlas s licenciou MIT.", + "UniGetUI License": "UniGetUI licencia", + "Using UniGetUI implies the acceptation of the MIT License": "Používanie UniGetUI znamená súhlas s licenciou MIT.", "Become a translator": "Staň sa prekladateľom", "View page on browser": "Zobraziť stránku v prehliadači", "Copy to clipboard": "Skopírovať do schránky", "Export to a file": "Exportovať do súboru", "Log level:": "Úroveň protokolu:", "Reload log": "Znovu načítať protokol", + "Export log": "Exportovať protokol", + "UniGetUI Log": "Protokol UniGetUI", "Text": "Text", "Change how operations request administrator rights": "Zmena spôsobu, akým operácie vyžadujú oprávnenia správcu", "Restrictions on package operations": "Obmedzenie operácií s balíčkami", @@ -271,7 +297,7 @@ "Leave empty for default": "Nechať prázdne pre predvolené", "Add a timestamp to the backup file names": "Pridať čas do názvov záložných súborov", "Backup and Restore": "Zálohovanie a obnovenie", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Povoliť api na pozadí (Widgets pre UniGetUI a Zdieľanie, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Povoliť api na pozadí (Widgets pre UniGetUI a Zdieľanie, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Pred vykonávaním úloh, ktoré vyžadujú pripojenie k internetu, počkajte, až bude zariadenie pripojené k internetu.", "Disable the 1-minute timeout for package-related operations": "Vypnutie minutového limitu pre operácie súvisiace s balíčkami", "Use installed GSudo instead of UniGetUI Elevator": "Použiť nainštalovaný GSudo namiesto UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetria", "Manage UniGetUI settings": "Správa nastavení UnigetUI", "Related settings": "Súvisiace nastavenia", - "Update WingetUI automatically": "Automaticky aktualizovať UniGetUI", + "Update UniGetUI automatically": "Automaticky aktualizovať UniGetUI", "Check for updates": "Kontrolovať aktualizácie", "Install prerelease versions of UniGetUI": "Inštalovať predbežné verzie UniGetUI", "Manage telemetry settings": "Spravovať nastavenia telemetrie", @@ -295,17 +321,17 @@ "Import": "Importovať", "Export settings to a local file": "Exportovať nastavenia do súboru", "Export": "Exportovať", - "Reset WingetUI": "Obnoviť UniGetUI", "Reset UniGetUI": "Obnoviť UniGetUI", "User interface preferences": "Vlastnosti používateľského rozhrania", "Application theme, startup page, package icons, clear successful installs automatically": "Téma aplikácie, úvodná stránka, ikony balíčkov, automatické vymazanie úspešných inštalácií", "General preferences": "Všeobecné preferencie", - "WingetUI display language:": "Jazyk UniGetUI", + "UniGetUI display language:": "Jazyk UniGetUI", "Is your language missing or incomplete?": "Chýba váš jazyk, alebo nie je úplný?", "Appearance": "Vzhľad", "UniGetUI on the background and system tray": "UniGetUI v pozadí a systémovej lište", "Package lists": "Zoznamy balíčkov", "Close UniGetUI to the system tray": "Zatvárať UniGetUI do systémovej lišty", + "Manage UniGetUI autostart behaviour": "Spravovať správanie automatického spúšťania UniGetUI", "Show package icons on package lists": "Zobraziť ikonky balíčkov na zozname balíčkov", "Clear cache": "Vymazať vyrovnávaciu pamäť", "Select upgradable packages by default": "Vždy vybrať aktualizovateľné balíčky", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Upozorňujeme, že nie všetci správcovia balíčkov môžu túto funkciu plne podporovať.", "Proxy URL": "URL proxy servera", "Enter proxy URL here": "Sem zadajte URL proxy servera", + "Authenticate to the proxy with a user and a password": "Overiť sa na proxy pomocou používateľského mena a hesla", + "Internet and proxy settings": "Nastavenia internetu a proxy", "Package manager preferences": "Nastavenie správcu balíčkov", "Ready": "Pripravený", "Not found": "Nenájdené", "Notification preferences": "Predvoľby oznámení", "Notification types": "Typy oznámení", "The system tray icon must be enabled in order for notifications to work": "Aby oznámenia fungovali, musí byť povolená ikona v systémovej lište", - "Enable WingetUI notifications": "Zapnúť oznámenia UniGetUI", + "Enable UniGetUI notifications": "Zapnúť oznámenia UniGetUI", "Show a notification when there are available updates": "Zobraziť oznámenie, pokiaľ sú dostupné aktualizácie", "Show a silent notification when an operation is running": "Zobraziť tiché oznámenia pri bežiacej operácii", "Show a notification when an operation fails": "Zobraziť oznámenie po zlyhaní operácie", "Show a notification when an operation finishes successfully": "Zobraziť oznámenie po úspešnom dokončení operácie", "Concurrency and execution": "Súbežnosť a vykonávanie", "Automatic desktop shortcut remover": "Automatický odstraňovač odkazov na ploche", + "Choose how many operations should be performed in parallel": "Vyberte, koľko operácií sa má vykonávať súbežne", "Clear successful operations from the operation list after a 5 second delay": "Vymazať úspešné operácie po 5 minútach zo zoznamu operácií", "Download operations are not affected by this setting": "Toto nastavenie nemá vplyv na operácie sťahovania", "Try to kill the processes that refuse to close when requested to": "Pokúste sa ukončiť procesy, ktoré sa odmietajú zavrieť, keď to je požadované.", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Vyberte spustiteľný súbor, ktorý chcete použiť. Nasledujúci zoznam obsahuje spustiteľné súbory nájdené UniGetUI.", "Current executable file:": "Aktuálny spustiteľný súbor:", "Ignore packages from {pm} when showing a notification about updates": "Ignorovať balíčky z {pm} pri zobrazení oznámení o aktualizáciách", + "Update security": "Zabezpečenie aktualizácií", + "Use global setting": "Použiť globálne nastavenie", + "e.g. 10": "napr. 10", + "{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", + "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", + "Minimum age for updates": "Minimálny vek aktualizácií", + "Custom minimum age (days)": "Vlastný minimálny vek (dni)", "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ý, ", "Advanced options": "Pokročilé možnosti", "Reset WinGet": "Obnoviť UniGetUI", "This may help if no packages are listed": "Toto môže pomôcť, keď sa balíčky nezobrazujú", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Zapnúť prečistenie Scoop-u po spustení", "Use system Chocolatey": "Použiť systémový Chocolatey", "Default vcpkg triplet": "Predvolený vcpkg triplet", + "Change vcpkg root location": "Zmeniť koreňové umiestnenie vcpkg", "Language, theme and other miscellaneous preferences": "Lokalizácia, motívy a ďalšie rôzne vlastnosti", "Show notifications on different events": "Zobraziť oznámenia o rôznych udalostiach", "Change how UniGetUI checks and installs available updates for your packages": "Zmeňte, ako UniGetUI kontroluje a inštaluje dostupné aktualizácie pre vaše balíčky", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Neinštalovať aktualizácie, pokiaľ je sieťové pripojenie účtované objemom dát", "Do not automatically install updates when the device runs on battery": "Neinštalovať aktualizácie, pokiaľ zariadenie beží na batérii", "Do not automatically install updates when the battery saver is on": "Neinštalovať aktualizácie, pokiaľ je zapnutý šetrič energie", + "Only show updates that are at least the specified number of days old": "Zobrazovať len aktualizácie staré aspoň zadaný počet dní", "Change how UniGetUI handles install, update and uninstall operations.": "Zmeňte spôsob, akým UniGetUI spracováva operácie inštalácie, aktualizácie a odinštalácie.", "Package Managers": "Manažéri balíčkov", "More": "Viac", - "WingetUI Log": "UniGetUI protokol", "Package Manager logs": "Protokoly správcu balíčkov", "Operation history": "História operácií", "Help": "Pomoc", + "Quit UniGetUI": "Ukončiť UniGetUI", "Order by:": "Zoradiť podľa:", "Name": "Meno", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Obe", "Exact match": "Presná zhoda", "Show similar packages": "Podobné balíčky", + "Nothing to share": "Nie je čo zdieľať", + "Please select a package first.": "Najprv vyberte balíček.", + "Share link copied": "Odkaz na zdieľanie bol skopírovaný", + "The share link for {0} has been copied to the clipboard.": "Odkaz na zdieľanie pre {0} bol skopírovaný do schránky.", "No results were found matching the input criteria": "Nebol nájdený žiadny výsledok splňujúci kritériá", "No packages were found": "Žiadne balíčky neboli nájdené", "Loading packages": "Načítanie balíčkov", @@ -440,7 +483,11 @@ "Package bundle": "Zväzok balíčka", "Could not create bundle": "Zväzok sa nepodarilo vytvoriť", "The package bundle could not be created due to an error.": "Zväzok balíčkov sa nepodarilo vytvoriť z dôvodu chyby.", + "Unsaved changes": "Neuložené zmeny", + "Discard changes": "Zahodiť zmeny", + "You have unsaved changes in the current bundle. Do you want to discard them?": "V aktuálnom zväzku máte neuložené zmeny. Chcete ich zahodiť?", "Bundle security report": "Správa o bezpečnosti zväzku", + "The bundle contained restricted content": "Zväzok obsahoval obmedzený obsah", "Hooray! No updates were found.": "Hurá! Neboli nájdené žiadne aktualizácie.", "Everything is up to date": "Všetko je aktuálne", "Uninstall selected packages": "Odinštalovať vybrané balíčky", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasický správca balíčkov pre Windows. Nájdete v ňom všetko.
Obsahuje: Obecný softvér", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repozitár plný nastrojov a spustiteľných súborov navrhnutých s ohľadom na Microsoft .NET ekosystém.
Obsahuje:Nástroje a skripty týkajúce sa platfromy .NET", "NuPkg (zipped manifest)": "NuPkg (zazipovaný manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Chýbajúci správca balíčkov pre macOS (alebo Linux).
Obsahuje: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Správca balíčkov Node.js, je plný knižníc a ďalších nástrojov, ktoré sa týkajú sveta javascriptu.
Obsahuje:Knižnice a ďalšie súvisiace nástroje pre Node.js", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Správca knižníc Pythonu a ďalších nástrojov súvisiacich s Pythonom.
Obsahuje: Knižnice Pythonu a súvisiace nástroje", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell správca balíčkov. Hľadanie knižníc a skriptov k rozšíreniu PowerShell schopností
Obsahuje: Moduly, Skripty, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operácia v poradí (pozícia {0})...", "Click here for more details": "Kliknite sem pre viac informácií", "Operation canceled by user": "Operácia zrušená používateľom", + "Running PreOperation ({0}/{1})...": "Spúšťa sa PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} z {1} zlyhala a bola označená ako nevyhnutná. Prerušujem...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} z {1} sa dokončila s výsledkom {2}", "Starting operation...": "Spúštanie operácie...", + "Running PostOperation ({0}/{1})...": "Spúšťa sa PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} z {1} zlyhala a bola označená ako nevyhnutná. Prerušujem...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} z {1} sa dokončila s výsledkom {2}", "{package} installer download": "Stiahnuť inštalačný program {package}", "{0} installer is being downloaded": "Sťahuje sa inštalačný program {0}", "Download succeeded": "Sťahovanie úspešné", @@ -556,14 +610,12 @@ "Portable mode": "Portable režim", "DEBUG BUILD": "LADIACA ZOSTAVA", "Available Updates": "Dostupné aktualizácie", - "Show WingetUI": "Zobraziť UniGetUI", + "Show UniGetUI": "Zobraziť UniGetUI", "Quit": "Ukončiť", "Attention required": "Vyžaduje sa pozornosť", "Restart required": "Je potrebný reštart", "1 update is available": "1 dostupná aktualizácia", "{0} updates are available": "Je dostupných {0} aktualizácií.", - "WingetUI Homepage": "Domovská stránka UniGetUI", - "WingetUI Repository": "UniGetUI repozitár", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Tu môžete zmeniť chovanie rozhrania UniGetUI, pokiaľ ide o nasledovné skratky. Zaškrtnutie odkazu spôsobí, že ho UniGetUI odstráni, pokiaľ bude vytvorený pri budúcej aktualizácii. Zrušením zaškrtnutia zostane odkaz nedotknutý", "Manual scan": "Manuálne skenovanie", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Existujúce odkazy na ploche budú prehľadané a budete musieť vybrať, ktoré z nich chcete zachovať a ktoré odstrániť.", @@ -583,7 +635,6 @@ "Restart later": "Reštartovať neskôr", "An error occurred:": "Nastala chyba:", "I understand": "Rozumiem", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI bol spúšťaný ako správca, čo sa neodporúča. Pokiaľ je WingetUI spustený ako správca, bude mať KAŽDÁ operácia spustená z WingetUI práva správcu. Program môžete používať aj naďalej, ale dôrazne neodporúčame spúšťať WingetUI s právami správcu.", "WinGet was repaired successfully": "WinGet bol úspešne opravený", "It is recommended to restart UniGetUI after WinGet has been repaired": "Po oprave WinGet sa odporúča reštartovať aplikáciu UniGetUI", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "Poznámka: Toto riešenie problémov môže byť vypnuté v nastaveniach UniGetUI v sekcii WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Vaše balíčky budú pridané do zväzku. Môžete pokračovať v pridávaní balíčkov, alebo zväzok exportovať.", "Which backup do you want to open?": "Ktorú zálohu chcete otvoriť?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Vyberte zálohu, ktorú chcete otvoriť. Neskôr budete môcť skontrolovať, ktoré balíčky/programy chcete obnoviť.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Stále sa vykonávajú operácie. Ukočenie UniGetUI môže spôsobiť ich zlyhanie. Chcete aj napriek tomu pokračovať?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Stále sa vykonávajú operácie. Ukočenie UniGetUI môže spôsobiť ich zlyhanie. Chcete aj napriek tomu pokračovať?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI alebo niektorý z jeho komponentov chýbajú alebo sú poškodené.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Dôrazne sa odporúča preinštalovať UniGetUI pre vyriešenie tejto situácie.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Pozrite sa do protokolov UniGetUI pre získanie viacerých podrobností o postihnutých súboroch", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Sem napíšte názvy procesov oddelené čiarkami (,).", "Unset or unknown": "Nenastavené alebo neznáme", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Ďalšie informácie o probléme nájdete vo výstupe príkazového riadku alebo v historii operácií.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Chýbajú tomuto balíčku snímky obrazovky alebo ikonka? Prispejte do UniGetUI pridaním chýbajúcich ikoniek a snímkov obrazovky do našej otvorenej, verejnej databázy.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Chýbajú tomuto balíčku snímky obrazovky alebo ikonka? Prispejte do UniGetUI pridaním chýbajúcich ikoniek a snímkov obrazovky do našej otvorenej, verejnej databázy.", "Become a contributor": "Staň sa prispievateľom", "Save": "Uložiť", "Update to {0} available": "Je dostupná aktualizácia na {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Zapnúť automatické riešenie problémov WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Povoliť [experimentálny] vylepšený nástroj pre riešenie problémov WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Pridať aktualizácie, ktoré zlyhali s hlásením \"neboli nájdené žiadne použiteľné aktualizácie\" do zoznamu ignorovaných aktualizácií.", - "Restart WingetUI to fully apply changes": "Pre aplikovanie zmien reštartujte UniGetUI", - "Restart WingetUI": "Reštartovať UniGetUI", "Invalid selection": "Neplatný výber", "No package was selected": "Nebol vybraný žiadny balíček", "More than 1 package was selected": "Bol vybraný viac ako 1 balíček", @@ -684,6 +733,37 @@ "Log out failed: ": "Odhlásenie sa nepodarilo:", "Package backup settings": "Nastavenie zálohovania baličkov", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "O WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI je aplikácia, ktorá uľahčuje správu vášho softvéru tak, že poskytuje grafické rozhranie pre vašich správcov balíčkov príkazového riadku.", + "You have installed WingetUI Version {0}": "Je nainštalovaný UniGetUI verzie {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI by nebolo možné vytvoriť bez pomoci prispievateľov. Ďakujem Vám všetkým 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI používa nasledovné knižnice. Bez nich by UniGetUI nebol možný.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI bol vďaka dobrovoľným prekladateľom preložený do viac než 40 jazykov. Ďakujeme 🤝", + "WingetUI Settings": "Nastavenia UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Môže byť nutné nainštalovať {pm} pre použitie s UniGetUI.", + "Scoop Installer - WingetUI": "Scoop inštalátor - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop odinštalátor - UniGetUI", + "Clearing Scoop cache - WingetUI": "Mazanie medzipamäte Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI verzie {0}", + "WingetUI License": "UniGetUI licencia", + "Using WingetUI implies the acceptation of the MIT License": "Používanie UniGetUI znamená súhlas s licenciou MIT.", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Povoliť api na pozadí (Widgets pre UniGetUI a Zdieľanie, port 7058)", + "Update WingetUI automatically": "Automaticky aktualizovať UniGetUI", + "Reset WingetUI": "Obnoviť UniGetUI", + "WingetUI display language:": "Jazyk UniGetUI", + "Manage WingetUI autostart behaviour": "Spravovať správanie automatického spúšťania UniGetUI", + "Enable WingetUI notifications": "Zapnúť oznámenia UniGetUI", + "WingetUI Log": "UniGetUI protokol", + "Show WingetUI": "Zobraziť UniGetUI", + "WingetUI Homepage": "Domovská stránka UniGetUI", + "WingetUI Repository": "UniGetUI repozitár", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI bol spúšťaný ako správca, čo sa neodporúča. Pokiaľ je WingetUI spustený ako správca, bude mať KAŽDÁ operácia spustená z WingetUI práva správcu. Program môžete používať aj naďalej, ale dôrazne neodporúčame spúšťať WingetUI s právami správcu.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Stále sa vykonávajú operácie. Ukočenie UniGetUI môže spôsobiť ich zlyhanie. Chcete aj napriek tomu pokračovať?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Chýbajú tomuto balíčku snímky obrazovky alebo ikonka? Prispejte do UniGetUI pridaním chýbajúcich ikoniek a snímkov obrazovky do našej otvorenej, verejnej databázy.", + "Restart WingetUI to fully apply changes": "Pre aplikovanie zmien reštartujte UniGetUI", + "Restart WingetUI": "Reštartovať UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Správa spúšťania UniGetUI v aplikácii Nastavenia", "(Number {0} in the queue)": "(Poradie vo fronte: {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Luk164, @david-kucera", "0 packages found": "Žiadne balíčky", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json index 11195f6c92..7cfaff8818 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sl.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Prekini odstranitev, če ukaz pred odstranitvo ne uspe", "Command-line to run:": "Ukazna vrstica za izvedbo:", "Save and close": "Shrani in zapri", + "General": "Splošno", + "Architecture & Location": "Arhitektura in lokacija", + "Command-line": "Ukazna vrstica", + "Pre/Post install": "Pred/po namestitvi", "Run as admin": "Zaženi kot skrbnik", "Interactive installation": "Interaktivna namestitev", "Skip hash check": "Preskoči preverjanje zgoščevanja", @@ -71,6 +75,8 @@ "Manage ignored updates": "Upravljanje prezrtih posodobitev", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Tukaj navedeni paketi ne bodo upoštevani pri preverjanju posodobitev. Dvokliknite jih ali kliknite gumb na njihovi desni, če želite prenehati ignorirati njihove posodobitve.", "Reset list": "Ponastavi seznam", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Ali res želite ponastaviti seznam prezrtih posodobitev? Tega dejanja ni mogoče razveljaviti.", + "No ignored updates": "Ni prezrtih posodobitev", "Package Name": "Naziv paketa", "Package ID": "ID paketa", "Ignored version": "Prezrte različice", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ta operacija se izvaja interaktivno.", "You will likely need to interact with the installer.": "Verjetno boste morali sodelovati z namestitvenim programom.", "Integrity checks skipped": "Preverjanje integritete preskočeno", + "Integrity checks will not be performed during this operation.": "Med to operacijo preverjanje integritete ne bo izvedeno.", "Proceed at your own risk.": "Nadaljujte na lastno odgovornost.", "Close": "Zapri", "Loading...": "Nalagam...", @@ -120,16 +127,17 @@ "optional": "neobvezno", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} je pripravljen za namestitev.", "The update process will start after closing UniGetUI": "Postopek posodabljanja se bo začel po zaprtju UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI je bil zagnan kot skrbnik, kar ni priporočljivo. Ko UniGetUI zaženete kot skrbnik, bo VSAKA operacija, zagnana iz UniGetUI, imela skrbniške pravice. Program lahko še vedno uporabljate, vendar močno priporočamo, da UniGetUI ne zaganjate s skrbniškimi pravicami.", "Share anonymous usage data": "Deli anonimne podatke o uporabi", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI zbira anonimne podatke o uporabi z namenom izboljšanja uporabniške izkušnje.", "Accept": "Potrdi", - "You have installed WingetUI Version {0}": "Namestili ste različico WingetUI {0}", + "You have installed UniGetUI Version {0}": "Namestili ste različico UniGetUI {0}", "Disclaimer": "Izjava o omejitvi odgovornosti", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ni povezan z nobenim od združljivih upravljalnikov paketov. UniGetUI je neodvisen projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ne bi bil mogoč brez pomoči sodelavcev. Hvala vsem 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uporablja naslednje knjižnice. Brez njih UniGetUI ne bi bil mogoč.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ne bi bil mogoč brez pomoči sodelavcev. Hvala vsem 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI uporablja naslednje knjižnice. Brez njih UniGetUI ne bi bil mogoč.", "{0} homepage": "{0} domača stran", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI je bil zahvaljujoč prostovoljnim prevajalcem preveden v več kot 40 jezikov. Hvala 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI je bil zahvaljujoč prostovoljnim prevajalcem preveden v več kot 40 jezikov. Hvala 🤝", "Verbose": "Podrobno", "1 - Errors": "1 - Napake", "2 - Warnings": "2 - Opozorila", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Prijavljeni ste kot {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Odlično! Varnostne kopije bodo naložene v zasebni gist v vašem računu", "Select backup": "Izberite varnostno kopijo", - "WingetUI Settings": "WingetUI nastavitve", + "UniGetUI Settings": "Nastavitve UniGetUI", "Allow pre-release versions": "Dovoli predizdajne različice", "Apply": "Uporabi", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Iz varnostnih razlogov so argumenti ukazne vrstice po meri privzeto onemogočeni. Če želite to spremeniti, odprite varnostne nastavitve UniGetUI.", "Go to UniGetUI security settings": "Pojdi v varnostne nastavitve UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Naslednje možnosti bodo privzeto uporabljene vsakič, ko bo paket {0} nameščen, nadgrajen ali odstranjen.", "Package's default": "Privzeto za paket", @@ -160,6 +169,7 @@ "Username": "Uporabniško ime", "Password": "Geslo", "Credentials": "Poverilnice", + "It is not guaranteed that the provided credentials will be stored safely": "Ni zagotovljeno, da bodo podane poverilnice shranjene varno", "Partially": "Delno", "Package manager": "Upravljalnik paketov", "Compatible with proxy": "Združljivo s posredniškim strežnikom", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} je omogočen in pripravljen za uporabo", "{pm} version:": "{pm} različica:", "{pm} was not found!": "{pm} ni bilo mogoče najti!", - "You may need to install {pm} in order to use it with WingetUI.": "Morda boste morali namestiti {pm}, če ga želite uporabljati z WingetUI.", - "Scoop Installer - WingetUI": "Scoop Installer - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - WingetUI", - "Clearing Scoop cache - WingetUI": "Čiščenje predpomnilnika Scoop - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Morda boste morali namestiti {pm}, če ga želite uporabljati z UniGetUI.", + "Scoop Installer - UniGetUI": "Namestitveni program Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Odstranjevalnik Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Čiščenje predpomnilnika Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Za popolno uveljavitev sprememb znova zaženite UniGetUI", "Restart UniGetUI": "Ponovni zagon UniGetUI", "Manage {0} sources": "Upravljaj {0} virov", "Add source": "Dodaj vir", "Add": "Dodaj", + "Source name": "Ime vira", + "Source URL": "URL vira", "Other": "Ostalo", + "No minimum age": "Brez minimalne starosti", "1 day": "1 dan", "{0} days": "{0} dni", + "Custom...": "Po meri...", "{0} minutes": "{0} minut", "1 hour": "1 uro", "{0} hours": "{0} ur", "1 week": "1 teden", - "WingetUI Version {0}": "WingetUI različica {0}", + "Supports release dates": "Podpira datume izdaje", + "Release date support per package manager": "Podpora datumom izdaje po upravitelju paketov", + "UniGetUI Version {0}": "UniGetUI različica {0}", "Search for packages": "Išči za pakete", "Local": "Lokalno", "OK": "V redu", @@ -200,11 +217,13 @@ "Enabled": "Omogočeno", "Disabled": "Onemogočeno", "More info": "Več informacij", + "GitHub account": "Račun GitHub", "Log in with GitHub to enable cloud package backup.": "Za omogočanje varnostnega kopiranja paketov v oblaku se prijavite z GitHub.", "More details": "Več podrobnosti", "Log in": "Prijava", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Če imate omogočeno varnostno kopiranje v oblaku, bo shranjeno kot GitHub Gist v tem računu", "Log out": "Odjava", + "About UniGetUI": "O UniGetUI", "About": "O nas", "Third-party licenses": "Licence tretjih oseb", "Contributors": "Sodelujoči", @@ -212,6 +231,7 @@ "Manage shortcuts": "Upravljanje bližnjic", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI je zaznal naslednje bližnjice, ki jih je mogoče samodejno odstraniti ob prihodnjih nadgradnjah", "Do you really want to reset this list? This action cannot be reverted.": "Ali res želite ponastaviti ta seznam? Tega dejanja ni mogoče razveljaviti.", + "Open in explorer": "Odpri v Raziskovalcu", "Remove from list": "Odstrani iz seznama", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Ko so zaznane nove bližnjice, jih samodejno izbriši brez prikaza tega pogovornega okna.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI zbira anonimne podatke izključno za razumevanje in izboljšanje uporabniške izkušnje.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Ali soglašate, da UniGetUI zbira in pošilja anonimne statistike uporabe izključno z namenom izboljšanja uporabniške izkušnje?", "Decline": "Zavrni", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Osebni podatki se ne zbirajo niti pošiljajo, zbrani podatki so anonimizirani in jih ni mogoče povezati z vami.", - "About WingetUI": "O WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI je aplikacija, ki poenostavi upravljanje vaše programske opreme z zagotavljanjem grafičnega vmesnika vse v enem za vaše upravitelje paketov v ukazni vrstici.", + "Toggle navigation panel": "Preklopi navigacijsko ploščo", + "Minimize": "Minimiziraj", + "Maximize": "Maksimiziraj", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI je aplikacija, ki poenostavi upravljanje vaše programske opreme z zagotavljanjem grafičnega vmesnika vse v enem za vaše upravitelje paketov v ukazni vrstici.", "Useful links": "Uporabne povezave", + "UniGetUI Homepage": "Domača stran UniGetUI", "Report an issue or submit a feature request": "Prijavite težavo ali oddajte zahtevo po novi funkciji", + "UniGetUI Repository": "Repozitorij UniGetUI", "View GitHub Profile": "Ogled profila GitHub", - "WingetUI License": "Licenca WingetUI", - "Using WingetUI implies the acceptation of the MIT License": "Z uporabo WingetUI se strinjate z MIT licenco", + "UniGetUI License": "Licenca UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Z uporabo UniGetUI se strinjate z MIT licenco", "Become a translator": "Postanite prevajalec", "View page on browser": "Oglej si stran v brskalniku", "Copy to clipboard": "Kopiraj v odložišče", "Export to a file": "Izvozi v datoteko", "Log level:": "Nivo logiranja:", "Reload log": "Osveži dnevnik", + "Export log": "Izvozi dnevnik", + "UniGetUI Log": "Dnevnik UniGetUI", "Text": "Besedilo", "Change how operations request administrator rights": "Spremenite način zahtevanja skrbniških pravic za operacije", "Restrictions on package operations": "Omejitve paketnih operacij", @@ -271,7 +297,7 @@ "Leave empty for default": "Pustite prazno kot privzeto", "Add a timestamp to the backup file names": "Dodajte časovni žig v imena datotek varnostne kopije", "Backup and Restore": "Varnostno kopiranje in obnovitev", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Omogoči API v ozadju (WingetUI Widgets and Sharing, vrata 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Omogoči API v ozadju (UniGetUI Widgets and Sharing, vrata 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Počakajte, da se naprava poveže z internetom, preden začnete z opravili, ki zahtevajo povezavo.", "Disable the 1-minute timeout for package-related operations": "Onemogočite 1-minutno časovno omejitev za operacije, povezane s paketom", "Use installed GSudo instead of UniGetUI Elevator": "Uporabi nameščeni GSudo namesto UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetrija", "Manage UniGetUI settings": "Upravljaj nastavitve UniGetUI", "Related settings": "Povezane nastavitve", - "Update WingetUI automatically": "Posodobi WingetUI samodejno", + "Update UniGetUI automatically": "Posodobi UniGetUI samodejno", "Check for updates": "Preverite posodobitve", "Install prerelease versions of UniGetUI": "Namestite predizdajne različice UniGetUI", "Manage telemetry settings": "Upravljaj nastavitve telemetrije", @@ -295,17 +321,17 @@ "Import": "Uvozi", "Export settings to a local file": "Izvozi nastavitve v lokalno datoteko", "Export": "Izvoz", - "Reset WingetUI": "Ponastavite WingetUI", "Reset UniGetUI": "Ponastavite UniGetUI", "User interface preferences": "Nastavitve uporabniškega vmesnika", "Application theme, startup page, package icons, clear successful installs automatically": "Tema aplikacije, začetna stran, ikone paketov, samodejno brisanje uspešnih namestitev", "General preferences": "Splošne nastavitve", - "WingetUI display language:": "Prikazni jezik v WingetUI:", + "UniGetUI display language:": "Prikazni jezik v UniGetUI:", "Is your language missing or incomplete?": "Ali vaš jezik manjka ali je nepopoln?", "Appearance": "Videz", "UniGetUI on the background and system tray": "UniGetUI v ozadju in sistemski vrstici", "Package lists": "Seznami paketov", "Close UniGetUI to the system tray": "Zaprite UniGetUI v sistemsko vrstico", + "Manage UniGetUI autostart behaviour": "Upravljaj vedenje samodejnega zagona UniGetUI", "Show package icons on package lists": "Pokaži ikone paketov na seznamih paketov", "Clear cache": "Počisti predpomnilnik", "Select upgradable packages by default": "Privzeto izberite nadgradljive pakete", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Upoštevajte, da vsi upravljalniki paketov morda ne podpirajo te funkcije", "Proxy URL": "URL posredniškega strežnika", "Enter proxy URL here": "Vnesite URL posredniškega strežnika tukaj", + "Authenticate to the proxy with a user and a password": "Za overitev pri posredniškem strežniku uporabite uporabniško ime in geslo", + "Internet and proxy settings": "Nastavitve interneta in posredniškega strežnika", "Package manager preferences": "Nastavitve upravitelja paketov", "Ready": "Pripravljen", "Not found": "Ni najdeno", "Notification preferences": "Nastavitve obvestil", "Notification types": "Vrste obvestil", "The system tray icon must be enabled in order for notifications to work": "Ikona v sistemski vrstici mora biti omogočena za delovanje obvestil", - "Enable WingetUI notifications": "Omogoči obvestila WingetUI", + "Enable UniGetUI notifications": "Omogoči obvestila UniGetUI", "Show a notification when there are available updates": "Prikaži obvestilo, ko so na voljo posodobitve", "Show a silent notification when an operation is running": "Pokaži tiho obvestilo, ko se operacija izvaja", "Show a notification when an operation fails": "Pokaži obvestilo, ko operacija ne uspe", "Show a notification when an operation finishes successfully": "Pokažite obvestilo, ko se operacija uspešno konča", "Concurrency and execution": "Vzporednost in izvajanje", "Automatic desktop shortcut remover": "Samodejni odstranjevalec bližnjic na namizju", + "Choose how many operations should be performed in parallel": "Izberite, koliko operacij naj se izvaja vzporedno", "Clear successful operations from the operation list after a 5 second delay": "Po 5 sekundnem zamiku izbrišite uspešne operacije s seznama operacij", "Download operations are not affected by this setting": "Ta nastavitev ne vpliva na postopke prenosa", "Try to kill the processes that refuse to close when requested to": "Poskusi končati procese, ki se ob zahtevi nočejo zapreti", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Izberite izvršljivo datoteko, ki jo želite uporabiti. Naslednji seznam prikazuje izvršljive datoteke, ki jih je našel UniGetUI", "Current executable file:": "Trenutna izvršljiva datoteka:", "Ignore packages from {pm} when showing a notification about updates": "Prezri pakete iz {pm} pri prikazu obvestil o posodobitvah", + "Update security": "Varnost posodobitev", + "Use global setting": "Uporabi globalno nastavitev", + "e.g. 10": "npr. 10", + "{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", + "Override the global minimum update age for this package manager": "Preglasi globalno minimalno starost posodobitev za tega upravitelja paketov", + "Minimum age for updates": "Minimalna starost posodobitev", + "Custom minimum age (days)": "Minimalna starost po meri (dni)", "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, ", "Advanced options": "Napredne možnosti", "Reset WinGet": "Ponastavite WinGet", "This may help if no packages are listed": "To lahko pomaga, če ni prikazanih paketov", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Omogoči čiščenje Scoop-a ob zagonu", "Use system Chocolatey": "Uporabite sistem Chocolatey", "Default vcpkg triplet": "Privzeti vcpkg triplet", + "Change vcpkg root location": "Spremeni korensko lokacijo vcpkg", "Language, theme and other miscellaneous preferences": "Jezik, tema in druge raznovrstne nastavitve", "Show notifications on different events": "Prikažite obvestila o različnih dogodkih", "Change how UniGetUI checks and installs available updates for your packages": "Spremenite, kako UniGetUI preverja in namešča razpoložljive posodobitve za vaše pakete", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ne nameščaj posodobitev samodejno pri merjeni povezavi", "Do not automatically install updates when the device runs on battery": "Ne nameščaj posodobitev samodejno, ko naprava deluje na baterijo", "Do not automatically install updates when the battery saver is on": "Ne nameščaj posodobitev samodejno, ko je vklopljen varčevalnik baterije", + "Only show updates that are at least the specified number of days old": "Prikaži samo posodobitve, stare vsaj toliko dni, kot je določeno", "Change how UniGetUI handles install, update and uninstall operations.": "Spremenite, kako UniGetUI upravlja z namestitvami, posodobitvami in odstranitvami.", "Package Managers": "Upravljalniki paketov", "More": "Več", - "WingetUI Log": "WingetUI dnevnik", "Package Manager logs": "Dnevniki upravitelja paketov", "Operation history": "Zgodovina delovanja", "Help": "Pomoč", + "Quit UniGetUI": "Zapri UniGetUI", "Order by:": "Razvrsti po:", "Name": "Naziv", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Oboje", "Exact match": "Natančno ujemanje", "Show similar packages": "Prikaži podobne pakete", + "Nothing to share": "Ni ničesar za deljenje", + "Please select a package first.": "Najprej izberite paket.", + "Share link copied": "Povezava za deljenje je kopirana", + "The share link for {0} has been copied to the clipboard.": "Povezava za deljenje za {0} je bila kopirana v odložišče.", "No results were found matching the input criteria": "Ni bilo najdenih rezultatov, ki bi ustrezali kriterijem vnosa", "No packages were found": "Najden ni bil noben paket", "Loading packages": "Nalaganje paketov", @@ -440,7 +483,11 @@ "Package bundle": "Sveženj paketov", "Could not create bundle": "Ni bilo mogoče ustvariti svežnja", "The package bundle could not be created due to an error.": "Paketa ni bilo mogoče ustvariti zaradi napake.", + "Unsaved changes": "Neshranjene spremembe", + "Discard changes": "Zavrzi spremembe", + "You have unsaved changes in the current bundle. Do you want to discard them?": "V trenutnem svežnju imate neshranjene spremembe. Ali jih želite zavreči?", "Bundle security report": "Varnostno poročilo svežnja", + "The bundle contained restricted content": "Sveženj je vseboval omejeno vsebino", "Hooray! No updates were found.": "Hura! Ni najdenih posodobitev!", "Everything is up to date": "Vse je posodobljeno", "Uninstall selected packages": "Odstrani izbrane pakete", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Klasični upravitelj paketov za Windows. Tukaj boste našli vse.
Vsebuje: Splošno programsko opremo", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Repozitorij, poln orodij in izvršljivih datotek, zasnovanih z mislijo na Microsoftov ekosistem .NET.
Vsebuje: orodja in skripte, povezane z .NET", "NuPkg (zipped manifest)": "NuPkg (stisnjen manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Manjkajoči upravljalnik paketov za macOS (ali Linux).
Vsebuje: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Upravitelj paketov Node JS. Polno knjižnic in drugih pripomočkov, ki krožijo po svetu javascripta
Vsebuje: Knjižnice javascript vozlišča in druge povezane pripomočke", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Upravitelj knjižnice Python. Polno knjižnic Python in drugih pripomočkov, povezanih s Pythonom
Vsebuje: Knjižnice Python in sorodni pripomočki", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Upravitelj paketov PowerShell. Poiščite knjižnice in skripte za razširitev zmogljivosti lupine PowerShell
Vsebuje: Module, skripte, cmdlete", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operacija v čakalni vrsti (položaj {0}) ...", "Click here for more details": "Kliknite tukaj za več podrobnosti", "Operation canceled by user": "Operacijo je preklical uporabnik", + "Running PreOperation ({0}/{1})...": "Izvajanje PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} od {1} ni uspela in je bila označena kot obvezna. Prekinjam...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} od {1} se je končala z rezultatom {2}", "Starting operation...": "Zaganjanje operacije...", + "Running PostOperation ({0}/{1})...": "Izvajanje PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} od {1} ni uspela in je bila označena kot obvezna. Prekinjam...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} od {1} se je končala z rezultatom {2}", "{package} installer download": "Prenos namestitvenega programa za {package}", "{0} installer is being downloaded": "Namestitveni program za {0} se prenaša", "Download succeeded": "Prenos uspel", @@ -556,14 +610,12 @@ "Portable mode": "Prenosni način", "DEBUG BUILD": "RAZVOJNA RAZLIČICA", "Available Updates": "Razpoložljive posodobitve", - "Show WingetUI": "Prikaži WingetUI", + "Show UniGetUI": "Prikaži UniGetUI", "Quit": "Izhod", "Attention required": "Potrebna pozornost", "Restart required": "Potreben ponovni zagon", "1 update is available": "Na voljo je 1 posodobitev", "{0} updates are available": "{0} posodobitev je na voljo", - "WingetUI Homepage": "Domača stran WingetUI", - "WingetUI Repository": "Repozitorij WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Tukaj lahko spremenite vedenje UniGetUI glede naslednjih bližnjic. Če označite bližnjico, jo bo UniGetUI izbrisal, če bo ustvarjena pri prihodnji nadgradnji. Če jo počistite, bo bližnjica ostala nedotaknjena", "Manual scan": "Ročno iskanje", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Obstoječe bližnjice na namizju bodo pregledane, izbrati boste morali, katere želite obdržati in katere odstraniti.", @@ -583,7 +635,6 @@ "Restart later": "Ponovno zaženi kasneje", "An error occurred:": "Pripetila se je napaka:", "I understand": "Razumem", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI je bil zagnan kot skrbnik, kar ni priporočljivo. Ko WingetUI izvajate kot skrbnik, bo imela VSAKA operacija, zagnana iz WingetUI, skrbniške pravice. Še vedno lahko uporabljate program, vendar zelo priporočamo, da WingetUI ne izvajate s skrbniškimi pravicami.", "WinGet was repaired successfully": "WinGet je bil uspešno popravljen", "It is recommended to restart UniGetUI after WinGet has been repaired": "Priporočljivo je, da znova zaženete UniGetUI, ko je WinGet popravljen", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "OPOMBA: To orodje za odpravljanje težav lahko onemogočite v nastavitvah UniGetUI v razdelku WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Vaši paketi bodo dodani v paket. Lahko nadaljujete z dodajanjem paketov ali izvozite sveženj.", "Which backup do you want to open?": "Katero varnostno kopijo želite odpreti?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Izberite varnostno kopijo, ki jo želite odpreti. Pozneje boste lahko pregledali, katere pakete ali programe želite obnoviti.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "V teku so operacije. Zapustitev WingetUI lahko povzroči njihovo odpoved. Želite nadaljevati?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "V teku so operacije. Zapustitev UniGetUI lahko povzroči njihovo odpoved. Želite nadaljevati?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ali nekatere njegove komponente manjkajo ali so poškodovane.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Močno priporočamo, da znova namestite UniGetUI in s tem odpravite težavo.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Za več podrobnosti o prizadetih datotekah si oglejte dnevnike UniGetUI", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Tukaj vnesite imena procesov, ločena z vejicami (,)", "Unset or unknown": "Nepostavljeno ali neznano", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Za nadaljnje informacije o težavi si oglejte Izpis ukazne vrstice ali glejte Zgodovino delovanja.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ta paket nima posnetkov zaslona ali manjka ikona? Prispevajte k WingetUI tako, da dodate manjkajoče ikone in posnetke zaslona v našo odprto javno bazo podatkov.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ta paket nima posnetkov zaslona ali manjka ikona? Prispevajte k UniGetUI tako, da dodate manjkajoče ikone in posnetke zaslona v našo odprto javno bazo podatkov.", "Become a contributor": "Postanite soustvarjalec", "Save": "Shrani", "Update to {0} available": "Posodobitev na {0} na voljo", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Omogočite samodejno orodje za odpravljanje težav WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Omogoči [poskusno] izboljšano orodje za odpravljanje težav z WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Na seznam prezrtih posodobitev dodajte posodobitve, ki niso uspele z \"ni ustrezne posodobitve\".", - "Restart WingetUI to fully apply changes": "Znova zaženite WingetUI, da v celoti uveljavite spremembe", - "Restart WingetUI": "Ponovno zaženi WingetUI", "Invalid selection": "Neveljaven izbor", "No package was selected": "Noben paket ni bil izbran", "More than 1 package was selected": "Izbranih je bilo več kot 1 paket", @@ -684,6 +733,37 @@ "Log out failed: ": "Odjava ni uspela: ", "Package backup settings": "Nastavitve varnostnega kopiranja paketov", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "O WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI je aplikacija, ki poenostavi upravljanje vaše programske opreme z zagotavljanjem grafičnega vmesnika vse v enem za vaše upravitelje paketov v ukazni vrstici.", + "You have installed WingetUI Version {0}": "Namestili ste različico WingetUI {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ne bi bil mogoč brez pomoči sodelavcev. Hvala vsem 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uporablja naslednje knjižnice. Brez njih UniGetUI ne bi bil mogoč.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI je bil zahvaljujoč prostovoljnim prevajalcem preveden v več kot 40 jezikov. Hvala 🤝", + "WingetUI Settings": "WingetUI nastavitve", + "You may need to install {pm} in order to use it with WingetUI.": "Morda boste morali namestiti {pm}, če ga želite uporabljati z WingetUI.", + "Scoop Installer - WingetUI": "Scoop Installer - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop Uninstaller - WingetUI", + "Clearing Scoop cache - WingetUI": "Čiščenje predpomnilnika Scoop - WingetUI", + "WingetUI Version {0}": "WingetUI različica {0}", + "WingetUI License": "Licenca WingetUI", + "Using WingetUI implies the acceptation of the MIT License": "Z uporabo WingetUI se strinjate z MIT licenco", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Omogoči API v ozadju (WingetUI Widgets and Sharing, vrata 7058)", + "Update WingetUI automatically": "Posodobi WingetUI samodejno", + "Reset WingetUI": "Ponastavite WingetUI", + "WingetUI display language:": "Prikazni jezik v WingetUI:", + "Manage WingetUI autostart behaviour": "Upravljaj vedenje samodejnega zagona WingetUI", + "Enable WingetUI notifications": "Omogoči obvestila WingetUI", + "WingetUI Log": "WingetUI dnevnik", + "Show WingetUI": "Prikaži WingetUI", + "WingetUI Homepage": "Domača stran WingetUI", + "WingetUI Repository": "Repozitorij WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI je bil zagnan kot skrbnik, kar ni priporočljivo. Ko WingetUI izvajate kot skrbnik, bo imela VSAKA operacija, zagnana iz WingetUI, skrbniške pravice. Še vedno lahko uporabljate program, vendar zelo priporočamo, da WingetUI ne izvajate s skrbniškimi pravicami.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "V teku so operacije. Zapustitev WingetUI lahko povzroči njihovo odpoved. Želite nadaljevati?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Ta paket nima posnetkov zaslona ali manjka ikona? Prispevajte k WingetUI tako, da dodate manjkajoče ikone in posnetke zaslona v našo odprto javno bazo podatkov.", + "Restart WingetUI to fully apply changes": "Znova zaženite WingetUI, da v celoti uveljavite spremembe", + "Restart WingetUI": "Ponovno zaženi WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Upravljajte obnašanje samodejnega zagona UniGetUI v aplikaciji Nastavitve", "(Number {0} in the queue)": "(Številka {0} v čakalni vrsti)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@rumplin", "0 packages found": "0 najdenih paketov", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json index a925d24b83..d90177b866 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sq.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Anulo çinstalimin nëse komanda e para-çinstalimit dështon", "Command-line to run:": "Rreshti i komandës për t'u ekzekutuar:", "Save and close": "Ruaj dhe mbyll", + "General": "Të përgjithshme", + "Architecture & Location": "Arkitektura dhe vendndodhja", + "Command-line": "Rreshti i komandës", + "Pre/Post install": "Para/Pas instalimit", "Run as admin": "Ekzekuto si administrator", "Interactive installation": "Instalim ndërveprues", "Skip hash check": "Kapërce kontrollin e hash-it", @@ -71,6 +75,8 @@ "Manage ignored updates": "Menaxho përditësimet e shpërfillura", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Paketat e paraqitura këtu do të shpërfillen kur kontrollohen përditësimet. Kliko dy herë mbi to ose kliko butonin në të djathtën e tyre për të ndaluar shpërfilljen e përditësimeve të tyre.", "Reset list": "Rivendos listën", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "A dëshiron vërtet ta rivendosësh listën e përditësimeve të shpërfillura? Ky veprim nuk mund të rikthehet", + "No ignored updates": "Nuk ka përditësime të shpërfillura", "Package Name": "Emri i paketës", "Package ID": "ID i paketës", "Ignored version": "Versionet e shpërfillura", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ky operacion po ekzekutohet në mënyrë ndërvepruese.", "You will likely need to interact with the installer.": "Ka shumë gjasa që do të duhet të ndërveprosh me instaluesin.", "Integrity checks skipped": "Kontrollet e integritetit u anashkaluan", + "Integrity checks will not be performed during this operation.": "Kontrollet e integritetit nuk do të kryhen gjatë këtij operacioni.", "Proceed at your own risk.": "Vazhdo, por çdo rrezik është në përgjegjësinë tënde.", "Close": "Mbyll", "Loading...": "Po ngarkohet...", @@ -120,16 +127,17 @@ "optional": "fakultativ", "UniGetUI {0} is ready to be installed.": "Versioni {0} i UniGetUI është gati për t'u instaluar.", "The update process will start after closing UniGetUI": "Procesi i përditësimit do të fillojë pasi të mbyllet UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI është ekzekutuar si administrator, gjë që nuk rekomandohet. Kur UniGetUI ekzekutohet si administrator, ÇDO operacion i nisur nga UniGetUI do të ketë privilegje administratori. Mund ta përdorësh ende programin, por ne rekomandojmë fuqimisht të mos e ekzekutosh UniGetUI me privilegje administratori.", "Share anonymous usage data": "Ndaj të dhëna anonime të përdorimit", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI mbledh të dhëna anonime të përdorimit për të përmirësuar përvojën e përdoruesit.", "Accept": "Prano", - "You have installed WingetUI Version {0}": "Ke instaluar UniGetUI në versionin {0}", + "You have installed UniGetUI Version {0}": "Ke instaluar UniGetUI në versionin {0}", "Disclaimer": "Mospranim përgjegjësie", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI nuk është i lidhur me asnjë nga menaxherët e paketave të përputhur. UniGetUI është një projekt i pavarur.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nuk do të ishte i mundur pa ndihmën e kontribuesve. Faleminderit të gjithëve 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI përdor libraritë që vijojnë. Pa to, UniGetUI nuk do të ishte i mundur.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nuk do të ishte i mundur pa ndihmën e kontribuesve. Faleminderit të gjithëve 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI përdor libraritë që vijojnë. Pa to, UniGetUI nuk do të ishte i mundur.", "{0} homepage": "Kryefaqja e {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI është përkthyer në më shumë se 40 gjuhë falë përkthyesve vullnetarë. Faleminderit 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI është përkthyer në më shumë se 40 gjuhë falë përkthyesve vullnetarë. Faleminderit 🤝", "Verbose": "Fjalëshumë", "1 - Errors": "1 - Gabime", "2 - Warnings": "2 - Paralajmërime", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Ke hyr si {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Bukur! Kopjet rezervë do të ngarkohen në një Gist privat në llogarinë tënde", "Select backup": "Zgjidh kopjen rezervë", - "WingetUI Settings": "Cilësimet e UniGetUI", + "UniGetUI Settings": "Cilësimet e UniGetUI", "Allow pre-release versions": "Lejo versionet e botimit paraprak", "Apply": "Zbato", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Për arsye sigurie, argumentet e personalizuara të rreshtit të komandës janë të çaktivizuara si paracaktim. Shko te cilësimet e sigurisë të UniGetUI për ta ndryshuar këtë.", "Go to UniGetUI security settings": "Shko te cilësimet e sigurisë të UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Rregullimet e mëposhtme do të aplikohen si paracaktim sa herë që një paketë {0} instalohet, përditësohet ose çinstalohet.", "Package's default": "Paracaktimet e paketës", @@ -160,6 +169,7 @@ "Username": "Emri i përdoruesit", "Password": "Fjalëkalim", "Credentials": "Kredencialet", + "It is not guaranteed that the provided credentials will be stored safely": "Nuk garantohet që kredencialet e dhëna do të ruhen në mënyrë të sigurt", "Partially": "Pjesërisht", "Package manager": "Menaxheri i paketave", "Compatible with proxy": "I përputhshëm me ndërmjetës", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} është aktivizuar dhe është gati", "{pm} version:": "Versioni i {pm}:", "{pm} was not found!": "{pm} nuk u gjet!", - "You may need to install {pm} in order to use it with WingetUI.": "Mund të të duhet të instalosh {pm} në mënyrë që ta përdorësh me UniGetUI.", - "Scoop Installer - WingetUI": "Instaluesi Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Çinstaluesi Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Po pastrohet keshi i Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Mund të të duhet të instalosh {pm} në mënyrë që ta përdorësh me UniGetUI.", + "Scoop Installer - UniGetUI": "Instaluesi Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Çinstaluesi Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Po pastrohet keshi i Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "Rinis UniGetUI që ndryshimet të zbatohen plotësisht", "Restart UniGetUI": "Rinis UniGetUI", "Manage {0} sources": "Menaxho burimet {0}", "Add source": "Shto burim", "Add": "Shto", + "Source name": "Emri i burimit", + "Source URL": "URL-ja e burimit", "Other": "Tjerë", + "No minimum age": "Pa moshë minimale", "1 day": "1 ditë", "{0} days": "{0} ditë", + "Custom...": "E personalizuar...", "{0} minutes": "{0, plural, one {{0} minutë} other {{0} minuta}}", "1 hour": "1 orë", "{0} hours": "{0} orë", "1 week": "1 javë", - "WingetUI Version {0}": "Versioni {0} i UniGetUI", + "Supports release dates": "Mbështet datat e publikimit", + "Release date support per package manager": "Mbështetja e datës së publikimit sipas menaxherit të paketave", + "UniGetUI Version {0}": "Versioni {0} i UniGetUI", "Search for packages": "Kërko paketa", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Aktivizuar", "Disabled": "Çaktivizuar", "More info": "Më shumë informacione", + "GitHub account": "Llogaria GitHub", "Log in with GitHub to enable cloud package backup.": "Hyr me GitHub për të aktivizuar kopjen rezervë në re të paketave.", "More details": "Më shumë detaje", "Log in": "Hyr", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Nëse ke aktivizuar kopjen rezervë në re, ajo do të ruhet si një GitHub Gist në këtë llogari", "Log out": "Dil", + "About UniGetUI": "Rreth UniGetUI", "About": "Rreth", "Third-party licenses": "Leje të palëve të treta", "Contributors": "Kontribuesit", @@ -212,6 +231,7 @@ "Manage shortcuts": "Menaxho shkurtoret", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ka zbuluar shkurtoret të tryezës që vijojnë, të cilat mund të fshihen automatikisht gjatë përditësimeve të ardhshme.", "Do you really want to reset this list? This action cannot be reverted.": "A je i sigurt që do të rivendosësh këtë listë? Ky veprim nuk mund të rikthehet.", + "Open in explorer": "Hape në File Explorer", "Remove from list": "Hiq nga lista", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kur zbulohen shkurtore të reja, fshiji automatikisht në vend që të shfaqet ky dialog.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI mbledh të dhëna anonime të përdorimit me qëllim të vetëm kuptimin dhe përmirësimin e përvojës të përdoruesit.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "A pranon që UniGetUI të mbledhë dhe të dërgojë statistika të përdorimit anonime, me qëllim të vetëm kuptimin dhe përmirësimin të përvojës së përdoruesit?", "Decline": "Refuzo", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Asnjë informacion personal nuk mblidhet as nuk dërgohet, dhe të dhënat e mbledhura janë të anonimizuara, kështu që nuk mund të gjurmohen mbrapsht te ty.", - "About WingetUI": "Rreth UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI është një aplikacion që e bën më të lehtë menaxhimin e programeve të tua, duke ofruar një ndërfaqe grafike të plotë për menaxherët e paketave të rreshtit të komandës të tu.", + "Toggle navigation panel": "Shfaq/Fshih panelin e lundrimit", + "Minimize": "Minimizo", + "Maximize": "Maksimizo", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI është një aplikacion që e bën më të lehtë menaxhimin e programeve të tua, duke ofruar një ndërfaqe grafike të plotë për menaxherët e paketave të rreshtit të komandës të tu.", "Useful links": "Lidhje të dobishme", + "UniGetUI Homepage": "Kryefaqja e UniGetUI", "Report an issue or submit a feature request": "Njofto një problem ose paraqit një kërkesë për veçori", + "UniGetUI Repository": "Depoja e UniGetUI", "View GitHub Profile": "Shiko profilin GitHub", - "WingetUI License": "Leja e UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Përdorimi i UniGetUI nënkupton pranimin e Lejes MIT", + "UniGetUI License": "Leja e UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Përdorimi i UniGetUI nënkupton pranimin e Lejes MIT", "Become a translator": "Bëhu përkthyes", "View page on browser": "Shiko faqen në shfletues", "Copy to clipboard": "Kopjo në letërmbajtëse", "Export to a file": "Eksporto në një skedar", "Log level:": "Niveli i ditarit:", "Reload log": "Ngarko ditarin përsëri", + "Export log": "Eksporto ditarin", + "UniGetUI Log": "Ditari i UniGetUI", "Text": "Tekst", "Change how operations request administrator rights": "Ndrysho mënyrën se si operacionet kërkojnë të drejtat e administratorit", "Restrictions on package operations": "Kufizime mbi operacionet e paketave", @@ -271,7 +297,7 @@ "Leave empty for default": "Lëre bosh për të ndjekur paracaktimin", "Add a timestamp to the backup file names": "Shto një vulë kohore në emrat e skedarëve rezervë", "Backup and Restore": "Kopje rezervë dhe Rikthim", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktivizo API-në e sfondit (Widgets for UniGetUI and Sharing, porta 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktivizo API-në e sfondit (Widgets for UniGetUI and Sharing, porta 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Prit derisa pajisja të lidhet me internetin para se të përpiqesh të kryesh detyra që kërkojnë lidhje me internet.", "Disable the 1-minute timeout for package-related operations": "Çaktivizo afatin 1 minutësh për operacionet që lidhen me paketat", "Use installed GSudo instead of UniGetUI Elevator": "Përdor GSudo të instaluar në vend të UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Matja nga larg (Telemetria)", "Manage UniGetUI settings": "Menaxho cilësimet e UniGetUI", "Related settings": "Cilësimet përkatëse", - "Update WingetUI automatically": "Përditëso automatikisht UniGetUI", + "Update UniGetUI automatically": "Përditëso automatikisht UniGetUI", "Check for updates": "Kontrollo për përditësime", "Install prerelease versions of UniGetUI": "Instalo versionet paraprake të UniGetUI", "Manage telemetry settings": "Menaxho cilësimet e matjes nga larg (telemetrisë)", @@ -295,17 +321,17 @@ "Import": "Importo", "Export settings to a local file": "Eksporto cilësimet në një skedar lokal", "Export": "Eksporto", - "Reset WingetUI": "Rivendos UniGetUI", "Reset UniGetUI": "Rivendos UniGetUI", "User interface preferences": "Parapëlqimet e ndërfaqes së përdoruesit", "Application theme, startup page, package icons, clear successful installs automatically": "Motivi i aplikacionit, faqja e nisjes, ikonat e paketave, pastrim automatik i instalimeve të suksesshme", "General preferences": "Parapëlqime të përgjithshme", - "WingetUI display language:": "Gjuha e UniGetUI:", + "UniGetUI display language:": "Gjuha e UniGetUI:", "Is your language missing or incomplete?": "Gjuha jote mungon apo është e paplotë?", "Appearance": "Pamja", "UniGetUI on the background and system tray": "UniGetUI në sfond dhe në hapësirën e sistemit", "Package lists": "Listat e paketave", "Close UniGetUI to the system tray": "Mbyll UniGetUI në hapësirën e sistemit", + "Manage UniGetUI autostart behaviour": "Menaxho sjelljen e nisjes automatike të UniGetUI", "Show package icons on package lists": "Shfaq ikonat e paketave në listat e paketave", "Clear cache": "Pastro kesh-in", "Select upgradable packages by default": "Përzgjidh paketat e përditësueshme si paracaktim", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Të lutem vë re që jo të gjithë menaxherët e paketave mund ta mbështesin plotësisht këtë veçori", "Proxy URL": "URL-ja e ndërmjetësit", "Enter proxy URL here": "Shkruaj këtu URL-në e ndërmjetësit", + "Authenticate to the proxy with a user and a password": "Autentifikohu te ndërmjetësi me emër përdoruesi dhe fjalëkalim", + "Internet and proxy settings": "Cilësimet e internetit dhe të ndërmjetësit", "Package manager preferences": "Parapëlqimet e menaxherit të paketave", "Ready": "Gati", "Not found": "Nuk u gjet", "Notification preferences": "Parapëlqimet e njoftimit", "Notification types": "Llojet e njoftimeve", "The system tray icon must be enabled in order for notifications to work": "Ikona e hapësirës së sistemit duhet të jetë aktivizuar që njoftimet të funksionojnë", - "Enable WingetUI notifications": "Aktivizo njoftimet e UniGetUI", + "Enable UniGetUI notifications": "Aktivizo njoftimet e UniGetUI", "Show a notification when there are available updates": "Shfaq një njoftim kur ofrohen përditësime", "Show a silent notification when an operation is running": "Shfaq një njoftim të heshtur kur një operacion po ekzekutohet", "Show a notification when an operation fails": "Shfaq një njoftim kur një operacion dështon", "Show a notification when an operation finishes successfully": "Shfaq një njoftim kur një operacion përfundon me sukses", "Concurrency and execution": "Njëkohshmëria dhe ekzekutimi", "Automatic desktop shortcut remover": "Heqës automatik i shkurtoreve të tryezës", + "Choose how many operations should be performed in parallel": "Zgjidh sa operacione duhet të kryhen paralelisht", "Clear successful operations from the operation list after a 5 second delay": "Pastro operacionet e suksesshme nga lista e operacioneve pas një vonese prej 5 sekondash", "Download operations are not affected by this setting": "Operacionet e shkarkimit nuk preken nga ky cilësim", "Try to kill the processes that refuse to close when requested to": "Përpiqu të mbyllësh proceset që refuzojnë të mbyllen kur u kërkohet", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Zgjidh ekzekutuesin që do të përdoret. Lista e mëposhtme tregon ekzekutuesit që janë gjetur nga UniGetUI", "Current executable file:": "Skedari ekzekutues i tanishëm:", "Ignore packages from {pm} when showing a notification about updates": "Shpërfill paketat nga {pm} kur shfaqet një njoftim për përditësime", + "Update security": "Siguria e përditësimeve", + "Use global setting": "Përdor cilësimin global", + "e.g. 10": "p.sh. 10", + "{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", + "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", + "Minimum age for updates": "Mosha minimale për përditësimet", + "Custom minimum age (days)": "Moshë minimale e personalizuar (ditë)", "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, ", "Advanced options": "Rregullimet e përparuara", "Reset WinGet": "Rivendos WinGet", "This may help if no packages are listed": "Kjo mund të ndihmojë nëse nuk ka paketa në listë", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktivizo pastrimin e Scoop në nisje", "Use system Chocolatey": "Përdor Chocolatey të sistemit", "Default vcpkg triplet": "Treshja vcpkg e paracaktuar", + "Change vcpkg root location": "Ndrysho vendndodhjen rrënjësore të vcpkg", "Language, theme and other miscellaneous preferences": "Gjuha, motivi dhe parapëlqime të tjera të ndryshme", "Show notifications on different events": "Shfaq njoftimet për ngjarje të ndryshme", "Change how UniGetUI checks and installs available updates for your packages": "Ndrysho mënyrën se si UniGetUI kontrollon dhe instalon përditësimet e ofruara për paketat e tua", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Mos i instalo automatikisht përditësimet kur lidhja e rrjetit është me kufizime të dozës", "Do not automatically install updates when the device runs on battery": "Mos instalo automatikisht përditësime kur pajisja punon me bateri", "Do not automatically install updates when the battery saver is on": "Mos i instalo automatikisht përditësimet kur kursyesi i baterisë është aktiv", + "Only show updates that are at least the specified number of days old": "Shfaq vetëm përditësime që janë të paktën aq ditë të vjetra sa numri i caktuar", "Change how UniGetUI handles install, update and uninstall operations.": "Ndrysho mënyrën se si UniGetUI trajton operacionet e instalimit, përditësimit dhe çinstalimit.", "Package Managers": "Menaxherët e paketave", "More": "Më shumë", - "WingetUI Log": "Ditari i UniGetUI", "Package Manager logs": "Ditari i menaxherit të paketave", "Operation history": "Historiku i operacionëve", "Help": "Ndihmë", + "Quit UniGetUI": "Dil nga UniGetUI", "Order by:": "Rëndit sipas:", "Name": "Emri", "Id": "ID-ja", @@ -409,6 +448,10 @@ "Both": "Të dyja", "Exact match": "Përputhje e saktë", "Show similar packages": "Shfaq paketa të ngjashme", + "Nothing to share": "Nuk ka asgjë për të ndarë", + "Please select a package first.": "Të lutem, zgjidh fillimisht një paketë.", + "Share link copied": "Lidhja e ndarjes u kopjua", + "The share link for {0} has been copied to the clipboard.": "Lidhja e ndarjes për {0} është kopjuar në letërmbajtëse.", "No results were found matching the input criteria": "Nuk u gjet asnjë rezultat që përputhet me kriteret hyrëse", "No packages were found": "Nuk u gjet asnjë paketë", "Loading packages": "Po ngarkohen paketat", @@ -440,7 +483,11 @@ "Package bundle": "Koleksion i paketave", "Could not create bundle": "Nuk mund të krijohej koleksioni i paketave", "The package bundle could not be created due to an error.": "Koleksioni i paketave nuk mund të krijohej për shkak të një gabimi.", + "Unsaved changes": "Ndryshime të paruajtura", + "Discard changes": "Hidhi poshtë ndryshimet", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Ke ndryshime të paruajtura në koleksionin aktual. Dëshiron t'i hedhësh poshtë?", "Bundle security report": "Raporti i sigurisë për koleksionin", + "The bundle contained restricted content": "Koleksioni përmbante përmbajtje të kufizuar", "Hooray! No updates were found.": "Ec aty! Nuk u gjetën përditësime.", "Everything is up to date": "Gjithçka është e përditësuar", "Uninstall selected packages": "Çinstalo paketat e përzgjedhura", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Menaxheri klasik i paketave për Windows. Do të gjesh gjithçka atje.
Përmban: Programe të përgjithshme", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Një depo plot me vegla dhe programe ekzekutuese të krijuar duke pasur parasysh ekosistemin .NET të Microsoft-it.
Përmban: vegla dhe skripte të lidhura me .NET", "NuPkg (zipped manifest)": "NuPkg (manifest i kompresuar)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Menaxheri i munguar i paketave për macOS (ose Linux).
Përmban: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Menaxheri i paketave të Node JS-it. Plot me librari dhe shërbime të tjera që kanë të bëjnë me botën e javascript-it
Përmban: Libraritë Node javascript dhe shërbime të tjera të lidhura me to", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Menaxheri i librarisë të Python-it. Plot me librari python dhe shërbime të tjera të lidhura me Python-in
Përmban: Librari të Python-it dhe shërbime të ngjashme", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Menaxheri i paketave të PowerShell-it. Gjen librari dhe skripta për të zgjeruar aftësitë e PowerShell-it
Përmban: Module, Skripta, Cmdlet-a", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operacion në radhë (vendi {0})...", "Click here for more details": "Kliko këtu për më shumë detaje", "Operation canceled by user": "Operacioni u anulua nga përdoruesi", + "Running PreOperation ({0}/{1})...": "Po ekzekutohet PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} nga {1} dështoi dhe ishte shënuar si i nevojshëm. Po ndërpritet...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} nga {1} përfundoi me rezultatin {2}", "Starting operation...": "Duke nisur operacionin...", + "Running PostOperation ({0}/{1})...": "Po ekzekutohet PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} nga {1} dështoi dhe ishte shënuar si i nevojshëm. Po ndërpritet...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} nga {1} përfundoi me rezultatin {2}", "{package} installer download": "Shkarkim i instaluesit të {package}", "{0} installer is being downloaded": "Instaluesi i {0} po shkarkohet", "Download succeeded": "Shkarkimi pati sukses", @@ -556,14 +610,12 @@ "Portable mode": "Mënyra portative", "DEBUG BUILD": "KONSTRUKT PËR KORRIGJIM", "Available Updates": "Përditësimet e ofruara", - "Show WingetUI": "Shfaq UniGetUI", + "Show UniGetUI": "Shfaq UniGetUI", "Quit": "Ndal", "Attention required": "Kërkohet vëmendje", "Restart required": "Kërkohet rinisja", "1 update is available": "Ofrohet 1 përditësim", "{0} updates are available": "{0, plural, one {Ofrohet {0} përditësim} other {Ofrohen {0} përditësime}}", - "WingetUI Homepage": "Kryefaqja e UniGetUI", - "WingetUI Repository": "Depo e UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Këtu mund të ndryshosh sjelljen e UniGetUI në lidhje me shkurtoret që vijojnë. Duke përzgjedhur një shkurtore, UniGetUI do ta fshijë atë nëse krijohet gjatë një përditësimi të ardhshëm. Nëse e heq përzgjedhjen, shkurtesa do të mbetet e pandryshuar", "Manual scan": "Skanim manual", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Shkurtoret ekzistuese në tryezën tënde do të skanohen, dhe do të duhet të zgjedhësh se cilat do mbash dhe cilat do fshish.", @@ -583,7 +635,6 @@ "Restart later": "Rinis më vonë", "An error occurred:": "Ndodhi një gabim:", "I understand": "Kuptoj", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI është ekzekutuar si administrator, gjë që nuk këshillohet. Kur përdor UniGetUI si administrator, ÇDO operacion i nisur nga UniGetUI do të ketë privilegje administratori. Ti mund ta përdorësh programin gjithsesi, por këshillohet të mos ekzekutosh UniGetUI me privilegje administratori.", "WinGet was repaired successfully": "WinGet u rregullua me sukses", "It is recommended to restart UniGetUI after WinGet has been repaired": "Këshillohet të riniset UniGetUI mbasi që rregullohet WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "SHËNIM: Ky zgjidhës i problemeve mund të çaktivizohet nga Cilësimet UniGetUI, në seksionin WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Paketat e tua do të jenë shtuar në koleksion. Mund të vazhdosh të shtosh paketa ose të eksportosh koleksionin.", "Which backup do you want to open?": "Cilën kopje rezervë dëshiron të hapësh?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Zgjidh kopjen rezervë që dëshiron të hapësh. Më vonë, do të mund të rishikosh cilat paketa/programe dëshiron të rikthesh.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ka operacione në vazhdim. Mbyllja e UniGetUI mund të shkaktojë deshtimin e tyre. Do të vazhdosh?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Ka operacione në vazhdim. Mbyllja e UniGetUI mund të shkaktojë deshtimin e tyre. Do të vazhdosh?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI ose disa nga përbërësit e tij mungojnë ose janë të dëmtuar.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Rekomandohet me ngulm të instalosh përsëri UniGetUI për të zgjidhur situatën.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Referohu te Ditarët e UniGetUI për të marrë më shumë detaje rreth skedarëve të prekur", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Shkruaj këtu emrat e proceseve, të ndarë me presje (,)", "Unset or unknown": "I papërcaktuar ose i panjohur", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Të lutem shiko daljen e rreshtit të komandës ose referoju Historikut të Operacioneve për informacione të mëtejshme rreth problemit.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Kjo paketë nuk ka pamje nga ekrani apo i mungon ikona? Kontribuo në UniGetUI duke shtuar ikonat dhe pamjet e ekranit që mungojnë në bazën tonë të të dhënave të hapur publike.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Kjo paketë nuk ka pamje nga ekrani apo i mungon ikona? Kontribuo në UniGetUI duke shtuar ikonat dhe pamjet e ekranit që mungojnë në bazën tonë të të dhënave të hapur publike.", "Become a contributor": "Bëhu kontribuues", "Save": "Ruaj", "Update to {0} available": "Ofrohet përditësim për {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Akitvizo zgjidhësin automatik të problemeve të WinGet-it", "Enable an [experimental] improved WinGet troubleshooter": "Aktivizo zgjidhësin e problemeve të përmirësuar [eksperimental] të WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Shto përditësimet që dështojnë me 'nuk u gjet përditësim i përshtatshëm' në listën e përditësimeve të shpërfillura.", - "Restart WingetUI to fully apply changes": "Rinisni UniGetUI për të zbatuar plotësisht ndryshimet", - "Restart WingetUI": "Rinis UniGetUI", "Invalid selection": "Përzgjedhje e pavlefshme", "No package was selected": "Nuk është përzgjedhur asnjë paketë", "More than 1 package was selected": "Është përzgjedhur më shumë se një paketë", @@ -684,6 +733,37 @@ "Log out failed: ": "Dalja dështoi:", "Package backup settings": "Cilësimet e kopjes rezervë të paketës", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Rreth UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI është një aplikacion që e bën më të lehtë menaxhimin e programeve të tua, duke ofruar një ndërfaqe grafike të plotë për menaxherët e paketave të rreshtit të komandës të tu.", + "You have installed WingetUI Version {0}": "Ke instaluar UniGetUI në versionin {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI nuk do të ishte i mundur pa ndihmën e kontribuesve. Faleminderit të gjithëve 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI përdor libraritë që vijojnë. Pa to, UniGetUI nuk do të ishte i mundur.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI është përkthyer në më shumë se 40 gjuhë falë përkthyesve vullnetarë. Faleminderit 🤝", + "WingetUI Settings": "Cilësimet e UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Mund të të duhet të instalosh {pm} në mënyrë që ta përdorësh me UniGetUI.", + "Scoop Installer - WingetUI": "Instaluesi Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Çinstaluesi Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Po pastrohet keshi i Scoop - UniGetUI", + "WingetUI Version {0}": "Versioni {0} i UniGetUI", + "WingetUI License": "Leja e UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Përdorimi i UniGetUI nënkupton pranimin e Lejes MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktivizo API-në e sfondit (Widgets for UniGetUI and Sharing, porta 7058)", + "Update WingetUI automatically": "Përditëso automatikisht UniGetUI", + "Reset WingetUI": "Rivendos UniGetUI", + "WingetUI display language:": "Gjuha e UniGetUI:", + "Manage WingetUI autostart behaviour": "Menaxho sjelljen e nisjes automatike të UniGetUI", + "Enable WingetUI notifications": "Aktivizo njoftimet e UniGetUI", + "WingetUI Log": "Ditari i UniGetUI", + "Show WingetUI": "Shfaq UniGetUI", + "WingetUI Homepage": "Kryefaqja e UniGetUI", + "WingetUI Repository": "Depo e UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI është ekzekutuar si administrator, gjë që nuk këshillohet. Kur përdor UniGetUI si administrator, ÇDO operacion i nisur nga UniGetUI do të ketë privilegje administratori. Ti mund ta përdorësh programin gjithsesi, por këshillohet të mos ekzekutosh UniGetUI me privilegje administratori.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ka operacione në vazhdim. Mbyllja e UniGetUI mund të shkaktojë deshtimin e tyre. Do të vazhdosh?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Kjo paketë nuk ka pamje nga ekrani apo i mungon ikona? Kontribuo në UniGetUI duke shtuar ikonat dhe pamjet e ekranit që mungojnë në bazën tonë të të dhënave të hapur publike.", + "Restart WingetUI to fully apply changes": "Rinisni UniGetUI për të zbatuar plotësisht ndryshimet", + "Restart WingetUI": "Rinis UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Menaxho sjelljen e nisjes automatike të UniGetUI nga aplikacioni Cilësimet", "(Number {0} in the queue)": "Numri {0} në radhë", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@RDN000", "0 packages found": "Nuk u gjet asnjë paketë", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json index 83fcc3eae0..58bb2e10ea 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sr.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Обустави деинсталацију ако пре-деинсталациона команда не успе", "Command-line to run:": "Командна линија за покретање:", "Save and close": "Сачувај и затвори", + "General": "Опште", + "Architecture & Location": "Архитектура и локација", + "Command-line": "Командна линија", + "Pre/Post install": "Пре/после инсталације", "Run as admin": "Покрени као администратор", "Interactive installation": "Интерактивна инсталација", "Skip hash check": "Прескочи проверу хеша", @@ -71,6 +75,8 @@ "Manage ignored updates": "Управљајте игнорисаним ажурирањима", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Пакети наведени овде неће бити узети у обзир при провери ажурирања. Дупликати их или кликните на дугме с десне стране да бисте престали игнорисати њихова ажурирања.", "Reset list": "Ресетуј листу", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Да ли заиста желите да ресетујете листу игнорисаних ажурирања? Ова радња не може да се опозове", + "No ignored updates": "Нема игнорисаних ажурирања", "Package Name": "Име пакета", "Package ID": "ИД пакета", "Ignored version": "Игнорисана верзија", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ова операција се извршава интерактивно.", "You will likely need to interact with the installer.": "Вероватно ћеш морати да комуницираш са инсталером.", "Integrity checks skipped": "Провере интегритета прескочене", + "Integrity checks will not be performed during this operation.": "Провере интегритета неће бити извршене током ове операције.", "Proceed at your own risk.": "Настави на сопствени ризик.", "Close": "Затвори", "Loading...": "Учитавање...", @@ -120,16 +127,17 @@ "optional": "опционо", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} је спреман за инсталацију.", "The update process will start after closing UniGetUI": "Процес ажурирања ће почети након затварања UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI је покренут као администратор, што се не препоручује. Када UniGetUI ради са администраторским привилегијама, СВАКА операција покренута из UniGetUI-а имаће администраторске привилегије. И даље можете да користите програм, али изричито препоручујемо да не покрећете UniGetUI са администраторским привилегијама.", "Share anonymous usage data": "Дели анонимне податке о коришћењу", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI прикупља анонимне податке о коришћењу ради побољшања корисничког искуства.", "Accept": "Прихвати", - "You have installed WingetUI Version {0}": "Инсталирали сте WingetUI Верзију {0}", + "You have installed UniGetUI Version {0}": "Инсталирали сте UniGetUI Верзију {0}", "Disclaimer": "Одрицање од одговорности", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI није повезан ни са једним од компатибилних менаџера пакета. UniGetUI је независан пројекат.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI не би био могућ без помоћи доприносиоца. Хвала свима 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI користи следеће библиотеке. Без њих, WingetUI не би био могућ.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI не би био могућ без помоћи доприносиоца. Хвала свима 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI користи следеће библиотеке. Без њих, UniGetUI не би био могућ.", "{0} homepage": "{0} главна страна", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI је преведен на више од 40 језика захваљујући преводиоцима волонтерима. Хвала вам 🤝\n", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI је преведен на више од 40 језика захваљујући преводиоцима волонтерима. Хвала вам 🤝\n", "Verbose": "Пуно детаља", "1 - Errors": "1 - Грешке", "2 - Warnings": "2 - Упозорења", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Пријављен си као {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Одлично! Резервне копије ће бити отпремљене у приватни gist на твом налогу", "Select backup": "Изабери резервну копију", - "WingetUI Settings": "Поставке WingetUI", + "UniGetUI Settings": "Подешавања UniGetUI-а", "Allow pre-release versions": "Дозволи верзије за тестирање", "Apply": "Примени", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Из безбедносних разлога, прилагођени аргументи командне линије су подразумевано онемогућени. Идите у безбедносна подешавања UniGetUI-а да бисте ово променили.", "Go to UniGetUI security settings": "Иди у UniGetUI безбедносна подешавања", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Следеће опције ће се подразумевано примењивати сваки пут када се {0} пакет инсталира, надогради или деинсталира.", "Package's default": "Подразумевано пакета", @@ -160,6 +169,7 @@ "Username": "Корисничко име", "Password": "Лозинка", "Credentials": "Подаци за пријаву", + "It is not guaranteed that the provided credentials will be stored safely": "Није гарантовано да ће достављени акредитиви бити безбедно сачувани", "Partially": "Делимично", "Package manager": "Менаџер пакета", "Compatible with proxy": "Компатибилно са проксијем", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} је омогућен и спреман за рад", "{pm} version:": "{pm} верзија:", "{pm} was not found!": "{pm} није пронађен!", - "You may need to install {pm} in order to use it with WingetUI.": "Можда ћете морати да инсталирате {pm} да бисте га користили са WingetUI.", - "Scoop Installer - WingetUI": "Scoop Инсталер - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop Деинсталер - WingetUI", - "Clearing Scoop cache - WingetUI": "Брисање Scoop кеша - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Можда ћете морати да инсталирате {pm} да бисте га користили са UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop Инсталер - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop Деинсталер - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Брисање Scoop кеша - UniGetUI", + "Restart UniGetUI to fully apply changes": "Поново покрените UniGetUI да бисте у потпуности применили промене", "Restart UniGetUI": "Рестартуј UniGetUI", "Manage {0} sources": "Управљај {0} извора", "Add source": "Додај извор", "Add": "Додај", + "Source name": "Назив извора", + "Source URL": "URL извора", "Other": "Друго", + "No minimum age": "Без минималне старости", "1 day": "1 дан", "{0} days": "{0} дана", + "Custom...": "Прилагођено...", "{0} minutes": "{0} минута", "1 hour": "1 сат", "{0} hours": "{0} сати", "1 week": "1 недеља", - "WingetUI Version {0}": "WingetUI Верзија {0}", + "Supports release dates": "Подржава датуме издања", + "Release date support per package manager": "Подршка за датуме издања по менаџеру пакета", + "UniGetUI Version {0}": "UniGetUI Верзија {0}", "Search for packages": "Претражите пакете", "Local": "Локално", "OK": "У реду", @@ -200,11 +217,13 @@ "Enabled": "Омогућено", "Disabled": "Деактивирано", "More info": "Више информација", + "GitHub account": "GitHub налог", "Log in with GitHub to enable cloud package backup.": "Пријави се помоћу GitHub-а да омогућиш резервну копију пакета у облаку.", "More details": "Више детаља", "Log in": "Пријава", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Ако имаш омогућену резервну копију у облаку, биће сачувана као GitHub Gist на овом налогу", "Log out": "Одјава", + "About UniGetUI": "О UniGetUI", "About": "Информације", "Third-party licenses": "Лиценце трећих лица", "Contributors": "Доприниосци", @@ -212,6 +231,7 @@ "Manage shortcuts": "Управљај пречицама", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI је открио следеће пречице на радној површини које могу бити аутоматски уклоњене приликом будућих надоградњи", "Do you really want to reset this list? This action cannot be reverted.": "Да ли заиста желиш да ресетујеш ову листу? Ова радња се не може отказати.", + "Open in explorer": "Отвори у истраживачу", "Remove from list": "Уклони са листе", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Када се открију нове пречице, обриши их аутоматски уместо приказивања овог дијалога.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI прикупља анонимне податке о коришћењу са једином сврхом разумевања и побољшања корисничког искуства.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Да ли прихваташ да UniGetUI прикупља и шаље анонимне статистике коришћења, са једином намером разумевања и побољшања корисничког искуства?", "Decline": "Одбити", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Никакве личне информације се не прикупљају нити шаљу, а прикупљени подаци су анонимизовани, тако да се не могу повезати са тобом.", - "About WingetUI": "О WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI је апликација која олакшава управљање вашим софтвером, пружајући свеобухватни графички интерфејс за ваше менаџере пакета на командној линији.\n", + "Toggle navigation panel": "Прикажи/сакриј навигациони панел", + "Minimize": "Умањи", + "Maximize": "Увећај", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI је апликација која олакшава управљање вашим софтвером, пружајући свеобухватни графички интерфејс за ваше менаџере пакета на командној линији.\n", "Useful links": "Корисни линкови", + "UniGetUI Homepage": "Почетна страница UniGetUI-а", "Report an issue or submit a feature request": "Пријавите проблем или пошаљите захтев за функционалност", + "UniGetUI Repository": "Репозиторијум UniGetUI-а", "View GitHub Profile": "Види GitHub Профил", - "WingetUI License": "WingetUI Лиценца", - "Using WingetUI implies the acceptation of the MIT License": "Коришћење WingetUI подразумева прихватање MIT лиценце", + "UniGetUI License": "UniGetUI Лиценца", + "Using UniGetUI implies the acceptation of the MIT License": "Коришћење UniGetUI подразумева прихватање MIT лиценце", "Become a translator": "Постани преводилац", "View page on browser": "Погледај страницу у претраживачу", "Copy to clipboard": "Копирај на клипборд", "Export to a file": "Извоз у фајл", "Log level:": "Ниво логовања:", "Reload log": "Поново учитај лог", + "Export log": "Извези лог", + "UniGetUI Log": "UniGetUI лог", "Text": "Текст", "Change how operations request administrator rights": "Промени начин на који операције захтевају администраторска права", "Restrictions on package operations": "Ограничења за операције пакета", @@ -271,7 +297,7 @@ "Leave empty for default": "Оставите празно за подразумевано", "Add a timestamp to the backup file names": "Додај време називу фајла резервне копије", "Backup and Restore": "Израда и враћање резервних копија", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Омогући позадински апи (WingetUI Widgets and Sharing, порт 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Омогући позадински апи (UniGetUI Widgets and Sharing, порт 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Сачекај да уређај буде повезан на интернет пре него што покушаш да обавиш задатке који захтевају интернет везу.", "Disable the 1-minute timeout for package-related operations": "Поништи паузу од 1 минута за операције везане за пакете", "Use installed GSudo instead of UniGetUI Elevator": "Користи инсталирани GSudo уместо UniGetUI Elevator-а", @@ -286,7 +312,7 @@ "Telemetry": "Телеметрија", "Manage UniGetUI settings": "Управљај UniGetUI подешавањима", "Related settings": "Повезана подешавања", - "Update WingetUI automatically": "Аутоматски ажурирајте WingetUI", + "Update UniGetUI automatically": "Аутоматски ажурирајте UniGetUI", "Check for updates": "Провери ажурирања", "Install prerelease versions of UniGetUI": "Инсталирај претходна издања UniGetUI", "Manage telemetry settings": "Управљај подешавањима телеметрије", @@ -295,17 +321,17 @@ "Import": "Увоз", "Export settings to a local file": "Извоз поставки у локални фајл", "Export": "Извоз", - "Reset WingetUI": "Ресетујте WingetUI", "Reset UniGetUI": "Ресетуј UniGetUI", "User interface preferences": "Поставке корисничког интерфејса", "Application theme, startup page, package icons, clear successful installs automatically": "Тема апликације, почетна страница, иконе пакета, аутоматско брисање успешно инсталираних ставки", "General preferences": "Опште поставке", - "WingetUI display language:": "Језик приказивања WingetUI-а:", + "UniGetUI display language:": "Језик приказивања UniGetUI-а:", "Is your language missing or incomplete?": "Да ли је Ваш језик непотпун или недостаје?", "Appearance": "Изглед", "UniGetUI on the background and system tray": "UniGetUI у позадини и системској палети", "Package lists": "Листе пакета", "Close UniGetUI to the system tray": "Затвори UniGetUI у системску траку", + "Manage UniGetUI autostart behaviour": "Управљај понашањем аутоматског покретања UniGetUI-а", "Show package icons on package lists": "Прикажи иконе пакета на листама пакета", "Clear cache": "Обриши кеш", "Select upgradable packages by default": "Подразумевано изабери пакете који се могу надоградити", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Имај на уму да сви менаџери пакета можда не подржавају у потпуности ову функцију", "Proxy URL": "URL проксија", "Enter proxy URL here": "Унеси URL проксија овде", + "Authenticate to the proxy with a user and a password": "Аутентификуј се на проксију корисничким именом и лозинком", + "Internet and proxy settings": "Подешавања интернета и проксија", "Package manager preferences": "Поставке пакет менаџера", "Ready": "Спремно", "Not found": "Није пронађено", "Notification preferences": "Преференце обавештења", "Notification types": "Врсте обавештења", "The system tray icon must be enabled in order for notifications to work": "Икона у системској палети мора бити омогућена да би обавештења радила", - "Enable WingetUI notifications": "Омогућите обавештења за WingetUI", + "Enable UniGetUI notifications": "Омогућите обавештења за UniGetUI", "Show a notification when there are available updates": "Прикажи обавештење када су доступна ажурирања", "Show a silent notification when an operation is running": "Прикажи тихо обавештење када се операција извршава", "Show a notification when an operation fails": "Прикажи обавештење када операција не успе", "Show a notification when an operation finishes successfully": "Прикажи обавештење када операција успе", "Concurrency and execution": "Истовременост и извршавање", "Automatic desktop shortcut remover": "Аутоматски уклањач пречица са радне површине", + "Choose how many operations should be performed in parallel": "Изаберите колико операција треба извршавати паралелно", "Clear successful operations from the operation list after a 5 second delay": "Обриши успешне операције са листе операција након 5 секунди", "Download operations are not affected by this setting": "Операције преузимања нису захваћене овом поставком", "Try to kill the processes that refuse to close when requested to": "Покушај да прекинеш процесе који одбијају да се затворе када им се то затражи", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Изабери извршну датотеку која ће се користити. Следећа листа приказује извршне датотеке које је пронашао UniGetUI", "Current executable file:": "Тренутна датотека за извршавање:", "Ignore packages from {pm} when showing a notification about updates": "Игнориши пакете од {pm} при приказивању обавештења о ажурирањима", + "Update security": "Безбедност ажурирања", + "Use global setting": "Користи глобално подешавање", + "e.g. 10": "нпр. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не пружа датуме издања за своје пакете, па ово подешавање неће имати ефекта", + "Override the global minimum update age for this package manager": "Замени глобално подешавање минималне старости ажурирања за овај менаџер пакета", + "Minimum age for updates": "Минимална старост ажурирања", + "Custom minimum age (days)": "Прилагођена минимална старост (у данима)", "View {0} logs": "Прикажи {0} дневнике", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Ако Python не може да се пронађе или не приказује пакете иако је инсталиран на систему, ", "Advanced options": "Напредне опције", "Reset WinGet": "Ресетуј WinGet", "This may help if no packages are listed": "Ово може помоћи ако ниједан пакет није наведен", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Омогућите чишћење Scoop-а при покретању", "Use system Chocolatey": "Користи системски Chocolatey", "Default vcpkg triplet": "Подразумевани vcpkg триплет", + "Change vcpkg root location": "Промени основну локацију vcpkg-а", "Language, theme and other miscellaneous preferences": "Језик, тема и остале опције", "Show notifications on different events": "Прикажи обавештења о различитим догађајима", "Change how UniGetUI checks and installs available updates for your packages": "Промените како UniGetUI проверава и инсталира доступна ажурирања за ваше пакете", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Не инсталирај аутоматски ажурирања када је мрежна веза ограничена", "Do not automatically install updates when the device runs on battery": "Не инсталирај аутоматски ажурирања када уређај ради на батеријском напону", "Do not automatically install updates when the battery saver is on": "Не инсталирај аутоматски ажурирања када је батеријска заштита активна", + "Only show updates that are at least the specified number of days old": "Прикажи само ажурирања која су стара најмање наведени број дана", "Change how UniGetUI handles install, update and uninstall operations.": "Промени начин на који UniGetUI обрађује инсталације, ажурирања и деинсталације.", "Package Managers": "Менаџери пакета", "More": "Више", - "WingetUI Log": "WingetUI лог", "Package Manager logs": "Логови пакет менаџера", "Operation history": "Историја операција", "Help": "Помоћ", + "Quit UniGetUI": "Изађи из UniGetUI-а", "Order by:": "Поређај по:", "Name": "Име", "Id": "Идентификатор", @@ -409,6 +448,10 @@ "Both": "Оба", "Exact match": "Тачно подударање", "Show similar packages": "Покажи сличне пакете", + "Nothing to share": "Нема ничега за дељење", + "Please select a package first.": "Прво изаберите пакет.", + "Share link copied": "Веза за дељење је копирана", + "The share link for {0} has been copied to the clipboard.": "Веза за дељење за {0} је копирана на клипборд.", "No results were found matching the input criteria": "Није пронађен ниједан резултат који одговара унетим критеријумима", "No packages were found": "Није пронађен ниједан пакет", "Loading packages": "Учитавање пакета", @@ -440,7 +483,11 @@ "Package bundle": "Скуп пакета", "Could not create bundle": "Није могуће креирати скуп пакета", "The package bundle could not be created due to an error.": "Пакет није могао бити направљен због грешке.", + "Unsaved changes": "Несачуване промене", + "Discard changes": "Одбаци промене", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Имате несачуване промене у тренутном скупу пакета. Да ли желите да их одбаците?", "Bundle security report": "Извештај о безбедности скупа пакета", + "The bundle contained restricted content": "Скуп пакета је садржао ограничени садржај", "Hooray! No updates were found.": "Ура! Нису пронађена ажурирања!", "Everything is up to date": "Све је ажурно", "Uninstall selected packages": "Деинсталирај изабране пакете", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Класични менаџер пакета за Windows. Ту ћете пронаћи све.
Садржи: Општи софтвер", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Репозиторијум пун алата и извршних програма дизајниран имајући у виду Микрософтов .NET екосистем.
Садржи: алатке и скрипте везане за .NET", "NuPkg (zipped manifest)": "NuPkg (зиповани манифест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Недостајући менаџер пакета за macOS (или Linux).
Садржи: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Пакет менаџер за Node JS. Пун библиотека и других алатки које су у вези са JavaScript-ом
Садржи: Библиотеке JavaScript-a и друге релевантне алатке", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Менаџер библиотека за Python. Пун Python библиотека и других Python-релевантних алатки
Садржи: Python библиотеке и релевантне алатке", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell-ов менаџер пакета. Пронађите библиотеке и скрипте за проширење PowerShell могућности
Садржи: Модуле, Скрипте, Cmdlet-ове\n", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Операција је у реду (позиција {0})...", "Click here for more details": "Кликни овде за више детаља", "Operation canceled by user": "Корисник је отказао операцију", + "Running PreOperation ({0}/{1})...": "Покрећем PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} од {1} није успео и означен је као неопходан. Прекидам...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} од {1} је завршен са резултатом {2}", "Starting operation...": "Покретање операције...", + "Running PostOperation ({0}/{1})...": "Покрећем PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} од {1} није успео и означен је као неопходан. Прекидам...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} од {1} је завршен са резултатом {2}", "{package} installer download": "Преузимање инсталера за {package}", "{0} installer is being downloaded": "Преузима се инсталер за {0}", "Download succeeded": "Успешно преузимање", @@ -556,14 +610,12 @@ "Portable mode": "Преносиви режим\n", "DEBUG BUILD": "ОТКЛАЊАЊЕ ГРЕШАКА ВЕРЗИЈА", "Available Updates": "Доступна Ажурирања", - "Show WingetUI": "Прикажи WingetUI", + "Show UniGetUI": "Прикажи UniGetUI", "Quit": "Излаз", "Attention required": "Потребна пажња", "Restart required": "Неопходно је поновно покретање", "1 update is available": "1 ажурирање доступно", "{0} updates are available": "{0} ажурирања је доступно", - "WingetUI Homepage": "WingetUI Почетна страница", - "WingetUI Repository": "WingetUI Репозиторијум", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Овде можеш да промениш понашање UniGetUI у вези са следећим пречицама. Означавање пречице ће учинити да је UniGetUI обрише ако се направи током будуће надоградње. Поништавање ознаке ће задржати пречицу нетакнутом", "Manual scan": "Ручно скенирање", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Постојеће пречице на радној површини ће бити скениране и мораћеш да одабереш које желиш да задржиш, а које да уклониш.", @@ -583,7 +635,6 @@ "Restart later": "Поново покрените касније", "An error occurred:": "Дошло је до грешке:", "I understand": "Разумем", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI је покренут као администратор, што се не препоручује. Када покренете WingetUI као администратор, СВАКА операција покренута из WingetUI имаће администраторске привилегије. И даље можете да користите програм, али јако препоручујемо да не покрећете WingetUI са администраторским привилегијама.", "WinGet was repaired successfully": "WinGet је успешно поправљен", "It is recommended to restart UniGetUI after WinGet has been repaired": "Препоручује се да поново покренеш UniGetUI након што је WinGet поправљен", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "НАПОМЕНА: Овај решавач проблема може се онемогућити у UniGetUI подешавањима, у WinGet одељку", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Ваши пакети су додати у скуп пакета. Можете да наставите додавање пакета, или да извезете скуп пакета.", "Which backup do you want to open?": "Коју резервну копију желиш да отвориш?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Изабери резервну копију коју желиш да отвориш. Касније ћеш моћи да прегледаш које пакете/програме желиш да вратиш.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Операције су у току. Напуштање WingetUI-ја може довести до њиховог неуспеха. Да ли желите да наставите?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Операције су у току. Напуштање UniGetUI-ја може довести до њиховог неуспеха. Да ли желите да наставите?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI или неке његове компоненте недостају или су оштећене.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Строго се препоручује да поново инсталираш UniGetUI да би решио ситуацију.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Погледај UniGetUI дневнике да добијеш више детаља о погођеним датотекама", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Овде упиши називе процеса, раздвојене зарезима (,)", "Unset or unknown": "Неподешено или непознато", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Молимо погледајте излаз командне линије или историју операција за додатне информације о проблему.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Овај пакет нема снимак екрана или му недостаје икона? Дајте допринос WingetUI додавањем икона и снимака екрана који недостају у нашу отворену, јавну базу података.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Овај пакет нема снимак екрана или му недостаје икона? Дајте допринос UniGetUI додавањем икона и снимака екрана који недостају у нашу отворену, јавну базу података.", "Become a contributor": "Постаните доприносилац", "Save": "Сачувај", "Update to {0} available": "Ажурирање на {0} доступно", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Омогући аутоматски WinGet решавач проблема", "Enable an [experimental] improved WinGet troubleshooter": "Омогући [експериментални] побољшани WinGet решавач проблема", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Додај ажурирања која не успеју са ‘није пронађено примењиво ажурирање’ на листу игнорисаних ажурирања.", - "Restart WingetUI to fully apply changes": "Поново покрените WingetUI да бисте у потпуности применили измене", - "Restart WingetUI": "Поново покрените WingetUI", "Invalid selection": "Неважећи избор", "No package was selected": "Ниједан пакет није изабран", "More than 1 package was selected": "Изабрано је више од 1 пакета", @@ -684,6 +733,37 @@ "Log out failed: ": "Одјава није успела: ", "Package backup settings": "Подешавања резервне копије пакета", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "О WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI је апликација која олакшава управљање вашим софтвером, пружајући свеобухватни графички интерфејс за ваше менаџере пакета на командној линији.\n", + "You have installed WingetUI Version {0}": "Инсталирали сте WingetUI Верзију {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI не би био могућ без помоћи доприносиоца. Хвала свима 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI користи следеће библиотеке. Без њих, WingetUI не би био могућ.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI је преведен на више од 40 језика захваљујући преводиоцима волонтерима. Хвала вам 🤝\n", + "WingetUI Settings": "Поставке WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Можда ћете морати да инсталирате {pm} да бисте га користили са WingetUI.", + "Scoop Installer - WingetUI": "Scoop Инсталер - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop Деинсталер - WingetUI", + "Clearing Scoop cache - WingetUI": "Брисање Scoop кеша - WingetUI", + "WingetUI Version {0}": "WingetUI Верзија {0}", + "WingetUI License": "WingetUI Лиценца", + "Using WingetUI implies the acceptation of the MIT License": "Коришћење WingetUI подразумева прихватање MIT лиценце", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Омогући позадински апи (WingetUI Widgets and Sharing, порт 7058)", + "Update WingetUI automatically": "Аутоматски ажурирајте WingetUI", + "Reset WingetUI": "Ресетујте WingetUI", + "WingetUI display language:": "Језик приказивања WingetUI-а:", + "Manage WingetUI autostart behaviour": "Управљај понашањем аутоматског покретања WingetUI-а", + "Enable WingetUI notifications": "Омогућите обавештења за WingetUI", + "WingetUI Log": "WingetUI лог", + "Show WingetUI": "Прикажи WingetUI", + "WingetUI Homepage": "WingetUI Почетна страница", + "WingetUI Repository": "WingetUI Репозиторијум", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI је покренут као администратор, што се не препоручује. Када покренете WingetUI као администратор, СВАКА операција покренута из WingetUI имаће администраторске привилегије. И даље можете да користите програм, али јако препоручујемо да не покрећете WingetUI са администраторским привилегијама.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Операције су у току. Напуштање WingetUI-ја може довести до њиховог неуспеха. Да ли желите да наставите?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Овај пакет нема снимак екрана или му недостаје икона? Дајте допринос WingetUI додавањем икона и снимака екрана који недостају у нашу отворену, јавну базу података.", + "Restart WingetUI to fully apply changes": "Поново покрените WingetUI да бисте у потпуности применили измене", + "Restart WingetUI": "Поново покрените WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Управљајте понашањем аутоматског покретања UniGetUI из апликације Подешавања", "(Number {0} in the queue)": "(Број {0} у реду)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@daVinci13, @momcilovicluka", "0 packages found": "0 пакета нађено.", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json index 2f8560e3fa..e327e820e7 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_sv.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Avbryt avinstallationen om kommandot pre-uninstall misslyckas", "Command-line to run:": "Kommandorad att köra:", "Save and close": "Spara och stäng", + "General": "Allmänt", + "Architecture & Location": "Arkitektur och plats", + "Command-line": "Kommandorad", + "Pre/Post install": "Före-/efterinstallation", "Run as admin": "Kör som admin", "Interactive installation": "Interaktiv installation", "Skip hash check": "Ignorera hash-kontroll", @@ -71,6 +75,8 @@ "Manage ignored updates": "Hantera ignorerade uppdateringar", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Paketen listade här kommer inte tas hänsyn till vid uppdatering. Dubbelklicka på dem eller klicka på knappen till höger om dessa för att sluta ignorera dessa uppdateringar.", "Reset list": "Återställ lista", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Vill du verkligen återställa listan över ignorerade uppdateringar? Den här åtgärden kan inte ångras", + "No ignored updates": "Inga ignorerade uppdateringar", "Package Name": "Paketnamn", "Package ID": "Paket ID", "Ignored version": "Ignorerad version", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Denna åtgärd körs interaktivt.", "You will likely need to interact with the installer.": "Du måste troligen interagera med installeraren.", "Integrity checks skipped": "Integritetskontrollerna ignorerades", + "Integrity checks will not be performed during this operation.": "Integritetskontroller kommer inte att utföras under den här åtgärden.", "Proceed at your own risk.": "Fortsätt på egen risk", "Close": "Stäng", "Loading...": "Laddar...", @@ -120,16 +127,17 @@ "optional": "valfri", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} är redo att installeras.", "The update process will start after closing UniGetUI": "Uppdateringen startar när UniGetUI stängs", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI har körts som administratör, vilket inte rekommenderas. När UniGetUI körs som administratör kommer ALLA åtgärder som startas från UniGetUI att ha administratörsbehörighet. Du kan fortfarande använda programmet, men vi rekommenderar starkt att du inte kör UniGetUI med administratörsbehörighet.", "Share anonymous usage data": "Dela anonym användardata", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI hämtar anonym data för att förbättra användarupplevelsen.", "Accept": "Acceptera", - "You have installed WingetUI Version {0}": "Du har installerat UniGetUI version {0}", + "You have installed UniGetUI Version {0}": "Du har installerat UniGetUI version {0}", "Disclaimer": "Ansvarsfriskrivning", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI har inget att göra med de kompatibla pakethanterarna. UniGetUI är en självständigt projekt.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI skulle inte finns utan all hjälp från våra medarbetare. Ett stort tack! 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI använder följande bibliotek. Utan dessa hade inte UniGetUI funnits.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI skulle inte finns utan all hjälp från våra medarbetare. Ett stort tack! 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI använder följande bibliotek. Utan dessa hade inte UniGetUI funnits.", "{0} homepage": "{0} websida", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI är översatt till mer än 40 språk tack vara våra frivilliga översättare. Tack 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI är översatt till mer än 40 språk tack vara våra frivilliga översättare. Tack 🤝", "Verbose": "Utökad", "1 - Errors": "1 - Fel", "2 - Warnings": "2 - Varningar", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Du är inloggad som {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Fint! Säkerhetskopior kommer att laddas upp till en privat gist på ditt konto", "Select backup": "Välj säkerhetskopia", - "WingetUI Settings": "UniGetUI inställningar", + "UniGetUI Settings": "UniGetUI-inställningar", "Allow pre-release versions": "Tillåt förhandsversioner", "Apply": "Tillämpa", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Av säkerhetsskäl är anpassade kommandoradsargument inaktiverade som standard. Gå till UniGetUI:s säkerhetsinställningar för att ändra detta.", "Go to UniGetUI security settings": "Gå till UniGetUI säkerhetsinställningar", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Följäande åtgärder kommer tillämpas som standard varje gång en {0} paket installeras, uppgraderas eller avinstalleras.", "Package's default": "Paketets standardvärden", @@ -160,6 +169,7 @@ "Username": "Användarnamn", "Password": "Lösenord", "Credentials": "Inloggningsuppgifter", + "It is not guaranteed that the provided credentials will be stored safely": "Det kan inte garanteras att de angivna inloggningsuppgifterna lagras säkert", "Partially": "Delvis", "Package manager": "Pakethanterare", "Compatible with proxy": "Kompatibel med proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} är tillgänglig och redo att användas", "{pm} version:": "{pm} version:", "{pm} was not found!": "{pm} kunde inte hittas!", - "You may need to install {pm} in order to use it with WingetUI.": "Du kan behöva installera {pm} för att kunna använda den med UniGetUI.", - "Scoop Installer - WingetUI": "Scoop installerare - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop avinstallerare - UniGetUI", - "Clearing Scoop cache - WingetUI": "Rensa Scoop-cache - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Du kan behöva installera {pm} för att kunna använda den med UniGetUI.", + "Scoop Installer - UniGetUI": "Scoop installerare - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop avinstallerare - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Rensa Scoop-cache - UniGetUI", + "Restart UniGetUI to fully apply changes": "Starta om UniGetUI för att tillämpa ändringarna fullt ut", "Restart UniGetUI": "Starta om UniGetUI", "Manage {0} sources": "Hantera {0} källor", "Add source": "Lägg till källa", "Add": "Lägg till", + "Source name": "Källnamn", + "Source URL": "Käll-URL", "Other": "Övrigt", + "No minimum age": "Ingen minimiålder", "1 day": "1 dag", "{0} days": "{0} dagar", + "Custom...": "Anpassad...", "{0} minutes": "{0} minuter", "1 hour": "1 timme", "{0} hours": "{0} timmar", "1 week": "1 vecka", - "WingetUI Version {0}": "UniGetUI version {0}", + "Supports release dates": "Stöder utgivningsdatum", + "Release date support per package manager": "Stöd för utgivningsdatum per pakethanterare", + "UniGetUI Version {0}": "UniGetUI version {0}", "Search for packages": "Sök efter paket", "Local": "Lokal", "OK": "OK", @@ -200,11 +217,13 @@ "Enabled": "Aktiverad", "Disabled": "Inaktiverad", "More info": "Mer info", + "GitHub account": "GitHub-konto", "Log in with GitHub to enable cloud package backup.": "Logga in med GitHub för att aktivera molnsäkerhetskopia av paket", "More details": "Mer detaljer", "Log in": "Logga in", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Om du har molnsäkerheskopia valt, kommer den sparas som en GitHub Gist på denna konto", "Log out": "Logga ut", + "About UniGetUI": "Om UniGetUI", "About": "Om", "Third-party licenses": "Tredjepartslicenser", "Contributors": "Bidragsgivare", @@ -212,6 +231,7 @@ "Manage shortcuts": "Hantera genvägar", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI har hittat följande skrivsbordsgenväg som kan tas bort automatiskt på kommande uppgraderingar", "Do you really want to reset this list? This action cannot be reverted.": "Vill du verkligen nollställa denna lista? Åtgärden kan inte ångras.", + "Open in explorer": "Öppna i Utforskaren", "Remove from list": "Ta bort från listan", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "När nya genvägar hittas, raderas de automatiskt istället för att visa denna dialog.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI hämtar anonymiserad användardata endast för att förstå och förbättra användarupplevelsen.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Accepterar du att UniGetUI samlar in och skickar anonym användarstatistik? Den används endast för att förstå och förbättra använderupplevelsen.", "Decline": "Avböj", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Personlig information samlas inte in eller skickas vidare. All insamlad data är anonymiserat och kan inte spåras tillbaka till dig.", - "About WingetUI": "Om UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI är ett program som mjukvaruhanteringen enklare genom att erbjuda ett tilltalande grafiskt gränssnitt för dina kommandorads pakethanterare.", + "Toggle navigation panel": "Växla navigeringspanelen", + "Minimize": "Minimera", + "Maximize": "Maximera", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI är ett program som mjukvaruhanteringen enklare genom att erbjuda ett tilltalande grafiskt gränssnitt för dina kommandorads pakethanterare.", "Useful links": "Användbara länkar", + "UniGetUI Homepage": "UniGetUI:s hemsida", "Report an issue or submit a feature request": "Rapportera fel eller skicka begäran om förbättringar", + "UniGetUI Repository": "UniGetUI:s kodförråd", "View GitHub Profile": "Visa GitHub-profil", - "WingetUI License": "UniGetUI-licens", - "Using WingetUI implies the acceptation of the MIT License": "Användning av UniGetUI innebär att du accepterar MIT licensen", + "UniGetUI License": "UniGetUI-licens", + "Using UniGetUI implies the acceptation of the MIT License": "Användning av UniGetUI innebär att du accepterar MIT licensen", "Become a translator": "Bli en översättare", "View page on browser": "Visa sidan i webbläsaren", "Copy to clipboard": "Kopiera till urklipp", "Export to a file": "Exportera till en fil", "Log level:": "Loggnivå", "Reload log": "Ladda om loggen", + "Export log": "Exportera logg", + "UniGetUI Log": "UniGetUI-logg", "Text": "Text", "Change how operations request administrator rights": "Ändra hur åtgärder begär adminrättigheter", "Restrictions on package operations": "Restriktioner för paketåtgärder", @@ -271,7 +297,7 @@ "Leave empty for default": "Lämna tomt som standard", "Add a timestamp to the backup file names": "Lägg till en tidsstämpel till säkerhetskopiornas filnamn", "Backup and Restore": "Säkerhetskopiera och återställ", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktivera bakgrunds-API (UniGetUI Widgets and Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktivera bakgrunds-API (UniGetUI Widgets and Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Vänta tills enheten är ansluten till internet innan du börjar med uppgifter som kräver internetuppkoppling.", "Disable the 1-minute timeout for package-related operations": "Inaktivera 1-minut timeout för paketrelaterade åtgärder", "Use installed GSudo instead of UniGetUI Elevator": "Används installerad GSudo istället för UniGetUI höjaren", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "Hantera UniGetUI inställningar", "Related settings": "Relaterade inställningar", - "Update WingetUI automatically": "Uppdatera UniGetUI automatiskt", + "Update UniGetUI automatically": "Uppdatera UniGetUI automatiskt", "Check for updates": "Sök efter uppdateringar", "Install prerelease versions of UniGetUI": "Installera förhandsversioner av UniGetUI", "Manage telemetry settings": "Hantera telemetri-inställningar", @@ -295,17 +321,17 @@ "Import": "Importera", "Export settings to a local file": "Exportera inställningar till en lokal fil", "Export": "Exportera", - "Reset WingetUI": "Återställ UniGetUI", "Reset UniGetUI": "Återställ UniGetUI", "User interface preferences": "Utseendeinstälningar", "Application theme, startup page, package icons, clear successful installs automatically": "Teman, startsidor och paketikoner installeras automatiskt", "General preferences": "Allmänna inställningar", - "WingetUI display language:": "UniGetUI visningsspråk", + "UniGetUI display language:": "UniGetUI visningsspråk", "Is your language missing or incomplete?": "Saknas ditt språk eller är det ofullständigt?", "Appearance": "Utseende", "UniGetUI on the background and system tray": "UniGetUI i bakgrunden och i systemfältet", "Package lists": "Paketlistor", "Close UniGetUI to the system tray": "Stäng ned UniGetUI till systemfältet", + "Manage UniGetUI autostart behaviour": "Hantera UniGetUI:s autostartbeteende", "Show package icons on package lists": "Visa paketikoner på paketlistan", "Clear cache": "Rensa cache", "Select upgradable packages by default": "Välj uppgraderingsbara paket som standard", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Vänligen notera att alla pakethanterare kanske inte fullt stöder denna funktion", "Proxy URL": "Proxy-URL", "Enter proxy URL here": "Ange proxyadressen här", + "Authenticate to the proxy with a user and a password": "Autentisera mot proxyn med användarnamn och lösenord", + "Internet and proxy settings": "Internet- och proxyinställningar", "Package manager preferences": "Pakethanterarens inställningar", "Ready": "Klar", "Not found": "Hittades inte", "Notification preferences": "Notifieringsinställningar", "Notification types": "Notifieringstyper", "The system tray icon must be enabled in order for notifications to work": "Systemfältsikonen måste aktiveras för att notifieringar ska fungera", - "Enable WingetUI notifications": "Aktivera UniGetUI-aviseringar", + "Enable UniGetUI notifications": "Aktivera UniGetUI-aviseringar", "Show a notification when there are available updates": "Visa en notifiering när en uppdatering finns tillgänglig", "Show a silent notification when an operation is running": "Visa en tyst notifiering när en åtgärd körs", "Show a notification when an operation fails": "Visa en notifiering när en åtgärd misslyckas", "Show a notification when an operation finishes successfully": "Visa en notering när en åtgärd lyckas", "Concurrency and execution": "Samtidighet och utförande", "Automatic desktop shortcut remover": "Automatisk borttagning av skrivbordsgenvägar", + "Choose how many operations should be performed in parallel": "Välj hur många åtgärder som ska utföras parallellt", "Clear successful operations from the operation list after a 5 second delay": "Rensa lyckade åtgärder från åtgärdslitan med 5 sekunders fördröjning", "Download operations are not affected by this setting": "Nedladdningsåtgärder är inte påverkade av denna inställning", "Try to kill the processes that refuse to close when requested to": "Försök att avsluta den process som inte vill stänga", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Välj den körbara filen som ska användas. Följande lista visar körbara filer som har hittats av UniGetUI", "Current executable file:": "Nuvarande körbara fil:", "Ignore packages from {pm} when showing a notification about updates": "Ignorera paket från {pm} när en notifiering om uppdatering visas", + "Update security": "Uppdateringssäkerhet", + "Use global setting": "Använd global inställning", + "e.g. 10": "t.ex. 10", + "{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", + "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", + "Minimum age for updates": "Minimiålder för uppdateringar", + "Custom minimum age (days)": "Anpassad minimiålder (dagar)", "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, ", "Advanced options": "Avancerade alternativ", "Reset WinGet": "Återställ WinGet", "This may help if no packages are listed": "Detta kan hjälpa ifall inga paket listas.", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Aktivera Scoop-rensning vid start", "Use system Chocolatey": "Använd Chocolatey-systemet", "Default vcpkg triplet": "Standard vcpkg triplet", + "Change vcpkg root location": "Ändra vcpkg-rotkatalog", "Language, theme and other miscellaneous preferences": "Språk, tema och andra övriga preferenser", "Show notifications on different events": "Visa notifiering om olika händelser", "Change how UniGetUI checks and installs available updates for your packages": "Ändra hur UniGetUI kontrollerar och installerar tillgängliga uppdateringar till dina paket", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Installera inte automatiska uppdateringar vid användning av uppkoppling med datapriser", "Do not automatically install updates when the device runs on battery": "Installera inte automatiska uppdateringar när datorn körs på batteri", "Do not automatically install updates when the battery saver is on": "Installera inte uppdateringar automatiskt när datorns strömsparläge är på", + "Only show updates that are at least the specified number of days old": "Visa endast uppdateringar som är minst det angivna antalet dagar gamla", "Change how UniGetUI handles install, update and uninstall operations.": "Ändra hur UniGetUI hanterar installation, uppdatering och avinstallation.", "Package Managers": "Pakethanterare", "More": "Mer", - "WingetUI Log": "UniGetUI logg", "Package Manager logs": "Pakethanterarens loggar", "Operation history": "Åtgärdshistorik", "Help": "Hjälp", + "Quit UniGetUI": "Avsluta UniGetUI", "Order by:": "Sortering:", "Name": "Namn", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "Båda", "Exact match": "Exakt matchning", "Show similar packages": "Visa liknande paket", + "Nothing to share": "Inget att dela", + "Please select a package first.": "Välj ett paket först.", + "Share link copied": "Delningslänk kopierad", + "The share link for {0} has been copied to the clipboard.": "Delningslänken för {0} har kopierats till urklippet.", "No results were found matching the input criteria": "Inga resultat hittades som matchade inmatningskriterierna", "No packages were found": "Inga paket hittades", "Loading packages": "Laddar paket", @@ -440,7 +483,11 @@ "Package bundle": "Paketgrupp", "Could not create bundle": "Kunde inte skapa ett paketgrupp", "The package bundle could not be created due to an error.": "Paketgruppen kunde inte skapas på grund av något fel.", + "Unsaved changes": "Osparade ändringar", + "Discard changes": "Förkasta ändringar", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Du har osparade ändringar i den aktuella bunten. Vill du förkasta dem?", "Bundle security report": "Säkerhetsrapport för paketgruppen", + "The bundle contained restricted content": "Bunten innehöll begränsat innehåll", "Hooray! No updates were found.": "Hurra! Inga uppdateringar hittades.", "Everything is up to date": "Allt är uppdaterat", "Uninstall selected packages": "Avinstallera valda paket", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Den klassiska pakethanteren för Windows. Du hittar allt där.
Innehåller: Allmän mjukvara", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "En förvaringsplats fullt av verktyg och körbara filer som är designade med Microsofts .NET-ekosystem i åtanke.
Innehåller: .NET-relaterade verktyg och skript", "NuPkg (zipped manifest)": "NuPkg (zippad manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Den saknade pakethanteraren för macOS (eller Linux).
Innehåller: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS:s pakethanterare. Fullt av bibliotek och andra verktyg som kretsar runt Javascript-världen
Innehåller: Node javascript-bibliotek och andra relaterade verktyg", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Pythons pakethanterare. Fullt med pythonbibliotek och andra pythonrelaterade verktyg
Innehåller: Pythonbibliotek och relaterade verktyg", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShells pakethanterare. Hitta bibliotek och skript för att utöka PowerShell-funktionerna
Innehåller: Moduler, skript, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Åtgärd på kö (position {0})...", "Click here for more details": "Klicka här för fler detaljer", "Operation canceled by user": "Åtgärden avbröts av användaren", + "Running PreOperation ({0}/{1})...": "Kör PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} av {1} misslyckades och markerades som nödvändig. Avbryter...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} av {1} slutfördes med resultatet {2}", "Starting operation...": "Startar åtgärd...", + "Running PostOperation ({0}/{1})...": "Kör PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} av {1} misslyckades och markerades som nödvändig. Avbryter...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} av {1} slutfördes med resultatet {2}", "{package} installer download": "{package} installerarens nedladdning", "{0} installer is being downloaded": "{0} installeraren laddas ned", "Download succeeded": "Nedladdningen lyckades", @@ -556,14 +610,12 @@ "Portable mode": "Portabelt läge", "DEBUG BUILD": "Felsökningsversion", "Available Updates": "Tillgängliga uppdateringar", - "Show WingetUI": "Visa UniGetUI", + "Show UniGetUI": "Visa UniGetUI", "Quit": "Avsluta", "Attention required": "Uppmärksamhet krävs", "Restart required": "Omstart krävs", "1 update is available": "1 uppdatering tillgänglig", "{0} updates are available": "{0} uppdateringar är tillgängliga", - "WingetUI Homepage": "UniGetUI Websida", - "WingetUI Repository": "UniGetUI-repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Här kan du ändra hur UniGetUI beter sig gällande följande genvägar. Markera en genväg och UniGetUI tar bort den vid en framtida uppgradering. Utan markering kommer genvägen bevaras intakt", "Manual scan": "Manuell skanning", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Befintliga genvägar på ditt skrivbord kommer att skannas och du får välja vilka som ska behållas och vilka ska tas bort.", @@ -583,7 +635,6 @@ "Restart later": "Starta om senare", "An error occurred:": "Ett fel inträffade:", "I understand": "Jag förstår", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI har körts med adminrättigheter vilket inte är att rekommendera. VARJE åtgärd kommer då ha adminrättigheter. Du kan fortfarande använda programmet men vi rekommenderar starkt att INTE köra UniGetUI med adminrättigheter.", "WinGet was repaired successfully": "WinGet har reparerats", "It is recommended to restart UniGetUI after WinGet has been repaired": "Rekommenderar att du startar om UniGetUI efter att Winget blivit reparerad", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "OBS: Denna felsökning kan avaktiveras i inställningar för UniGetUI i WinGet avsnittet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Dina paket har nu lagts till i paketgruppen. Du kan lägga till fler paket eller exportera hela paketgruppen.", "Which backup do you want to open?": "Vilken säkerhetskopia vill du öppna?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Välj säkerhetskopian du vill öppna. Senare får du möjlighet att välja vilka paket/program du vill återställa.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det finns pågående åtgärder. Genom att stänga UniGetUI kan dessa misslyckas. Vill du fortsätta?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Det finns pågående åtgärder. Genom att stänga UniGetUI kan dessa misslyckas. Vill du fortsätta?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller någon av dess komponenter saknas eller är korrupta.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Rekommenderar starkt att du ominstallerar UniGetUI för att lösa situationen", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Hänvisar till UniGetUI:s loggar för mer detaljerad information om påverkad(e) filer.", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Skriv in processnamnen här, skilj åt med komma (,)", "Unset or unknown": "Avstängt eller okänt", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Se kommandoradens utdata eller se Operation History för mer information om problemet.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denna paket har ingen skärmdump eller saknas ikonen. Bidra till UniGetUI genom att lägga till den saknade ikonen och skärmdumpa den till vår öppna och publika databas.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Denna paket har ingen skärmdump eller saknas ikonen. Bidra till UniGetUI genom att lägga till den saknade ikonen och skärmdumpa den till vår öppna och publika databas.", "Become a contributor": "Bli en bidragare", "Save": "Spara", "Update to {0} available": "Uppdatering till {0} är tillgänglig", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Aktivera den automatiska WinGet felsökningen", "Enable an [experimental] improved WinGet troubleshooter": "Aktivera en [experimentell] förbättrad WinGet-felsökare", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Lägg till uppdateringar som misslyckas med felet \"ingen passande uppdatering funnen\" till listan över ignorerade uppdateringar,", - "Restart WingetUI to fully apply changes": "Starta om UniGetUI för ändringarna ska tillämpas", - "Restart WingetUI": "Starta om UniGetUI", "Invalid selection": "Ogiltigt val", "No package was selected": "Inga paket har valts", "More than 1 package was selected": "Fler än 1 paket valdes", @@ -684,6 +733,37 @@ "Log out failed: ": "Utloggning misslyckades", "Package backup settings": "Inställningar för paketets säkerhetskopia", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Om UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI är ett program som mjukvaruhanteringen enklare genom att erbjuda ett tilltalande grafiskt gränssnitt för dina kommandorads pakethanterare.", + "You have installed WingetUI Version {0}": "Du har installerat UniGetUI version {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI skulle inte finns utan all hjälp från våra medarbetare. Ett stort tack! 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI använder följande bibliotek. Utan dessa hade inte UniGetUI funnits.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI är översatt till mer än 40 språk tack vara våra frivilliga översättare. Tack 🤝", + "WingetUI Settings": "UniGetUI inställningar", + "You may need to install {pm} in order to use it with WingetUI.": "Du kan behöva installera {pm} för att kunna använda den med UniGetUI.", + "Scoop Installer - WingetUI": "Scoop installerare - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop avinstallerare - UniGetUI", + "Clearing Scoop cache - WingetUI": "Rensa Scoop-cache - UniGetUI", + "WingetUI Version {0}": "UniGetUI version {0}", + "WingetUI License": "UniGetUI-licens", + "Using WingetUI implies the acceptation of the MIT License": "Användning av UniGetUI innebär att du accepterar MIT licensen", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktivera bakgrunds-API (UniGetUI Widgets and Sharing, port 7058)", + "Update WingetUI automatically": "Uppdatera UniGetUI automatiskt", + "Reset WingetUI": "Återställ UniGetUI", + "WingetUI display language:": "UniGetUI visningsspråk", + "Manage WingetUI autostart behaviour": "Hantera UniGetUI:s autostartbeteende", + "Enable WingetUI notifications": "Aktivera UniGetUI-aviseringar", + "WingetUI Log": "UniGetUI logg", + "Show WingetUI": "Visa UniGetUI", + "WingetUI Homepage": "UniGetUI Websida", + "WingetUI Repository": "UniGetUI-repository", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI har körts med adminrättigheter vilket inte är att rekommendera. VARJE åtgärd kommer då ha adminrättigheter. Du kan fortfarande använda programmet men vi rekommenderar starkt att INTE köra UniGetUI med adminrättigheter.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det finns pågående åtgärder. Genom att stänga UniGetUI kan dessa misslyckas. Vill du fortsätta?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denna paket har ingen skärmdump eller saknas ikonen. Bidra till UniGetUI genom att lägga till den saknade ikonen och skärmdumpa den till vår öppna och publika databas.", + "Restart WingetUI to fully apply changes": "Starta om UniGetUI för ändringarna ska tillämpas", + "Restart WingetUI": "Starta om UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Hantera UniGetUI:s autostartbeteende från Inställningar-appen", "(Number {0} in the queue)": "(Nummer {0} i kön)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@curudel, @kakmonster, @umeaboy, @Hi-there-how-are-u", "0 packages found": "0 paket hittades", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json index 861f991ab7..0d95912a24 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ta.json @@ -1,135 +1,143 @@ { - "Operation in progress": "operation நடைபெற்று கொண்டிருக்கிறது", + "Operation in progress": "செயல்பாடு நடைபெற்று கொண்டிருக்கிறது", "Please wait...": "தயவுசெய்து காத்திருக்கவும்...", "Success!": "வெற்றி!", "Failed": "தோல்வியடைந்தது", "An error occurred while processing this package": "இந்த தொகுப்பை செயலாக்கும்போது பிழை ஏற்பட்டது", - "Log in to enable cloud backup": "cloud backup ஐ செயல்படுத்த உள்நுழையவும்", + "Log in to enable cloud backup": "மேகக் காப்புப்பிரதியை செயல்படுத்த உள்நுழையவும்", "Backup Failed": "காப்புப்பிரதி தோல்வியுற்றது", - "Downloading backup...": "backup பதிவிறக்கப்படுகிறது...", + "Downloading backup...": "காப்புப்பிரதி பதிவிறக்கப்படுகிறது...", "An update was found!": "ஒரு புதுப்பிப்பு கிடைத்தது!", - "{0} can be updated to version {1}": "{0} ஐ version {1} க்கு update செய்யலாம்", - "Updates found!": "updates கிடைத்தன!", - "{0} packages can be updated": "{0} packages update செய்யப்படலாம்", - "You have currently version {0} installed": "உங்களிடம் தற்போது version {0} install செய்யப்பட்டுள்ளது", - "Desktop shortcut created": "desktop shortcut உருவாக்கப்பட்டது", - "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "தானாக delete செய்யக்கூடிய புதிய desktop shortcut ஒன்றை UniGetUI கண்டறிந்துள்ளது.", - "{0} desktop shortcuts created": "{0} desktop shortcuts உருவாக்கப்பட்டன", - "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "தானாக delete செய்யக்கூடிய {0} புதிய desktop shortcuts ஐ UniGetUI கண்டறிந்துள்ளது.", + "{0} can be updated to version {1}": "{0} ஐ பதிப்பு {1} க்கு புதுப்பிக்கலாம்", + "Updates found!": "புதுப்பிப்புகள் கிடைத்தன!", + "{0} packages can be updated": "{0} தொகுப்புகளை புதுப்பிக்கலாம்", + "You have currently version {0} installed": "உங்களிடம் தற்போது பதிப்பு {0} நிறுவப்பட்டுள்ளது", + "Desktop shortcut created": "டெஸ்க்டாப் குறுக்குவழி உருவாக்கப்பட்டது", + "UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "தானாக நீக்கக்கூடிய புதிய டெஸ்க்டாப் குறுக்குவழியை UniGetUI கண்டறிந்துள்ளது.", + "{0} desktop shortcuts created": "{0} டெஸ்க்டாப் குறுக்குவழிகள் உருவாக்கப்பட்டன", + "UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "தானாக நீக்கக்கூடிய {0} புதிய டெஸ்க்டாப் குறுக்குவழிகளை UniGetUI கண்டறிந்துள்ளது.", "Are you sure?": "உறுதியாக இருக்கிறீர்களா?", - "Do you really want to uninstall {0}?": "{0} ஐ uninstall செய்ய உண்மையில் விரும்புகிறீர்களா?", - "Do you really want to uninstall the following {0} packages?": "கீழ்க்கண்ட {0} packages ஐ uninstall செய்ய உண்மையில் விரும்புகிறீர்களா?", + "Do you really want to uninstall {0}?": "{0} ஐ அகற்ற உண்மையில் விரும்புகிறீர்களா?", + "Do you really want to uninstall the following {0} packages?": "கீழ்க்கண்ட {0} தொகுப்புகளை அகற்ற உண்மையில் விரும்புகிறீர்களா?", "No": "இல்லை", "Yes": "ஆம்", "View on UniGetUI": "UniGetUI இல் பார்", - "Update": "update", + "Update": "புதுப்பி", "Open UniGetUI": "UniGetUI ஐத் திற", - "Update all": "அனைத்தையும் update செய்", - "Update now": "இப்போது update செய்", - "This package is on the queue": "இந்த package queue இல் உள்ளது", - "installing": "install செய்யப்படுகிறது", - "updating": "update செய்யப்படுகிறது", - "uninstalling": "uninstall செய்யப்படுகிறது", - "installed": "install செய்யப்பட்டது", + "Update all": "அனைத்தையும் புதுப்பி", + "Update now": "இப்போது புதுப்பி", + "This package is on the queue": "இந்த தொகுப்பு வரிசையில் உள்ளது", + "installing": "நிறுவப்படுகிறது", + "updating": "புதுப்பிக்கப்படுகிறது", + "uninstalling": "அகற்றப்படுகிறது", + "installed": "நிறுவப்பட்டது", "Retry": "மீண்டும் முயற்சி செய்", - "Install": "install செய்", - "Uninstall": "uninstall செய்", + "Install": "நிறுவு", + "Uninstall": "அகற்று", "Open": "திற", - "Operation profile:": "operation profile:", - "Follow the default options when installing, upgrading or uninstalling this package": "இந்த package ஐ install, upgrade அல்லது uninstall செய்யும் போது இயல்புநிலை options ஐப் பின்பற்று", - "The following settings will be applied each time this package is installed, updated or removed.": "இந்த package install, update அல்லது remove செய்யப்படும் ஒவ்வொரு முறையும் பின்வரும் settings பயன்படுத்தப்படும்.", - "Version to install:": "install செய்ய வேண்டிய version:", - "Architecture to install:": "நிறுவ வேண்டிய architecture:", - "Installation scope:": "installation scope:", - "Install location:": "install location:", + "Operation profile:": "செயல்பாட்டு சுயவிவரம்:", + "Follow the default options when installing, upgrading or uninstalling this package": "இந்த தொகுப்பை நிறுவும், புதுப்பிக்கும் அல்லது அகற்றும் போது இயல்புநிலை விருப்பங்களைப் பின்பற்று", + "The following settings will be applied each time this package is installed, updated or removed.": "இந்த தொகுப்பு நிறுவப்படும், புதுப்பிக்கப்படும் அல்லது அகற்றப்படும் ஒவ்வொரு முறையும் பின்வரும் அமைப்புகள் பயன்படுத்தப்படும்.", + "Version to install:": "நிறுவ வேண்டிய பதிப்பு:", + "Architecture to install:": "நிறுவ வேண்டிய கட்டமைப்பு:", + "Installation scope:": "நிறுவல் வரம்பு:", + "Install location:": "நிறுவல் இடம்:", "Select": "தேர்ந்தெடு", "Reset": "மீட்டமை", - "Custom install arguments:": "தனிப்பயன் install arguments:", - "Custom update arguments:": "தனிப்பயன் update arguments:", - "Custom uninstall arguments:": "தனிப்பயன் uninstall arguments:", - "Pre-install command:": "pre-install command:", - "Post-install command:": "post-install command:", - "Abort install if pre-install command fails": "pre-install command தோல்வியுற்றால் நிறுவலை நிறுத்து", - "Pre-update command:": "pre-update command:", - "Post-update command:": "post-update command:", - "Abort update if pre-update command fails": "pre-update command தோல்வியுற்றால் புதுப்பிப்பை நிறுத்து", - "Pre-uninstall command:": "pre-uninstall command:", - "Post-uninstall command:": "post-uninstall command:", - "Abort uninstall if pre-uninstall command fails": "pre-uninstall command தோல்வியுற்றால் அகற்றலை நிறுத்து", - "Command-line to run:": "இயக்க வேண்டிய command-line:", + "Custom install arguments:": "தனிப்பயன் நிறுவல் அளவுருக்கள்:", + "Custom update arguments:": "தனிப்பயன் புதுப்பிப்பு அளவுருக்கள்:", + "Custom uninstall arguments:": "தனிப்பயன் அகற்றல் அளவுருக்கள்:", + "Pre-install command:": "நிறுவலுக்கு முன் கட்டளை:", + "Post-install command:": "நிறுவலுக்கு பின் கட்டளை:", + "Abort install if pre-install command fails": "நிறுவலுக்கு முந்தைய கட்டளை தோல்வியுற்றால் நிறுவலை நிறுத்து", + "Pre-update command:": "புதுப்பிப்புக்கு முன் கட்டளை:", + "Post-update command:": "புதுப்பிப்புக்கு பின் கட்டளை:", + "Abort update if pre-update command fails": "புதுப்பிப்புக்கு முந்தைய கட்டளை தோல்வியுற்றால் புதுப்பிப்பை நிறுத்து", + "Pre-uninstall command:": "அகற்றலுக்கு முன் கட்டளை:", + "Post-uninstall command:": "அகற்றலுக்கு பின் கட்டளை:", + "Abort uninstall if pre-uninstall command fails": "அகற்றலுக்கு முந்தைய கட்டளை தோல்வியுற்றால் அகற்றலை நிறுத்து", + "Command-line to run:": "இயக்க வேண்டிய கட்டளைவரி:", "Save and close": "சேமித்து மூடு", - "Run as admin": "admin ஆக இயக்கு", - "Interactive installation": "interactive installation", - "Skip hash check": "hash check ஐ தவிர்", - "Uninstall previous versions when updated": "update ஆனபோது முந்தைய versions ஐ uninstall செய்", - "Skip minor updates for this package": "இந்த package க்கான minor updates ஐ தவிர்", + "General": "பொது", + "Architecture & Location": "கட்டமைப்பு மற்றும் இடம்", + "Command-line": "கட்டளைவரி", + "Pre/Post install": "நிறுவல் முன்/பின்", + "Run as admin": "நிர்வாகியாக இயக்கு", + "Interactive installation": "இணையச் செயல்பாட்டு நிறுவல்", + "Skip hash check": "ஹாஷ் சரிபார்ப்பை தவிர்", + "Uninstall previous versions when updated": "புதுப்பிக்கும்போது முந்தைய பதிப்புகளை அகற்று", + "Skip minor updates for this package": "இந்த தொகுப்புக்கான சிறிய புதுப்பிப்புகளை தவிர்", "Automatically update this package": "இந்த தொகுப்பை தானாகப் புதுப்பி", "{0} installation options": "{0} நிறுவல் விருப்பங்கள்", "Latest": "சமீபத்தியது", - "PreRelease": "pre-release", + "PreRelease": "முன்வெளியீடு", "Default": "இயல்புநிலை", - "Manage ignored updates": "புறக்கணிக்கப்பட்ட updates ஐ நிர்வகி", - "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "இங்கே பட்டியலிடப்பட்டுள்ள packages updates சரிபார்க்கும் போது கணக்கில் எடுத்துக்கொள்ளப்படமாட்டாது. அவற்றின் updates ஐ புறக்கணிப்பதை நிறுத்த double-click செய்யவும் அல்லது வலப்பக்கத்தில் உள்ள button ஐ click செய்யவும்.", - "Reset list": "பட்டியலை reset செய்", - "Package Name": "package பெயர்", - "Package ID": "package ID", + "Manage ignored updates": "புறக்கணிக்கப்பட்ட புதுப்பிப்புகளை நிர்வகி", + "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "இங்கே பட்டியலிடப்பட்டுள்ள தொகுப்புகள் புதுப்பிப்புகளைச் சரிபார்க்கும் போது கணக்கில் எடுத்துக்கொள்ளப்படமாட்டாது. அவற்றின் புதுப்பிப்புகளை புறக்கணிப்பதை நிறுத்த அவற்றை இருமுறை சொடுக்கவும் அல்லது வலப்புறத்தில் உள்ள பொத்தானை சொடுக்கவும்.", + "Reset list": "பட்டியலை மீட்டமை", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "புறக்கணிக்கப்பட்ட புதுப்பிப்புகள் பட்டியலை உண்மையிலேயே மீட்டமைக்க விரும்புகிறீர்களா? இந்த செயலைத் திரும்ப மாற்ற முடியாது", + "No ignored updates": "புறக்கணிக்கப்பட்ட புதுப்பிப்புகள் இல்லை", + "Package Name": "தொகுப்பு பெயர்", + "Package ID": "தொகுப்பு அடையாளம்", "Ignored version": "புறக்கணிக்கப்பட்ட பதிப்பு", "New version": "புதிய பதிப்பு", - "Source": "source", + "Source": "மூலம்", "All versions": "எல்லா பதிப்புகளும்", "Unknown": "அறியப்படாதது", "Up to date": "புதுப்பிக்கப்பட்டது", "Cancel": "ரத்து", "Administrator privileges": "நிர்வாகி சிறப்புரிமைகள்", - "This operation is running with administrator privileges.": "இந்த operation administrator privileges உடன் இயங்குகிறது.", - "Interactive operation": "interactive operation", - "This operation is running interactively.": "இந்த operation interactive ஆக இயங்குகிறது.", - "You will likely need to interact with the installer.": "நீங்கள் installer உடன் தொடர்பு கொள்ள வேண்டியிருக்கலாம்.", - "Integrity checks skipped": "integrity checks தவிர்க்கப்பட்டன", + "This operation is running with administrator privileges.": "இந்த செயல்பாடு நிர்வாகி சிறப்புரிமைகளுடன் இயங்குகிறது.", + "Interactive operation": "இணையாடும் செயல்பாடு", + "This operation is running interactively.": "இந்த செயல்பாடு இணையாடும் முறையில் இயங்குகிறது.", + "You will likely need to interact with the installer.": "நீங்கள் நிறுவியுடன் தொடர்பு கொள்ள வேண்டியிருக்கும்.", + "Integrity checks skipped": "முழுமைத்தன்மைச் சோதனைகள் தவிர்க்கப்பட்டன", + "Integrity checks will not be performed during this operation.": "இந்த செயல்பாட்டின் போது முழுமைத்தன்மைச் சோதனைகள் செய்யப்படமாட்டாது.", "Proceed at your own risk.": "உங்கள் சொந்த ஆபத்தில் தொடரவும்.", "Close": "மூடு", "Loading...": "ஏற்றப்படுகிறது...", - "Installer SHA256": "installer SHA256", + "Installer SHA256": "நிறுவி SHA256", "Homepage": "முகப்புப்பக்கம்", "Author": "ஆசிரியர்", "Publisher": "வெளியீட்டாளர்", "License": "உரிமம்", - "Manifest": "manifest", - "Installer Type": "installer வகை", + "Manifest": "மெனிபெஸ்ட்", + "Installer Type": "நிறுவி வகை", "Size": "அளவு", - "Installer URL": "installer URL", + "Installer URL": "நிறுவி URL", "Last updated:": "கடைசியாக புதுப்பிக்கப்பட்டது:", - "Release notes URL": "release notes URL", - "Package details": "package விவரங்கள்", + "Release notes URL": "வெளியீட்டு குறிப்புகள் URL", + "Package details": "தொகுப்பு விவரங்கள்", "Dependencies:": "சார்புகள்:", - "Release notes": "release notes", + "Release notes": "வெளியீட்டு குறிப்புகள்", "Version": "பதிப்பு", - "Install as administrator": "administrator ஆக install செய்", - "Update to version {0}": "version {0} க்கு update செய்", - "Installed Version": "install செய்யப்பட்ட பதிப்பு", - "Update as administrator": "administrator ஆக update செய்", - "Interactive update": "interactive update", - "Uninstall as administrator": "administrator ஆக uninstall செய்", - "Interactive uninstall": "interactive uninstall", - "Uninstall and remove data": "uninstall செய்து data ஐ அகற்று", + "Install as administrator": "நிர்வாகியாக நிறுவு", + "Update to version {0}": "பதிப்பு {0} க்கு புதுப்பி", + "Installed Version": "நிறுவப்பட்ட பதிப்பு", + "Update as administrator": "நிர்வாகியாக புதுப்பி", + "Interactive update": "இணையாடும் புதுப்பிப்பு", + "Uninstall as administrator": "நிர்வாகியாக அகற்று", + "Interactive uninstall": "இணையாடும் அகற்றல்", + "Uninstall and remove data": "அகற்றி தரவையும் நீக்கு", "Not available": "கிடைக்கவில்லை", - "Installer SHA512": "installer SHA512", + "Installer SHA512": "நிறுவி SHA512", "Unknown size": "அறியப்படாத அளவு", "No dependencies specified": "சார்புகள் எதுவும் குறிப்பிடப்படவில்லை", "mandatory": "கட்டாயம்", "optional": "விருப்பத்திற்குரியது", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} install செய்யத் தயாராக உள்ளது.", "The update process will start after closing UniGetUI": "UniGetUI மூடிய பிறகு update process தொடங்கும்", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI நிர்வாகியாக இயக்கப்பட்டுள்ளது, இது பரிந்துரைக்கப்படவில்லை. UniGetUI-ஐ நிர்வாகியாக இயக்கும் போது, UniGetUI-இல் இருந்து தொடங்கப்படும் ஒவ்வொரு செயல்பாடும் நிர்வாகி அனுமதிகளுடன் இயங்கும். நீங்கள் இன்னும் இந்த நிரலைப் பயன்படுத்தலாம்; ஆனால் UniGetUI-ஐ நிர்வாகி அனுமதிகளுடன் இயக்க வேண்டாம் என்று நாங்கள் வலியுறுத்துகிறோம்.", "Share anonymous usage data": "பெயரில்லா usage data ஐ பகிர்", "UniGetUI collects anonymous usage data in order to improve the user experience.": "user experience ஐ மேம்படுத்த UniGetUI பெயரில்லா usage data ஐ சேகரிக்கிறது.", "Accept": "ஒத்திரு", - "You have installed WingetUI Version {0}": "நீங்கள் UniGetUI Version {0} ஐ install செய்துள்ளீர்கள்", + "You have installed UniGetUI Version {0}": "நீங்கள் UniGetUI Version {0} ஐ install செய்துள்ளீர்கள்", "Disclaimer": "பொறுப்புத்துறப்பு", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "compatible package managers எதனுடனும் UniGetUI சம்பந்தப்படவில்லை. UniGetUI ஒரு சுயாதீன project ஆகும்.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors இன் உதவியில்லாமல் UniGetUI சாத்தியமாகியிருக்காது. அனைவருக்கும் நன்றி 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI பின்வரும் libraries ஐப் பயன்படுத்துகிறது. அவற்றில்லாமல் UniGetUI சாத்தியமாகியிருக்காது.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "contributors இன் உதவியில்லாமல் UniGetUI சாத்தியமாகியிருக்காது. அனைவருக்கும் நன்றி 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI பின்வரும் libraries ஐப் பயன்படுத்துகிறது. அவற்றில்லாமல் UniGetUI சாத்தியமாகியிருக்காது.", "{0} homepage": "{0} முகப்புப்பக்கம்", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "தன்னார்வ மொழிபெயர்ப்பாளர்களின் உதவியால் UniGetUI 40 க்கும் மேற்பட்ட மொழிகளுக்கு மொழிபெயர்க்கப்பட்டுள்ளது. நன்றி 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "தன்னார்வ மொழிபெயர்ப்பாளர்களின் உதவியால் UniGetUI 40 க்கும் மேற்பட்ட மொழிகளுக்கு மொழிபெயர்க்கப்பட்டுள்ளது. நன்றி 🤝", "Verbose": "விரிவான", "1 - Errors": "1 - பிழைகள்", "2 - Warnings": "2 - எச்சரிக்கைகள்", @@ -149,25 +157,27 @@ "You are logged in as {0} (@{1})": "நீங்கள் {0} (@{1}) ஆக உள்நுழைந்துள்ளீர்கள்", "Nice! Backups will be uploaded to a private gist on your account": "அருமை! backups உங்கள் account இல் private gist ஆக upload செய்யப்படும்", "Select backup": "backup ஐத் தேர்ந்தெடு", - "WingetUI Settings": "UniGetUI settings", + "UniGetUI Settings": "UniGetUI அமைப்புகள்", "Allow pre-release versions": "pre-release பதிப்புகளுக்கு அனுமதி கொடு", "Apply": "இடு", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "பாதுகாப்பு காரணங்களால், தனிப்பயன் கட்டளைவரி arguments இயல்பாக முடக்கப்பட்டுள்ளன. இதை மாற்ற UniGetUI பாதுகாப்பு அமைப்புகளுக்கு செல்லவும்.", "Go to UniGetUI security settings": "UniGetUI security settings க்கு செல்லவும்", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "ஒவ்வொரு முறையும் {0} package install, upgrade அல்லது uninstall செய்யப்படும் போது பின்வரும் options இயல்பாகப் பயன்படுத்தப்படும்.", - "Package's default": "package இன் default", - "Install location can't be changed for {0} packages": "{0} packages க்கான install location ஐ மாற்ற முடியாது", - "The local icon cache currently takes {0} MB": "local icon cache தற்போது {0} MB எடுத்துக்கொள்கிறது", - "Username": "username", + "Package's default": "தொகுப்பின் இயல்புநிலை", + "Install location can't be changed for {0} packages": "{0} தொகுப்புகளுக்கான நிறுவல் இடத்தை மாற்ற முடியாது", + "The local icon cache currently takes {0} MB": "உள்ளூர் சின்ன தற்காலிக சேமிப்பு தற்போது {0} MB இடத்தைப் பயன்படுத்துகிறது", + "Username": "பயனர்பெயர்", "Password": "கடவுச்சொல்", "Credentials": "அடையாளச் சான்றுகள்", + "It is not guaranteed that the provided credentials will be stored safely": "வழங்கப்பட்ட அடையாளச் சான்றுகள் பாதுகாப்பாக சேமிக்கப்படும் என்று உத்தரவாதமில்லை", "Partially": "பகுதியாக", - "Package manager": "package manager", - "Compatible with proxy": "proxy உடன் பொருந்தும்", - "Compatible with authentication": "authentication உடன் பொருந்தும்", - "Proxy compatibility table": "proxy compatibility table", - "{0} settings": "{0} settings அமைப்புகள்", + "Package manager": "தொகுப்பு மேலாளர்", + "Compatible with proxy": "ப்ராக்ஸியுடன் பொருந்தும்", + "Compatible with authentication": "அங்கீகாரத்துடன் பொருந்தும்", + "Proxy compatibility table": "ப்ராக்ஸி பொருந்துதலின் அட்டவணை", + "{0} settings": "{0} அமைப்புகள்", "{0} status": "{0} நிலை", - "Default installation options for {0} packages": "{0} packages க்கான இயல்புநிலை நிறுவல் விருப்பங்கள்", + "Default installation options for {0} packages": "{0} தொகுப்புகளுக்கான இயல்புநிலை நிறுவல் விருப்பங்கள்", "Expand version": "பதிப்பை விரிவாக்கு", "The executable file for {0} was not found": "{0} க்கான executable file கிடைக்கவில்லை", "{pm} is disabled": "{pm} முடக்கப்பட்டுள்ளது", @@ -175,43 +185,53 @@ "{pm} is enabled and ready to go": "{pm} இயக்கப்பட்டு தயார் நிலையில் உள்ளது", "{pm} version:": "{pm} பதிப்பு:", "{pm} was not found!": "{pm} கிடைக்கவில்லை!", - "You may need to install {pm} in order to use it with WingetUI.": "{pm} ஐ UniGetUI உடன் பயன்படுத்த அதை install செய்ய வேண்டியிருக்கலாம்.", - "Scoop Installer - WingetUI": "Scoop installer - UniGetUI", - "Scoop Uninstaller - WingetUI": "Scoop uninstaller - UniGetUI", - "Clearing Scoop cache - WingetUI": "Scoop cache ஐ அழிக்கிறது - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "{pm} ஐ UniGetUI உடன் பயன்படுத்த அதை install செய்ய வேண்டியிருக்கலாம்.", + "Scoop Installer - UniGetUI": "Scoop நிறுவி - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop அகற்றுநர் - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Scoop cache ஐ அழிக்கிறது - UniGetUI", + "Restart UniGetUI to fully apply changes": "மாற்றங்கள் முழுமையாக அமலாக UniGetUI ஐ மறுதொடக்கம் செய்யவும்", "Restart UniGetUI": "UniGetUI ஐ restart செய்", - "Manage {0} sources": "{0} sources ஐ நிர்வகி", + "Manage {0} sources": "{0} மூலங்களை நிர்வகி", "Add source": "மூலத்தைச் சேர்", "Add": "சேர்", + "Source name": "மூலத்தின் பெயர்", + "Source URL": "மூல URL", "Other": "மற்றவை", + "No minimum age": "குறைந்தபட்ச வயது இல்லை", "1 day": "ஒரு நாள்", "{0} days": "{0} நாட்கள்", + "Custom...": "தனிப்பயன்...", "{0} minutes": "{0} நிமிடங்கள்", "1 hour": "ஒரு மணி நேரம்", "{0} hours": "{0} மணிநேரங்கள்", "1 week": "ஒரு வாரம்", - "WingetUI Version {0}": "UniGetUI பதிப்பு {0}", - "Search for packages": "packages ஐத் தேடு", + "Supports release dates": "வெளியீட்டு தேதிகளை ஆதரிக்கிறது", + "Release date support per package manager": "ஒவ்வொரு package manager-க்குமான வெளியீட்டு தேதி ஆதரவு", + "UniGetUI Version {0}": "UniGetUI பதிப்பு {0}", + "Search for packages": "தொகுப்புகளைத் தேடு", "Local": "உள்ளூர்", "OK": "சரி", - "{0} packages were found, {1} of which match the specified filters.": "{1} packages கிடைத்தன, அவற்றில் {0} குறிப்பிட்ட filters உடன் பொருந்தின.", + "{0} packages were found, {1} of which match the specified filters.": "{0} தொகுப்புகள் கண்டறியப்பட்டன, அவற்றில் {1} குறிப்பிட்ட வடிகட்டிகளுடன் பொருந்துகின்றன.", "{0} selected": "{0} தேர்ந்தெடுக்கப்பட்டது", - "(Last checked: {0})": "(கடைசியாகப் பார்த்தது : {0})", + "(Last checked: {0})": "(கடைசியாக சரிபார்க்கப்பட்டது: {0})", "Enabled": "இயக்கப்பட்டது", "Disabled": "முடக்கப்பட்டது", "More info": "மேலும் தகவல்", - "Log in with GitHub to enable cloud package backup.": "cloud package backup ஐ செயல்படுத்த GitHub மூலம் உள்நுழையவும்.", + "GitHub account": "GitHub கணக்கு", + "Log in with GitHub to enable cloud package backup.": "மேகத் தொகுப்பு காப்புப்பிரதியை செயல்படுத்த GitHub மூலம் உள்நுழையவும்.", "More details": "மேலும் விவரங்கள்", "Log in": "உள்நுழை", - "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "cloud backup enabled இருந்தால், அது இந்த account இல் GitHub Gist ஆக சேமிக்கப்படும்", + "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "மேகக் காப்புப்பிரதி இயக்கப்பட்டிருந்தால், அது இந்த கணக்கில் GitHub Gist ஆக சேமிக்கப்படும்", "Log out": "வெளியேறு", + "About UniGetUI": "UniGetUI பற்றி", "About": "பற்றி", - "Third-party licenses": "third-party licenses", + "Third-party licenses": "மூன்றாம் தரப்பு உரிமங்கள்", "Contributors": "பங்களிப்பாளர்கள்", "Translators": "மொழிபெயர்ப்பாளர்கள்", - "Manage shortcuts": "shortcuts ஐ நிர்வகி", - "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "எதிர்கால upgrades இல் தானாக அகற்றக்கூடிய பின்வரும் desktop shortcuts ஐ UniGetUI கண்டறிந்துள்ளது", - "Do you really want to reset this list? This action cannot be reverted.": "இந்த பட்டியலை reset செய்ய உண்மையில் விரும்புகிறீர்களா? இந்த செயலைத் திரும்ப மாற்ற முடியாது.", + "Manage shortcuts": "குறுக்குவழிகளை நிர்வகி", + "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "எதிர்கால புதுப்பிப்புகளில் தானாக அகற்றக்கூடிய பின்வரும் டெஸ்க்டாப் குறுக்குவழிகளை UniGetUI கண்டறிந்துள்ளது", + "Do you really want to reset this list? This action cannot be reverted.": "இந்த பட்டியலை உண்மையிலேயே மீட்டமைக்க விரும்புகிறீர்களா? இந்த செயலைத் திரும்ப மாற்ற முடியாது.", + "Open in explorer": "எக்ஸ்ப்ளோரரில் திற", "Remove from list": "பட்டியலிலிருந்து அகற்று", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "புதிய shortcuts கண்டறியப்படும் போது இந்த dialog ஐக் காட்டுவதற்கு பதிலாக அவற்றை தானாக delete செய்.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "user experience ஐப் புரிந்து மேம்படுத்தும் ஒரே நோக்கத்திற்காக UniGetUI பெயரில்லா usage data ஐ சேகரிக்கிறது.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "user experience ஐப் புரிந்து மேம்படுத்தும் ஒரே நோக்கத்திற்காக UniGetUI பெயரில்லா usage statistics ஐ சேகரித்து அனுப்புவதை ஏற்கிறீர்களா?", "Decline": "நிராகரி", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "தனிப்பட்ட தகவல் எதுவும் சேகரிக்கப்படவும் அனுப்பப்படவும் இல்லை. சேகரிக்கப்பட்ட தரவு anonimized ஆக இருப்பதால் அது உங்களிடம் திரும்பப் பின்தொடர முடியாது.", - "About WingetUI": "UniGetUI பற்றி", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "உங்கள் command-line package managers க்காக all-in-one graphical interface ஒன்றை வழங்கி software நிர்வகிப்பதை எளிதாக்கும் application தான் UniGetUI.", + "Toggle navigation panel": "வழிசெலுத்தல் பலகையை மாற்றிக் காட்டு", + "Minimize": "சுருக்கு", + "Maximize": "பெரிதாக்கு", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "உங்கள் command-line package managers க்காக all-in-one graphical interface ஒன்றை வழங்கி software நிர்வகிப்பதை எளிதாக்கும் application தான் UniGetUI.", "Useful links": "பயனுள்ள links", + "UniGetUI Homepage": "UniGetUI முகப்புப்பக்கம்", "Report an issue or submit a feature request": "ஒரு issue ஐ report செய்யவும் அல்லது feature request ஐ சமர்ப்பிக்கவும்", + "UniGetUI Repository": "UniGetUI சேமிப்பகம்", "View GitHub Profile": "GitHub profile ஐப் பார்", - "WingetUI License": "UniGetUI உரிமம்", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ஐப் பயன்படுத்துவது MIT License ஐ ஏற்றுக்கொள்வதை குறிக்கிறது", + "UniGetUI License": "UniGetUI உரிமம்", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI ஐப் பயன்படுத்துவது MIT License ஐ ஏற்றுக்கொள்வதை குறிக்கிறது", "Become a translator": "மொழிபெயர்ப்பாளராகுங்கள்", "View page on browser": "browser இல் page ஐப் பார்", "Copy to clipboard": "clipboard க்கு நகலெடு", "Export to a file": "file க்கு ஏற்றுமதி செய்", "Log level:": "log நிலை:", "Reload log": "log ஐ மீண்டும் ஏற்று", + "Export log": "பதிவை ஏற்றுமதி செய்", + "UniGetUI Log": "UniGetUI பதிவு", "Text": "உரை", "Change how operations request administrator rights": "operations எவ்வாறு administrator rights கோருகின்றன என்பதை மாற்று", "Restrictions on package operations": "package operations மீதான கட்டுப்பாடுகள்", @@ -243,7 +269,7 @@ "This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "இந்த option கண்டிப்பாக சிக்கல்களை உருவாக்கும். தானாக elevate செய்ய முடியாத எந்த operation ம் தோல்வியடையும். administrator ஆக Install/update/uninstall வேலை செய்யாது.", "Allow custom command-line arguments": "தனிப்பயன் command-line arguments க்கு அனுமதி கொடு", "Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "UniGetUI கட்டுப்படுத்த முடியாத வகையில் programs install, upgrade அல்லது uninstall ஆகும் முறையை தனிப்பயன் command-line arguments மாற்றக்கூடும். தனிப்பயன் command-lines பயன்படுத்துவது packages ஐ பாதிக்கக்கூடும். கவனமாக தொடரவும்.", - "Ignore custom pre-install and post-install commands when importing packages from a bundle": "custom pre-install மற்றும் post-install commands இயங்க அனுமதி", + "Ignore custom pre-install and post-install commands when importing packages from a bundle": "ஒரு bundle இலிருந்து தொகுப்புகளை இறக்குமதி செய்யும் போது தனிப்பயன் pre-install மற்றும் post-install கட்டளைகளை புறக்கணி", "Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "ஒரு package install, upgrade அல்லது uninstall ஆகும் முன்பும் பின்னும் pre மற்றும் post install commands இயங்கும். அவற்றை கவனமாக பயன்படுத்தாவிட்டால் பிரச்சினைகள் உண்டாகலாம் என்பதை நினைவில் கொள்க", "Allow changing the paths for package manager executables": "package manager executables க்கான பாதைகளை மாற்ற அனுமதி கொடு", "Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "இதனை இயக்கினால் package managers உடன் தொடர்பு கொள்ள பயன்படும் executable file ஐ மாற்ற முடியும். இது install processes ஐ நுணுக்கமாக தனிப்பயனாக்க அனுமதிக்கும்; ஆனால் ஆபத்தும் இருக்கலாம்", @@ -252,8 +278,8 @@ "Allow importing custom pre-install and post-install commands when importing packages from a bundle": "bundle இலிருந்து தொகுப்புகளை இறக்குமதி செய்யும்போது தனிப்பயன் pre-install மற்றும் post-install commands ஐ இறக்குமதி செய்ய அனுமதி கொடு", "Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "அவ்வாறு வடிவமைக்கப்பட்டிருந்தால் pre மற்றும் post install commands உங்கள் device க்கு மிகவும் தீங்கான செயல்களைச் செய்யலாம். package bundle இன் source மீது நம்பிக்கை இல்லையெனில் bundle இலிருந்து commands ஐ import செய்வது மிக ஆபத்தானது", "Administrator rights and other dangerous settings": "நிர்வாகி உரிமைகள் மற்றும் பிற ஆபத்தான settings", - "Package backup": "package backup", - "Cloud package backup": "cloud package backup", + "Package backup": "தொகுப்பு காப்புப்பிரதி", + "Cloud package backup": "மேகத் தொகுப்பு காப்புப்பிரதி", "Local package backup": "உள்ளூர் package backup", "Local backup advanced options": "உள்ளூர் backup மேம்பட்ட விருப்பங்கள்", "Log in with GitHub": "GitHub மூலம் உள்நுழையவும்", @@ -271,7 +297,7 @@ "Leave empty for default": "இயல்புநிலைக்கு காலியாக விடவும்", "Add a timestamp to the backup file names": "காப்புப்பிரதி கோப்பு பெயர்களில் நேரமுத்திரையைச் சேர்", "Backup and Restore": "காப்புப்பிரதி மற்றும் மீட்டமைப்பு", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API ஐ இயக்கு (UniGetUI Widgets மற்றும் Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "background API ஐ இயக்கு (UniGetUI Widgets மற்றும் Sharing, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "internet connectivity தேவைப்படும் tasks ஐ முயற்சிக்கும் முன் device internet க்கு connect ஆகும் வரை காத்திருக்கவும்.", "Disable the 1-minute timeout for package-related operations": "package தொடர்பான operations க்கான 1-minute timeout ஐ முடக்கு", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator க்கு பதிலாக install செய்யப்பட்ட GSudo ஐப் பயன்படுத்து", @@ -286,7 +312,7 @@ "Telemetry": "டெலிமெட்ரி", "Manage UniGetUI settings": "UniGetUI settings ஐ நிர்வகி", "Related settings": "தொடர்புடைய settings", - "Update WingetUI automatically": "UniGetUI ஐ தானாக update செய்", + "Update UniGetUI automatically": "UniGetUI ஐ தானாக update செய்", "Check for updates": "updates க்கு சரிபார்", "Install prerelease versions of UniGetUI": "UniGetUI இன் prerelease versions ஐ install செய்", "Manage telemetry settings": "telemetry settings ஐ நிர்வகி", @@ -295,17 +321,17 @@ "Import": "இறக்குமதி", "Export settings to a local file": "settings ஐ local file க்கு ஏற்றுமதி செய்", "Export": "ஏற்றுமதி", - "Reset WingetUI": "UniGetUI ஐ reset செய்", "Reset UniGetUI": "UniGetUI ஐ reset செய்", "User interface preferences": "user interface விருப்பங்கள்", "Application theme, startup page, package icons, clear successful installs automatically": "பயன்பாட்டு theme, startup page, package icons, வெற்றிகரமான நிறுவல்களை தானாக நீக்கு", "General preferences": "பொதுவான விருப்பங்கள்", - "WingetUI display language:": "UniGetUI காட்சி மொழி:", + "UniGetUI display language:": "UniGetUI காட்சி மொழி:", "Is your language missing or incomplete?": "உங்கள் மொழி இல்லை அல்லது முழுமையில்லையா?", "Appearance": "தோற்றம்", "UniGetUI on the background and system tray": "background மற்றும் system tray இல் UniGetUI", "Package lists": "package பட்டியல்கள்", "Close UniGetUI to the system tray": "UniGetUI ஐ system tray க்கு close செய்", + "Manage UniGetUI autostart behaviour": "UniGetUI தானியங்கி தொடக்க நடத்தையை நிர்வகி", "Show package icons on package lists": "package பட்டியல்களில் package icons ஐ காட்டு", "Clear cache": "cache ஐ அழி", "Select upgradable packages by default": "upgrade செய்யக்கூடிய packages ஐ இயல்பாகத் தேர்ந்தெடு", @@ -314,30 +340,33 @@ "Follow system color scheme": "system color scheme ஐப் பின்பற்று", "Application theme:": "ஆப் தீம்", "Discover Packages": "packages ஐ கண்டறி", - "Software Updates": "software updates", + "Software Updates": "மென்பொருள் புதுப்பிப்புகள்", "Installed Packages": "install செய்யப்பட்ட packages", - "Package Bundles": "package bundles", + "Package Bundles": "தொகுப்பு பண்டில்கள்", "Settings": "settings", "UniGetUI startup page:": "UniGetUI தொடக்கப் பக்கம்:", - "Proxy settings": "proxy settings", + "Proxy settings": "ப்ராக்ஸி அமைப்புகள்", "Other settings": "மற்ற settings", "Connect the internet using a custom proxy": "custom proxy ஐப் பயன்படுத்தி internet க்கு இணை", "Please note that not all package managers may fully support this feature": "அனைத்து package managers உம் இந்த feature ஐ முழுமையாக ஆதரிக்காமல் இருக்கலாம் என்பதை கவனிக்கவும்", - "Proxy URL": "proxy URL", + "Proxy URL": "ப்ராக்ஸி URL", "Enter proxy URL here": "proxy URL ஐ இங்கே உள்ளிடவும்", - "Package manager preferences": "package managers preferences", + "Authenticate to the proxy with a user and a password": "proxy-இற்கு பயனர் பெயரும் கடவுச்சொல்லும் கொண்டு அங்கீகரி", + "Internet and proxy settings": "இணையம் மற்றும் proxy அமைப்புகள்", + "Package manager preferences": "தொகுப்பு மேலாளர் விருப்பங்கள்", "Ready": "தயார்", "Not found": "கிடைக்கவில்லை", "Notification preferences": "notification விருப்பங்கள்", "Notification types": "notification வகைகள்", "The system tray icon must be enabled in order for notifications to work": "notifications வேலை செய்ய system tray icon இயங்கியிருக்க வேண்டும்", - "Enable WingetUI notifications": "UniGetUI notifications ஐ இயக்கு", + "Enable UniGetUI notifications": "UniGetUI notifications ஐ இயக்கு", "Show a notification when there are available updates": "updates கிடைக்கும் போது notification காட்டு", "Show a silent notification when an operation is running": "operation நடக்கும் போது silent notification காட்டு", "Show a notification when an operation fails": "operation தோல்வியடைந்தால் notification காட்டு", "Show a notification when an operation finishes successfully": "operation வெற்றிகரமாக முடிந்தால் notification காட்டு", "Concurrency and execution": "ஒரேநேர செயற்பாடு மற்றும் இயக்கம்", "Automatic desktop shortcut remover": "தானியங்கி desktop shortcut அகற்றுபவர்", + "Choose how many operations should be performed in parallel": "ஒரே நேரத்தில் எத்தனை செயல்பாடுகள் மேற்கொள்ளப்பட வேண்டும் என்பதைத் தேர்ந்தெடுக்கவும்", "Clear successful operations from the operation list after a 5 second delay": "5 விநாடி தாமதத்திற்குப் பிறகு operation list இலிருந்து வெற்றிகரமான operations ஐ அழி", "Download operations are not affected by this setting": "இந்த setting download operations ஐ பாதிக்காது", "Try to kill the processes that refuse to close when requested to": "மூடுமாறு கேட்டாலும் மூட மறுக்கும் processes ஐ kill செய்ய முயற்சி செய்", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "பயன்படுத்த வேண்டிய executable ஐத் தேர்ந்தெடுக்கவும். கீழே உள்ள பட்டியல் UniGetUI கண்டறிந்த executables ஐக் காட்டுகிறது", "Current executable file:": "தற்போதைய இயக்கக்கோப்பு:", "Ignore packages from {pm} when showing a notification about updates": "updates குறித்த notification காட்டும் போது {pm} இலிருந்து வரும் packages ஐ புறக்கணி", + "Update security": "புதுப்பிப்பு பாதுகாப்பு", + "Use global setting": "பொதுவான அமைப்பைப் பயன்படுத்து", + "e.g. 10": "எடுத்துக்காட்டு: 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} அதன் packages க்கான release dates ஐ வழங்காது; ஆகவே இந்த அமைப்பு எந்த விளைவையும் ஏற்படுத்தாது", + "Override the global minimum update age for this package manager": "இந்த package manager க்கான பொது குறைந்தபட்ச update வயதை மாற்றி அமை", + "Minimum age for updates": "புதுப்பிப்புகளுக்கான குறைந்தபட்ச வயது", + "Custom minimum age (days)": "தனிப்பயன் குறைந்தபட்ச வயது (நாட்கள்)", "View {0} logs": "{0} logs ஐப் பார்", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Python கண்டுபிடிக்கப்படவில்லை அல்லது packages பட்டியலிடப்படவில்லை, ஆனால் அது கணினியில் நிறுவப்பட்டிருந்தால், ", "Advanced options": "மேம்பட்ட விருப்பங்கள்", "Reset WinGet": "WinGet ஐ reset செய்", "This may help if no packages are listed": "packages எதுவும் பட்டியலிடப்படவில்லையெனில் இது உதவக்கூடும்", @@ -368,12 +405,13 @@ "Enable Scoop cleanup on launch": "launch இல் Scoop cleanup ஐ இயக்கு", "Use system Chocolatey": "system Chocolatey ஐப் பயன்படுத்து", "Default vcpkg triplet": "இயல்புநிலை vcpkg triplet", + "Change vcpkg root location": "vcpkg root இடத்தை மாற்று", "Language, theme and other miscellaneous preferences": "மொழி, theme மற்றும் பிற miscellaneous விருப்பங்கள்", "Show notifications on different events": "பல்வேறு நிகழ்வுகளில் notifications காட்டு", "Change how UniGetUI checks and installs available updates for your packages": "உங்கள் packages க்கான available updates ஐ UniGetUI எவ்வாறு சரிபார்த்து install செய்கிறது என்பதை மாற்று", "Automatically save a list of all your installed packages to easily restore them.": "உங்கள் நிறுவப்பட்ட அனைத்து தொகுப்புகளின் பட்டியலை அவற்றை எளிதாக மீட்டமைக்க தானாகச் சேமி.", "Enable and disable package managers, change default install options, etc.": "package managers ஐ இயக்கு அல்லது முடக்கு, default install options ஐ மாற்று, போன்றவை.", - "Internet connection settings": "internet connection settings", + "Internet connection settings": "இணைய இணைப்பு அமைப்புகள்", "Proxy settings, etc.": "proxy settings, போன்றவை.", "Beta features and other options that shouldn't be touched": "beta அம்சங்கள் மற்றும் தொடக்கூடாத பிற விருப்பங்கள்", "Update checking": "update சரிபார்த்தல்", @@ -384,19 +422,20 @@ "Do not automatically install updates when the network connection is metered": "network connection metered ஆக இருக்கும்போது updates ஐ தானாக install செய்ய வேண்டாம்", "Do not automatically install updates when the device runs on battery": "device battery இல் இயங்கும்போது updates ஐ தானாக install செய்ய வேண்டாம்", "Do not automatically install updates when the battery saver is on": "battery saver இயங்கும்போது updates ஐ தானாக install செய்ய வேண்டாம்", + "Only show updates that are at least the specified number of days old": "குறிப்பிடப்பட்ட எண்ணிக்கையிலாவது நாட்கள் பழமையான புதுப்பிப்புகளை மட்டும் காட்டு", "Change how UniGetUI handles install, update and uninstall operations.": "install, update மற்றும் uninstall operations ஐ UniGetUI எவ்வாறு கையாளுகிறது என்பதை மாற்று.", - "Package Managers": "package managers", + "Package Managers": "தொகுப்பு மேலாளர்கள்", "More": "மேலும்", - "WingetUI Log": "UniGetUI பதிவு", - "Package Manager logs": "package manager logs", - "Operation history": "operation வரலாறு", + "Package Manager logs": "தொகுப்பு மேலாளர் பதிவுகள்", + "Operation history": "செயல்பாட்டு வரலாறு", "Help": "உதவி", + "Quit UniGetUI": "UniGetUI இலிருந்து வெளியேறு", "Order by:": "இதன்படி வரிசைப்படுத்து:", "Name": "பெயர்", "Id": "அடையாளம்", "Ascendant": "ஏறுவரிசை", "Descendant": "சந்ததி", - "View mode:": "view mode:", + "View mode:": "காட்சி முறை:", "Filters": "வடிகட்டிகள்", "Sources": "sources", "Search for packages to start": "தொடங்க packages ஐத் தேடு", @@ -409,19 +448,23 @@ "Both": "இரண்டும்", "Exact match": "சரியான பொருத்தம்", "Show similar packages": "ஒத்த packages ஐ காட்டு", + "Nothing to share": "பகிர எதுவும் இல்லை", + "Please select a package first.": "முதலில் ஒரு package ஐத் தேர்ந்தெடுக்கவும்.", + "Share link copied": "பகிர்வு இணைப்பு நகலெடுக்கப்பட்டது", + "The share link for {0} has been copied to the clipboard.": "{0} க்கான பகிர்வு இணைப்பு clipboard க்கு நகலெடுக்கப்பட்டது.", "No results were found matching the input criteria": "உள்ளீட்டு அளவுகோலுக்கு பொருந்தும் முடிவுகள் எதுவும் கிடைக்கவில்லை", "No packages were found": "packages எதுவும் கிடைக்கவில்லை", "Loading packages": "packages ஏற்றப்படுகின்றன", "Skip integrity checks": "integrity checks ஐ தவிர்", "Download selected installers": "தேர்ந்தெடுக்கப்பட்ட installers ஐப் பதிவிறக்கு", "Install selection": "தேர்வை install செய்", - "Install options": "install options", + "Install options": "நிறுவல் விருப்பங்கள்", "Share": "பகிர்", "Add selection to bundle": "தேர்வை bundle இற்கு சேர்", "Download installer": "installer ஐப் பதிவிறக்கு", "Share this package": "இந்த package ஐ பகிர்", "Uninstall selection": "தேர்வை uninstall செய்", - "Uninstall options": "uninstall options", + "Uninstall options": "அகற்றல் விருப்பங்கள்", "Ignore selected packages": "தேர்ந்தெடுக்கப்பட்ட packages ஐ புறக்கணி", "Open install location": "install location ஐத் திற", "Reinstall package": "package ஐ மறுபடியும் install செய்", @@ -437,15 +480,19 @@ "Skip hash checks": "hash checks ஐ தவிர்", "The package bundle is not valid": "package bundle செல்லுபடியாகவில்லை", "The bundle you are trying to load appears to be invalid. Please check the file and try again.": "நீங்கள் load செய்ய முயல்கிற bundle தவறானதாக இருக்கிறது. file ஐ சரிபார்த்து மீண்டும் முயற்சிக்கவும்.", - "Package bundle": "package bundle", + "Package bundle": "தொகுப்பு பண்டில்", "Could not create bundle": "bundle ஐ உருவாக்க முடியவில்லை", "The package bundle could not be created due to an error.": "பிழையால் package bundle உருவாக்க முடியவில்லை.", + "Unsaved changes": "சேமிக்கப்படாத மாற்றங்கள்", + "Discard changes": "மாற்றங்களை நிராகரி", + "You have unsaved changes in the current bundle. Do you want to discard them?": "தற்போதைய bundle இல் சேமிக்கப்படாத மாற்றங்கள் உள்ளன. அவற்றை நிராகரிக்க விரும்புகிறீர்களா?", "Bundle security report": "bundle பாதுகாப்பு அறிக்கை", + "The bundle contained restricted content": "bundle இல் கட்டுப்படுத்தப்பட்ட உள்ளடக்கம் இருந்தது", "Hooray! No updates were found.": "அருமை! எந்த updates ம் கிடைக்கவில்லை.", "Everything is up to date": "அனைத்தும் புதுப்பிக்கப்பட்டுள்ளது", "Uninstall selected packages": "தேர்ந்தெடுக்கப்பட்ட packages ஐ uninstall செய்", "Update selection": "தேர்வை update செய்", - "Update options": "update options", + "Update options": "புதுப்பிப்பு விருப்பங்கள்", "Uninstall package, then update it": "package ஐ uninstall செய்து, பின்னர் update செய்", "Uninstall package": "package ஐ uninstall செய்", "Skip this version": "இந்த version ஐ தவிர்", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows க்கான பாரம்பரிய package manager. தேவையான எல்லாவற்றையும் அங்கே காணலாம்.
இதில் உள்ளவை: General Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft இன் .NET சூழலை மனதில் கொண்டு வடிவமைக்கப்பட்ட tools மற்றும் executables நிறைந்த repository.
உள்ளடக்கம்: .NET தொடர்புடைய tools மற்றும் scripts", "NuPkg (zipped manifest)": "NuPkg (zip செய்யப்பட்ட manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (அல்லது Linux) க்கான குறைவாக இருந்த package manager.
இதில் உள்ளது: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS இன் package manager. javascript உலகைச் சுற்றியுள்ள libraries மற்றும் மற்ற utilities நிரம்பியுள்ளது
இதில் உள்ளவை: Node javascript libraries மற்றும் தொடர்புடைய utilities", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python இன் library manager. python libraries மற்றும் பிற python தொடர்பான utilities நிறைந்தது
இதில் உள்ளவை: Python libraries மற்றும் தொடர்புடைய utilities", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell இன் package manager. PowerShell திறன்களை விரிவுபடுத்த libraries மற்றும் scripts ஐ கண்டறிக
இதில் உள்ளவை: Modules, Scripts, Cmdlets", @@ -473,26 +521,32 @@ "Operation on queue (position {0})...": "queue இல் operation (position {0})...", "Click here for more details": "மேலும் விவரங்களுக்கு இங்கே கிளிக் செய்யவும்", "Operation canceled by user": "user operation ஐ ரத்து செய்தார்", + "Running PreOperation ({0}/{1})...": "PreOperation இயக்கப்படுகிறது ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} இல் {0}வது PreOperation தோல்வியடைந்தது, மேலும் அது அவசியமானதாக குறிக்கப்பட்டிருந்தது. நிறுத்தப்படுகிறது...", + "PreOperation {0} out of {1} finished with result {2}": "{1} இல் {0}வது PreOperation, முடிவு {2} உடன் நிறைவடைந்தது", "Starting operation...": "operation தொடங்குகிறது...", + "Running PostOperation ({0}/{1})...": "PostOperation இயக்கப்படுகிறது ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} இல் {0}வது PostOperation தோல்வியடைந்தது, மேலும் அது அவசியமானதாக குறிக்கப்பட்டிருந்தது. நிறுத்தப்படுகிறது...", + "PostOperation {0} out of {1} finished with result {2}": "{1} இல் {0}வது PostOperation, முடிவு {2} உடன் நிறைவடைந்தது", "{package} installer download": "{package} installer பதிவிறக்கம்", "{0} installer is being downloaded": "{0} installer பதிவிறக்கப்படுகிறது", "Download succeeded": "பதிவிறக்கம் வெற்றியடைந்தது", "{package} installer was downloaded successfully": "{package} installer வெற்றிகரமாக பதிவிறக்கப்பட்டது", "Download failed": "பதிவிறக்கம் தோல்வியடைந்தது", "{package} installer could not be downloaded": "{package} installer பதிவிறக்க முடியவில்லை", - "{package} Installation": "{package} installation", + "{package} Installation": "{package} நிறுவல்", "{0} is being installed": "{0} install செய்யப்படுகிறது", "Installation succeeded": "installation வெற்றியடைந்தது", "{package} was installed successfully": "{package} வெற்றிகரமாக install செய்யப்பட்டது", "Installation failed": "installation தோல்வியடைந்தது", "{package} could not be installed": "{package} install செய்ய முடியவில்லை", - "{package} Update": "{package} update", + "{package} Update": "{package} புதுப்பிப்பு", "{0} is being updated to version {1}": "{0} version {1} க்கு update செய்யப்படுகிறது", "Update succeeded": "update வெற்றியடைந்தது", "{package} was updated successfully": "{package} வெற்றிகரமாக update செய்யப்பட்டது", "Update failed": "update தோல்வியடைந்தது", "{package} could not be updated": "{package} update செய்ய முடியவில்லை", - "{package} Uninstall": "{package} uninstall", + "{package} Uninstall": "{package} அகற்றல்", "{0} is being uninstalled": "{0} uninstall செய்யப்படுகிறது", "Uninstall succeeded": "uninstall வெற்றியடைந்தது", "{package} was uninstalled successfully": "{package} வெற்றிகரமாக uninstall செய்யப்பட்டது", @@ -538,7 +592,7 @@ "Retry as administrator": "administrator ஆக மீண்டும் முயற்சி செய்", "Retry interactively": "interactive ஆக மீண்டும் முயற்சி செய்", "Retry skipping integrity checks": "integrity checks ஐ தவிர்த்து மீண்டும் முயற்சி செய்", - "Installation options": "installation options", + "Installation options": "நிறுவல் விருப்பங்கள்", "Show in explorer": "explorer இல் காட்டு", "This package is already installed": "இந்த package ஏற்கனவே install செய்யப்பட்டுள்ளது", "This package can be upgraded to version {0}": "இந்த package ஐ version {0} க்கு upgrade செய்யலாம்", @@ -547,23 +601,21 @@ "This package is not available": "இந்த package கிடைக்கவில்லை", "Select the source you want to add:": "நீங்கள் சேர்க்க விரும்பும் source ஐத் தேர்ந்தெடுக்கவும்:", "Source name:": "source பெயர்:", - "Source URL:": "source URL:", + "Source URL:": "மூல URL:", "An error occurred": "ஒரு பிழை ஏற்பட்டது.", "An error occurred when adding the source: ": "மூலத்தைச் சேர்க்கும்போது பிழை ஏற்பட்டது: ", "Package management made easy": "package management ஐ எளிதாக்கியது", "version {0}": "பதிப்பு {0}", "[RAN AS ADMINISTRATOR]": "[ADMINISTRATOR ஆக இயக்கப்பட்டது]", - "Portable mode": "portable mode\n", - "DEBUG BUILD": "டீபக் build", + "Portable mode": "கையடக்க முறை\n", + "DEBUG BUILD": "பிழைத்திருத்த கட்டமைப்பு", "Available Updates": "கிடைகப்பட்ட புதுப்பிப்புகள்", - "Show WingetUI": "UniGetUI ஐ காட்டு", + "Show UniGetUI": "UniGetUI ஐ காட்டு", "Quit": "வெளியேறு", "Attention required": "கவனம் தேவை", "Restart required": "restart தேவை", "1 update is available": "ஒரு புதுப்பிப்பு உள்ளது", "{0} updates are available": "{0} updates கிடைக்கின்றன", - "WingetUI Homepage": "UniGetUI முகப்புப்பக்கம்", - "WingetUI Repository": "UniGetUI repository", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "பின்வரும் shortcuts குறித்து UniGetUI இன் நடத்தையை இங்கே மாற்றலாம். ஒரு shortcut ஐ check செய்தால், அது எதிர்கால upgrade இல் உருவானால் UniGetUI அதை delete செய்யும். அதை uncheck செய்தால் shortcut அப்படியே இருக்கும்", "Manual scan": "கைமுறை scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "உங்கள் desktop இல் உள்ள shortcuts scan செய்யப்படும், மேலும் எவற்றை வைத்திருக்க வேண்டும், எவற்றை அகற்ற வேண்டும் என்பதைக் நீங்கள் தேர்ந்தெடுக்க வேண்டும்.", @@ -583,7 +635,6 @@ "Restart later": "பிறகு restart செய்", "An error occurred:": "ஒரு பிழை ஏற்பட்டது.", "I understand": "எனக்கு புரிகிறது", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI administrator ஆக இயக்கப்பட்டுள்ளது; இது பரிந்துரைக்கப்படவில்லை. UniGetUI ஐ administrator ஆக இயக்கினால், அதிலிருந்து தொடங்கப்படும் EVERY operation க்கும் administrator privileges இருக்கும். நீங்கள் program ஐ இன்னும் பயன்படுத்தலாம், ஆனால் UniGetUI ஐ administrator privileges உடன் இயக்க வேண்டாம் என்று மிகவும் பரிந்துரைக்கிறோம்.", "WinGet was repaired successfully": "WinGet வெற்றிகரமாக repair செய்யப்பட்டது", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet சரிசெய்யப்பட்ட பிறகு UniGetUI ஐ restart செய்ய பரிந்துரைக்கப்படுகிறது", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "குறிப்பு: இந்த troubleshooter ஐ UniGetUI Settings இன் WinGet பிரிவில் முடக்கலாம்", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. உங்கள் தொகுப்புகள் bundle இல் சேர்க்கப்பட்டிருக்கும். நீங்கள் மேலும் தொகுப்புகளை சேர்க்கலாம் அல்லது bundle ஐ ஏற்றுமதி செய்யலாம்.", "Which backup do you want to open?": "நீங்கள் எந்த backup ஐத் திறக்க விரும்புகிறீர்கள்?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "நீங்கள் திறக்க விரும்பும் backup ஐத் தேர்ந்தெடுக்கவும். பின்னர் எந்த packages/programs ஐ restore செய்ய வேண்டும் என்பதை review செய்யலாம்.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "operations நடைபெற்று கொண்டிருக்கின்றன. UniGetUI யிலிருந்து வெளியேறினால் அவை தோல்வியடையக்கூடும். தொடர விரும்புகிறீர்களா?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "operations நடைபெற்று கொண்டிருக்கின்றன. UniGetUI யிலிருந்து வெளியேறினால் அவை தோல்வியடையக்கூடும். தொடர விரும்புகிறீர்களா?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI அல்லது அதன் சில components காணாமல் போயுள்ளன அல்லது கெடுக்கப்பட்டுள்ளன.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "இந்த நிலையை சரி செய்ய UniGetUI ஐ மறுபடியும் install செய்ய வலியுறுத்தப்படுகிறது.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "பாதிக்கப்பட்ட file(s) குறித்த மேலும் விவரங்களுக்கு UniGetUI Logs ஐ பார்க்கவும்", @@ -634,8 +685,8 @@ "Select the processes that should be closed before this package is installed, updated or uninstalled.": "இந்த package install, update அல்லது uninstall ஆகும் முன் மூடப்பட வேண்டிய processes ஐத் தேர்ந்தெடுக்கவும்.", "Write here the process names here, separated by commas (,)": "process பெயர்களை இங்கே comma (,) களைப் பயன்படுத்தி பிரித்து எழுதவும்", "Unset or unknown": "unset அல்லது அறியப்படாதது", - "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "சிக்கல் பற்றி மேலும் அறிய Command-line Output ஐ பார்க்கவும் அல்லது Operation History ஐ பார்க்கவும்.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "இந்த package க்கு screenshots இல்லை அல்லது icon இல்லைதா? எங்கள் திறந்த public database இல் காணாமல் போன icons மற்றும் screenshots ஐச் சேர்த்து UniGetUI க்கு பங்களியுங்கள்.", + "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "சிக்கல் குறித்து மேலும் அறிய கட்டளைவரி வெளியீட்டை அல்லது செயல்பாட்டு வரலாற்றைப் பார்க்கவும்.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "இந்த package க்கு screenshots இல்லை அல்லது icon இல்லைதா? எங்கள் திறந்த public database இல் காணாமல் போன icons மற்றும் screenshots ஐச் சேர்த்து UniGetUI க்கு பங்களியுங்கள்.", "Become a contributor": "பங்களிப்பாளராகுங்கள்", "Save": "சேமி", "Update to {0} available": "{0} க்கு update கிடைக்கிறது", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "automatic WinGet troubleshooter ஐ இயக்கு", "Enable an [experimental] improved WinGet troubleshooter": "மேம்படுத்தப்பட்ட [experimental] WinGet troubleshooter ஐ இயக்கு", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'no applicable update found' காரணமாக தோல்வியுறும் புதுப்பிப்புகளை புறக்கணிக்கப்பட்ட புதுப்பிப்புகள் பட்டியலில் சேர்", - "Restart WingetUI to fully apply changes": "மாற்றங்களை முழுமையாகப் பயன்படுத்த UniGetUI ஐ restart செய்", - "Restart WingetUI": "UniGetUI ஐ restart செய்", "Invalid selection": "செல்லாத தேர்வு", "No package was selected": "எந்த package ம் தேர்ந்தெடுக்கப்படவில்லை", "More than 1 package was selected": "1 க்கும் மேற்பட்ட package தேர்ந்தெடுக்கப்பட்டது", @@ -675,15 +724,46 @@ "Loading packages, please wait...": "packages ஏற்றப்படுகின்றன, தயவுசெய்து காத்திருக்கவும்...", "Saving packages, please wait...": "packages சேமிக்கப்படுகின்றன, தயவுசெய்து காத்திருக்கவும்...", "The bundle was created successfully on {0}": "bundle {0} அன்று வெற்றிகரமாக உருவாக்கப்பட்டது", - "Install script": "install script", + "Install script": "நிறுவல் ஸ்கிரிப்ட்", "The installation script saved to {0}": "installation script {0} இல் சேமிக்கப்பட்டது", "An error occurred while attempting to create an installation script:": "installation script உருவாக்க முயன்றபோது பிழை ஏற்பட்டது:", "{0} packages are being updated": "{0} packages update செய்யப்படுகின்றன", "Error": "பிழை", "Log in failed: ": "உள்நுழைவு தோல்வியடைந்தது: ", "Log out failed: ": "வெளியேறல் தோல்வியடைந்தது: ", - "Package backup settings": "package backup settings", + "Package backup settings": "தொகுப்பு காப்புப்பிரதி அமைப்புகள்", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "UniGetUI பற்றி", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "உங்கள் command-line package managers க்காக all-in-one graphical interface ஒன்றை வழங்கி software நிர்வகிப்பதை எளிதாக்கும் application தான் UniGetUI.", + "You have installed WingetUI Version {0}": "நீங்கள் UniGetUI Version {0} ஐ install செய்துள்ளீர்கள்", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "பங்களிப்பாளர்களின் உதவியில்லாமல் UniGetUI சாத்தியமாகியிருக்காது. அனைவருக்கும் நன்றி 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI பின்வரும் நூலகங்களைப் பயன்படுத்துகிறது. அவற்றில்லாமல் UniGetUI சாத்தியமாகியிருக்காது.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "தன்னார்வ மொழிபெயர்ப்பாளர்களின் உதவியால் UniGetUI 40 க்கும் மேற்பட்ட மொழிகளுக்கு மொழிபெயர்க்கப்பட்டுள்ளது. நன்றி 🤝", + "WingetUI Settings": "UniGetUI அமைப்புகள்", + "You may need to install {pm} in order to use it with WingetUI.": "{pm} ஐ UniGetUI உடன் பயன்படுத்த அதை install செய்ய வேண்டியிருக்கலாம்.", + "Scoop Installer - WingetUI": "Scoop நிறுவி - UniGetUI", + "Scoop Uninstaller - WingetUI": "Scoop அகற்றுநர் - UniGetUI", + "Clearing Scoop cache - WingetUI": "Scoop cache ஐ அழிக்கிறது - WingetUI", + "WingetUI Version {0}": "UniGetUI பதிப்பு {0}", + "WingetUI License": "UniGetUI உரிமம்", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI ஐப் பயன்படுத்துவது MIT License ஐ ஏற்றுக்கொள்வதை குறிக்கிறது", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "background API ஐ இயக்கு (UniGetUI Widgets மற்றும் Sharing, port 7058)", + "Update WingetUI automatically": "UniGetUI ஐ தானாக update செய்", + "Reset WingetUI": "UniGetUI ஐ reset செய்", + "WingetUI display language:": "UniGetUI காட்சி மொழி:", + "Manage WingetUI autostart behaviour": "UniGetUI தானியங்கி தொடக்க நடத்தையை நிர்வகி", + "Enable WingetUI notifications": "UniGetUI notifications ஐ இயக்கு", + "WingetUI Log": "UniGetUI பதிவு", + "Show WingetUI": "UniGetUI ஐ காட்டு", + "WingetUI Homepage": "UniGetUI முகப்புப்பக்கம்", + "WingetUI Repository": "UniGetUI சேமிப்பகம்", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI administrator ஆக இயக்கப்பட்டுள்ளது; இது பரிந்துரைக்கப்படவில்லை. UniGetUI ஐ administrator ஆக இயக்கினால், அதிலிருந்து தொடங்கப்படும் EVERY operation க்கும் administrator privileges இருக்கும். நீங்கள் program ஐ இன்னும் பயன்படுத்தலாம், ஆனால் UniGetUI ஐ administrator privileges உடன் இயக்க வேண்டாம் என்று மிகவும் பரிந்துரைக்கிறோம்.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "operations நடைபெற்று கொண்டிருக்கின்றன. UniGetUI யிலிருந்து வெளியேறினால் அவை தோல்வியடையக்கூடும். தொடர விரும்புகிறீர்களா?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "இந்த package க்கு screenshots இல்லை அல்லது icon இல்லைதா? எங்கள் திறந்த public database இல் காணாமல் போன icons மற்றும் screenshots ஐச் சேர்த்து UniGetUI க்கு பங்களியுங்கள்.", + "Restart WingetUI to fully apply changes": "மாற்றங்களை முழுமையாகப் பயன்படுத்த UniGetUI ஐ restart செய்", + "Restart WingetUI": "UniGetUI ஐ restart செய்", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Settings app இலிருந்து UniGetUI autostart நடத்தையை நிர்வகி", "(Number {0} in the queue)": "(வரிசையில் எண் {0})", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@nochilli", "0 packages found": "எதுவும் கிடைக்கவில்லை", @@ -746,7 +826,7 @@ "Clear the local icon cache": "local icon cache ஐ அழி", "Clearing Scoop cache...": "Scoop cache ஐ அழிக்கிறது...", "Close WingetUI to the notification area": "WingetUI ஐ notification area க்கு close செய்", - "Command-line Output": "Command-line output", + "Command-line Output": "கட்டளைவரி வெளியீடு", "Compare query against": "query ஐ இதனுடன் ஒப்பிடு", "Component Information": "கூறு தகவல்", "Contribute to the icon and screenshot repository": "icon மற்றும் screenshot repository க்கு பங்களிக்கவும்", @@ -778,7 +858,7 @@ "Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "UniGetUI உங்களுக்கு பயனுள்ளதாக இருக்கிறதா? developer ஐ ஆதரிக்க விரும்புகிறீர்களா? அப்படியானால், நீங்கள் {0} செய்யலாம், அது மிகவும் உதவும்!", "Do you really want to uninstall {0} packages?": "{0} packages ஐ uninstall செய்ய உண்மையில் விரும்புகிறீர்களா?", "Do you want to restart your computer now?": "உங்கள் கணினியை இப்போது restart செய்ய விரும்புகிறீர்களா?", - "Do you want to translate WingetUI to your language? See how to contribute HERE!": "உங்கள் மொழிக்கு UniGetUI ஐ மொழிபெயர்க்க விரும்புகிறீர்களா? பங்களிப்பது எப்படி என்பதை இங்கே! பார்க்கவும்", + "Do you want to translate WingetUI to your language? See how to contribute HERE!": "உங்கள் மொழிக்கு UniGetUI ஐ மொழிபெயர்க்க விரும்புகிறீர்களா? பங்களிப்பது எப்படி என்பதை இங்கே! பார்க்கவும்", "Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "நன்கொடை வழங்க மனமில்லையா? பரவாயில்லை, UniGetUI ஐ உங்கள் நண்பர்களுடன் எப்போதும் பகிரலாம். UniGetUI பற்றி பரப்புங்கள்.", "Donate": "நன்கொடை", "Download updated language files from GitHub automatically": "GitHub இலிருந்து புதுப்பிக்கப்பட்ட language files ஐ தானாக download செய்", @@ -845,23 +925,23 @@ "No sources were found": "sources எதுவும் கிடைக்கவில்லை", "No updates are available": "updates எதுவும் கிடைக்கவில்லை", "Notes:": "குறிப்புகள்:", - "Notification tray options": "notification tray options", + "Notification tray options": "அறிவிப்பு தட்டு விருப்பங்கள்", "Ok": "சரி", "Open GitHub": "GitHub ஐத் திற", "Open WingetUI": "UniGetUI ஐத் திற", - "Open backup location": "backup இடத்தைத் திற", - "Open existing bundle": "ஏற்கனவே உள்ள bundle ஐத் திற", - "Open the welcome wizard": "welcome wizard ஐத் திற", - "Operation cancelled": "operation ரத்து செய்யப்பட்டது", - "Options saved": "options சேமிக்கப்பட்டன", - "Package Manager": "package manager", - "Package managers": "package managers", - "Package {name} from {manager}": "package {name}, {manager} இலிருந்து", - "Packages": "packages", - "Packages found: {0}": "கண்டறியப்பட்ட packages: {0}", - "Paste a valid URL to the database": "database இற்கு சரியான URL ஐ paste செய்யவும்", - "Perform a backup now": "இப்போது backup செய்", - "Periodically perform a backup of the installed packages": "install செய்யப்பட்ட packages க்கான backup ஐ காலந்தோறும் செய்", + "Open backup location": "காப்புப்பிரதி இருப்பிடத்தைத் திற", + "Open existing bundle": "ஏற்கனவே உள்ள பண்டிலைத் திற", + "Open the welcome wizard": "வரவேற்பு வழிகாட்டியைத் திற", + "Operation cancelled": "செயல்பாடு ரத்து செய்யப்பட்டது", + "Options saved": "விருப்பங்கள் சேமிக்கப்பட்டன", + "Package Manager": "தொகுப்பு மேலாளர்", + "Package managers": "தொகுப்பு மேலாளர்கள்", + "Package {name} from {manager}": "{manager} இலிருந்து தொகுப்பு {name}", + "Packages": "தொகுப்புகள்", + "Packages found: {0}": "கண்டறியப்பட்ட தொகுப்புகள்: {0}", + "Paste a valid URL to the database": "தரவுத்தளத்திற்கு செல்லுபடியாகும் URL ஐ ஒட்டவும்", + "Perform a backup now": "இப்போது காப்புப்பிரதி எடு", + "Periodically perform a backup of the installed packages": "நிறுவப்பட்ட தொகுப்புகளுக்கான காப்புப்பிரதியை காலம்தோறும் எடு", "Please enter at least 3 characters": "குறைந்தது 3 எழுத்துகளை உள்ளிடவும்", "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "இந்த machine இல் இயங்கும் package managers காரணமாக சில packages install செய்ய முடியாமல் இருக்கலாம் என்பதை கவனிக்கவும்.", "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "சில sources இலிருந்து வரும் packages export செய்ய முடியாமல் இருக்கலாம் என்பதை கவனிக்கவும். அவை greyed out செய்யப்பட்டுள்ளன, export செய்யப்படமாட்டாது.", @@ -870,8 +950,8 @@ "Portable": "portable", "Publication date:": "வெளியீட்டு தேதி:", "Quit WingetUI": "UniGetUI யிலிருந்து வெளியேறு", - "Release notes URL:": "release notes URL:", - "Release notes:": "release notes:", + "Release notes URL:": "வெளியீட்டு குறிப்புகள் URL:", + "Release notes:": "வெளியீட்டு குறிப்புகள்:", "Reload": "மீண்டும் ஏற்று", "Removal failed": "அகற்றல் தோல்வியடைந்தது", "Removal succeeded": "அகற்றல் வெற்றியடைந்தது", @@ -924,17 +1004,17 @@ "Skip the hash check when updating the selected packages": "தேர்ந்தெடுக்கப்பட்ட packages ஐ update செய்யும் போது hash check ஐ தவிர்", "Source addition failed": "source சேர்த்தல் தோல்வியடைந்தது", "Source removal failed": "source அகற்றல் தோல்வியடைந்தது", - "Source:": "source:", + "Source:": "மூலம்:", "Start": "தொடங்கு", "Starting daemons...": "daemons தொடங்கப்படுகின்றன...", - "Startup options": "startup options", + "Startup options": "தொடக்க விருப்பங்கள்", "Status": "நிலை", "Stuck here? Skip initialization": "இங்கே சிக்கியுள்ளீர்களா? initialization ஐத் தவிர்க்கவும்", "Suport the developer": "developer ஐ ஆதரி", "Support me": "என்னை ஆதரி", "Support the developer": "developer ஐ ஆதரி", "Systems are now ready to go!": "systems இப்போது தயாராக உள்ளன!", - "Text file": "text file", + "Text file": "உரை கோப்பு", "Thank you 😉": "நன்றி 😉", "The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "installer இன் checksum எதிர்பார்க்கப்பட்ட value உடன் பொருந்தவில்லை, மேலும் installer இன் உண்மைத்தன்மையை சரிபார்க்க முடியவில்லை. publisher மீது நம்பிக்கை இருந்தால், hash check ஐ தவிர்த்து package ஐ மீண்டும் {0} செய்யவும்.", "The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "பின்வரும் packages ஒரு JSON file க்கு export செய்யப்படுகின்றன. user data அல்லது binaries எதுவும் சேமிக்கப்படமாட்டாது.", @@ -1014,7 +1094,7 @@ "WingetUI - {0} updates are available": "UniGetUI - {0} updates கிடைக்கின்றன", "WingetUI - {0} {1}": "UniGetUI - {0} {1} நிலை", "WingetUI Homepage - Share this link!": "UniGetUI முகப்புப்பக்கம் - இந்த link ஐப் பகிருங்கள்!", - "WingetUI Settings File": "UniGetUI settings file", + "WingetUI Settings File": "UniGetUI அமைப்புகள் கோப்பு", "WingetUI autostart behaviour, application launch settings": "UniGetUI autostart நடத்தை, application launch settings", "WingetUI can check if your software has available updates, and install them automatically if you want to": "உங்கள் software க்கு updates கிடைக்கிறதா என்று UniGetUI சரிபார்த்து, நீங்கள் விரும்பினால் அவற்றை தானாக install செய்ய முடியும்", "WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI machine translation செய்யப்படவில்லை. பின்வரும் users மொழிபெயர்ப்புகளுக்குப் பொறுப்பாக இருந்தனர்:", @@ -1029,7 +1109,7 @@ "WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI updates ஐ காலந்தோறும் சரிபார்க்காது. launch போது அவை இன்னும் சரிபார்க்கப்படும், ஆனால் உங்களுக்கு எச்சரிக்கை வழங்கப்படமாட்டாது.", "WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "ஒரு package install செய்ய elevation தேவைப்படும் ஒவ்வொரு முறையும் UniGetUI UAC prompt ஐக் காட்டும்.", "WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI விரைவில் {newname} என பெயரிடப்படும். இது application இல் மாற்றம் எதையும் குறிக்காது. நான் (developer) இப்போது செய்வதைப் போலவே இந்த project ஐ தொடர்ந்து மேம்படுத்துவேன், ஆனால் வேறு பெயரில்.", - "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "எங்கள் அன்பான contributors இன் உதவியில்லாமல் UniGetUI சாத்தியமாகியிருக்காது. அவர்களின் GitHub profiles ஐப் பாருங்கள்; அவர்களில்லாமல் UniGetUI சாத்தியமில்லை!", + "WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "எங்கள் அன்பான பங்களிப்பாளர்களின் உதவியில்லாமல் UniGetUI சாத்தியமாகியிருக்காது. அவர்களின் GitHub சுயவிவரங்களைப் பாருங்கள்; அவர்களில்லாமல் UniGetUI சாத்தியமில்லை!", "WingetUI {0} is ready to be installed.": "UniGetUI {0} install செய்யத் தயாராக உள்ளது.", "You may restart your computer later if you wish": "நீங்கள் விரும்பினால் உங்கள் கணினியை பின்னர் restart செய்யலாம்", "You will be prompted only once, and administrator rights will be granted to packages that request them.": "ஒருமுறை மட்டுமே prompt செய்யப்படும்; administrator rights கோரும் packages க்கு அந்த உரிமைகள் வழங்கப்படும்.", @@ -1045,7 +1125,7 @@ "update(noun)": "புதுப்பிப்பு", "update(verb)": "update செய்", "updated": "update செய்யப்பட்டது", - "{0} Uninstallation": "{0} uninstallation", + "{0} Uninstallation": "{0} நிறுவல் நீக்கம்", "{0} aborted": "{0} ரத்து செய்யப்பட்டது", "{0} can be updated": "{0} update செய்யப்படலாம்", "{0} failed": "{0} தோல்வியடைந்தது", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json index 6261ffd2f5..42b872c93d 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_th.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "ยกเลิกการถอนการติดตั้งหากคำสั่ง pre-uninstall ล้มเหลว", "Command-line to run:": "บรรทัดคำสั่งที่จะรัน:", "Save and close": "บันทึกและปิด", + "General": "ทั่วไป", + "Architecture & Location": "สถาปัตยกรรมและตำแหน่งที่ตั้ง", + "Command-line": "บรรทัดคำสั่ง", + "Pre/Post install": "ก่อน/หลังการติดตั้ง", "Run as admin": "รันด้วยสิทธิ์ผู้ดูแลระบบ", "Interactive installation": "ติดตั้งแบบอินเตอร์แอคทีฟ", "Skip hash check": "ข้ามการตรวจสอบแฮช", @@ -71,6 +75,8 @@ "Manage ignored updates": "จัดการการอัปเดตที่ถูกละเว้น", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "แพ็กเกจที่มีรายชื่อดังต่อไปนี้จะไม่ถูกตรวจสอบการอัปเดต ดับเบิลคลิกที่รายชื่อหรือคลิกที่ปุ่มทางด้านขวาของรายชื่อเพื่อยกเลิกการละเว้นการอัปเดตรายการนั้น", "Reset list": "รีเซ็ตรายการ", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "คุณต้องการรีเซ็ตรายการอัปเดตที่ถูกละเว้นจริงหรือไม่? การกระทำนี้ไม่สามารถย้อนกลับได้", + "No ignored updates": "ไม่มีการอัปเดตที่ถูกละเว้น", "Package Name": "ชื่อแพ็กเกจ", "Package ID": "แพ็กเกจ ID", "Ignored version": "เวอร์ชันที่ถูกละเว้น", @@ -86,6 +92,7 @@ "This operation is running interactively.": "การดำเนินการนี้กำลังทำงานแบบโต้ตอบ", "You will likely need to interact with the installer.": "คุณอาจต้องโต้ตอบกับตัวติดตั้ง", "Integrity checks skipped": "ข้ามขั้นตอนการตรวจสอบ", + "Integrity checks will not be performed during this operation.": "จะไม่มีการตรวจสอบความถูกต้องระหว่างการดำเนินการนี้", "Proceed at your own risk.": "โปรดดำเนินการโดยยอมรับความเสี่ยงด้วยตนเอง", "Close": "ปิด", "Loading...": "กำลังโหลด...", @@ -120,16 +127,17 @@ "optional": "ไม่บังคับ", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} พร้อมสำหรับการติดตั้ง", "The update process will start after closing UniGetUI": "กระบวนการอัปเดตจะเริ่มหลังจากปิด UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI ถูกเรียกใช้ด้วยสิทธิ์ผู้ดูแลระบบ ซึ่งไม่แนะนำ เมื่อเรียกใช้ UniGetUI ด้วยสิทธิ์ผู้ดูแลระบบ ทุกการดำเนินการที่เริ่มจาก UniGetUI จะมีสิทธิ์ผู้ดูแลระบบ คุณยังสามารถใช้โปรแกรมได้ แต่เราแนะนำอย่างยิ่งว่าไม่ควรเรียกใช้ UniGetUI ด้วยสิทธิ์ผู้ดูแลระบบ", "Share anonymous usage data": "แชร์ข้อมูลการใช้งานแบบไม่ระบุตัวตน", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI เก็บรวบรวมข้อมูลการใช้งานแบบไม่ระบุตัวตนเพื่อปรับปรุงประสบการณ์ของผู้ใช้", "Accept": "ยอมรับ", - "You have installed WingetUI Version {0}": "คุณได้ติดตั้ง UniGetUI เวอร์ชัน {0} แล้ว", + "You have installed UniGetUI Version {0}": "คุณได้ติดตั้ง UniGetUI เวอร์ชัน {0} แล้ว", "Disclaimer": "คำสงวนสิทธิ์", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI ไม่ได้มีส่วนเกี่ยวข้องกับตัวจัดการแพ็กเกจที่เข้ากันได้ใด ๆ UniGetUI เป็นโครงการอิสระ", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI คงไม่เกิดขึ้นหากไม่ได้รับความช่วยเหลือจากผู้ที่มีส่วนช่วย ขอบคุณทุกท่าน 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ใช้ไลบรารีดังต่อไปนี้ UniGetUI คงไม่อาจเกิดขึ้นได้หากไม่มีไลบรารีเหล่านี้", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI คงไม่เกิดขึ้นหากไม่ได้รับความช่วยเหลือจากผู้ที่มีส่วนช่วย ขอบคุณทุกท่าน 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI ใช้ไลบรารีดังต่อไปนี้ UniGetUI คงไม่อาจเกิดขึ้นได้หากไม่มีไลบรารีเหล่านี้", "{0} homepage": "เว็บไซต์ {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ได้รับการแปลเป็นภาษาต่าง ๆ มากกว่า 40 ภาษา ต้องขอบคุณอาสาสมัครนักแปลทุกท่าน ขอบคุณ🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ได้รับการแปลเป็นภาษาต่าง ๆ มากกว่า 40 ภาษา ต้องขอบคุณอาสาสมัครนักแปลทุกท่าน ขอบคุณ🤝", "Verbose": "รายละเอียด", "1 - Errors": "1 - ข้อผิดพลาด", "2 - Warnings": "2 - คำเตือน", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "ลงชื่อเข้าใช้ในชื่อ {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "ยอดเยี่ยม! ข้อมูลสำรองจะถูกอัปโหลดไปยัง gist ส่วนตัวในบัญชีของคุณ", "Select backup": "เลือกข้อมูลสำรอง", - "WingetUI Settings": "การตั้งค่า UniGetUI", + "UniGetUI Settings": "การตั้งค่า UniGetUI", "Allow pre-release versions": "อนุญาตเวอร์ชันก่อนใช้งานจริง (pre-release)", "Apply": "ใช้", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "ด้วยเหตุผลด้านความปลอดภัย อาร์กิวเมนต์บรรทัดคำสั่งแบบกำหนดเองจึงถูกปิดใช้งานตามค่าเริ่มต้น ไปที่การตั้งค่าความปลอดภัยของ UniGetUI เพื่อเปลี่ยนแปลงสิ่งนี้", "Go to UniGetUI security settings": "ไปยังการตั้งค่าความปลอดภัยของ UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "การตั้งค่าต่อไปนี้จะถูกนำไปใช้ทุกครั้งที่ติดตั้ง อัปเดต หรือลบแพ็กเกจ {0}", "Package's default": "ค่าเริ่มต้นของแพ็กเกจ", @@ -160,6 +169,7 @@ "Username": "บัญชีผู้ใช้", "Password": "รหัสผ่าน", "Credentials": "ข้อมูลรับรอง (Credentials)", + "It is not guaranteed that the provided credentials will be stored safely": "ไม่สามารถรับประกันได้ว่าข้อมูลรับรองที่ระบุจะถูกจัดเก็บอย่างปลอดภัย", "Partially": "บางส่วน", "Package manager": "ตัวจัดการแพ็กเกจ", "Compatible with proxy": "รองรับพร็อกซี", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} ถูกเปิดใช้งานและพร้อมใช้งานแล้ว", "{pm} version:": "{pm} เวอร์ชัน:", "{pm} was not found!": "ไม่พบ {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "คุณจำเป็นต้องติดตั้ง {pm} เพื่อใช้งานร่วมกับ UniGetUI", - "Scoop Installer - WingetUI": "ตัวติดตั้ง Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "ตัวถอนการติดตั้ง Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "กำลังล้างแคช Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "คุณจำเป็นต้องติดตั้ง {pm} เพื่อใช้งานร่วมกับ UniGetUI", + "Scoop Installer - UniGetUI": "ตัวติดตั้ง Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "ตัวถอนการติดตั้ง Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "กำลังล้างแคช Scoop - UniGetUI", + "Restart UniGetUI to fully apply changes": "รีสตาร์ท UniGetUI เพื่อให้การเปลี่ยนแปลงมีผลอย่างสมบูรณ์", "Restart UniGetUI": "รีสตาร์ท UniGetUI", "Manage {0} sources": "จัดการ {0} แหล่งข้อมูล", "Add source": "เพิ่มซอร์ซ", "Add": "เพิ่ม", + "Source name": "ชื่อซอร์ซ", + "Source URL": "URL ของซอร์ซ", "Other": "อื่น ๆ", + "No minimum age": "ไม่มีอายุขั้นต่ำ", "1 day": "1 วัน", "{0} days": "{0} วัน", + "Custom...": "กำหนดเอง...", "{0} minutes": "{0} นาที", "1 hour": "1 ชั่วโมง", "{0} hours": "{0} ชั่วโมง", "1 week": "1 สัปดาห์", - "WingetUI Version {0}": "UniGetUI เวอร์ชัน {0}", + "Supports release dates": "รองรับวันที่เผยแพร่", + "Release date support per package manager": "การรองรับวันที่เผยแพร่ของตัวจัดการแพ็กเกจแต่ละตัว", + "UniGetUI Version {0}": "UniGetUI เวอร์ชัน {0}", "Search for packages": "ค้นหาแพ็กเกจ", "Local": "เฉพาะที่", "OK": "โอเค", @@ -200,11 +217,13 @@ "Enabled": "เปิดใช้งาน", "Disabled": "ปิดใช้งาน", "More info": "ข้อมูลเพิ่มเติม", + "GitHub account": "บัญชี GitHub", "Log in with GitHub to enable cloud package backup.": "ลงชื่อเข้าใช้ด้วย GitHub เพื่อสำรองข้อมูลแพ็กเกจบนคลาวด์", "More details": "รายละเอียดเพิ่มเติม", "Log in": "ลงชื่อเข้าใช้", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "หากคุณเปิดใช้งานการสำรองข้อมูลบนคลาวด์ ข้อมูลจะถูกบันทึกเป็น GitHub Gist ในบัญชีนี้", "Log out": "ออกจากระบบ", + "About UniGetUI": "เกี่ยวกับ UniGetUI", "About": "เกี่ยวกับ", "Third-party licenses": "ใบอนุญาตของบุคคลภายนอก", "Contributors": "ผู้ที่มีส่วนช่วย", @@ -212,6 +231,7 @@ "Manage shortcuts": "จัดการทางลัด", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI ตรวจพบทางลัดบนเดสก์ท็อปต่อไปนี้ซึ่งสามารถลบโดยอัตโนมัติได้ในการอัปเกรดครั้งถัดไป", "Do you really want to reset this list? This action cannot be reverted.": "คุณแน่ใจที่จะรีเซ็ตรายการนี้หรือไม่? การกระทำนี้ไม่สามารถเรียกคืนได้", + "Open in explorer": "เปิดใน Explorer", "Remove from list": "ลบออกจากรายการ", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "เมื่อตรวจพบทางลัดใหม่ ให้ลบโดยอัตโนมัติแทนการแสดงกล่องโต้ตอบนี้", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI เก็บรวบรวมข้อมูลการใช้งานแบบไม่ระบุตัวตนเพื่อจุดประสงค์เดียวในการทำความเข้าใจและปรับปรุงประสบการณ์ของผู้ใช้", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "คุณยินยอมให้ UniGetUI เก็บและส่งข้อมูลสถิติการใช้งานแบบไม่เปิดเผยตัวตน เพื่อจุดประสงค์ในการพัฒนาและปรับปรุงประสบการณ์ของผู้ใช้ หรือไม่?", "Decline": "ปฏิเสธ", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "ไม่มีการเก็บรวบรวมหรือส่งข้อมูลส่วนบุคคล และข้อมูลที่เก็บรวบรวมจะถูกทำให้ไม่ระบุตัวตน จึงไม่สามารถติดตามกลับไปถึงคุณได้", - "About WingetUI": "เกี่ยวกับ UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI เป็นแอปพลิเคชันที่ทำให้การจัดการซอฟต์แวร์ของคุณง่ายขึ้น โดยมอบอินเทอร์เฟซผู้ใช้แบบกราฟิกที่ครอบคลุมสำหรับตัวจัดการแพ็กเกจบรรทัดคำสั่งของคุณ", + "Toggle navigation panel": "สลับแผงนำทาง", + "Minimize": "ย่อ", + "Maximize": "ขยาย", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI เป็นแอปพลิเคชันที่ทำให้การจัดการซอฟต์แวร์ของคุณง่ายขึ้น โดยมอบอินเทอร์เฟซผู้ใช้แบบกราฟิกที่ครอบคลุมสำหรับตัวจัดการแพ็กเกจบรรทัดคำสั่งของคุณ", "Useful links": "ลิงก์ที่เป็นประโยชน์", + "UniGetUI Homepage": "หน้าแรกของ UniGetUI", "Report an issue or submit a feature request": "รายงานปัญหาหรือส่งคำขอคุณสมบัติใหม่", + "UniGetUI Repository": "ที่เก็บโค้ดของ UniGetUI", "View GitHub Profile": "ดูโปรไฟล์ GitHub", - "WingetUI License": "ใบอนุญาต UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "การใช้ UniGetUI ถือว่าเป็นการการยอมรับสัญญาอนุญาตเอ็มไอที (MIT License)", + "UniGetUI License": "ใบอนุญาต UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "การใช้ UniGetUI ถือว่าเป็นการการยอมรับสัญญาอนุญาตเอ็มไอที (MIT License)", "Become a translator": "มาเป็นผู้แปล", "View page on browser": "ดูหน้านี้บนเบราว์เซอร์", "Copy to clipboard": "คัดลอกไปยังคลิปบอร์ด", "Export to a file": "ส่งออกไปยังไฟล์", "Log level:": "ระดับบันทึก:", "Reload log": "รีโหลดบันทึก", + "Export log": "ส่งออกบันทึก", + "UniGetUI Log": "บันทึกของ UniGetUI", "Text": "ข้อความ", "Change how operations request administrator rights": "เปลี่ยนวิธีที่การดำเนินการขอสิทธิ์ผู้ดูแลระบบ", "Restrictions on package operations": "ข้อจำกัดของการดำเนินการแพ็กเกจ", @@ -271,7 +297,7 @@ "Leave empty for default": "เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น", "Add a timestamp to the backup file names": "เพิ่มการบันทึกเวลาในชื่อไฟล์สำรองข้อมูล", "Backup and Restore": "สำรองข้อมูลและกู้คืน", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "เปิดใช้งาน API พื้นหลัง (Widgets สำหรับ UniGetUI และการแชร์ พอร์ต 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "เปิดใช้งาน API พื้นหลัง (Widgets สำหรับ UniGetUI และการแชร์ พอร์ต 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "รอให้อุปกรณ์เชื่อมต่ออินเทอร์เน็ตก่อนที่จะพยายามทำงานที่ต้องใช้การเชื่อมต่ออินเทอร์เน็ต", "Disable the 1-minute timeout for package-related operations": "ปิดใช้งานการหมดเวลา 1 นาทีในการดำเนินการแพ็กเกจ", "Use installed GSudo instead of UniGetUI Elevator": "ใช้ GSudo ที่ติดตั้งไว้แทน UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "ข้อมูลการใช้งาน", "Manage UniGetUI settings": "จัดการการตั้งค่า UniGetUI", "Related settings": "การตั้งค่าที่เกี่ยวข้อง", - "Update WingetUI automatically": "อัปเดต UniGetUI โดยอัตโนมัติ", + "Update UniGetUI automatically": "อัปเดต UniGetUI โดยอัตโนมัติ", "Check for updates": "ตรวจสอบการอัปเดต", "Install prerelease versions of UniGetUI": "ติดตั้งพรีเวอร์ชัน (Pre-Release) ของ UniGetUI", "Manage telemetry settings": "จัดการการตั้งค่า telemetry", @@ -295,17 +321,17 @@ "Import": "นำเข้า", "Export settings to a local file": "ส่งออกการตั้งค่าไปยังไฟล์ในเครื่อง", "Export": "ส่งออก", - "Reset WingetUI": "รีเซ็ต UniGetUI", "Reset UniGetUI": "รีเซ็ต UniGetUI", "User interface preferences": "การตั้งค่าอินเตอร์เฟซผู้ใช้", "Application theme, startup page, package icons, clear successful installs automatically": "ธีมแอปพลิเคชัน, หน้าเริ่มต้น, ไอคอนแพ็กเกจ, ล้างการติดตั้งที่สำเร็จโดยอัตโนมัติ", "General preferences": "การตั้งค่า", - "WingetUI display language:": "ภาษาที่แสดงใน UniGetUI:", + "UniGetUI display language:": "ภาษาที่แสดงใน UniGetUI:", "Is your language missing or incomplete?": "ไม่พบภาษาของคุณหรือการแปลในภาษาของคุณยังไม่สมบูรณ์ใช่ไหม", "Appearance": "การแสดงผล", "UniGetUI on the background and system tray": "UniGetUI ในพื้นหลังและถาดระบบ", "Package lists": "รายการแพ็กเกจ", "Close UniGetUI to the system tray": "ย่อ UniGetUI ไปที่แถบไอคอน", + "Manage UniGetUI autostart behaviour": "จัดการพฤติกรรมการเริ่มอัตโนมัติของ UniGetUI", "Show package icons on package lists": "แสดงแพ็คเกจไอค่อนในรายการแพ็คแกจ", "Clear cache": "ล้างแคช", "Select upgradable packages by default": "เลือกแพ็กเกจที่อัปเกรดได้ตามค่าเริ่มต้น", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "โปรดทราบว่าอาจมีตัวจัดการแพ็กเกจบางตัวที่ไม่รองรับฟีเจอร์นี้อย่างสมบูรณ์", "Proxy URL": "URL ของพร็อกซี", "Enter proxy URL here": "กรอก URL ของ proxy ที่นี่", + "Authenticate to the proxy with a user and a password": "ยืนยันตัวตนกับพร็อกซีด้วยชื่อผู้ใช้และรหัสผ่าน", + "Internet and proxy settings": "การตั้งค่าอินเทอร์เน็ตและพร็อกซี", "Package manager preferences": "การตั้งค่าตัวจัดการแพ็กเกจ", "Ready": "พร้อม", "Not found": "ไม่พบ", "Notification preferences": "การตั้งค่าการแจ้งเตือน", "Notification types": "ประเภทการแจ้งเตือน", "The system tray icon must be enabled in order for notifications to work": "ต้องเปิดใช้งานไอคอนถาดระบบเพื่อให้การแจ้งเตือนทำงานได้", - "Enable WingetUI notifications": "เปิดการแจ้งเตือน UniGetUI", + "Enable UniGetUI notifications": "เปิดการแจ้งเตือน UniGetUI", "Show a notification when there are available updates": "แสดงการแจ้งเตือนเมื่อพบอัปเดต", "Show a silent notification when an operation is running": "แสดงการแจ้งเตือนแบบเงียบเมื่อมีการดำเนินการอยู่", "Show a notification when an operation fails": "แสดงการแจ้งเตือนเมื่อการดำเนินการล้มเหลว", "Show a notification when an operation finishes successfully": "แสดงการแจ้งเตือนเมื่อการดำเนินการเสร็จสิ้นสำเร็จ", "Concurrency and execution": "การทำงานพร้อมกันและการดำเนินการ", "Automatic desktop shortcut remover": "เครื่องมือลบทางลัดหน้าจออัตโนมัติ", + "Choose how many operations should be performed in parallel": "เลือกจำนวนการดำเนินการที่ควรทำพร้อมกัน", "Clear successful operations from the operation list after a 5 second delay": "ล้างการดำเนินการที่สำเร็จออกจากรายการ หลังจากเวลาผ่านไป 5 วินาที", "Download operations are not affected by this setting": "การดาวน์โหลดไม่ได้รับผลกระทบจากการตั้งค่านี้", "Try to kill the processes that refuse to close when requested to": "พยายามปิดโปรเซสที่ปฏิเสธการปิดเมื่อมีการร้องขอ", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "เลือกไฟล์ปฏิบัติการที่จะใช้ รายการต่อไปนี้แสดงไฟล์ปฏิบัติการที่ UniGetUI พบ", "Current executable file:": "ไฟล์ปฏิบัติการปัจจุบัน:", "Ignore packages from {pm} when showing a notification about updates": "ละเว้นแพ็กเกจจาก {pm} เมื่อแสดงการแจ้งเตือนเกี่ยวกับการอัปเดต", + "Update security": "ความปลอดภัยของการอัปเดต", + "Use global setting": "ใช้การตั้งค่าส่วนกลาง", + "e.g. 10": "เช่น 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} ไม่มีวันที่เผยแพร่สำหรับแพ็กเกจของตน ดังนั้นการตั้งค่านี้จะไม่มีผล", + "Override the global minimum update age for this package manager": "แทนที่อายุขั้นต่ำของการอัปเดตส่วนกลางสำหรับตัวจัดการแพ็กเกจนี้", + "Minimum age for updates": "อายุขั้นต่ำของการอัปเดต", + "Custom minimum age (days)": "อายุขั้นต่ำแบบกำหนดเอง (วัน)", "View {0} logs": "ดูบันทึกของ {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "หากไม่พบ Python หรือ Python ไม่แสดงรายการแพ็กเกจทั้งที่ติดตั้งอยู่ในระบบแล้ว ", "Advanced options": "ตัวเลือกขั้นสูง", "Reset WinGet": "รีเซ็ต WinGet", "This may help if no packages are listed": "สิ่งนี้อาจช่วยได้หากไม่มีแพ็กเกจแสดงในรายการ", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "เปิดใช้งานการล้างข้อมูล Scoop เมื่อเปิดโปรแกรม", "Use system Chocolatey": "ใช้ Chocolatey ในระบบ", "Default vcpkg triplet": "vcpkg triplet ค่าเริ่มต้น", + "Change vcpkg root location": "เปลี่ยนตำแหน่งรากของ vcpkg", "Language, theme and other miscellaneous preferences": "การตั้งค่าภาษา ธีม และการตั้งค่าอื่น ๆ ที่เกี่ยวข้อง", "Show notifications on different events": "แสดงการแจ้งเตือนเกี่ยวกับเหตุการณ์ต่าง ๆ", "Change how UniGetUI checks and installs available updates for your packages": "เปลี่ยนวิธีที่ UniGetUI ตรวจสอบและติดตั้งการอัปเดตที่พร้อมใช้งานสำหรับแพ็กเกจของคุณ", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "ไม่ติดตั้งการอัปเดตโดยอัตโนมัติเมื่อการเชื่อมต่อเครื่อข่ายคิดราคาการใช้งาน", "Do not automatically install updates when the device runs on battery": "อย่าติดตั้งการอัปเดตโดยอัตโนมัติเมื่ออุปกรณ์กำลังใช้แบตเตอรี่", "Do not automatically install updates when the battery saver is on": "ไม่ติดตั้งการอัปเดตโดยอัตโนมัติเมื่อเปิดโหมดประหยัดแบตเตอรี่", + "Only show updates that are at least the specified number of days old": "แสดงเฉพาะการอัปเดตที่มีอายุอย่างน้อยตามจำนวนวันที่ระบุ", "Change how UniGetUI handles install, update and uninstall operations.": "กำหนดวิธีการจัดการการติดตั้ง อัปเดต และการถอนการติดตั้งของ UniGetUI", "Package Managers": "ตัวจัดการแพ็กเกจ", "More": "เพิ่มเติม", - "WingetUI Log": "บันทึก UniGetUI", "Package Manager logs": "บันทึกการทำงานของตัวจัดการแพ็กเกจ", "Operation history": "ประวัติการดำเนินการ", "Help": "ความช่วยเหลือ", + "Quit UniGetUI": "ออกจาก UniGetUI", "Order by:": "เรียงลำดับโดย:", "Name": "ชื่อ", "Id": "ไอดี", @@ -409,6 +448,10 @@ "Both": "ทั้งคู่", "Exact match": "ตรงทั้งหมด", "Show similar packages": "แสดงแพ็กเกจที่คล้ายกัน", + "Nothing to share": "ไม่มีสิ่งที่จะแชร์", + "Please select a package first.": "โปรดเลือกแพ็กเกจก่อน", + "Share link copied": "คัดลอกลิงก์แชร์แล้ว", + "The share link for {0} has been copied to the clipboard.": "คัดลอกลิงก์แชร์สำหรับ {0} ไปยังคลิปบอร์ดแล้ว", "No results were found matching the input criteria": "ไม่พบผลลัพธ์ที่ตรงกับเกณฑ์การค้นหา", "No packages were found": "ไม่พบแพ็กเกจ", "Loading packages": "กำลังโหลดแพ็กเกจ", @@ -440,7 +483,11 @@ "Package bundle": "แพ็กเกจบันเดิล", "Could not create bundle": "ไม่สามารถสร้างชุดแพ็กเกจ(บันเดิล)ได้", "The package bundle could not be created due to an error.": "ไม่สามารถสร้างบันเดิลแพ็กเกจได้เนื่องจากเกิดข้อผิดพลาด", + "Unsaved changes": "การเปลี่ยนแปลงที่ยังไม่ได้บันทึก", + "Discard changes": "ละทิ้งการเปลี่ยนแปลง", + "You have unsaved changes in the current bundle. Do you want to discard them?": "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกในบันเดิลปัจจุบัน คุณต้องการละทิ้งการเปลี่ยนแปลงเหล่านั้นหรือไม่", "Bundle security report": "รายงานความปลอดภัยของบันเดิล", + "The bundle contained restricted content": "บันเดิลมีเนื้อหาที่ถูกจำกัด", "Hooray! No updates were found.": "ไชโย! ไม่พบการอัปเดต", "Everything is up to date": "ทุกอย่างได้รับการอัปเดตแล้ว", "Uninstall selected packages": "ถอนการติดตั้งแพ็กเกจที่เลือก", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "ตัวจัดการแพ็กเกจสุดคลาสสิกสำหรับ Windows คุณสามารถหาทุกอย่างได้ที่นี่
ประกอบด้วย: ซอฟต์แวร์ทั่วไป", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "คลังข้อมูลที่เต็มไปด้วยเครื่องมือและโปรแกรมสั่งทำการที่ออกแบบมาโดยคำนึงถึงระบบนิเวศ .NET ของ Microsoft
ประกอบด้วย: เครื่องมือและสคริปต์ที่เกี่ยวข้องกับ .NET", "NuPkg (zipped manifest)": "NuPkg (ไฟล์ Manifest ที่บีบอัด)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "ตัวจัดการแพ็กเกจที่ขาดหายไปสำหรับ macOS (หรือ Linux)
ประกอบด้วย: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "ตัวจัดการแพ็กเกจ Node JS ที่เต็มไปด้วยไลบรารีและเครื่องมืออื่น ๆ ที่เกี่ยวข้องกับ JavaScript
ประกอบด้วย: ไลบรารี JavaScript และเครื่องมือที่เกี่ยวข้องอื่น ๆ", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "ตัวจัดการไลบรารีของ Python ที่เต็มไปด้วยไลบรารี Python และเครื่องมือที่เกี่ยวข้องกับ Python อื่น ๆ
ประกอบด้วย: ไลบรารี Python และเครื่องมือที่เกี่ยวข้องกับ Python", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "ตัวจัดการแพ็กเกจของ PowerShell ค้นหาไลบรารีและสคริปต์เพื่อเพิ่มขีดความสามารถของ PowerShell
ประกอบด้วย: โมดูล, สคริปต์, Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "การดำเนินการอยู่ในคิว (ลำดับที่ {0})...", "Click here for more details": "คลิกที่นี่เพื่อดูรายละเอียดเพิ่มเติม", "Operation canceled by user": "ผู้ใช้ยกเลิกการดำเนินการ", + "Running PreOperation ({0}/{1})...": "กำลังเรียกใช้ PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} จาก {1} ล้มเหลว และถูกทำเครื่องหมายว่าจำเป็น กำลังยกเลิก...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} จาก {1} เสร็จสิ้นด้วยผลลัพธ์ {2}", "Starting operation...": "กำลังเริ่มการดำเนินการ...", + "Running PostOperation ({0}/{1})...": "กำลังเรียกใช้ PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} จาก {1} ล้มเหลว และถูกทำเครื่องหมายว่าจำเป็น กำลังยกเลิก...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} จาก {1} เสร็จสิ้นด้วยผลลัพธ์ {2}", "{package} installer download": "ดาวน์โหลดตัวติดตั้ง {package}", "{0} installer is being downloaded": "กำลังดาวน์โหลดตัวติดตั้ง {0}", "Download succeeded": "ดาวน์โหลดสำเร็จ", @@ -556,14 +610,12 @@ "Portable mode": "โหมดพกพา\n", "DEBUG BUILD": "บิลด์ดีบัก", "Available Updates": "การอัปเดตที่พร้อมใช้งาน", - "Show WingetUI": "แสดง UniGetUI", + "Show UniGetUI": "แสดง UniGetUI", "Quit": "ออก", "Attention required": "ต้องการความสนใจ", "Restart required": "จำเป็นต้องรีสตาร์ท", "1 update is available": "มีการอัปเดต 1 รายการ", "{0} updates are available": "มีการอัปเดตที่พร้อมใช้งาน {0} รายการ", - "WingetUI Homepage": "เว็บไซต์ UniGetUI", - "WingetUI Repository": "คลังข้อมูล UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "คุณสามารถเปลี่ยนแปลงพฤติกรรมของ UniGetUI สำหรับทางลัดเหล่านี้ การเลือกทางลัดจะให้ UniGetUI ลบทางลัดนั้นหากมีการสร้างขึ้นในการอัปเกรดครั้งต่อไป การไม่เลือกจะคงทางลัดไว้เหมือนเดิม", "Manual scan": "สแกนด้วยตนเอง", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "ทางลัดที่มีอยู่บนหน้าจอของคุณจะถูกสแกน และคุณจะต้องเลือกว่าจะเก็บอันไหนและลบอันไหน", @@ -583,7 +635,6 @@ "Restart later": "รีสตาร์ททีหลัง", "An error occurred:": "เกิดข้อผิดพลาด:", "I understand": "ฉันเข้าใจแล้ว", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ถูกเรียกใช้ในฐานะผู้ดูแลระบบ ซึ่งไม่แนะนำให้ทำ เมื่อเรียกใช้ UniGetUI ในฐานะผู้ดูแลระบบ ทุกการดำเนินการที่เริ่มจาก UniGetUI จะได้รับสิทธิ์ผู้ดูแลระบบ คุณยังคงสามารถใช้โปรแกรมนี้ได้ แต่เราขอแนะนำอย่างยิ่งว่าอย่าใช้งาน UniGetUI ด้วยสิทธิ์ผู้ดูแลระบบ", "WinGet was repaired successfully": "ซ่อมแซม WinGet สำเร็จ", "It is recommended to restart UniGetUI after WinGet has been repaired": "แนะนำให้รีสตาร์ท UniGetUI หลังจากซ่อมแซม WinGet แล้ว", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "หมายเหตุ: ตัวช่วยแก้ปัญหานี้สามารถปิดได้ที่การตั้งค่า UniGetUI ในส่วน WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. แพ็กเกจของคุณจะถูกเพิ่มลงในชุดแพ็กเกจเรียบร้อยแล้ว คุณสามารถเพิ่มแพ็กเกจต่อไปได้ หรือส่งออกชุดแพ็กเกจนี้", "Which backup do you want to open?": "คุณต้องการเปิดข้อมูลสำรองใด", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "เลือกข้อมูลสำรองที่คุณต้องการเปิด หลังจากนั้นคุณจะสามารถตรวจสอบได้ว่าต้องการติดตั้งแพ็กเกจใด", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "มีการดำเนินงานอยู่ในขณะนี้ การออกจาก UniGetUI อาจทำให้การทำงานล้มเหลว คุณต้องการดำเนินการต่อหรือไม่", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "มีการดำเนินงานอยู่ในขณะนี้ การออกจาก UniGetUI อาจทำให้การทำงานล้มเหลว คุณต้องการดำเนินการต่อหรือไม่", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI หรือส่วนประกอบบางอย่างสูญหายหรือเสียหาย", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "ขอแนะนำอย่างยิ่งให้ติดตั้ง UniGetUI ใหม่เพื่อแก้ไขสถานการณ์นี้", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "โปรดดูบันทึกของ UniGetUI เพื่อรับรายละเอียดเพิ่มเติมเกี่ยวกับไฟล์ที่ได้รับผลกระทบ", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "เขียนชื่อโปรเซสที่นี่ โดยคั่นด้วยเครื่องหมายจุลภาค (,)", "Unset or unknown": "ยังไม่ได้ตั้งค่าหรือไม่ทราบ", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "โปรดดูเอาต์พุตบรรทัดคำสั่งหรืออ้างอิงประวัติการดำเนินการสำหรับข้อมูลเพิ่มเติมเกี่ยวกับปัญหานี้", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "แพ็กเกจนี้ไม่มีภาพหน้าจอหรือขาดไอคอนใช่ไหม ขอเชิญมีส่วนร่วมกับ UniGetUI โดยการเพิ่มไอคอนและภาพหน้าจอที่ขาดหายไปในฐานข้อมูลสาธารณะแบบเปิดของเรา", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "แพ็กเกจนี้ไม่มีภาพหน้าจอหรือขาดไอคอนใช่ไหม ขอเชิญมีส่วนร่วมกับ UniGetUI โดยการเพิ่มไอคอนและภาพหน้าจอที่ขาดหายไปในฐานข้อมูลสาธารณะแบบเปิดของเรา", "Become a contributor": "มาเป็นผู้ร่วมให้ข้อมูล", "Save": "บันทึก", "Update to {0} available": "มีอัปเดตสำหรับ {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "เปิดใช้ WinGet troubleshooter อัตโนมัติ", "Enable an [experimental] improved WinGet troubleshooter": "เปิดใช้ [experimental] เพื่อปรับปรุง WinGet troubleshooter", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "เพิ่มรายการอัปเดตที่ไม่สำเร็จด้วยข้อความ ‘ไม่พบการอัปเดตที่เหมาะสม’ ลงในรายการอัปเดตที่ถูกละเว้น", - "Restart WingetUI to fully apply changes": "รีสตาร์ท UniGetUI เพื่อให้การเปลี่ยนแปลงทั้งหมดเป็นผลสมบูรณ์", - "Restart WingetUI": "รีสตาร์ท UniGetUI", "Invalid selection": "การเลือกไม่ถูกต้อง", "No package was selected": "ไม่มีแพ็กเกจที่ถูกเลือก", "More than 1 package was selected": "มีการเลือกมากกว่า 1 แพ็กเกจ", @@ -684,6 +733,37 @@ "Log out failed: ": "ออกจากระบบไม่สำเร็จ:", "Package backup settings": "การตั้งค่าการสำรองข้อมูลแพ็กเกจ", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "เกี่ยวกับ UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI เป็นแอปพลิเคชันที่ทำให้การจัดการซอฟต์แวร์ของคุณง่ายขึ้น โดยมอบอินเทอร์เฟซผู้ใช้แบบกราฟิกที่ครอบคลุมสำหรับตัวจัดการแพ็กเกจบรรทัดคำสั่งของคุณ", + "You have installed WingetUI Version {0}": "คุณได้ติดตั้ง UniGetUI เวอร์ชัน {0} แล้ว", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI คงไม่เกิดขึ้นหากไม่ได้รับความช่วยเหลือจากผู้ที่มีส่วนช่วย ขอบคุณทุกท่าน 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI ใช้ไลบรารีดังต่อไปนี้ UniGetUI คงไม่อาจเกิดขึ้นได้หากไม่มีไลบรารีเหล่านี้", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI ได้รับการแปลเป็นภาษาต่าง ๆ มากกว่า 40 ภาษา ต้องขอบคุณอาสาสมัครนักแปลทุกท่าน ขอบคุณ🤝", + "WingetUI Settings": "การตั้งค่า UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "คุณจำเป็นต้องติดตั้ง {pm} เพื่อใช้งานร่วมกับ UniGetUI", + "Scoop Installer - WingetUI": "ตัวติดตั้ง Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "ตัวถอนการติดตั้ง Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "กำลังล้างแคช Scoop - UniGetUI", + "WingetUI Version {0}": "UniGetUI เวอร์ชัน {0}", + "WingetUI License": "ใบอนุญาต UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "การใช้ UniGetUI ถือว่าเป็นการการยอมรับสัญญาอนุญาตเอ็มไอที (MIT License)", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "เปิดใช้งาน API พื้นหลัง (Widgets สำหรับ UniGetUI และการแชร์ พอร์ต 7058)", + "Update WingetUI automatically": "อัปเดต UniGetUI โดยอัตโนมัติ", + "Reset WingetUI": "รีเซ็ต UniGetUI", + "WingetUI display language:": "ภาษาที่แสดงใน UniGetUI:", + "Manage WingetUI autostart behaviour": "จัดการพฤติกรรมการเริ่มอัตโนมัติของ WingetUI", + "Enable WingetUI notifications": "เปิดการแจ้งเตือน UniGetUI", + "WingetUI Log": "บันทึก UniGetUI", + "Show WingetUI": "แสดง UniGetUI", + "WingetUI Homepage": "เว็บไซต์ UniGetUI", + "WingetUI Repository": "คลังข้อมูล UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI ถูกเรียกใช้ในฐานะผู้ดูแลระบบ ซึ่งไม่แนะนำให้ทำ เมื่อเรียกใช้ UniGetUI ในฐานะผู้ดูแลระบบ ทุกการดำเนินการที่เริ่มจาก UniGetUI จะได้รับสิทธิ์ผู้ดูแลระบบ คุณยังคงสามารถใช้โปรแกรมนี้ได้ แต่เราขอแนะนำอย่างยิ่งว่าอย่าใช้งาน UniGetUI ด้วยสิทธิ์ผู้ดูแลระบบ", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "มีการดำเนินงานอยู่ในขณะนี้ การออกจาก UniGetUI อาจทำให้การทำงานล้มเหลว คุณต้องการดำเนินการต่อหรือไม่", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "แพ็กเกจนี้ไม่มีภาพหน้าจอหรือขาดไอคอนใช่ไหม ขอเชิญมีส่วนร่วมกับ UniGetUI โดยการเพิ่มไอคอนและภาพหน้าจอที่ขาดหายไปในฐานข้อมูลสาธารณะแบบเปิดของเรา", + "Restart WingetUI to fully apply changes": "รีสตาร์ท UniGetUI เพื่อให้การเปลี่ยนแปลงทั้งหมดเป็นผลสมบูรณ์", + "Restart WingetUI": "รีสตาร์ท UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "จัดการตัวเลือกการเริ่มโดยอัตโนมัติของ UniGetUI จากแอปการตั้งค่า", "(Number {0} in the queue)": "(ลำดับ {0} ในคิว)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@dulapahv, @apaeisara, @rikoprushka, @vestearth, @hanchain", "0 packages found": "พบ 0 แพ็กเกจ", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tg.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tl.json similarity index 91% rename from src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tg.json rename to src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tl.json index a5b2cd914c..260dc9362d 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tg.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tl.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "I-abort ang uninstall kung pumalya ang pre-uninstall command", "Command-line to run:": "Command-line na tatakbuhin:", "Save and close": "I-save at isara", + "General": "Pangkalahatan", + "Architecture & Location": "Arkitektura at Lokasyon", + "Command-line": "Linya ng command", + "Pre/Post install": "Bago/Pagkatapos ng pag-install", "Run as admin": "Patakbuhin bilang admin", "Interactive installation": "Interactive na installation", "Skip hash check": "Laktawan ang hash check", @@ -71,6 +75,8 @@ "Manage ignored updates": "Pamahalaan ang mga in-ignore na update", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Ang mga package na nakalista rito ay hindi isasama kapag naghahanap ng mga update. I-double-click ang mga ito o i-click ang button sa kanan nila para itigil ang pag-ignore sa kanilang mga update.", "Reset list": "I-reset ang listahan", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Gusto mo ba talagang i-reset ang listahan ng mga binalewalang update? Hindi na maibabalik ang pagkilos na ito.", + "No ignored updates": "Walang binalewalang update", "Package Name": "Pangalan ng Package", "Package ID": "ID ng Package", "Ignored version": "In-ignore na bersyon", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ang operasyong ito ay tumatakbo nang interactive.", "You will likely need to interact with the installer.": "Malamang na kakailanganin mong makipag-ugnayan sa installer.", "Integrity checks skipped": "Nilaktawan ang mga integrity check", + "Integrity checks will not be performed during this operation.": "Hindi isasagawa ang mga pagsusuri sa integridad sa operasyong ito.", "Proceed at your own risk.": "Magpatuloy sa sarili mong panganib.", "Close": "Isara", "Loading...": "Nilo-load...", @@ -120,16 +127,17 @@ "optional": "opsyonal", "UniGetUI {0} is ready to be installed.": "Handa nang i-install ang UniGetUI {0}.", "The update process will start after closing UniGetUI": "Magsisimula ang proseso ng update pagkatapos isara ang UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "Ang UniGetUI ay pinatakbo bilang administrator, na hindi inirerekomenda. Kapag pinatakbo mo ang UniGetUI bilang administrator, BAWAT operasyong ilulunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang programa, ngunit mahigpit naming inirerekomenda na huwag patakbuhin ang UniGetUI nang may mga pribilehiyo ng administrator.", "Share anonymous usage data": "Ibahagi ang anonymous na data ng paggamit", "UniGetUI collects anonymous usage data in order to improve the user experience.": "Nangongolekta ang UniGetUI ng anonymous na data ng paggamit upang mapabuti ang karanasan ng user.", "Accept": "Tanggapin", - "You have installed WingetUI Version {0}": "Naka-install sa iyo ang UniGetUI Bersyon {0}", + "You have installed UniGetUI Version {0}": "Naka-install ang Bersyon ng UniGetUI {0}", "Disclaimer": "Paunawa", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "Walang kaugnayan ang UniGetUI sa alinman sa mga compatible na package manager. Isang independent na proyekto ang UniGetUI.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga contributor. Salamat sa inyong lahat 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala ang mga ito, hindi magiging posible ang UniGetUI.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga kontribyutor. Salamat sa inyong lahat 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala sila, hindi magiging posible ang UniGetUI.", "{0} homepage": "Homepage ng {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Na-translate ang UniGetUI sa mahigit 40 wika salamat sa mga boluntaryong translator. Salamat 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Ang UniGetUI ay isinalin sa higit sa 40 mga wika salamat sa mga boluntaryong tagasalin. Salamat 🤝", "Verbose": "Detalyado", "1 - Errors": "1 - Mga Error", "2 - Warnings": "2 - Mga Babala", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Naka-log in ka bilang {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Ayos! Ia-upload ang mga backup sa pribadong gist sa iyong account", "Select backup": "Piliin ang backup", - "WingetUI Settings": "Mga Setting ng UniGetUI", + "UniGetUI Settings": "Mga Setting ng UniGetUI", "Allow pre-release versions": "Payagan ang mga pre-release na bersyon", "Apply": "Ilapat", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Dahil sa mga kadahilanang pangseguridad, ang mga custom na argumento sa command-line ay naka-disable bilang default. Pumunta sa mga setting ng seguridad ng UniGetUI upang baguhin ito.", "Go to UniGetUI security settings": "Pumunta sa mga security setting ng UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Ang mga sumusunod na opsyon ay ilalapat bilang default sa tuwing ini-install, ina-upgrade, o ina-uninstall ang isang package ng {0}.", "Package's default": "Default ng package", @@ -160,6 +169,7 @@ "Username": "Pangalan ng user", "Password": "Pasword", "Credentials": "Mga kredensyal", + "It is not guaranteed that the provided credentials will be stored safely": "Hindi ginagarantiya na ligtas na maiimbak ang mga ibinigay na kredensyal", "Partially": "Bahagya", "Package manager": "Manager ng pakete", "Compatible with proxy": "Compatible sa proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "Naka-enable ang {pm} at handa nang gamitin", "{pm} version:": "Bersyon ng {pm}:", "{pm} was not found!": "Hindi nakita ang {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "Maaaring kailanganin mong i-install ang {pm} para magamit ito sa UniGetUI.", - "Scoop Installer - WingetUI": "Installer ng Scoop - UniGetUI", - "Scoop Uninstaller - WingetUI": "Uninstaller ng Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "Nililinis ang cache ng Scoop - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Maaaring kailanganin mong i-install ang {pm} upang magamit ito sa UniGetUI.", + "Scoop Installer - UniGetUI": "Installer ng Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Uninstaller ng Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Linilinis ang Scoop cache - UniGetUI", + "Restart UniGetUI to fully apply changes": "I-restart ang UniGetUI upang ganap na mailapat ang mga pagbabago", "Restart UniGetUI": "I-restart ang UniGetUI", "Manage {0} sources": "Pamahalaan ang mga source ng {0}", "Add source": "Magdagdag ng source", "Add": "Magdagdag", + "Source name": "Pangalan ng source", + "Source URL": "URL ng source", "Other": "Iba pa", + "No minimum age": "Walang minimum na tagal", "1 day": "isang araw", "{0} days": "{0} araw", + "Custom...": "Pasadya...", "{0} minutes": "{0} minuto", "1 hour": "isang oras", "{0} hours": "{0} oras", "1 week": "isang linggo", - "WingetUI Version {0}": "Bersyon {0} ng UniGetUI", + "Supports release dates": "Sinusuportahan ang mga petsa ng release", + "Release date support per package manager": "Suporta sa petsa ng release ayon sa package manager", + "UniGetUI Version {0}": "Bersyon ng UniGetUI {0}", "Search for packages": "Maghanap ng mga package", "Local": "Lokal", "OK": "Ok", @@ -200,11 +217,13 @@ "Enabled": "Naka-enable", "Disabled": "Naka-disable", "More info": "Higit pang impormasyon", + "GitHub account": "Account sa GitHub", "Log in with GitHub to enable cloud package backup.": "Mag-log in gamit ang GitHub para paganahin ang cloud backup ng package.", "More details": "Higit pang detalye", "Log in": "Mag-log in", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Kung naka-enable ang cloud backup, ise-save ito bilang GitHub Gist sa account na ito", "Log out": "Mag-log out", + "About UniGetUI": "Tungkol sa UniGetUI", "About": "Tungkol", "Third-party licenses": "Mga lisensya ng third-party", "Contributors": "Mga nag-ambag", @@ -212,6 +231,7 @@ "Manage shortcuts": "Pamahalaan ang mga shortcut", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Natukoy ng UniGetUI ang mga sumusunod na desktop shortcut na maaaring awtomatikong alisin sa mga susunod na upgrade", "Do you really want to reset this list? This action cannot be reverted.": "Sigurado ka bang gusto mong i-reset ang listahang ito? Hindi na ito maaaring ibalik.", + "Open in explorer": "Buksan sa explorer", "Remove from list": "Alisin sa listahan", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Kapag may natukoy na bagong shortcut, awtomatiko silang burahin sa halip na ipakita ang dialog na ito.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "Nangongolekta ang UniGetUI ng anonymous na data ng paggamit para lamang maunawaan at mapabuti ang karanasan ng user.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Tinatanggap mo ba na nangongolekta at nagpapadala ang UniGetUI ng anonymous na estadistika ng paggamit, para lamang maunawaan at mapabuti ang karanasan ng user?", "Decline": "Tanggihan", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Walang personal na impormasyon ang kinokolekta o ipinapadala, at naka-anonymize ang nakolektang data, kaya hindi ito matutunton pabalik sa iyo.", - "About WingetUI": "Tungkol sa WingetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang application na nagpapadali sa pamamahala ng iyong software sa pamamagitan ng pagbibigay ng all-in-one na graphical interface para sa iyong mga command-line package manager.", + "Toggle navigation panel": "Ipakita/itago ang navigation panel", + "Minimize": "I-minimize", + "Maximize": "I-maximize", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang aplikasyon na nagpapadali sa pamamahala ng iyong software, sa pamamagitan ng pagbibigay ng isahang graphical na interface para sa iyong mga command-line package manager.", "Useful links": "Mga kapaki-pakinabang na link", + "UniGetUI Homepage": "Homepage ng UniGetUI", "Report an issue or submit a feature request": "Mag-ulat ng isyu o magsumite ng kahilingan para sa feature", + "UniGetUI Repository": "Repository ng UniGetUI", "View GitHub Profile": "Tingnan ang Profile sa GitHub", - "WingetUI License": "Lisensya ng UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nangangahulugan ng pagtanggap sa MIT License", + "UniGetUI License": "Lisensya ng UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nagpapahiwatig ng pagtanggap ng MIT License", "Become a translator": "Maging translator", "View page on browser": "Tingnan ang pahina sa browser", "Copy to clipboard": "Kopyahin patungo sa clipboard", "Export to a file": "I-export sa isang file", "Log level:": "Antas ng log:", "Reload log": "I-reload ang log", + "Export log": "I-export ang log", + "UniGetUI Log": "Log ng UniGetUI", "Text": "Teksto", "Change how operations request administrator rights": "Baguhin kung paano humihingi ng mga karapatan ng administrator ang mga operasyon", "Restrictions on package operations": "Mga restriksyon sa mga operasyon ng package", @@ -271,7 +297,7 @@ "Leave empty for default": "Iwanang walang laman para sa default", "Add a timestamp to the backup file names": "Idagdag ang oras sa backup ng mga pangalan ", "Backup and Restore": "Backup at Restore", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Widgets ng UniGetUI at Sharing, port 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Mga Widget para sa UniGetUI at Pagbabahagi, port 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Hintaying kumonekta ang device sa internet bago subukang gawin ang mga gawaing nangangailangan ng koneksyon sa internet.", "Disable the 1-minute timeout for package-related operations": "I-disable ang 1-minutong timeout para sa mga operasyong may kaugnayan sa package", "Use installed GSudo instead of UniGetUI Elevator": "Gamitin ang naka-install na GSudo sa halip na UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Telemetriya", "Manage UniGetUI settings": "Pamahalaan ang mga setting ng UniGetUI", "Related settings": "Mga kaugnay na setting", - "Update WingetUI automatically": "Awtomatikong i-update ang UniGetUI", + "Update UniGetUI automatically": "Awtomatikong i-update ang UniGetUI", "Check for updates": "Maghanap ng mga update", "Install prerelease versions of UniGetUI": "I-install ang mga prerelease na bersyon ng UniGetUI", "Manage telemetry settings": "Pamahalaan ang mga setting ng telemetry", @@ -295,17 +321,17 @@ "Import": "I-import", "Export settings to a local file": "I-export ang mga setting sa isang lokal na file", "Export": "I-export", - "Reset WingetUI": "I-reset ang UniGetUI", "Reset UniGetUI": "I-reset ang UniGetUI", "User interface preferences": "Mga preference sa user interface", "Application theme, startup page, package icons, clear successful installs automatically": "Tema ng app, startup page, mga icon ng package, awtomatikong alisin ang matagumpay na install", "General preferences": "Mga pangkalahatang preference", - "WingetUI display language:": "Wika ng display ng UniGetUI:", + "UniGetUI display language:": "Ipinapakitang wika ng UniGetUI:", "Is your language missing or incomplete?": "Nawawala o kulang ba ang iyong wika?", "Appearance": "Itsura", "UniGetUI on the background and system tray": "UniGetUI sa background at system tray", "Package lists": "Mga listahan ng package", "Close UniGetUI to the system tray": "Isara ang UniGetUI sa system tray", + "Manage UniGetUI autostart behaviour": "Pamahalaan ang awtomatikong pagsisimula ng UniGetUI", "Show package icons on package lists": "Ipakita ang mga icon ng package sa mga listahan ng package", "Clear cache": "I-clear ang cache", "Select upgradable packages by default": "Piliin bilang default ang mga package na maaaring i-upgrade", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Pakitandaan na hindi lahat ng package manager ay maaaring lubos na sumuporta sa feature na ito", "Proxy URL": "URL ng proxy", "Enter proxy URL here": "Ilagay dito ang proxy URL", + "Authenticate to the proxy with a user and a password": "Mag-authenticate sa proxy gamit ang user at password", + "Internet and proxy settings": "Mga setting ng internet at proxy", "Package manager preferences": "Mga preference sa package manager", "Ready": "Handa na", "Not found": "Hindi nakita", "Notification preferences": "Mga preference sa notification", "Notification types": "Mga uri ng notification", "The system tray icon must be enabled in order for notifications to work": "Dapat naka-enable ang icon sa system tray para gumana ang mga notification", - "Enable WingetUI notifications": "Paganahin ang mga notification ng UniGetUI", + "Enable UniGetUI notifications": "Paganahin ang mga notification ng UniGetUI", "Show a notification when there are available updates": "Magpakita ng notification kapag may mga available na update", "Show a silent notification when an operation is running": "Magpakita ng tahimik na notification habang may tumatakbong operasyon", "Show a notification when an operation fails": "Magpakita ng notification kapag pumalya ang isang operasyon", "Show a notification when an operation finishes successfully": "Magpakita ng notification kapag matagumpay na natapos ang isang operasyon", "Concurrency and execution": "Concurrency at execution", "Automatic desktop shortcut remover": "Awtomatikong tagabura ng desktop shortcut", + "Choose how many operations should be performed in parallel": "Piliin kung ilang operasyon ang dapat isagawa nang sabay-sabay", "Clear successful operations from the operation list after a 5 second delay": "Alisin ang matagumpay na mga operasyon mula sa listahan matapos ang 5 segundong delay", "Download operations are not affected by this setting": "Hindi naaapektuhan ng setting na ito ang mga operasyon sa pag-download", "Try to kill the processes that refuse to close when requested to": "Subukang i-kill ang mga prosesong tumatangging magsara kapag hiniling", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Piliin ang executable na gagamitin. Ipinapakita ng sumusunod na listahan ang mga executable na nakita ng UniGetUI", "Current executable file:": "Kasalukuyang executable file:", "Ignore packages from {pm} when showing a notification about updates": "I-ignore ang mga package mula sa {pm} kapag nagpapakita ng notification tungkol sa mga update", + "Update security": "Seguridad sa pag-update", + "Use global setting": "Gamitin ang global na setting", + "e.g. 10": "hal. 10", + "{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", + "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", + "Minimum age for updates": "Minimum na tagal para sa mga update", + "Custom minimum age (days)": "Custom na minimum na tagal (araw)", "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, ", "Advanced options": "Mga advanced na opsyon", "Reset WinGet": "I-reset ang WinGet", "This may help if no packages are listed": "Maaaring makatulong ito kung walang nakalistang mga package", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Paganahin ang Scoop cleanup sa pag-launch", "Use system Chocolatey": "Gamitin ang system Chocolatey", "Default vcpkg triplet": "Default na vcpkg triplet", + "Change vcpkg root location": "Baguhin ang root na lokasyon ng vcpkg", "Language, theme and other miscellaneous preferences": "Wika, tema, at iba pang sari-saring preference", "Show notifications on different events": "Ipakita ang mga notification sa iba't ibang pangyayari", "Change how UniGetUI checks and installs available updates for your packages": "Baguhin kung paano sinusuri at ini-install ng UniGetUI ang mga available na update para sa iyong mga package", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Huwag awtomatikong mag-install ng mga update kapag metered ang koneksyon sa network", "Do not automatically install updates when the device runs on battery": "Huwag awtomatikong mag-install ng mga update kapag naka-battery ang device", "Do not automatically install updates when the battery saver is on": "Huwag awtomatikong mag-install ng mga update kapag naka-on ang battery saver", + "Only show updates that are at least the specified number of days old": "Ipakita lamang ang mga update na hindi bababa sa tinukoy na bilang ng araw na ang nakalipas", "Change how UniGetUI handles install, update and uninstall operations.": "Baguhin kung paano pinangangasiwaan ng UniGetUI ang mga operasyon ng install, update, at uninstall.", "Package Managers": "Mga package manager", "More": "Higit pa", - "WingetUI Log": "Log ng UniGetUI", "Package Manager logs": "Mga log ng Package Manager", "Operation history": "Kasaysayan ng operasyon", "Help": "Tulong", + "Quit UniGetUI": "Lumabas sa UniGetUI", "Order by:": "Ayusin ayon sa:", "Name": "Pangalan", "Id": "Pagkakakilanlan", @@ -409,6 +448,10 @@ "Both": "Pareho", "Exact match": "Eksaktong tugma", "Show similar packages": "Ipakita ang mga kahalintulad na package", + "Nothing to share": "Walang maibabahagi", + "Please select a package first.": "Mangyaring pumili muna ng package.", + "Share link copied": "Nakopya ang share link", + "The share link for {0} has been copied to the clipboard.": "Nakopya na sa clipboard ang share link para sa {0}.", "No results were found matching the input criteria": "Walang nahanap na resultang tumutugma sa ibinigay na pamantayan", "No packages were found": "Walang nahanap na mga package", "Loading packages": "Nilo-load ang mga package", @@ -440,7 +483,11 @@ "Package bundle": "Bundle ng pakete", "Could not create bundle": "Hindi magawa ang bundle", "The package bundle could not be created due to an error.": "Hindi nagawa ang package bundle dahil sa isang error.", + "Unsaved changes": "Mga hindi na-save na pagbabago", + "Discard changes": "Huwag i-save ang mga pagbabago", + "You have unsaved changes in the current bundle. Do you want to discard them?": "May mga hindi na-save na pagbabago sa kasalukuyang bundle. Gusto mo bang huwag i-save ang mga ito?", "Bundle security report": "Ulat sa seguridad ng bundle", + "The bundle contained restricted content": "Naglaman ang bundle ng pinaghihigpitang nilalaman", "Hooray! No updates were found.": "Yehey! Walang nahanap na update.", "Everything is up to date": "Lahat ay updated", "Uninstall selected packages": "I-uninstall ang mga napiling package", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Ang klasikong package manager para sa Windows. Makikita mo roon ang lahat.
Naglalaman ng: Pangkalahatang Software", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Isang repository na puno ng mga tool at executable na idinisenyo para sa .NET ecosystem ng Microsoft.
Naglalaman ng: Mga tool at script na may kaugnayan sa .NET", "NuPkg (zipped manifest)": "NuPkg (naka-zip na manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Ang Nawawalang Package Manager para sa macOS (o Linux).
Naglalaman ng: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Package manager ng Node JS. Puno ito ng mga library at iba pang utility na umiikot sa mundo ng JavaScript
Naglalaman ng: Mga Node JavaScript library at iba pang kaugnay na utility", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Library manager ng Python. Puno ito ng mga Python library at iba pang utility na may kaugnayan sa Python
Naglalaman ng: Mga Python library at kaugnay na utility", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Package manager ng PowerShell. Maghanap ng mga library at script para mapalawak ang kakayahan ng PowerShell
Naglalaman ng: Mga module, script, cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Operasyon sa pila (posisyon {0})...", "Click here for more details": "I-click dito para sa higit pang detalye", "Operation canceled by user": "Kinansela ng user ang operasyon", + "Running PreOperation ({0}/{1})...": "Pinapatakbo ang PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Nabigo ang PreOperation {0} sa {1}, at minarkahang kinakailangan. Ina-abort...", + "PreOperation {0} out of {1} finished with result {2}": "Natapos ang PreOperation {0} sa {1} na may resultang {2}", "Starting operation...": "Sinisimulan ang operasyon...", + "Running PostOperation ({0}/{1})...": "Pinapatakbo ang PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "Nabigo ang PostOperation {0} sa {1}, at minarkahang kinakailangan. Ina-abort...", + "PostOperation {0} out of {1} finished with result {2}": "Natapos ang PostOperation {0} sa {1} na may resultang {2}", "{package} installer download": "Pag-download ng installer ng {package}", "{0} installer is being downloaded": "Dina-download ang installer ng {0}", "Download succeeded": "Matagumpay ang pag-download", @@ -556,14 +610,12 @@ "Portable mode": "Portable na mode\n", "DEBUG BUILD": "Pang-debug na build", "Available Updates": "Mga Available na Update", - "Show WingetUI": "Ipakita ang UniGetUI", + "Show UniGetUI": "Ipakita ng UniGetUI", "Quit": "Lumabas", "Attention required": "Kailangan ng iyong atensyon", "Restart required": "Kailangan ang restart", "1 update is available": "May 1 update na available", "{0} updates are available": "May {0} available na update", - "WingetUI Homepage": "Homepage ng UniGetUI", - "WingetUI Repository": "Repository ng UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Dito mo mababago ang kilos ng UniGetUI para sa mga sumusunod na shortcut. Kapag chineck mo ang isang shortcut, buburahin ito ng UniGetUI kung malikha ito sa susunod na upgrade. Kapag inalis mo ang check, mananatiling buo ang shortcut.", "Manual scan": "Manwal na pag-scan", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Isi-scan ang mga umiiral na shortcut sa iyong desktop, at kailangan mong pumili kung alin ang itatago at alin ang aalisin.", @@ -583,7 +635,6 @@ "Restart later": "I-restart mamaya", "An error occurred:": "Nagkaroon ng kamalian: ", "I understand": "Nauunawaan ko", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Pinatakbo ang UniGetUI bilang administrator, na hindi inirerekomenda. Kapag pinapatakbo ang UniGetUI bilang administrator, BAWAT operasyong ilulunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang programa, ngunit mahigpit naming inirerekomenda na huwag patakbuhin ang UniGetUI gamit ang mga pribilehiyo ng administrator.", "WinGet was repaired successfully": "Matagumpay na naayos ang WinGet", "It is recommended to restart UniGetUI after WinGet has been repaired": "Inirerekomendang i-restart ang UniGetUI matapos maayos ang WinGet", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "PAALALA: Maaaring i-disable ang troubleshooter na ito mula sa UniGetUI Settings, sa seksyong WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Naidagdag na ang mga package mo sa bundle. Maaari kang magpatuloy sa pagdagdag ng mga package o i-export ang bundle.", "Which backup do you want to open?": "Aling backup ang gusto mong buksan?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Piliin ang backup na gusto mong buksan. Mamaya, masusuri mo kung aling mga package ang gusto mong i-install.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "May mga kasalukuyang operasyong tumatakbo. Ang pag-alis sa UniGetUI ay maaaring magdulot ng pagkabigo ng mga ito. Gusto mo bang magpatuloy?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "May mga patuloy na operasyon. Ang paghinto sa UniGetUI ay maaaring maging sanhi ng pagkabigo sa kanila. Gusto mo bang magpatuloy?", "UniGetUI or some of its components are missing or corrupt.": "Nawawala o sira ang UniGetUI o ang ilan sa mga component nito.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Mahigpit na inirerekomendang i-reinstall ang UniGetUI para matugunan ang sitwasyong ito.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Sumangguni sa mga log ng UniGetUI para sa higit pang detalye tungkol sa (mga) apektadong file", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Isulat dito ang mga pangalan ng proseso, na pinaghihiwalay ng mga kuwit (,)", "Unset or unknown": "Hindi nakatakda o hindi alam", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Pakitingnan ang Command-line Output o sumangguni sa Operation History para sa karagdagang impormasyon tungkol sa isyu.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Wala bang screenshot ang package na ito o nawawala ang icon nito? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng nawawalang mga icon at screenshot sa aming bukas at pampublikong database.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Ang package na ito ay walang mga screenshot o nawawala ang icon? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng mga nawawalang icon at screenshot sa aming bukas, pampublikong database.", "Become a contributor": "Maging contributor", "Save": "I-save", "Update to {0} available": "Available ang update sa {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Paganahin ang awtomatikong troubleshooter ng WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Paganahin ang [experimental] pinahusay na troubleshooter ng WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Idagdag sa listahan ng mga in-ignore na update ang mga update na pumapalya dahil sa 'no applicable update found'.", - "Restart WingetUI to fully apply changes": "I-restart ang UniGetUI para ganap na mailapat ang mga pagbabago", - "Restart WingetUI": "I-restart ang UniGetUI", "Invalid selection": "Hindi valid ang napili", "No package was selected": "Walang napiling package", "More than 1 package was selected": "Mahigit sa 1 package ang napili", @@ -684,6 +733,37 @@ "Log out failed: ": "Pumalya ang pag-log out: ", "Package backup settings": "Mga setting ng backup ng package", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Tungkol sa WingetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "Ang UniGetUI ay isang application na nagpapadali sa pamamahala ng iyong software sa pamamagitan ng pagbibigay ng all-in-one na graphical interface para sa iyong mga command-line package manager.", + "You have installed WingetUI Version {0}": "Naka-install sa iyo ang UniGetUI Bersyon {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Hindi magiging posible ang UniGetUI kung wala ang tulong ng mga kontribyutor. Salamat sa inyong lahat 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "Ginagamit ng UniGetUI ang mga sumusunod na library. Kung wala ang mga ito, hindi magiging posible ang UniGetUI.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "Ang UniGetUI ay isinalin sa higit sa 40 mga wika salamat sa mga boluntaryong tagasalin. Salamat 🤝", + "WingetUI Settings": "Mga Setting ng UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Maaaring kailanganin mong i-install ang {pm} para magamit ito sa UniGetUI.", + "Scoop Installer - WingetUI": "Installer ng Scoop - UniGetUI", + "Scoop Uninstaller - WingetUI": "Uninstaller ng Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "Nililinis ang cache ng Scoop - UniGetUI", + "WingetUI Version {0}": "Bersyon {0} ng UniGetUI", + "WingetUI License": "Lisensya ng UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Ang paggamit ng UniGetUI ay nangangahulugan ng pagtanggap sa MIT License", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Paganahin ang background API (Widgets ng UniGetUI at Sharing, port 7058)", + "Update WingetUI automatically": "Awtomatikong i-update ang UniGetUI", + "Reset WingetUI": "I-reset ang UniGetUI", + "WingetUI display language:": "Wika ng display ng UniGetUI:", + "Manage WingetUI autostart behaviour": "Pamahalaan ang awtomatikong pagsisimula ng UniGetUI", + "Enable WingetUI notifications": "Paganahin ang mga notification ng UniGetUI", + "WingetUI Log": "Log ng UniGetUI", + "Show WingetUI": "Ipakita ang UniGetUI", + "WingetUI Homepage": "Homepage ng UniGetUI", + "WingetUI Repository": "Repository ng UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "Pinatakbo ang UniGetUI bilang administrator, na hindi inirerekomenda. Kapag pinapatakbo ang UniGetUI bilang administrator, BAWAT operasyong ilulunsad mula sa UniGetUI ay magkakaroon ng mga pribilehiyo ng administrator. Magagamit mo pa rin ang programa, ngunit mahigpit naming inirerekomenda na huwag patakbuhin ang UniGetUI gamit ang mga pribilehiyo ng administrator.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "May mga kasalukuyang operasyong tumatakbo. Ang pag-alis sa UniGetUI ay maaaring magdulot ng pagkabigo ng mga ito. Gusto mo bang magpatuloy?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Wala bang screenshot ang package na ito o nawawala ang icon nito? Mag-ambag sa UniGetUI sa pamamagitan ng pagdaragdag ng nawawalang mga icon at screenshot sa aming bukas at pampublikong database.", + "Restart WingetUI to fully apply changes": "I-restart ang UniGetUI para ganap na mailapat ang mga pagbabago", + "Restart WingetUI": "I-restart ang UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Pamahalaan ang UniGetUI autostart na gawi mula sa Mga Setting na app", "(Number {0} in the queue)": "(Numero {0} sa pila)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "lasersPew, @znarfm", "0 packages found": "Walang nakitang package", @@ -801,6 +881,7 @@ "GitHub profile": "Profile sa GitHub", "Global": "Buong system", "Help and documentation": "Tulong at dokumentasyon", + "Hi, my name is Mart├¡, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Kumusta, Mart├¡ ang pangalan ko, at ako ang developer ng UniGetUI. Ginawa ko ang UniGetUI nang buo sa libreng oras ko!", "Hide details": "Itago ang mga detalye", "How should installations that require administrator privileges be treated?": "Paano dapat tratuhin ang mga installation na nangangailangan ng mga pribilehiyo ng administrator?", "Ignore updates for the selected packages": "I-ignore ang mga update para sa mga napiling package", @@ -959,6 +1040,7 @@ "This package can be updated": "Maaaring i-update ang package na ito", "This package can be updated to version {0}": "Maaaring i-update ang package na ito sa bersyon {0}", "This process is running with administrator privileges": "Tumatakbo ang prosesong ito nang may mga pribilehiyo ng administrator", + "This project has no connection with the official {0} project ΓÇö it's completely unofficial.": "Walang kaugnayan ang proyektong ito sa opisyal na proyekto ng {0} ΓÇö ganap itong hindi opisyal.", "This setting is disabled": "Naka-disable ang setting na ito", "This wizard will help you configure and customize WingetUI!": "Tutulungan ka ng wizard na ito na i-configure at i-customize ang UniGetUI!", "Toggle search filters pane": "I-toggle ang pane ng mga filter sa paghahanap", @@ -1068,8 +1150,5 @@ "{pm} could not be found": "Hindi makita ang {pm}", "{pm} found: {state}": "Nakita ang {pm}: {state}", "{pm} package manager specific preferences": "Mga preference na partikular sa package manager na {pm}", - "{pm} preferences": "Mga preference ng {pm}", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Kumusta, Martí ang pangalan ko, at ako ang developer ng UniGetUI. Ginawa ko ang UniGetUI nang buo sa libreng oras ko!", - "Thank you ❤": "Salamat ❤", - "This project has no connection with the official {0} project — it's completely unofficial.": "Walang kaugnayan ang proyektong ito sa opisyal na proyekto ng {0} — ganap itong hindi opisyal." + "{pm} preferences": "Mga preference ng {pm}" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json index 06a0b9ee70..29b32a69b7 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_tr.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Ön kaldırma komutu başarısız olursa kaldırmayı iptal et", "Command-line to run:": "Çalıştırılacak komut satırı:", "Save and close": "Kaydet ve Kapat", + "General": "Genel", + "Architecture & Location": "Mimari ve Konum", + "Command-line": "Komut satırı", + "Pre/Post install": "Kurulum öncesi/sonrası", "Run as admin": "Yönetici olarak çalıştır", "Interactive installation": "İnteraktif kurulum", "Skip hash check": "Hash kontrolünü atla", @@ -71,6 +75,8 @@ "Manage ignored updates": "Yok sayılan güncellemeleri yönet", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Burada listelenen paketler güncellemeler kontrol edilirken dikkate alınmayacaktır. Güncellemelerini yok saymayı durdurmak için bunlara çift tıklayın veya sağlarındaki düğmeye tıklayın.", "Reset list": "Listeyi sıfırla", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Yok sayılan güncellemeler listesini gerçekten sıfırlamak istiyor musunuz? Bu işlem geri alınamaz", + "No ignored updates": "Yok sayılan güncelleme yok", "Package Name": "Paket ismi", "Package ID": "Paket kimliği (ID)", "Ignored version": "Yok sayılan sürümler", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Bu işlem etkileşimli olarak çalışmaktadır.", "You will likely need to interact with the installer.": "Muhtemelen yükleyiciyle etkileşime girmeniz gerekecektir.", "Integrity checks skipped": "Bütünlük kontrolleri atlandı", + "Integrity checks will not be performed during this operation.": "Bu işlem sırasında bütünlük denetimleri yapılmayacaktır.", "Proceed at your own risk.": "Devam etmek kendi sorumluluğunuzda.", "Close": "Kapat", "Loading...": "Yükleniyor...", @@ -120,16 +127,17 @@ "optional": "isteğe bağlı", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} kurulmaya hazır.", "The update process will start after closing UniGetUI": "UniGetUI kapatıldıktan sonra güncelleme işlemi başlayacak", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI yönetici olarak çalıştırıldı; bu önerilmez. UniGetUI yönetici olarak çalıştırıldığında, UniGetUI'den başlatılan TÜM işlemler yönetici ayrıcalıklarıyla çalışır. Programı yine de kullanabilirsiniz, ancak UniGetUI'yi yönetici ayrıcalıklarıyla çalıştırmamanızı önemle tavsiye ederiz.", "Share anonymous usage data": "Anonim kullanım verilerini paylaşın", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI, kullanıcı deneyimini geliştirmek için anonim kullanım verileri toplar.", "Accept": "Kabul", - "You have installed WingetUI Version {0}": "UniGetUI {0} Sürümünü yüklediniz", + "You have installed UniGetUI Version {0}": "UniGetUI {0} Sürümünü yüklediniz", "Disclaimer": "Feragatname", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI uyumlu paket yöneticilerinin hiçbiriyle ilişkili değildir. UniGetUI bağımsız bir projedir.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Katkıda bulunanların yardımı olmadan UniGetUI mümkün olmazdı. Hepinize teşekkür ederim 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI aşağıdaki kütüphaneleri kullanır. Onlar olmasaydı, UniGetUI mümkün olmazdı.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Katkıda bulunanların yardımı olmadan UniGetUI mümkün olmazdı. Hepinize teşekkür ederim 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI Aşağıdaki kütüphaneleri kullanır. Onlar olmasaydı, UniGetUI mümkün olmazdı.", "{0} homepage": "{0} ana sayfa", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI, gönüllü çevirmenler sayesinde 40 'tan fazla dile çevrildi. Teşekkürler 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI, gönüllü çevirmenler sayesinde 40 'tan fazla dile çevrildi. Teşekkürler 🤝", "Verbose": "Ayrıntılı", "1 - Errors": "1 - Hatalar", "2 - Warnings": "2 - Uyarılar", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "{0} (@{1}) olarak giriş yaptınız", "Nice! Backups will be uploaded to a private gist on your account": "Güzel! Yedekler hesabınızdaki özel bir github gist'e yüklenecek", "Select backup": "Yedeklemeyi seçin", - "WingetUI Settings": "UniGetUI Ayarları", + "UniGetUI Settings": "UniGetUI ayarları", "Allow pre-release versions": "Ön sürümlere izin ver", "Apply": "Uygula", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Güvenlik nedeniyle özel komut satırı bağımsız değişkenleri varsayılan olarak devre dışıdır. Bunu değiştirmek için UniGetUI güvenlik ayarlarına gidin.", "Go to UniGetUI security settings": "UniGetUI güvenlik ayarlarına gidin", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Bir {0} paket her kurulduğunda, yükseltildiğinde veya kaldırıldığında aşağıdaki seçenekler varsayılan olarak uygulanacaktır.", "Package's default": "Paket varsayılanı", @@ -160,6 +169,7 @@ "Username": "Kullanıcı adı", "Password": "Şifre", "Credentials": "Kimlik Bilgileri", + "It is not guaranteed that the provided credentials will be stored safely": "Sağlanan kimlik bilgilerinin güvenli biçimde saklanacağı garanti edilmez", "Partially": "Kısmen", "Package manager": "Paket yöneticisi", "Compatible with proxy": "Proxy ile uyumlu", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} etkinleştirildi ve kullanıma hazır", "{pm} version:": "{pm} sürümü:", "{pm} was not found!": "{pm} bulunamadı!", - "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI ile kullanmak için {pm} yüklemeniz gerekebilir.", - "Scoop Installer - WingetUI": "Kepçe Yükleyici - UniGetUI", - "Scoop Uninstaller - WingetUI": "Kepçe Kaldırma Programı - UniGetUI", - "Clearing Scoop cache - WingetUI": "Kepçe önbelleğini temizleme - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI ile kullanmak için {pm} yüklemeniz gerekebilir.", + "Scoop Installer - UniGetUI": "Kepçe Yükleyici - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Kepçe Kaldırma Programı - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Kepçe önbelleğini temizleme - UniGetUI", + "Restart UniGetUI to fully apply changes": "Değişikliklerin tamamen uygulanması için UniGetUI'yi yeniden başlatın", "Restart UniGetUI": "UniGetUI'yi yeniden başlat", "Manage {0} sources": "{0} kaynaklarını yönet", "Add source": "Kaynak ekle", "Add": "Ekle", + "Source name": "Kaynak adı", + "Source URL": "Kaynak URL'si", "Other": "Diğer", + "No minimum age": "Minimum süre yok", "1 day": "1 gün", "{0} days": "{0} gün", + "Custom...": "Özel...", "{0} minutes": "{0} dakika", "1 hour": "1 saat", "{0} hours": "{0} saat", "1 week": "1 hafta", - "WingetUI Version {0}": "UniGetUI Sürüm {0}", + "Supports release dates": "Yayın tarihlerini destekler", + "Release date support per package manager": "Paket yöneticisine göre yayın tarihi desteği", + "UniGetUI Version {0}": "UniGetUI Sürüm {0}", "Search for packages": "Paket ara", "Local": "Yerel", "OK": "TAMAM", @@ -200,11 +217,13 @@ "Enabled": "Etkin", "Disabled": "Devre dışı", "More info": "Daha fazla bilgi", + "GitHub account": "GitHub hesabı", "Log in with GitHub to enable cloud package backup.": "Bulut paketi yedeklemesini etkinleştirmek için GitHub ile oturum açın.", "More details": "Daha fazla detay", "Log in": "Oturum aç", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Bulut yedeklemesini etkinleştirdiyseniz, bu hesapta GitHub Gist olarak kaydedilecektir", "Log out": "Çıkış yap", + "About UniGetUI": "UniGetUI hakkında", "About": "Hakkında", "Third-party licenses": "Üçüncü taraf lisansları", "Contributors": "Katkıda Bulunanlar", @@ -212,6 +231,7 @@ "Manage shortcuts": "Kısayolları yönet", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI, gelecekteki yükseltmelerde otomatik olarak kaldırılabilecek aşağıdaki masaüstü kısayollarını algıladı", "Do you really want to reset this list? This action cannot be reverted.": "Bu listeyi gerçekten sıfırlamak istiyor musunuz? Bu eylem geri alınamaz.", + "Open in explorer": "Gezginde aç", "Remove from list": "Listeden sil", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Yeni kısayollar algılandığında, bu iletişim kutusunu göstermek yerine bunları otomatik olarak silin.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI, yalnızca kullanıcı deneyimini anlamak ve geliştirmek amacıyla anonim kullanım verileri toplar.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "UniGetui'nin yalnızca kullanıcı deneyimini anlamak ve geliştirmek amacıyla anonim kullanım istatistikleri topladığını ve gönderdiğini kabul ediyor musunuz?", "Decline": "Reddet", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Kişisel bilgi toplanmaz veya gönderilmez ve toplanan veriler anonimize edilir, bu nedenle bulunamazsınız.", - "About WingetUI": "UniGetUI Hakkında", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI, komut satırı paket yöneticileriniz için hepsi bir arada grafik arayüzü sağlayarak yazılımınızı yönetmeyi kolaylaştıran bir uygulamadır.", + "Toggle navigation panel": "Gezinti panelini aç/kapat", + "Minimize": "Simge durumuna küçült", + "Maximize": "Büyüt", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI, komut satırı paket yöneticileriniz için hepsi bir arada grafik arayüzü sağlayarak yazılımınızı yönetmeyi kolaylaştıran bir uygulamadır.", "Useful links": "Faydalı bağlantılar", + "UniGetUI Homepage": "UniGetUI ana sayfası", "Report an issue or submit a feature request": "Bir sorunu bildirin veya bir özellik isteği gönderin", + "UniGetUI Repository": "UniGetUI deposu", "View GitHub Profile": "GitHub Profili", - "WingetUI License": "UniGetUI Lisansı", - "Using WingetUI implies the acceptation of the MIT License": "UniGetUI'yi kullanmak MIT Lisansının kabul edildiğini ifade eder", + "UniGetUI License": "UniGetUI Lisansı", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI'yi kullanmak MIT Lisansının kabul edildiğini ifade eder", "Become a translator": "Çevirmen olun", "View page on browser": "Sayfayı tarayıcıda görüntüle", "Copy to clipboard": "Panoya kopyala", "Export to a file": "Bir dosyaya aktar", "Log level:": "Günlük düzeyi:", "Reload log": "Günlüğü yeniden yükle", + "Export log": "Günlüğü dışa aktar", + "UniGetUI Log": "UniGetUI günlüğü", "Text": "Metin", "Change how operations request administrator rights": "İşlemlerin yönetici haklarını nasıl talep edeceğini değiştirin", "Restrictions on package operations": "Paket işlemleriyle ilgili kısıtlamalar", @@ -271,7 +297,7 @@ "Leave empty for default": "Varsayılan olarak boş bırakın", "Add a timestamp to the backup file names": "Yedekleme dosyası adlarına bir zaman damgası ekleyin", "Backup and Restore": "Yedekleme ve Geri Yükleme", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Arka plan api'sini etkinleştir (UniGetUI Widget'ları ve Paylaşımı, bağlantı noktası 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Arka plan api'sini etkinleştir (UniGetUI Widget'ları ve Paylaşımı, bağlantı noktası 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "İnternet bağlantısı gerektiren görevleri yapmaya başlamadan önce cihazın internete bağlanmasını bekleyin.", "Disable the 1-minute timeout for package-related operations": "Paketle ilgili işlemler için 1 dakikalık zaman aşımını devre dışı bırakın", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator yerine kurulu GSudo'yu kullanın", @@ -286,7 +312,7 @@ "Telemetry": "Telemetri", "Manage UniGetUI settings": "UniGetUI ayarlarını yönetin", "Related settings": "İlgili ayarlar", - "Update WingetUI automatically": "UniGetUI'ı otomatik olarak güncelle", + "Update UniGetUI automatically": "UniGetUI'ı otomatik olarak güncelle", "Check for updates": "Güncellemeleri kontrol et", "Install prerelease versions of UniGetUI": "UniGetUI'nin yayın öncesi sürümlerini yükleyin", "Manage telemetry settings": "Telemetri ayarlarını yönet", @@ -295,17 +321,17 @@ "Import": "İçe aktar", "Export settings to a local file": "Ayarları yerel bir dosyaya aktar", "Export": "Dışa Aktar", - "Reset WingetUI": "UniGetUI'yi Sıfırla", "Reset UniGetUI": "UniGetUI'yi sıfırla", "User interface preferences": "Kullanıcı arayüzü tercihleri", "Application theme, startup page, package icons, clear successful installs automatically": "Uygulama teması, başlangıç sayfası, paket simgeleri, başarılı yüklemeleri otomatik olarak temizle", "General preferences": "Genel tercihler", - "WingetUI display language:": "UniGetUI arayüz dili:", + "UniGetUI display language:": "UniGetUI arayüz dili:", "Is your language missing or incomplete?": "Diliniz eksik mi yoksa tam değil mi?", "Appearance": "Dış görünüş", "UniGetUI on the background and system tray": "Arka planda ve sistem tepsisinde UniGetUI", "Package lists": "Paket listeleri", "Close UniGetUI to the system tray": "UniGetUI'yi sistem tepsisine kapatın", + "Manage UniGetUI autostart behaviour": "UniGetUI otomatik başlatma davranışını yönet", "Show package icons on package lists": "Paket listelerinde paket simgelerini göster", "Clear cache": "Önbelleği temizle", "Select upgradable packages by default": "Yükseltilebilir paketleri varsayılan olarak seç", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Lütfen tüm paket yöneticilerinin bu özelliği tam olarak desteklemeyebileceğini unutmayın", "Proxy URL": "Proxy URL'si", "Enter proxy URL here": "Proxy URL'sini buraya girin", + "Authenticate to the proxy with a user and a password": "Proxy için kullanıcı adı ve parola ile kimlik doğrulayın", + "Internet and proxy settings": "İnternet ve proxy ayarları", "Package manager preferences": "Paket yöneticisi tercihleri", "Ready": "Hazır", "Not found": "Bulunamadı", "Notification preferences": "Bildirim tercihleri", "Notification types": "Bildirim türleri", "The system tray icon must be enabled in order for notifications to work": "Bildirimlerin çalışması için sistem tepsisi simgesinin etkinleştirilmesi gerekir", - "Enable WingetUI notifications": "UniGetUI bildirimlerini etkinleştir", + "Enable UniGetUI notifications": "UniGetUI bildirimlerini etkinleştir", "Show a notification when there are available updates": "Mevcut güncellemeler olduğunda bildirim göster", "Show a silent notification when an operation is running": "Bir işlem çalışırken sessiz bildirim göster", "Show a notification when an operation fails": "Bir işlem başarısız olduğunda bildirim göster", "Show a notification when an operation finishes successfully": "Bir işlem başarıyla tamamlandığında bildirim göster", "Concurrency and execution": "Eşzamanlılık ve yürütme", "Automatic desktop shortcut remover": "Otomatik masaüstü kısayolu kaldırıcı", + "Choose how many operations should be performed in parallel": "Aynı anda kaç işlemin yürütüleceğini seçin", "Clear successful operations from the operation list after a 5 second delay": "5 saniyelik bir gecikmenin ardından başarılı işlemleri işlem listesinden silin", "Download operations are not affected by this setting": "İndirme işlemleri bu ayardan etkilenmez", "Try to kill the processes that refuse to close when requested to": "Talep edildiğinde kapatmayı reddeden işlemleri kapatmaya çalışın", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Kullanılacak yürütülebilir dosyayı seçin. Aşağıdaki liste, UniGetUI tarafından bulunan yürütülebilir dosyaları göstermektedir", "Current executable file:": "Geçerli yürütülebilir dosya:", "Ignore packages from {pm} when showing a notification about updates": "Güncellemeler hakkında bir bildirim gösteren {pm} paketleri yoksay", + "Update security": "Güncelleme güvenliği", + "Use global setting": "Genel ayarı kullan", + "e.g. 10": "ör. 10", + "{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", + "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", + "Minimum age for updates": "Güncellemeler için minimum süre", + "Custom minimum age (days)": "Özel minimum süre (gün)", "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, ", "Advanced options": "Gelişmiş seçenekler", "Reset WinGet": "WinGet'i sıfırla", "This may help if no packages are listed": "Hiçbir paket listelenmemişse bu yardımcı olabilir", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Başlangıçta Scoop temizlemeyi etkinleştir", "Use system Chocolatey": "Chocolatey sistemini kullanın", "Default vcpkg triplet": "Varsayılan vcpkg üçlüsü", + "Change vcpkg root location": "vcpkg kök konumunu değiştir", "Language, theme and other miscellaneous preferences": "Dil, tema ve diğer çeşitli tercihler", "Show notifications on different events": "Farklı etkinliklere ilişkin bildirimleri göster", "Change how UniGetUI checks and installs available updates for your packages": "UniGetUI'nin paketleriniz için mevcut güncellemeleri kontrol etme ve yükleme şeklini değiştirin", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Ağ bağlantısı sınırlı olduğunda güncellemeleri otomatik olarak yükleme", "Do not automatically install updates when the device runs on battery": "Cihaz pille çalışırken güncellemeleri otomatik olarak yüklemeyin", "Do not automatically install updates when the battery saver is on": "Pil tasarrufu açıkken güncellemeleri otomatik olarak yükleme", + "Only show updates that are at least the specified number of days old": "Yalnızca en az belirtilen gün sayısı kadar eski güncellemeleri göster", "Change how UniGetUI handles install, update and uninstall operations.": "UniGetUI'nin yükleme, güncelleme ve kaldırma işlemlerini nasıl işlediğini değiştirin.", "Package Managers": "Paket Yöneticileri", "More": "Daha çok", - "WingetUI Log": "UniGetUI Günlüğü", "Package Manager logs": "Paket Yöneticisi günlükleri", "Operation history": "İşlem geçmişi", "Help": "Yardım", + "Quit UniGetUI": "UniGetUI'den çık", "Order by:": "Sıralama:", "Name": "İsim", "Id": "İd", @@ -409,6 +448,10 @@ "Both": "Her ikisi", "Exact match": "Tam eşleşme", "Show similar packages": "Benzer paketleri göster", + "Nothing to share": "Paylaşılacak bir şey yok", + "Please select a package first.": "Lütfen önce bir paket seçin.", + "Share link copied": "Paylaşım bağlantısı kopyalandı", + "The share link for {0} has been copied to the clipboard.": "{0} için paylaşım bağlantısı panoya kopyalandı.", "No results were found matching the input criteria": "Giriş kriterlerine uygun sonuç bulunamadı", "No packages were found": "Paket bulunamadı", "Loading packages": "Paketler yükleniyor", @@ -440,7 +483,11 @@ "Package bundle": "Paketleme grubu", "Could not create bundle": "Paket grubu oluşturulamadı", "The package bundle could not be created due to an error.": "Bir hata nedeniyle paket grubu oluşturulamadı.", + "Unsaved changes": "Kaydedilmemiş değişiklikler", + "Discard changes": "Değişiklikleri göz ardı et", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Geçerli pakette kaydedilmemiş değişiklikler var. Bunları göz ardı etmek istiyor musunuz?", "Bundle security report": "Paket güvenlik raporu", + "The bundle contained restricted content": "Paket, kısıtlanmış içerik içeriyordu", "Hooray! No updates were found.": "Yaşasın! Her şey güncel!", "Everything is up to date": "Her şey güncel", "Uninstall selected packages": "Seçili paketleri kaldır\n", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows için klasik paket yöneticisi. Orada her şeyi bulacaksınız.
İçerir: Genel Yazılım", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Microsoft ile tasarlanmış araçlar ve yürütülebilir dosyalarla dolu bir depo.NET ekosistemini göz önünde bulundurun.
İçerikleri: .NET ile ilgili araçlar ve komut dosyaları", "NuPkg (zipped manifest)": "NuPkg (sıkıştırılmış manifest)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (veya Linux) için eksik paket yöneticisi.
İçerdikleri: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "\"Node JS'in paket yöneticisi. Javascript dünyasının yörüngesinde dönen kütüphaneler ve diğer yardımcı programlarla dolu.
İçerik: Node JavaScript kütüphaneleri ve diğer ilgili yardımcı programlar\"", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python'un kütüphane yöneticisi. Python kitaplıkları ve diğer python ile ilgili yardımcı programlarla dolu
İçerik: Python kitaplıkları ve ilgili yardımcı programlar", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell'in paket yöneticisi. PowerShell özelliklerini genişletmek için kitaplıkları ve komut dosyalarını bulun
İçerir: Modüller, Komut Dosyaları, Cmdlet'ler", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Kuyrukta işlem (konum {0})...", "Click here for more details": "Daha fazla bilgi için buraya tıklayın", "Operation canceled by user": "İşlem kullanıcı tarafından iptal edildi", + "Running PreOperation ({0}/{1})...": "PreOperation çalıştırılıyor ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} içinden PreOperation {0} başarısız oldu ve gerekli olarak işaretlenmişti. İptal ediliyor...", + "PreOperation {0} out of {1} finished with result {2}": "{1} içinden PreOperation {0}, {2} sonucu ile tamamlandı", "Starting operation...": "Çalışmaya başlıyor...", + "Running PostOperation ({0}/{1})...": "PostOperation çalıştırılıyor ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} içinden PostOperation {0} başarısız oldu ve gerekli olarak işaretlenmişti. İptal ediliyor...", + "PostOperation {0} out of {1} finished with result {2}": "{1} içinden PostOperation {0}, {2} sonucu ile tamamlandı", "{package} installer download": "{package} yükleyi̇ci̇ i̇ndi̇r", "{0} installer is being downloaded": "{0} yükleyici indiriliyor", "Download succeeded": "İndirme başarılı", @@ -556,14 +610,12 @@ "Portable mode": "Taşınabilir Mod", "DEBUG BUILD": "HATA AYIKLAMA YAPISI", "Available Updates": "Mevcut Güncellemeler", - "Show WingetUI": "UniGetUI'ı göster\n", + "Show UniGetUI": "UniGetUI'ı göster\n", "Quit": "Çıkış", "Attention required": "Dikkat gerektirir", "Restart required": "Yeniden başlatma gerekli", "1 update is available": "1 güncelleme mevcut", "{0} updates are available": "{0} güncellemeler mevcut", - "WingetUI Homepage": "UniGetUI Ana Sayfası", - "WingetUI Repository": "UniGetUI Paket Deposu", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Burada UniGetUI'nin aşağıdaki kısayollara ilişkin davranışını değiştirebilirsiniz. Bir kısayolun kontrol edilmesi, eğer gelecekteki bir yükseltmede oluşturulursa UniGetUI'nin onu silmesini sağlayacaktır. İşaretini kaldırmak kısayolu olduğu gibi koruyacaktır", "Manual scan": "Manuel tarama", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Masaüstünüzde bulunan kısayollar taranacak ve hangilerini tutacağınızı, hangilerini kaldıracağınızı seçmeniz gerekecektir.", @@ -583,7 +635,6 @@ "Restart later": "Daha sonra yeniden başlatacağım", "An error occurred:": "Bir hata oluştu:", "I understand": "Anladım", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI yönetici olarak çalıştırıldı, bu önerilmez. UniGetUI'yı yönetici olarak çalıştırırken, UniGetUI'dan başlatılan HER işlem yönetici ayrıcalıklarına sahip olacaktır. Programı yine de kullanabilirsiniz, ancak UniGetUI'yı yönetici ayrıcalıklarıyla çalıştırmamanızı şiddetle tavsiye ederiz.", "WinGet was repaired successfully": "WinGet başarıyla onarıldı", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet onarıldıktan sonra UniGetUI'nin yeniden başlatılması önerilir", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOT: Bu sorun giderici, WinGet bölümündeki UniGetUI Ayarları'ndan devre dışı bırakılabilir", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Paketleriniz paket grubuna eklenmiş olacak. Paket eklemeye devam edebilir veya paket grubunu dışa aktarabilirsiniz.", "Which backup do you want to open?": "Hangi yedeği açmak istiyorsunuz?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Açmak istediğiniz yedeği seçin. Daha sonra, hangi paketleri yüklemek istediğinizi inceleyebileceksiniz.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Devam eden işlemler var. UniGetUI'den çıkmak başarısız olmalarına neden olabilir. Devam etmek ister misiniz?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Devam eden işlemler var. UniGetUI'den çıkmak başarısız olmalarına neden olabilir. Devam etmek ister misiniz?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI veya bazı bileşenleri eksik veya bozuk.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Durumu ele almak için UniGetUI'yi yeniden yüklemeniz şiddetle tavsiye edilir.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Etkilenen dosya(lar) hakkında daha fazla bilgi edinmek için UniGetUI Günlüklerine bakın", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Süreç adlarını buraya virgülle (,) ayırarak yazın", "Unset or unknown": "Ayarlanmamış veya bilinmiyor", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Sorun hakkında daha fazla bilgi için lütfen Komut satırı Çıktısına veya İşlem Geçmişine bakın.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Bu paketin ekran görüntüsü yok veya simgesi eksik mi? Eksik simgeleri ve ekran görüntülerini herkese açık veritabanımıza ekleyerek UniGetUI'ye katkıda bulunun.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Bu paketin ekran görüntüsü yok veya simgesi eksik mi? Eksik simgeleri ve ekran görüntülerini herkese açık veritabanımıza ekleyerek UniGetUI'ye katkıda bulunun.", "Become a contributor": "Katkıda bulunan olun", "Save": "Kaydet", "Update to {0} available": "{0} Güncelleme mevcut", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Otomatik WinGet sorun gidericisini etkinleştirin", "Enable an [experimental] improved WinGet troubleshooter": "[Deneysel] olarak geliştirilmiş bir WinGet sorun gidericisini etkinleştirin", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "'Uygulanabilir güncelleme bulunamadı' uyarısıyla başarısız olan güncellemeleri yoksayılan güncellemeler listesine ekleyin", - "Restart WingetUI to fully apply changes": "Değişiklikleri tamamıyla uygulamak için UniGetUI'yi yeniden başlatın", - "Restart WingetUI": "UniGetUI'ı yeniden başlat", "Invalid selection": "Geçersiz seçim", "No package was selected": "Hiçbir paket seçilmedi", "More than 1 package was selected": "1'den fazla paket seçildi", @@ -684,8 +733,39 @@ "Log out failed: ": "Çıkış başarısız oldu: ", "Package backup settings": "Paket yedekleme ayarları", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "UniGetUI Hakkında", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI, komut satırı paket yöneticileriniz için hepsi bir arada grafik arayüzü sağlayarak yazılımınızı yönetmeyi kolaylaştıran bir uygulamadır.", + "You have installed WingetUI Version {0}": "UniGetUI {0} Sürümünü yüklediniz", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "Katkıda bulunanların yardımı olmadan UniGetUI mümkün olmazdı. Hepinize teşekkür ederim 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI aşağıdaki kütüphaneleri kullanır. Onlar olmasaydı, UniGetUI mümkün olmazdı.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI, gönüllü çevirmenler sayesinde 40 'tan fazla dile çevrildi. Teşekkürler 🤝", + "WingetUI Settings": "UniGetUI Ayarları", + "You may need to install {pm} in order to use it with WingetUI.": "UniGetUI ile kullanmak için {pm} yüklemeniz gerekebilir.", + "Scoop Installer - WingetUI": "Kepçe Yükleyici - UniGetUI", + "Scoop Uninstaller - WingetUI": "Kepçe Kaldırma Programı - UniGetUI", + "Clearing Scoop cache - WingetUI": "Kepçe önbelleğini temizleme - UniGetUI", + "WingetUI Version {0}": "UniGetUI Sürüm {0}", + "WingetUI License": "UniGetUI Lisansı", + "Using WingetUI implies the acceptation of the MIT License": "UniGetUI'yi kullanmak MIT Lisansının kabul edildiğini ifade eder", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Arka plan api'sini etkinleştir (UniGetUI Widget'ları ve Paylaşımı, bağlantı noktası 7058)", + "Update WingetUI automatically": "UniGetUI'ı otomatik olarak güncelle", + "Reset WingetUI": "UniGetUI'yi Sıfırla", + "WingetUI display language:": "UniGetUI arayüz dili:", + "Manage WingetUI autostart behaviour": "UniGetUI otomatik başlatma davranışını yönet", + "Enable WingetUI notifications": "UniGetUI bildirimlerini etkinleştir", + "WingetUI Log": "UniGetUI Günlüğü", + "Show WingetUI": "UniGetUI'ı göster\n", + "WingetUI Homepage": "UniGetUI Ana Sayfası", + "WingetUI Repository": "UniGetUI Paket Deposu", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI yönetici olarak çalıştırıldı, bu önerilmez. UniGetUI'yı yönetici olarak çalıştırırken, UniGetUI'dan başlatılan HER işlem yönetici ayrıcalıklarına sahip olacaktır. Programı yine de kullanabilirsiniz, ancak UniGetUI'yı yönetici ayrıcalıklarıyla çalıştırmamanızı şiddetle tavsiye ederiz.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Devam eden işlemler var. UniGetUI'den çıkmak başarısız olmalarına neden olabilir. Devam etmek ister misiniz?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Bu paketin ekran görüntüsü yok veya simgesi eksik mi? Eksik simgeleri ve ekran görüntülerini herkese açık veritabanımıza ekleyerek UniGetUI'ye katkıda bulunun.", + "Restart WingetUI to fully apply changes": "Değişiklikleri tamamıyla uygulamak için UniGetUI'yi yeniden başlatın", + "Restart WingetUI": "UniGetUI'ı yeniden başlat", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "UniGetUI otomatik başlatma davranışını Ayarlar uygulamasından yönetin", "(Number {0} in the queue)": "({0} Numara kuyrukta)", - "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@ahmetozmtn, @gokberkgs, @dogancanyr @anzeralp, @BerkeA111", + "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@ahmetozmtn, @gokberkgs, @dogancanyr, @anzeralp, @BerkeA111", "0 packages found": "Paket bulunamadı", "0 updates found": "Güncelleme bulunamadı", "1 month": "1 ay", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ua.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_uk.json similarity index 92% rename from src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ua.json rename to src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_uk.json index f83b235447..78f70494ad 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ua.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_uk.json @@ -20,7 +20,7 @@ "Do you really want to uninstall {0}?": "Ви дійсно хочете видалити {0}?", "Do you really want to uninstall the following {0} packages?": "Ви дійсно хочете видалити наступні {0} пакетів?", "No": "Ні", - "Yes": "Да", + "Yes": "Так", "View on UniGetUI": "Відкрити у UniGetUI", "Update": "Оновити", "Open UniGetUI": "Відкрити UniGetUI", @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Відмінити видалення, якщо команда перед видаленням завершиться невдало", "Command-line to run:": "Команда для запуску:", "Save and close": "Зберегти та закрити", + "General": "Загальні", + "Architecture & Location": "Архітектура й розташування", + "Command-line": "Командний рядок", + "Pre/Post install": "Перед/після встановлення", "Run as admin": "У режимі адміна", "Interactive installation": "Інтерактивна інсталяція", "Skip hash check": "Не перевіряти хеш", @@ -71,6 +75,8 @@ "Manage ignored updates": "Керування ігнорованими оновленнями", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Перераховані тут пакети не враховуватимуться під час перевірки оновлень. Двічі клацніть по них або натисніть кнопку праворуч, щоб перестати ігнорувати їхні оновлення.", "Reset list": "Скинути список", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Ви дійсно хочете скинути список ігнорованих оновлень? Цю дію неможливо скасувати", + "No ignored updates": "Немає ігнорованих оновлень", "Package Name": "Ім'я пакета", "Package ID": "ID пакета", "Ignored version": "Ігнорована версія", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Ця операція запущена інтерактивно.", "You will likely need to interact with the installer.": "Вірогідно, вам доведеться взаємодіяти за інсталятором.", "Integrity checks skipped": "Перевірка хешу пропущена", + "Integrity checks will not be performed during this operation.": "Під час цієї операції перевірки цілісності не виконуватимуться.", "Proceed at your own risk.": "Продовжуйте на власний ризик.", "Close": "Закрити", "Loading...": "Завантаження...", @@ -120,16 +127,17 @@ "optional": "необов'язкова", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} готовий для встановлення.", "The update process will start after closing UniGetUI": "Процес оновлення почнеться після закриття UniGetUI", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI було запущено від імені адміністратора, що не рекомендується. Якщо запускати UniGetUI від імені адміністратора, КОЖНА операція, запущена з UniGetUI, матиме права адміністратора. Ви все одно можете користуватися програмою, але ми наполегливо рекомендуємо не запускати UniGetUI від імені адміністратора.", "Share anonymous usage data": "Збір анонімних даних про використання", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI збирає анонімні дані про використання, щоб покращити користувацький досвід.", "Accept": "Погоджуюсь", - "You have installed WingetUI Version {0}": "У вас встановлена UniGetUI версії {0}", + "You have installed UniGetUI Version {0}": "У вас встановлена UniGetUI версії {0}", "Disclaimer": "Відмова від відповідальності", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не має відношення до жодного з сумісних менеджерів пакетів. UniGetUI — це незалежний проект.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI було б неможливо створити без допомоги учасників. Дякую вам всім 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI використовує наступні бібліотеки. Без них UniGetUI було б неможливо створити.", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI було б неможливо створити без допомоги учасників. Дякую вам всім 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI використовує наступні бібліотеки. Без них UniGetUI було б неможливо створити.", "{0} homepage": "Cторінка {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI був перекладений на більше ніж 40 мов дякуючи добровільним перекладачам. Дякую 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI був перекладений на більше ніж 40 мов дякуючи добровільним перекладачам. Дякую 🤝", "Verbose": "Детальний", "1 - Errors": "1 - Помилки", "2 - Warnings": "2 - Застереження", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Ви увійшли як {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Славно! Резервні копії будуть завантажені у приватний Gist на вашому обліковому запису", "Select backup": "Виберіть копію", - "WingetUI Settings": "Налаштування UniGetUI", + "UniGetUI Settings": "Налаштування UniGetUI", "Allow pre-release versions": "Дозволити підготовчі версії", "Apply": "Застосувати", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "З міркувань безпеки користувацькі аргументи командного рядка типово вимкнені. Щоб змінити це, перейдіть до налаштувань безпеки UniGetUI.", "Go to UniGetUI security settings": "Перейти в налаштування безпеки UniGetUI", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Наступні налаштування будуть застосовані кожного разу коли пакет з {0} встановлюється, оновлюється чи видаляється.", "Package's default": "За замовчуванням для пакета", @@ -160,6 +169,7 @@ "Username": "Ім'я користувача", "Password": "Пароль", "Credentials": "Облікові данні", + "It is not guaranteed that the provided credentials will be stored safely": "Немає гарантії, що надані облікові дані буде збережено безпечно", "Partially": "Частково", "Package manager": "Менеджер пакетів", "Compatible with proxy": "Сумісність з проксі", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} увімкнений та готовий до використання", "{pm} version:": "Версія {pm}:", "{pm} was not found!": "{pm} не знайдено!", - "You may need to install {pm} in order to use it with WingetUI.": "Можливо, вам необхідно встановити {pm}, щоб використовувати його з UniGetUI.", - "Scoop Installer - WingetUI": "Інсталятор Scoop — UniGetUI", - "Scoop Uninstaller - WingetUI": "Програма видалення Scoop – UniGetUI", - "Clearing Scoop cache - WingetUI": "Очищаємо кеш Scoop — UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "Можливо, вам необхідно встановити {pm}, щоб використовувати його з UniGetUI.", + "Scoop Installer - UniGetUI": "Інсталятор Scoop — UniGetUI", + "Scoop Uninstaller - UniGetUI": "Програма видалення Scoop – UniGetUI", + "Clearing Scoop cache - UniGetUI": "Очищаємо кеш Scoop — UniGetUI", + "Restart UniGetUI to fully apply changes": "Перезапустіть UniGetUI, щоб повністю застосувати зміни", "Restart UniGetUI": "Перезапустити UniGetUI", "Manage {0} sources": "Керування джерелами для {0}", "Add source": "Додати джерело", "Add": "Додати", + "Source name": "Назва джерела", + "Source URL": "URL джерела", "Other": "Інше", + "No minimum age": "Без мінімального віку", "1 day": "1 день", "{0} days": "{0} дня", + "Custom...": "Власне...", "{0} minutes": "{0} хвилини", "1 hour": "1 година", "{0} hours": "{0} години", "1 week": "1 тиждень", - "WingetUI Version {0}": "UniGetUI версія {0}", + "Supports release dates": "Підтримує дати випуску", + "Release date support per package manager": "Підтримка дат випуску для кожного менеджера пакетів", + "UniGetUI Version {0}": "UniGetUI версія {0}", "Search for packages": "Пошук пакетів", "Local": "Локально", "OK": "ОК", @@ -200,11 +217,13 @@ "Enabled": "Увімкнено", "Disabled": "Вимкнений", "More info": "Додаткова інформація", + "GitHub account": "Обліковий запис GitHub", "Log in with GitHub to enable cloud package backup.": "Увійдіть через GitHub, щоб увімкнути резервне копіювання в хмару", "More details": "Більше деталей", "Log in": "Увійти", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Якщо резервне копіювання в хмару увімкнуто, копія буде збережена як GitHub Gist в цей обліковий запис", "Log out": "Вийти", + "About UniGetUI": "Про UniGetUI", "About": "Про програму", "Third-party licenses": "Сторонні ліцензії", "Contributors": "Учасники", @@ -212,6 +231,7 @@ "Manage shortcuts": "Керування ярликами", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI виявив наступні ярлики робочого стола, які можна автоматично видалити при наступних оновленнях пакетів.", "Do you really want to reset this list? This action cannot be reverted.": "Ви дійсно хочете скинути цей список? Ці зміни буде неможливо відмінити.", + "Open in explorer": "Відкрити в провіднику", "Remove from list": "Видалити зі списку", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Коли виявлені нові ярлики, видаляти їх автоматично замість відображення цього діалогу.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI збирає анонімну статистику використання, єдина ціль якої - краще зрозуміти та покращити користувацький досвід.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Чи ви погоджуєтесь з тим, що UniGetUI збиратиме та відправлятиме анонімну статистику використання, єдина ціль якої - краще зрозуміти та покращити користувацький досвід?", "Decline": "Не погоджуюсь", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Жодна персональна інформація не збирається й не передається, зібрані данні анонімізуються, отже їх не можна зв'язати з вами.", - "About WingetUI": "Про UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI — це застосунок, який робить керування вашим програмним забезпеченням простіше: він надає графічний інтерфейс \"все в одному\" для ваших менеджерів пакетів.", + "Toggle navigation panel": "Перемкнути панель навігації", + "Minimize": "Згорнути", + "Maximize": "Розгорнути", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI — це застосунок, який робить керування вашим програмним забезпеченням простіше: він надає графічний інтерфейс \"все в одному\" для ваших менеджерів пакетів.", "Useful links": "Корисні посилання", + "UniGetUI Homepage": "Домашня сторінка UniGetUI", "Report an issue or submit a feature request": "Повідомити про проблему чи запропонувати покращення", + "UniGetUI Repository": "Репозиторій UniGetUI", "View GitHub Profile": "Профіль на GitHub", - "WingetUI License": "Ліцензія UniGetUI", - "Using WingetUI implies the acceptation of the MIT License": "Використання UniGetUI означає згоду з ліцензією MIT.", + "UniGetUI License": "Ліцензія UniGetUI", + "Using UniGetUI implies the acceptation of the MIT License": "Використання UniGetUI означає згоду з ліцензією MIT.", "Become a translator": "Станьте перекладачем", "View page on browser": "Відкрити сторінку в браузері", "Copy to clipboard": "Копіювати в буфер обміну", "Export to a file": "Експорт у файл", "Log level:": "Рівень журналу:", "Reload log": "Перезавантажити журнал", + "Export log": "Експортувати журнал", + "UniGetUI Log": "Журнал UniGetUI", "Text": "Текст", "Change how operations request administrator rights": "Змінити як операції запитають права адміністратора", "Restrictions on package operations": "Обмеження для операцій з пакетами", @@ -271,7 +297,7 @@ "Leave empty for default": "Пусте за замовчуванням", "Add a timestamp to the backup file names": "Додавати мітку часу до імен файлів резервної копії", "Backup and Restore": "Резервне копіювання і відновлення", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Увімкнути фоновий API (Віджети UniGetUI та можливість ділитися, порт 7058).", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Увімкнути фоновий API (Віджети UniGetUI та можливість ділитися, порт 7058).", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Зачекати наявності підключення до інтернету перед тим, як виконувати задачі, які потребують цього підключення.", "Disable the 1-minute timeout for package-related operations": "Відключити 1-хвилинний тайм-аут для операцій, пов'язаних з пакетами", "Use installed GSudo instead of UniGetUI Elevator": "Використовувати встановлений GSudo замість вбудованого модуля підвищення UniGetUI", @@ -286,7 +312,7 @@ "Telemetry": "Телеметрія", "Manage UniGetUI settings": "Керування налаштуваннями UniGetUI", "Related settings": "Пов'язані налаштування", - "Update WingetUI automatically": "Оновлювати UniGetUI автоматично", + "Update UniGetUI automatically": "Оновлювати UniGetUI автоматично", "Check for updates": "Перевірити зараз", "Install prerelease versions of UniGetUI": "Встановлювати підготовчі версії UniGetUI", "Manage telemetry settings": "Керування налаштуваннями телеметрії", @@ -295,17 +321,17 @@ "Import": "Імпорт", "Export settings to a local file": "Експортувати налаштування у локальний файл", "Export": "Експорт", - "Reset WingetUI": "Скинути UniGetUI", "Reset UniGetUI": "Скинути UniGetUI", "User interface preferences": "Налаштування інтерфейсу користувача", "Application theme, startup page, package icons, clear successful installs automatically": "Тема програми, початковий екран, піктограми пакетів, автоматичне прибирання успішних операцій", "General preferences": "Загальні налаштування", - "WingetUI display language:": "Мова відображення UniGetUI:", + "UniGetUI display language:": "Мова відображення UniGetUI:", "Is your language missing or incomplete?": "Ваша мова відсутня чи неповна?", "Appearance": "Зовнішній вигляд", "UniGetUI on the background and system tray": "UniGetUI у фоні та системному лотку", "Package lists": "Списки пакетів", "Close UniGetUI to the system tray": "Закріпити UniGetUI в системному треї", + "Manage UniGetUI autostart behaviour": "Керування автозапуском UniGetUI", "Show package icons on package lists": "Відображати піктограми пакетів", "Clear cache": "Очистити кеш", "Select upgradable packages by default": "Вибирати пакети, що можна оновити, за замовчуванням", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Будь ласка, зауважте, що не всі менеджери пакетів повністю підтримують цю функціональність ", "Proxy URL": "URL-адреса проксі", "Enter proxy URL here": "Введіть URL проксі тут", + "Authenticate to the proxy with a user and a password": "Автентифікуватися на проксі за допомогою імені користувача та пароля", + "Internet and proxy settings": "Налаштування Інтернету та проксі", "Package manager preferences": "Налаштування менеджерів пакетів", "Ready": "Готовий", "Not found": "Не знайдено", "Notification preferences": "Параметри сповіщень", "Notification types": "Типи сповіщень", "The system tray icon must be enabled in order for notifications to work": "Для функціонування сповіщень іконка у системному лотку має бути увімкнена", - "Enable WingetUI notifications": "Увімкнути сповіщення UniGetUI", + "Enable UniGetUI notifications": "Увімкнути сповіщення UniGetUI", "Show a notification when there are available updates": "Показувати сповіщення, коли є доступні оновлення", "Show a silent notification when an operation is running": "Показувати беззвучне сповіщення, поки операція проводиться", "Show a notification when an operation fails": "Показувати сповіщення про неуспішні операції", "Show a notification when an operation finishes successfully": "Показувати сповіщення про успішні операції", "Concurrency and execution": "Паралелізм та виконання ", "Automatic desktop shortcut remover": "Автоматичне видалення ярликів з робочого столу", + "Choose how many operations should be performed in parallel": "Виберіть, скільки операцій слід виконувати паралельно", "Clear successful operations from the operation list after a 5 second delay": "Прибирати успішні операції зі списку операцій після 5 секунд очікування", "Download operations are not affected by this setting": "Це налаштування не впливає на операції завантаження", "Try to kill the processes that refuse to close when requested to": "Спробувати завершити процес, який відмовляється закритися за запитом", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Виберіть виконавчій файл, який буде використовуватися. Наступний список містить файли, знайдені UniGetUI", "Current executable file:": "Поточний виконавчій файл:", "Ignore packages from {pm} when showing a notification about updates": "Ігнорувати пакети з {pm} при показі сповіщень про оновлення", + "Update security": "Безпека оновлень", + "Use global setting": "Використовувати глобальне налаштування", + "e.g. 10": "напр. 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} не надає дати випуску для своїх пакетів, тому це налаштування не матиме жодного ефекту", + "Override the global minimum update age for this package manager": "Перевизначити глобальний мінімальний вік оновлень для цього менеджера пакетів", + "Minimum age for updates": "Мінімальний вік оновлень", + "Custom minimum age (days)": "Власний мінімальний вік (днів)", "View {0} logs": "Продивитися журнал {0}", + "If Python cannot be found or is not listing packages but is installed on the system, ": "Якщо Python не вдається знайти або він не показує пакети, хоча встановлений у системі, ", "Advanced options": "Розширені налаштування", "Reset WinGet": "Скинути WinGet", "This may help if no packages are listed": "Це може допомогти, якщо пакети не відображаються", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Увімкнути очищення Scoop під час запуску", "Use system Chocolatey": "Використовувати Chocolatey, встановлений у системі", "Default vcpkg triplet": "Триплет vcpk за замовчуванням", + "Change vcpkg root location": "Змінити розташування кореня vcpkg", "Language, theme and other miscellaneous preferences": "Мова, тема та інші параметри", "Show notifications on different events": "Показувати сповіщення про різні події", "Change how UniGetUI checks and installs available updates for your packages": "Змінити як UniGetUI перевіряє та встановлює оновлення для ваших пакетів", @@ -384,16 +422,17 @@ "Do not automatically install updates when the network connection is metered": "Не встановлювати оновлення автоматично, якщо підключення до мережі є лімітним", "Do not automatically install updates when the device runs on battery": "Не встановлювати оновлення автоматично, якщо пристрій працює від батареї", "Do not automatically install updates when the battery saver is on": "Не встановлювати оновлення автоматично, якщо увімкнутий режим економії енергії", + "Only show updates that are at least the specified number of days old": "Показувати лише оновлення, яким щонайменше вказана кількість днів", "Change how UniGetUI handles install, update and uninstall operations.": "Змінити як UniGetUI керує операціями встановлення, оновлення й видалення.", "Package Managers": "Менеджери пакетів", "More": "Ще", - "WingetUI Log": "Журнал UniGetUI", "Package Manager logs": "Журнали пакетних менеджерів", "Operation history": "Історія операцій", "Help": "Допомога", + "Quit UniGetUI": "Вийти з UniGetUI", "Order by:": "Сортувати за:", "Name": "Ім'я", - "Id": "Id", + "Id": "ID", "Ascendant": "Зростанням", "Descendant": "Спаданням", "View mode:": "Подання:", @@ -409,6 +448,10 @@ "Both": "ІD або ім'я пакета", "Exact match": "Точна відповідність", "Show similar packages": "Показувати схожі пакети", + "Nothing to share": "Немає чим поділитися", + "Please select a package first.": "Спочатку виберіть пакет.", + "Share link copied": "Посилання для поширення скопійовано", + "The share link for {0} has been copied to the clipboard.": "Посилання для поширення для {0} скопійовано до буфера обміну.", "No results were found matching the input criteria": "Не знайдено жодного результату, що відповідає введеним критеріям", "No packages were found": "Жодного пакету не знайдено", "Loading packages": "Завантаження пакетів", @@ -440,7 +483,11 @@ "Package bundle": "Колекція пакетів", "Could not create bundle": "Неможливо створити колекцію", "The package bundle could not be created due to an error.": "Колекцію пакетів неможливо створити через помилку.", + "Unsaved changes": "Незбережені зміни", + "Discard changes": "Відкинути зміни", + "You have unsaved changes in the current bundle. Do you want to discard them?": "У поточній колекції є незбережені зміни. Хочете їх відкинути?", "Bundle security report": "Звіт про безпеку колекції", + "The bundle contained restricted content": "Колекція містила обмежений вміст", "Hooray! No updates were found.": "Ура! Оновлення не знайдено.", "Everything is up to date": "Все оновлено", "Uninstall selected packages": "Видалити вибрані пакети", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Класичний менеджер пакетів для Windows. Тут ви знайдете все, що потрібно.
Містить: Загальне програмне забезпечення", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Репозиторій повний утиліт та застосунків, спроектованих для екосистеми .NET від Microsoft.
Містить: Утиліти, зв'язані з .NET, та скрипти", "NuPkg (zipped manifest)": "NuPkg (стиснутий маніфест)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Відсутній менеджер пакетів для macOS (або Linux).
Містить: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Менеджер пакетів Node JS. Повний бібліотек та інших утиліт, які обертаються навколо світу javascript
Містить: Бібліотеки Node javascript та інші пов'язані з ними утиліти", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Менеджер бібліотек Python. Повний набір бібліотек python та інших утиліт, пов'язаних з python
Містить: Бібліотеки python та пов'язані з ними утиліти", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Менеджер пакетів для PowerShell. Знайди бібліотеки та скрипти які розширяють можливості PowerShell
Містить: Модулі, Скрипти, Командлети", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Операція в черзі (позиція {0})…", "Click here for more details": "Натисніть тут для подробиць", "Operation canceled by user": "Операція відмінена користувачем", + "Running PreOperation ({0}/{1})...": "Виконується PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} з {1} завершилася невдало й була позначена як обов'язкова. Переривання...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} з {1} завершилася з результатом {2}", "Starting operation...": "Починаємо операцію…", + "Running PostOperation ({0}/{1})...": "Виконується PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} з {1} завершилася невдало й була позначена як обов'язкова. Переривання...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} з {1} завершилася з результатом {2}", "{package} installer download": "Завантаження інсталятора для {package}", "{0} installer is being downloaded": "Інсталятор для {0} завантажується", "Download succeeded": "Завантаження завершено успішно", @@ -553,17 +607,15 @@ "Package management made easy": "Керування пакетами без зусиль", "version {0}": "версії {0}", "[RAN AS ADMINISTRATOR]": "ЗАПУЩЕНО ВІД ІМЕНІ АДМІНІСТРАТОРА", - "Portable mode": "Портативний режим", + "Portable mode": "Портативний режим\n", "DEBUG BUILD": "ЗБІРКА ДЛЯ ВІДЛАДЖУВАННЯ", "Available Updates": "Доступні оновлення", - "Show WingetUI": "Показати UniGetUI", + "Show UniGetUI": "Показати UniGetUI", "Quit": "Вийти", "Attention required": "Потрібна ваша увага", "Restart required": "Потрібне перезавантаження", "1 update is available": "1 оновлення доступне", "{0} updates are available": "{0} доступні оновлення", - "WingetUI Homepage": "Домашня сторінка UniGetUI", - "WingetUI Repository": "Репозиторій UniGetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Тут ви можете змінити поведінку UniGetUI стосовно наступних ярликів. Виділення ярлика призведе до його видалення програмою UniGetUI, якщо він буде створений при наступних оновленнях. Якщо прапорець зняти, ярлик залишиться неторкнутим.", "Manual scan": "Ручне сканування", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Існуючи ярлики на вашому робочому столі будуть проскановані, вам буде необхідно вибрати які залишити, а які видалити.", @@ -583,7 +635,6 @@ "Restart later": "Перезавантажити пізніше", "An error occurred:": "Виникла помилка:", "I understand": "Я розумію", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI був запущений від імені адміністратора, що не рекомендується. Коли UniGetUI запущений таким чином, КОЖНА операція, яку запускає UniGetUI, буде мати права адміністратора. Ви все ще можете користуватися застосунком, але ми дуже радимо не запускати UniGetUI від імені адміністратора.", "WinGet was repaired successfully": "WinGet був успішно відновлений", "It is recommended to restart UniGetUI after WinGet has been repaired": "Рекомендовано перезапустити UniGetUI після того, як WinGet буде відновлено", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ПРИМІТКА: Засіб усунення неполадок можна відключити у налаштуваннях UniGetUI, у секції WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Вибрані пакети будуть додані до колекції. Ви можете продовжити додавати пакети або експортувати колекцію.", "Which backup do you want to open?": "Яку резервну копію ви бажаєте відкрити?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Виберіть резервну копію для відкриття. Пізніше ви зможете переглянути, які пакети/програми ви хочете відновити.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Деякі операції ще не завершені. Вихід з UniGetUI може призвести до їх невдалого завершення. Бажаєте продовжити?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Деякі операції ще не завершені. Вихід з UniGetUI може призвести до їх невдалого завершення. Бажаєте продовжити?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI чи деякі з його компонентів відсутні або пошкоджені.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Дуже радимо перевстановити UniGetUI щоби виправити ситуацію.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Зверніться до журналів UniGetUI, щоб отримати більше деталей стосовно пошкоджених файлів", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Введіть імена процесів тут, розділивши комами (,)", "Unset or unknown": "Невідома або невстановлена", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Будь ласка, подивіться на вивід з командного рядка, або в історію операцій, щоб отримати більше інформації про проблему.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "В цьому пакеті не вистачає знімків екрану чи піктограми? Зробіть внесок у UniGetUI, додавши відсутні піктограми та знімки екрану в нашу відкриту та публічну базу даних.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "В цьому пакеті не вистачає знімків екрану чи піктограми? Зробіть внесок у UniGetUI, додавши відсутні піктограми та знімки екрану в нашу відкриту та публічну базу даних.", "Become a contributor": "Стати учасником", "Save": "Зберегти", "Update to {0} available": "Доступне оновлення до {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Увімкнути автоматичний засіб усунення неполадок для WinGet", "Enable an [experimental] improved WinGet troubleshooter": "Увімкнути [експериментальний] покращений засіб усунення неполадок для WinGet", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Додати оновлення, що не вдалися з помилкою \"не знайдено оновлень, що можна застосувати\", до списку ігнорованих оновлень", - "Restart WingetUI to fully apply changes": "Перезапустіть UniGetUI, щоби повністю застосувати зміни", - "Restart WingetUI": "Перезапуск UniGetUI", "Invalid selection": "Неприпустимий вибір", "No package was selected": "Не було вибрано жодного пакета", "More than 1 package was selected": "Було вибрано більше ніж один пакет", @@ -684,6 +733,37 @@ "Log out failed: ": "Вихід не вдався:", "Package backup settings": "Налаштування резервного копіювання", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Про UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI — це застосунок, який робить керування вашим програмним забезпеченням простіше: він надає графічний інтерфейс \"все в одному\" для ваших менеджерів пакетів.", + "You have installed WingetUI Version {0}": "У вас встановлена UniGetUI версії {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI було б неможливо створити без допомоги учасників. Дякую вам всім 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI використовує наступні бібліотеки. Без них UniGetUI було б неможливо створити.", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI був перекладений на більше ніж 40 мов дякуючи добровільним перекладачам. Дякую 🤝", + "WingetUI Settings": "Налаштування UniGetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Можливо, вам необхідно встановити {pm}, щоб використовувати його з UniGetUI.", + "Scoop Installer - WingetUI": "Інсталятор Scoop — UniGetUI", + "Scoop Uninstaller - WingetUI": "Програма видалення Scoop – UniGetUI", + "Clearing Scoop cache - WingetUI": "Очищаємо кеш Scoop — UniGetUI", + "WingetUI Version {0}": "UniGetUI версія {0}", + "WingetUI License": "Ліцензія UniGetUI", + "Using WingetUI implies the acceptation of the MIT License": "Використання UniGetUI означає згоду з ліцензією MIT.", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Увімкнути фоновий API (Віджети UniGetUI та можливість ділитися, порт 7058).", + "Update WingetUI automatically": "Оновлювати UniGetUI автоматично", + "Reset WingetUI": "Скинути UniGetUI", + "WingetUI display language:": "Мова відображення UniGetUI:", + "Manage WingetUI autostart behaviour": "Керування автозапуском UniGetUI", + "Enable WingetUI notifications": "Увімкнути сповіщення UniGetUI", + "WingetUI Log": "Журнал UniGetUI", + "Show WingetUI": "Показати UniGetUI", + "WingetUI Homepage": "Домашня сторінка UniGetUI", + "WingetUI Repository": "Репозиторій UniGetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI був запущений від імені адміністратора, що не рекомендується. Коли UniGetUI запущений таким чином, КОЖНА операція, яку запускає UniGetUI, буде мати права адміністратора. Ви все ще можете користуватися застосунком, але ми дуже радимо не запускати UniGetUI від імені адміністратора.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Деякі операції ще не завершені. Вихід з UniGetUI може призвести до їх невдалого завершення. Бажаєте продовжити?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "В цьому пакеті не вистачає знімків екрану чи піктограми? Зробіть внесок у UniGetUI, додавши відсутні піктограми та знімки екрану в нашу відкриту та публічну базу даних.", + "Restart WingetUI to fully apply changes": "Перезапустіть UniGetUI, щоби повністю застосувати зміни", + "Restart WingetUI": "Перезапуск UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Налаштувати автозавантаження UniGetUI у застосунку \"Налаштування\"", "(Number {0} in the queue)": "({0} позиція в черзі)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@Vertuhai, Operator404, Artem Moldovanenko, @Taron-art, Alex Logvin", "0 packages found": "Знайдено 0 пакетів", @@ -1068,8 +1148,5 @@ "{pm} could not be found": "{pm} не знайдено", "{pm} found: {state}": "{pm} знайдено: {state}", "{pm} package manager specific preferences": "Особливі налаштування менеджера пакетів {pm}", - "{pm} preferences": "Налаштування {pm}", - "Hi, my name is Martí, and i am the developer of WingetUI. WingetUI has been entirely made on my free time!": "Привіт, мене звуть Марті, і я розробник WingetUI. WingetUI був повністю зроблений у мій вільний час!", - "Thank you ❤": "Дякую ❤", - "This project has no connection with the official {0} project — it's completely unofficial.": "Цей проект не зв'язаний з офіційним проектом {0} — він повністю не офіційний." + "{pm} preferences": "Налаштування {pm}" } diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json index def6c69164..d879ce86f6 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ur.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "اگر پری ان انسٹال کمانڈ ناکام ہو تو ان انسٹالیشن منسوخ کریں", "Command-line to run:": "چلانے کے لیے کمانڈ لائن:", "Save and close": "محفوظ کریں اور بند کریں", + "General": "عمومی", + "Architecture & Location": "آرکیٹیکچر اور مقام", + "Command-line": "کمانڈ لائن", + "Pre/Post install": "پری/پوسٹ انسٹال", "Run as admin": "ایڈمن کے طور پر چلائیں", "Interactive installation": "انٹرایکٹو تنصیب", "Skip hash check": "ہیش چیک چھوڑیں", @@ -71,6 +75,8 @@ "Manage ignored updates": "نظرانداز کردہ اپ ڈیٹس کو منظم کریں", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "اپ ڈیٹس کی جانچ کرتے وقت یہاں درج پیکیجز کو مدنظر نہیں رکھا جائے گا۔ ان پر ڈبل کلک کریں یا ان کے دائیں جانب کے بٹن پر کلک کریں تاکہ ان کی اپ ڈیٹس کو نظر انداز کرنا بند کر دیں۔", "Reset list": "فہرست کو دوبارہ ترتیب دیں۔", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "کیا آپ واقعی نظرانداز کردہ اپ ڈیٹس کی فہرست کو دوبارہ ترتیب دینا چاہتے ہیں؟ اس کارروائی کو واپس نہیں لیا جا سکتا۔", + "No ignored updates": "کوئی نظرانداز کردہ اپ ڈیٹس نہیں", "Package Name": "پیکیج کا نام", "Package ID": "پیکیج آئی ڈی", "Ignored version": "نظرانداز کردہ ورژن", @@ -86,6 +92,7 @@ "This operation is running interactively.": "یہ آپریشن انٹرایکٹو چل رہا ہے۔", "You will likely need to interact with the installer.": "آپ کو ممکنہ طور پر انسٹالر کے ساتھ بات چیت کرنے کی ضرورت ہوگی۔", "Integrity checks skipped": "سالمیت کی جانچ کو چھوڑ دیا گیا۔", + "Integrity checks will not be performed during this operation.": "اس آپریشن کے دوران سالمیت کی جانچ نہیں کی جائے گی۔", "Proceed at your own risk.": "اپنی ذمہ داری پر آگے بڑھیں۔", "Close": "بند کریں", "Loading...": "لوڈ ہو رہا ہے...", @@ -120,16 +127,17 @@ "optional": "اختیاری", "UniGetUI {0} is ready to be installed.": "UniGetUI {0} انسٹال ہونے کے لیے تیار ہے۔", "The update process will start after closing UniGetUI": "اپ ڈیٹ کا عمل UniGetUI کو بند کرنے کے بعد شروع ہوگا۔", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI کو ایڈمنسٹریٹر کے طور پر چلایا گیا ہے، جس کی سفارش نہیں کی جاتی۔ جب UniGetUI ایڈمنسٹریٹر کے طور پر چلتا ہے تو UniGetUI سے شروع کی گئی ہر کارروائی کو ایڈمنسٹریٹر کی مراعات حاصل ہوں گی۔ آپ اب بھی پروگرام استعمال کر سکتے ہیں، لیکن ہم سختی سے تجویز کرتے ہیں کہ UniGetUI کو ایڈمنسٹریٹر کی مراعات کے ساتھ نہ چلائیں۔", "Share anonymous usage data": "گمنام استعمال کا ڈیٹا شیئر کریں۔", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI صارف کے تجربے کو بہتر بنانے کے لیے گمنام استعمال کا ڈیٹا اکٹھا کرتا ہے۔", "Accept": "قبول کریں۔", - "You have installed WingetUI Version {0}": "آپ نے WingetUI ورژن {0} انسٹال کیا ہے", + "You have installed UniGetUI Version {0}": "آپ نے UniGetUI ورژن {0} انسٹال کیا ہے", "Disclaimer": "دستبرداری", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI کا تعلق کسی بھی مطابقت پذیر پیکیج مینیجرز سے نہیں ہے۔ UniGetUI ایک آزاد منصوبہ ہے۔", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI تعاون کرنے والوں کی مدد کے بغیر ممکن نہیں تھا۔ آپ سب کا شکریہ 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI درج ذیل لائبریریوں کا استعمال کرتا ہے۔ ان کے بغیر، WingetUI ممکن نہیں ہوتا۔", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI تعاون کرنے والوں کی مدد کے بغیر ممکن نہیں تھا۔ آپ سب کا شکریہ 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI درج ذیل لائبریریوں کا استعمال کرتا ہے۔ ان کے بغیر، UniGetUI ممکن نہیں ہوتا۔", "{0} homepage": "{0} ہوم پیج", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "رضاکار مترجمین کی بدولت WingetUI کا 40 سے زیادہ زبانوں میں ترجمہ ہو چکا ہے۔ شکریہ 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "رضاکار مترجمین کی بدولت UniGetUI کا 40 سے زیادہ زبانوں میں ترجمہ ہو چکا ہے۔ شکریہ 🤝", "Verbose": "تفصیل سے", "1 - Errors": "۱ - غلطیاں", "2 - Warnings": "۲ - انتباہات", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "آپ {0} (@{1}) کے طور پر لاگ ان ہیں", "Nice! Backups will be uploaded to a private gist on your account": "بہترین! بیک اپس آپ کے اکاؤنٹ پر نجی gist میں اپ لوڈ کیے جائیں گے", "Select backup": "بیک اپ منتخب کریں", - "WingetUI Settings": "WingetUI سیٹنگز", + "UniGetUI Settings": "UniGetUI ترتیبات", "Allow pre-release versions": "پری ریلیز ورژنز کی اجازت دیں", "Apply": "لاگو کریں", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "سیکیورٹی وجوہات کی بنا پر حسب ضرورت کمانڈ لائن دلائل ڈیفالٹ طور پر غیر فعال ہیں۔ اسے تبدیل کرنے کے لیے UniGetUI کی سیکیورٹی ترتیبات پر جائیں۔", "Go to UniGetUI security settings": "UniGetUI سیکیورٹی کی ترتیبات پر جائیں", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "درج ذیل اختیارات ہر بار {0} پیکیج کے انسٹال، اپ گریڈ یا ان انسٹال ہونے پر ڈیفالٹ کے طور پر لاگو کیے جائیں گے۔", "Package's default": "پیکیج کا ڈیفالٹ", @@ -160,6 +169,7 @@ "Username": "صارف کا نام", "Password": "پاس ورڈ", "Credentials": "اسناد", + "It is not guaranteed that the provided credentials will be stored safely": "اس بات کی ضمانت نہیں دی جا سکتی کہ فراہم کردہ اسناد محفوظ طریقے سے ذخیرہ ہوں گی۔", "Partially": "جزوی طور پر", "Package manager": "پیکیج منیجر", "Compatible with proxy": "پروکسی کے ساتھ مطابقت رکھتا ہے", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} فعال ہے اور تیار ہے", "{pm} version:": "{pm} ورژن:", "{pm} was not found!": "{pm} نہیں ملا!", - "You may need to install {pm} in order to use it with WingetUI.": "WingetUI کے ساتھ استعمال کرنے کے لیے آپ کو {pm} انسٹال کرنے کی ضرورت پڑ سکتی ہے۔", - "Scoop Installer - WingetUI": "Scoop انسٹالر - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop ان انسٹالر - WingetUI", - "Clearing Scoop cache - WingetUI": "اسکوپ کیشے کو صاف کرنا - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "UniGetUI کے ساتھ استعمال کرنے کے لیے آپ کو {pm} انسٹال کرنے کی ضرورت پڑ سکتی ہے۔", + "Scoop Installer - UniGetUI": "Scoop انسٹالر - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop ان انسٹالر - UniGetUI", + "Clearing Scoop cache - UniGetUI": "اسکوپ کیشے کو صاف کرنا - UniGetUI", + "Restart UniGetUI to fully apply changes": "تبدیلیاں مکمل طور پر لاگو کرنے کے لیے UniGetUI دوبارہ شروع کریں", "Restart UniGetUI": "UniGetUI دوبارہ شروع کریں", "Manage {0} sources": "{0} ماخذ کو منظم کریں", "Add source": "ذریعہ شامل کریں", "Add": "شامل کریں", + "Source name": "ماخذ کا نام", + "Source URL": "ماخذ URL", "Other": "دیگر", + "No minimum age": "کم از کم مدت نہیں", "1 day": "۱ دن", "{0} days": "{0} دن", + "Custom...": "حسب ضرورت...", "{0} minutes": "{0} منٹ", "1 hour": "۱ گھنٹہ", "{0} hours": "{0} گھنٹے", "1 week": "۱ ہفتہ", - "WingetUI Version {0}": "WingetUI ورژن {0}", + "Supports release dates": "ریلیز کی تاریخوں کی معاونت کرتا ہے", + "Release date support per package manager": "ہر پیکیج مینیجر کے لیے ریلیز کی تاریخ کی معاونت", + "UniGetUI Version {0}": "UniGetUI ورژن {0}", "Search for packages": "پیکیجز تلاش کریں", "Local": "مقامی", "OK": "ٹھیک ہے", @@ -200,11 +217,13 @@ "Enabled": "فعال", "Disabled": "غیر فعال", "More info": "مزید معلومات", + "GitHub account": "GitHub اکاؤنٹ", "Log in with GitHub to enable cloud package backup.": "کلاؤڈ پیکیج بیک اپ فعال کرنے کے لیے GitHub کے ساتھ لاگ ان کریں۔", "More details": "مزید تفصیلات", "Log in": "لاگ ان کریں", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "اگر کلاؤڈ بیک اپ فعال ہے تو یہ اس اکاؤنٹ پر GitHub Gist کے طور پر محفوظ ہوگا", "Log out": "لاگ آؤٹ کریں", + "About UniGetUI": "UniGetUI کے بارے میں", "About": "کے بارے میں", "Third-party licenses": "تیسری پارٹی کے لائسنس", "Contributors": "تعاون کرنے والے", @@ -212,6 +231,7 @@ "Manage shortcuts": "شارٹ کٹس کا نظم کریں۔", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI نے مندرجہ ذیل ڈیسک ٹاپ شارٹ کٹس کا پتہ لگایا ہے جنہیں مستقبل کے اپ گریڈ پر خود بخود ہٹایا جا سکتا ہے۔", "Do you really want to reset this list? This action cannot be reverted.": "کیا آپ واقعی اس فہرست کو دوبارہ ترتیب دینا چاہتے ہیں؟ اس کارروائی کو واپس نہیں لیا جا سکتا۔", + "Open in explorer": "ایکسپلورر میں کھولیں", "Remove from list": "فہرست سے ہٹائیں", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "جب نئے شارٹ کٹس دریافت ہوں تو اس ڈائیلاگ کو دکھانے کے بجائے انہیں خود بخود حذف کریں۔", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI صارف کے تجربے کو سمجھنے اور بہتر بنانے کے واحد مقصد کے ساتھ گمنام استعمال کا ڈیٹا اکٹھا کرتا ہے۔", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "کیا آپ قبول کرتے ہیں کہ UniGetUI استعمال کے گمنام اعدادوشمار جمع اور بھیجتا ہے، جس کا واحد مقصد صارف کے تجربے کو سمجھنا اور بہتر بنانا ہے؟", "Decline": "رد کرنا", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "کوئی ذاتی معلومات اکٹھی نہیں کی جاتی اور نہ ہی بھیجی جاتی ہے، اور جمع کردہ ڈیٹا کو گمنام کر دیا جاتا ہے، اس لیے اسے آپ کو بیک ٹریک نہیں کیا جا سکتا۔", - "About WingetUI": "WingetUI کے بارے میں", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI ایک ایسی ایپلی کیشن ہے جو آپ کے کمانڈ لائن پیکج مینیجرز کے لیے ایک آل ان ون گرافیکل انٹرفیس فراہم کر کے آپ کے سافٹ ویئر کا انتظام آسان بناتی ہے۔", + "Toggle navigation panel": "نیویگیشن پینل ٹوگل کریں", + "Minimize": "چھوٹا کریں", + "Maximize": "بڑا کریں", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI ایک ایسی ایپلی کیشن ہے جو آپ کے کمانڈ لائن پیکج مینیجرز کے لیے ایک آل ان ون گرافیکل انٹرفیس فراہم کر کے آپ کے سافٹ ویئر کا انتظام آسان بناتی ہے۔", "Useful links": "مفید لنکس", + "UniGetUI Homepage": "UniGetUI ہوم پیج", "Report an issue or submit a feature request": "مسئلہ رپورٹ کریں یا فیچر کی درخواست جمع کروائیں", + "UniGetUI Repository": "UniGetUI ریپوزٹری", "View GitHub Profile": "GitHub پروفائل دیکھیں", - "WingetUI License": "WingetUI لائسنس", - "Using WingetUI implies the acceptation of the MIT License": "WingetUI کا استعمال کرنے کا مطلب ہے کہ آپ نے MIT لائسنس کو قبول کر لیا ہے", + "UniGetUI License": "UniGetUI لائسنس", + "Using UniGetUI implies the acceptation of the MIT License": "UniGetUI کا استعمال کرنے کا مطلب ہے کہ آپ نے MIT لائسنس کو قبول کر لیا ہے", "Become a translator": "مترجم بنیں", "View page on browser": "براؤزر میں صفحہ دیکھیں", "Copy to clipboard": "کلپ بورڈ پر کاپی کریں۔", "Export to a file": "فائل میں ایکسپورٹ کریں", "Log level:": "لاگ کی سطح:", "Reload log": "لاگ دوبارہ لوڈ کریں", + "Export log": "لاگ برآمد کریں", + "UniGetUI Log": "UniGetUI لاگ", "Text": "متن", "Change how operations request administrator rights": "آپریشنز کے ایڈمنسٹریٹر حقوق کی درخواست کرنے کا طریقہ تبدیل کریں", "Restrictions on package operations": "پیکیج آپریشنز پر پابندیاں", @@ -271,7 +297,7 @@ "Leave empty for default": "ڈیفالٹ کے لئے خالی چھوڑ دیں", "Add a timestamp to the backup file names": "بیک اپ فائل کے ناموں میں ٹائم اسٹیمپ شامل کریں", "Backup and Restore": "بیک اپ اور بحالی", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "بیک گراؤنڈ API کو فعال کریں (WingetUI وجیٹس اور شیئرنگ، پورٹ 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "بیک گراؤنڈ API کو فعال کریں (UniGetUI وجیٹس اور شیئرنگ، پورٹ 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "انٹرنیٹ کنیکٹیویٹی کی ضرورت کے کاموں کو کرنے کی کوشش کرنے سے پہلے ڈیوائس کے انٹرنیٹ سے منسلک ہونے کا انتظار کریں۔", "Disable the 1-minute timeout for package-related operations": "پیکیج سے متعلق کارروائیوں کے لیے 1 منٹ کا ٹائم آؤٹ غیر فعال کریں۔", "Use installed GSudo instead of UniGetUI Elevator": "UniGetUI Elevator کی بجائے انسٹال شدہ GSudo استعمال کریں", @@ -286,7 +312,7 @@ "Telemetry": "ٹیلیمیٹری", "Manage UniGetUI settings": "UniGetUI کی ترتیبات کا انتظام کریں", "Related settings": "متعلقہ ترتیبات", - "Update WingetUI automatically": "WingetUI کو خود بخود اپ ڈیٹ کریں", + "Update UniGetUI automatically": "UniGetUI کو خود بخود اپ ڈیٹ کریں", "Check for updates": "اپ ڈیٹس کے لیے چیک کریں۔", "Install prerelease versions of UniGetUI": "UniGetUI کے پری ریلیز ورژن انسٹال کریں۔", "Manage telemetry settings": "ٹیلی میٹری کی ترتیبات کا نظم کریں۔", @@ -295,17 +321,17 @@ "Import": "درآمد کریں", "Export settings to a local file": "ترتیبات کو مقامی فائل میں ایکسپورٹ کریں", "Export": "برآمد کریں", - "Reset WingetUI": "WingetUI کو ری سیٹ کریں", "Reset UniGetUI": "UniGetUI کو دوبارہ ترتیب دیں۔", "User interface preferences": "صارف انٹرفیس کی ترجیحات", "Application theme, startup page, package icons, clear successful installs automatically": "ایپلیکیشن تھیم، سٹارٹ اپ پیج، پیکج آئیکنز، خود بخود کامیاب انسٹال صاف ہو جاتے ہیں۔", "General preferences": "عمومی ترجیحات", - "WingetUI display language:": "WingetUI ڈسپلے زبان:", + "UniGetUI display language:": "UniGetUI ڈسپلے زبان:", "Is your language missing or incomplete?": "کیا آپ کی زبان غائب ہے یا نامکمل؟", "Appearance": "ظاہری شکل", "UniGetUI on the background and system tray": "UniGetUI پس منظر اور سسٹم ٹرے میں", "Package lists": "پیکیج کی فہرستیں", "Close UniGetUI to the system tray": "UniGetUI کو سسٹم ٹرے میں بند کریں۔", + "Manage UniGetUI autostart behaviour": "UniGetUI کے خودکار آغاز کے رویے کا نظم کریں", "Show package icons on package lists": "پیکیج کی فہرستوں پر پیکیج کی شبیہیں دکھائیں۔", "Clear cache": "کیشے صاف کریں۔", "Select upgradable packages by default": "ڈیفالٹ کے لحاظ سے اپ گریڈ ایبل پیکجز کو منتخب کریں۔", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "براہ کرم نوٹ کریں کہ تمام پیکیج مینیجرز اس خصوصیت کو مکمل طور پر سپورٹ نہیں کر سکتے", "Proxy URL": "پروکسی URL", "Enter proxy URL here": "یہاں پروکسی URL درج کریں", + "Authenticate to the proxy with a user and a password": "صارف نام اور پاس ورڈ کے ساتھ پروکسی پر توثیق کریں", + "Internet and proxy settings": "انٹرنیٹ اور پروکسی کی ترتیبات", "Package manager preferences": "پیکیج منیجر کی ترجیحات", "Ready": "تیار", "Not found": "نہیں ملا", "Notification preferences": "اطلاع کی ترجیحات", "Notification types": "اطلاع کی اقسام", "The system tray icon must be enabled in order for notifications to work": "اطلاعات کے کام کرنے کے لیے سسٹم ٹرے آئیکن کا فعال ہونا ضروری ہے۔", - "Enable WingetUI notifications": "WingetUI اطلاعات کو فعال کریں۔", + "Enable UniGetUI notifications": "UniGetUI اطلاعات کو فعال کریں۔", "Show a notification when there are available updates": "جب اپ ڈیٹس دستیاب ہوں تو نوٹیفکیشن دکھائیں", "Show a silent notification when an operation is running": "جب کوئی آپریشن چل رہا ہو تو خاموش اطلاع دکھائیں۔", "Show a notification when an operation fails": "آپریشن ناکام ہونے پر اطلاع دکھائیں۔", "Show a notification when an operation finishes successfully": "جب آپریشن کامیابی سے ختم ہو جائے تو اطلاع دکھائیں۔", "Concurrency and execution": "بیک وقت عمل اور اجرا", "Automatic desktop shortcut remover": "خودکار ڈیسک ٹاپ شارٹ کٹ ہٹانے والا", + "Choose how many operations should be performed in parallel": "منتخب کریں کہ کتنی کارروائیاں بیک وقت انجام دی جائیں", "Clear successful operations from the operation list after a 5 second delay": "5 سیکنڈ کی تاخیر کے بعد آپریشن لسٹ سے کامیاب آپریشنز کو صاف کریں۔", "Download operations are not affected by this setting": "ڈاؤن لوڈ آپریشنز اس ترتیب سے متاثر نہیں ہوتے", "Try to kill the processes that refuse to close when requested to": "ان پروسیسز کو ختم کرنے کی کوشش کریں جو درخواست کرنے پر بند ہونے سے انکار کرتے ہیں", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "استعمال کیے جانے والے ایگزیکیوبل کو منتخب کریں۔ درج ذیل فہرست UniGetUI کی طرف سے ملنے والے ایگزیکیوبلز دکھاتی ہے", "Current executable file:": "موجودہ ایگزیکیوبل فائل:", "Ignore packages from {pm} when showing a notification about updates": "اپ ڈیٹس کے بارے میں اطلاع دکھاتے وقت {pm} کے پیکجز کو نظر انداز کریں۔", + "Update security": "اپ ڈیٹ سیکیورٹی", + "Use global setting": "عالمی ترتیب استعمال کریں", + "e.g. 10": "مثلاً 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} اپنے پیکجز کے لیے ریلیز کی تاریخیں فراہم نہیں کرتا، اس لیے اس ترتیب کا کوئی اثر نہیں ہوگا", + "Override the global minimum update age for this package manager": "اس پیکیج مینیجر کے لیے اپ ڈیٹ کی عالمی کم از کم مدت کو اووررائیڈ کریں", + "Minimum age for updates": "اپ ڈیٹس کے لیے کم از کم مدت", + "Custom minimum age (days)": "حسب ضرورت کم از کم مدت (دن)", "View {0} logs": "{0} لاگز دیکھیں", + "If Python cannot be found or is not listing packages but is installed on the system, ": "اگر Python نہیں مل رہا یا پیکجز کی فہرست نہیں دکھا رہا لیکن سسٹم پر انسٹال ہے، ", "Advanced options": "اعلیٰ ترین اختیارات", "Reset WinGet": "WinGet کو دوبارہ ترتیب دیں۔", "This may help if no packages are listed": "اس سے مدد مل سکتی ہے اگر کوئی پیکیج درج نہ ہو۔", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "لانچ پر اسکوپ کلین اپ کو فعال کریں۔", "Use system Chocolatey": "سسٹم Chocolatey کا استعمال کریں", "Default vcpkg triplet": "ڈیفالٹ vcpkg ٹرپلٹ", + "Change vcpkg root location": "vcpkg کی بنیادی جگہ تبدیل کریں", "Language, theme and other miscellaneous preferences": "زبان، تھیم اور دیگر متفرق ترجیحات", "Show notifications on different events": "مختلف واقعات پر نوٹیفکیشن دکھائیں", "Change how UniGetUI checks and installs available updates for your packages": "یہ تبدیل کریں کہ UniGetUI آپ کے پیکیجز کے لئے دستیاب اپ ڈیٹس کو کیسے چیک اور انسٹال کرتا ہے", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "جب نیٹ ورک کنکشن میٹرڈ ہو تو اپ ڈیٹس خود بخود انسٹال نہ کریں", "Do not automatically install updates when the device runs on battery": "جب ڈیوائس بیٹری پر چل رہی ہو تو اپ ڈیٹس خود بخود انسٹال نہ کریں", "Do not automatically install updates when the battery saver is on": "جب بیٹری سیور آن ہو تو اپ ڈیٹس خود بخود انسٹال نہ کریں", + "Only show updates that are at least the specified number of days old": "صرف وہ اپ ڈیٹس دکھائیں جو کم از کم مقررہ تعداد کے دن پرانی ہوں", "Change how UniGetUI handles install, update and uninstall operations.": "یہ تبدیل کریں کہ UniGetUI انسٹال، اپ ڈیٹ اور ان انسٹال آپریشنز کو کیسے ہینڈل کرتا ہے۔", "Package Managers": "پیکیج مینیجرز", "More": "مزید", - "WingetUI Log": "WingetUI لاگ", "Package Manager logs": "پیکیج منیجر لاگز", "Operation history": "آپریشن کی تاریخ", "Help": "مدد", + "Quit UniGetUI": "UniGetUI بند کریں", "Order by:": "ترتیب کے لحاظ سے:", "Name": "نام", "Id": "شناخت", @@ -409,6 +448,10 @@ "Both": "دونوں", "Exact match": "عین مطابق میچ", "Show similar packages": "مشابہ پیکیجز دکھائیں", + "Nothing to share": "شیئر کرنے کے لیے کچھ نہیں", + "Please select a package first.": "براہ کرم پہلے ایک پیکیج منتخب کریں۔", + "Share link copied": "شیئر لنک کاپی ہو گیا", + "The share link for {0} has been copied to the clipboard.": "{0} کا شیئر لنک کلپ بورڈ پر کاپی کر دیا گیا ہے۔", "No results were found matching the input criteria": "ان پٹ معیار کے مطابق کوئی نتائج نہیں ملے", "No packages were found": "کوئی پیکجز نہیں ملے", "Loading packages": "پیکیجز لوڈ ہو رہے ہیں", @@ -440,7 +483,11 @@ "Package bundle": "پیکیج بنڈل", "Could not create bundle": "بنڈل نہیں بنایا جا سکا", "The package bundle could not be created due to an error.": "ایک خرابی کی وجہ سے پیکیج بنڈل نہیں بنایا جا سکا۔", + "Unsaved changes": "غیر محفوظ شدہ تبدیلیاں", + "Discard changes": "تبدیلیاں رد کریں", + "You have unsaved changes in the current bundle. Do you want to discard them?": "موجودہ بنڈل میں آپ کی کچھ تبدیلیاں محفوظ نہیں ہیں۔ کیا آپ انہیں رد کرنا چاہتے ہیں؟", "Bundle security report": "بنڈل کی سیکیورٹی رپورٹ", + "The bundle contained restricted content": "بنڈل میں محدود مواد شامل تھا", "Hooray! No updates were found.": "واہ! کوئی اپ ڈیٹس نہیں ملی۔", "Everything is up to date": "سب کچھ تازہ ترین ہے", "Uninstall selected packages": "منتخب پیکجز کو ان انسٹال کریں۔", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "ونڈوز کے لیے کلاسیکل پیکیج مینیجر۔ آپ کو وہاں سب کچھ مل جائے گا۔
پر مشتمل ہے: جنرل سافٹ ویئر", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "مائیکروسافٹ کے .NET ایکو سسٹم کے لئے تیار کردہ ٹولز اور ایگزیکیوشن فائلز سے بھرا ہوا ریپوزیٹری۔
اس میں شامل ہے: .NET سے متعلق ٹولز اور سکرپٹس", "NuPkg (zipped manifest)": "NuPkg (زپ شدہ منیفیسٹ)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS (یا Linux) کے لیے گمشدہ پیکیج مینیجر۔
شامل ہیں: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "نوڈ جے ایس کا پیکیج مینیجر۔ لائبریریوں اور دیگر افادیت سے بھری ہوئی ہے جو جاوا اسکرپٹ کی دنیا کا چکر لگاتی ہے
پر مشتمل ہے: نوڈ جاوا اسکرپٹ لائبریریاں اور دیگر متعلقہ یوٹیلیٹیز", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "ازگر کی لائبریری مینیجر۔ ازگر کی لائبریریوں اور ازگر سے متعلق دیگر یوٹیلیٹیز سے بھرا ہوا
مشتمل ہے: پائیتھن لائبریریز اور متعلقہ یوٹیلیٹیز", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "پاور شیل کا پیکیج مینیجر۔ PowerShell کی صلاحیتوں کو بڑھانے کے لیے لائبریریاں اور اسکرپٹ تلاش کریں
مشتمل ہیں: ماڈیولز، اسکرپٹس، Cmdlets", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "قطار میں آپریشن (پوزیشن {0}...)", "Click here for more details": "مزید تفصیلات کے لیے یہاں کلک کریں۔", "Operation canceled by user": "صارف کے ذریعے آپریشن منسوخ کر دیا گیا۔", + "Running PreOperation ({0}/{1})...": "PreOperation ({0}/{1}) چل رہا ہے...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} میں سے PreOperation {0} ناکام ہو گیا اور اسے ضروری کے طور پر نشان زد کیا گیا تھا۔ کارروائی منسوخ کی جا رہی ہے...", + "PreOperation {0} out of {1} finished with result {2}": "{1} میں سے PreOperation {0} نتیجہ {2} کے ساتھ مکمل ہوا", "Starting operation...": "آپریشن شروع ہو رہا ہے...", + "Running PostOperation ({0}/{1})...": "PostOperation ({0}/{1}) چل رہا ہے...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "{1} میں سے PostOperation {0} ناکام ہو گیا اور اسے ضروری کے طور پر نشان زد کیا گیا تھا۔ کارروائی منسوخ کی جا رہی ہے...", + "PostOperation {0} out of {1} finished with result {2}": "{1} میں سے PostOperation {0} نتیجہ {2} کے ساتھ مکمل ہوا", "{package} installer download": "{package} انسٹالر ڈاؤن لوڈ", "{0} installer is being downloaded": "{0} انسٹالر ڈاؤن لوڈ ہو رہا ہے۔", "Download succeeded": "ڈاؤن لوڈ کامیاب ہو گیا۔", @@ -556,14 +610,12 @@ "Portable mode": "پورٹ ایبل موڈ", "DEBUG BUILD": "ڈیبگ بلڈ", "Available Updates": "دستیاب اپ ڈیٹس", - "Show WingetUI": "WingetUI دکھائیں", + "Show UniGetUI": "UniGetUI دکھائیں", "Quit": "بند کریں", "Attention required": "توجہ درکار ہے", "Restart required": "دوبارہ شروع کرنا ضروری ہے", "1 update is available": "۱ اپ ڈیٹ دستیاب ہے", "{0} updates are available": "{0} اپ ڈیٹس دستیاب ہیں", - "WingetUI Homepage": "WingetUI ہوم پیج", - "WingetUI Repository": "WingetUI ریپوزیٹری", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "یہاں آپ درج ذیل شارٹ کٹس کے حوالے سے UniGetUI کے رویے کو تبدیل کر سکتے ہیں۔ شارٹ کٹ چیک کرنے سے UniGetUI اسے حذف کر دے گا اگر مستقبل میں اپ گریڈ بنایا جاتا ہے۔ اسے غیر چیک کرنے سے شارٹ کٹ برقرار رہے گا۔", "Manual scan": "دستی اسکین", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "آپ کے ڈیسک ٹاپ پر موجودہ شارٹ کٹس کو اسکین کیا جائے گا، اور آپ کو یہ منتخب کرنے کی ضرورت ہوگی کہ کن کو رکھنا ہے اور کون سے ہٹانا ہے۔", @@ -583,7 +635,6 @@ "Restart later": "بعد میں دوبارہ شروع کریں", "An error occurred:": "ایک خرابی پیش آئی:", "I understand": "مجھے سمجھ آگیا", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI کو بطور ایڈمنسٹریٹر چلایا گیا ہے، جس کی سفارش نہیں کی جاتی ہے۔ WingetUI کو بطور ایڈمنسٹریٹر چلاتے وقت، WingetUI سے شروع کیے گئے ہر آپریشن میں ایڈمنسٹریٹر کی مراعات ہوں گی۔ آپ اب بھی پروگرام استعمال کر سکتے ہیں، لیکن ہم ایڈمنسٹریٹر کی مراعات کے ساتھ WingetUI نہ چلانے کی انتہائی سفارش کرتے ہیں۔", "WinGet was repaired successfully": "WinGet کو کامیابی کے ساتھ ٹھیک کیا گیا۔", "It is recommended to restart UniGetUI after WinGet has been repaired": "WinGet کی مرمت کے بعد UniGetUI کو دوبارہ شروع کرنے کی سفارش کی جاتی ہے۔", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "نوٹ: اس ٹربل شوٹر کو WinGet سیکشن پر UniGetUI سیٹنگز سے غیر فعال کیا جا سکتا ہے۔", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. آپ کے پیکجز کو بنڈل میں شامل کر دیا جائے گا۔ آپ پیکجز شامل کرنا جاری رکھ سکتے ہیں، یا بنڈل برآمد کر سکتے ہیں۔", "Which backup do you want to open?": "آپ کون سا بیک اپ کھولنا چاہتے ہیں؟", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "وہ بیک اپ منتخب کریں جو آپ کھولنا چاہتے ہیں۔ بعد میں، آپ یہ جائزہ لے سکیں گے کہ آپ کون سے پیکجز/پروگرام بحال کرنا چاہتے ہیں۔", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "آپریشنز جاری ہیں۔ WingetUI کو چھوڑنا ان کے ناکام ہونے کا سبب بن سکتا ہے۔ کیا آپ جاری رکھنا چاہتے ہیں؟", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "آپریشنز جاری ہیں۔ UniGetUI کو چھوڑنا ان کے ناکام ہونے کا سبب بن سکتا ہے۔ کیا آپ جاری رکھنا چاہتے ہیں؟", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI یا اس کے کچھ اجزاء غائب یا خراب ہیں۔", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "اس صورتحال کو درست کرنے کے لیے UniGetUI کو دوبارہ انسٹال کرنے کی سخت سفارش کی جاتی ہے۔", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "متاثرہ فائلوں کے بارے میں مزید تفصیلات حاصل کرنے کے لیے UniGetUI لاگز دیکھیں", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "یہاں پروسیسز کے نام لکھیں، کوما (,) سے الگ کریں", "Unset or unknown": "غیر سیٹ یا نامعلوم", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "براہ کرم کمانڈ لائن آؤٹ پٹ دیکھیں یا مسئلے کے بارے میں مزید معلومات کے لیے آپریشن کی تاریخ دیکھیں۔", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "اس پیکیج میں کوئی اسکرین شاٹس نہیں ہیں یا آئیکن غائب ہے؟ ہمارے کھلے، عوامی ڈیٹا بیس میں گمشدہ آئیکنز اور اسکرین شاٹس کو شامل کرکے WingetUI سے تعاون کریں۔", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "اس پیکیج میں کوئی اسکرین شاٹس نہیں ہیں یا آئیکن غائب ہے؟ ہمارے کھلے، عوامی ڈیٹا بیس میں گمشدہ آئیکنز اور اسکرین شاٹس کو شامل کرکے UniGetUI سے تعاون کریں۔", "Become a contributor": "شراکت دار بنیں", "Save": "محفوظ کریں", "Update to {0} available": "{0} کے لئے اپ ڈیٹ دستیاب ہے", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "خودکار WinGet ٹربل شوٹر کو فعال کریں۔", "Enable an [experimental] improved WinGet troubleshooter": "ایک [تجرباتی] بہتر WinGet ٹربل شوٹر کو فعال کریں۔", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "نظر انداز کردہ اپ ڈیٹس کی فہرست میں 'کوئی قابل اطلاق اپ ڈیٹ نہیں ملا' کے ساتھ ناکام ہونے والی اپ ڈیٹس شامل کریں۔", - "Restart WingetUI to fully apply changes": "تبدیلیوں کو مکمل طور پر نافذ کرنے کے لیے WingetUI دوبارہ شروع کریں", - "Restart WingetUI": "WingetUI دوبارہ شروع کریں", "Invalid selection": "غلط انتخاب", "No package was selected": "کوئی پیکیج منتخب نہیں کیا گیا", "More than 1 package was selected": "1 سے زیادہ پیکیج منتخب کیے گئے", @@ -684,6 +733,37 @@ "Log out failed: ": "لاگ آؤٹ ناکام ہو گیا: ", "Package backup settings": "پیکیج بیک اپ کی ترتیبات", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "WingetUI کے بارے میں", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI ایک ایسی ایپلی کیشن ہے جو آپ کے کمانڈ لائن پیکج مینیجرز کے لیے ایک آل ان ون گرافیکل انٹرفیس فراہم کر کے آپ کے سافٹ ویئر کا انتظام آسان بناتی ہے۔", + "You have installed WingetUI Version {0}": "آپ نے WingetUI ورژن {0} انسٹال کیا ہے", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI تعاون کرنے والوں کی مدد کے بغیر ممکن نہیں تھا۔ آپ سب کا شکریہ 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI درج ذیل لائبریریوں کا استعمال کرتا ہے۔ ان کے بغیر، WingetUI ممکن نہیں ہوتا۔", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "رضاکار مترجمین کی بدولت WingetUI کا 40 سے زیادہ زبانوں میں ترجمہ ہو چکا ہے۔ شکریہ 🤝", + "WingetUI Settings": "WingetUI سیٹنگز", + "You may need to install {pm} in order to use it with WingetUI.": "WingetUI کے ساتھ استعمال کرنے کے لیے آپ کو {pm} انسٹال کرنے کی ضرورت پڑ سکتی ہے۔", + "Scoop Installer - WingetUI": "Scoop انسٹالر - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop ان انسٹالر - WingetUI", + "Clearing Scoop cache - WingetUI": "اسکوپ کیشے کو صاف کرنا - WingetUI", + "WingetUI Version {0}": "WingetUI ورژن {0}", + "WingetUI License": "WingetUI لائسنس", + "Using WingetUI implies the acceptation of the MIT License": "WingetUI کا استعمال کرنے کا مطلب ہے کہ آپ نے MIT لائسنس کو قبول کر لیا ہے", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "بیک گراؤنڈ API کو فعال کریں (WingetUI وجیٹس اور شیئرنگ، پورٹ 7058)", + "Update WingetUI automatically": "WingetUI کو خود بخود اپ ڈیٹ کریں", + "Reset WingetUI": "WingetUI کو ری سیٹ کریں", + "WingetUI display language:": "WingetUI ڈسپلے زبان:", + "Manage WingetUI autostart behaviour": "WingetUI کے خودکار آغاز کے رویے کا نظم کریں", + "Enable WingetUI notifications": "WingetUI اطلاعات کو فعال کریں۔", + "WingetUI Log": "WingetUI لاگ", + "Show WingetUI": "WingetUI دکھائیں", + "WingetUI Homepage": "WingetUI ہوم پیج", + "WingetUI Repository": "WingetUI ریپوزیٹری", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI کو بطور ایڈمنسٹریٹر چلایا گیا ہے، جس کی سفارش نہیں کی جاتی ہے۔ WingetUI کو بطور ایڈمنسٹریٹر چلاتے وقت، WingetUI سے شروع کیے گئے ہر آپریشن میں ایڈمنسٹریٹر کی مراعات ہوں گی۔ آپ اب بھی پروگرام استعمال کر سکتے ہیں، لیکن ہم ایڈمنسٹریٹر کی مراعات کے ساتھ WingetUI نہ چلانے کی انتہائی سفارش کرتے ہیں۔", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "آپریشنز جاری ہیں۔ WingetUI کو چھوڑنا ان کے ناکام ہونے کا سبب بن سکتا ہے۔ کیا آپ جاری رکھنا چاہتے ہیں؟", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "اس پیکیج میں کوئی اسکرین شاٹس نہیں ہیں یا آئیکن غائب ہے؟ ہمارے کھلے، عوامی ڈیٹا بیس میں گمشدہ آئیکنز اور اسکرین شاٹس کو شامل کرکے WingetUI سے تعاون کریں۔", + "Restart WingetUI to fully apply changes": "تبدیلیوں کو مکمل طور پر نافذ کرنے کے لیے WingetUI دوبارہ شروع کریں", + "Restart WingetUI": "WingetUI دوبارہ شروع کریں", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "سیٹنگز ایپ سے UniGetUI آٹو اسٹارٹ کے رویے کو منظم کریں", "(Number {0} in the queue)": "(قطار میں {0} نمبر)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@hamzaharoon1314, @digitpk, @digitio", "0 packages found": "0 پیکجز ملے", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json index 34ea238884..b12f8b8fbc 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_vi.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "Hủy gỡ cài đặt nếu lệnh tiền gỡ cài đặt thất bại", "Command-line to run:": "Dòng lệnh để chạy:", "Save and close": "Lưu và đóng", + "General": "Chung", + "Architecture & Location": "Kiến trúc & vị trí", + "Command-line": "Dòng lệnh", + "Pre/Post install": "Trước/Sau khi cài đặt", "Run as admin": "Chạy với quyền quản trị", "Interactive installation": "Cài đặt tương tác", "Skip hash check": "Bỏ qua kiểm tra hash", @@ -71,6 +75,8 @@ "Manage ignored updates": "Quản lý các cập nhật bị bỏ qua", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Các gói được liệt kê ở đây sẽ không được tính đến khi kiểm tra các bản cập nhật. Nhấp đúp vào chúng hoặc nhấp vào nút ở bên phải của chúng để ngừng bỏ qua các cập nhật của chúng.", "Reset list": "Đặt lại danh sách", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "Bạn có thực sự muốn đặt lại danh sách các bản cập nhật bị bỏ qua không? Hành động này không thể hoàn tác", + "No ignored updates": "Không có bản cập nhật bị bỏ qua", "Package Name": "Tên gói", "Package ID": "ID gói", "Ignored version": "Phiên bản bị bỏ qua", @@ -86,6 +92,7 @@ "This operation is running interactively.": "Hoạt động này đang chạy tương tác.", "You will likely need to interact with the installer.": "Bạn có khả năng sẽ cần tương tác với trình cài đặt.", "Integrity checks skipped": "Bỏ qua kiểm tra tính hoàn hảo", + "Integrity checks will not be performed during this operation.": "Các kiểm tra tính toàn vẹn sẽ không được thực hiện trong thao tác này.", "Proceed at your own risk.": "Tiến hành tự chịu rủi ro", "Close": "Đóng", "Loading...": "Đang tải....", @@ -120,16 +127,17 @@ "optional": "tùy chọn", "UniGetUI {0} is ready to be installed.": "UniGetUI phiên bản {0} đã sẵn sàng để cài đặt", "The update process will start after closing UniGetUI": "Quá trình cập nhật sẽ bắt đầu sau khi đóng UniGetUI.", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI đang được chạy với quyền quản trị viên, điều này không được khuyến nghị. Khi chạy UniGetUI với quyền quản trị viên, MỌI thao tác được khởi chạy từ UniGetUI sẽ có quyền quản trị viên. Bạn vẫn có thể dùng chương trình, nhưng chúng tôi đặc biệt khuyến nghị không chạy UniGetUI với quyền quản trị viên.", "Share anonymous usage data": "Chia sẻ dữ liệu sử dụng ẩn danh", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI thu thập dữ liệu sử dụng ẩn danh để cải thiện trải nghiệm người dùng.", "Accept": "Chấp nhận", - "You have installed WingetUI Version {0}": "Bạn đã cài đặt Phiên bản WingetUI {0}", + "You have installed UniGetUI Version {0}": "Bạn đã cài đặt Phiên bản UniGetUI {0}", "Disclaimer": "Tuyên bố miễn trừ trách nhiệm", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI không liên quan đến bất kỳ trình quản lý gói tương thích nào. UniGetUI là một dự án độc lập.", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI sẽ không thể thực hiện được nếu không có sự giúp đỡ của những người đóng góp. Cảm ơn tất cả các bạn 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI Sử dụng các thư viện sau. Nếu không có họ, WingetUI sẽ không thể tồn tại được", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI sẽ không thể thực hiện được nếu không có sự giúp đỡ của những người đóng góp. Cảm ơn tất cả các bạn 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI sử dụng các thư viện sau. Nếu không có họ, UniGetUI sẽ không thể tồn tại được.", "{0} homepage": "Trang chủ {0}", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI đã được dịch sang hơn 40 ngôn ngữ nhờ các dịch giả tình nguyện. Cảm ơn bạn 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI đã được dịch sang hơn 40 ngôn ngữ nhờ các dịch giả tình nguyện. Cảm ơn bạn 🤝", "Verbose": "Chi tiết", "1 - Errors": "1 - Lỗi", "2 - Warnings": "2 - Cảnh báo", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "Bạn đang đăng nhập với tài khoản {0} (@{1})", "Nice! Backups will be uploaded to a private gist on your account": "Tuyệt! Các bản sao lưu sẽ được tải lên một Gist riêng tư trong tài khoản của bạn", "Select backup": "Chọn bản sao lưu", - "WingetUI Settings": "Cài đặt WingetUI", + "UniGetUI Settings": "Cài đặt UniGetUI", "Allow pre-release versions": "Cho phép phiên bản phát hành trước", "Apply": "Áp dụng", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Vì lý do bảo mật, các đối số dòng lệnh tùy chỉnh bị tắt theo mặc định. Hãy vào cài đặt bảo mật của UniGetUI để thay đổi điều này.", "Go to UniGetUI security settings": "Đi tới cài đặt bảo mật của UniGetUI.", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Các tùy chọn sau sẽ được áp dụng theo mặc định mỗi khi một gói {0} được cài đặt, nâng cấp hoặc gỡ bỏ.", "Package's default": "Gói phần mềm mặc định", @@ -160,6 +169,7 @@ "Username": "Tên người dùng", "Password": "Mật khẩu", "Credentials": "Thông tin xác thực", + "It is not guaranteed that the provided credentials will be stored safely": "Không thể bảo đảm rằng thông tin xác thực được cung cấp sẽ được lưu trữ an toàn", "Partially": "Một phần", "Package manager": "Trình quản lý gói", "Compatible with proxy": "Tương thích với proxy", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} đã được bật và sẵn sàng hoạt động", "{pm} version:": "{pm} phiên bản:", "{pm} was not found!": "{pm} không tìm thấy!", - "You may need to install {pm} in order to use it with WingetUI.": "Bạn có thể cần cài đặt {pm} để sử dụng nó với WingetUI.", - "Scoop Installer - WingetUI": "Trình cài đặt Scoop - WingetUI", - "Scoop Uninstaller - WingetUI": "Trình gỡ cài đặt Scoop - WingetUI", - "Clearing Scoop cache - WingetUI": "Dọn dẹp bộ nhớ đệm Scoop - WingetU", + "You may need to install {pm} in order to use it with UniGetUI.": "Bạn có thể cần cài đặt {pm} để sử dụng nó với UniGetUI.", + "Scoop Installer - UniGetUI": "Trình cài đặt Scoop - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Trình gỡ cài đặt Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "Dọn dẹp bộ nhớ đệm Scoop - WingetU", + "Restart UniGetUI to fully apply changes": "Khởi động lại UniGetUI để áp dụng đầy đủ các thay đổi", "Restart UniGetUI": "Khởi động lại UniGetUI", "Manage {0} sources": "Quản lý {0} nguồn", "Add source": "Thêm nguồn", "Add": "Thêm", + "Source name": "Tên nguồn", + "Source URL": "URL nguồn", "Other": "Khác", + "No minimum age": "Không có thời gian tối thiểu", "1 day": "1 ngày", "{0} days": "{0} ngày", + "Custom...": "Tùy chỉnh...", "{0} minutes": "{0} phút", "1 hour": "1 giờ", "{0} hours": "{0} giờ", "1 week": "1 tuần", - "WingetUI Version {0}": "UniGetUI Phiên bản {0}", + "Supports release dates": "Hỗ trợ ngày phát hành", + "Release date support per package manager": "Mức hỗ trợ ngày phát hành theo từng trình quản lý gói", + "UniGetUI Version {0}": "UniGetUI Phiên bản {0}", "Search for packages": "Tìm kiếm gói", "Local": "Cục bộ", "OK": "OK ", @@ -200,11 +217,13 @@ "Enabled": "Đã bật", "Disabled": "Đã tắt", "More info": "Thêm thông tin", + "GitHub account": "Tài khoản GitHub", "Log in with GitHub to enable cloud package backup.": "Đăng nhập bằng GitHub để bật tính năng sao lưu gói lên đám mây.", "More details": "Chi tiết hơn", "Log in": "Đăng nhập", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Nếu bạn đã bật tính năng sao lưu đám mây, bản sao lưu sẽ được lưu dưới dạng GitHub Gist trong tài khoản này.", "Log out": "Đăng xuất", + "About UniGetUI": "Giới thiệu về UniGetUI", "About": "Giới thiệu", "Third-party licenses": "Giấy phép bên thứ ba", "Contributors": "Người đóng góp", @@ -212,6 +231,7 @@ "Manage shortcuts": "Quản lý lối tắt", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI đã phát hiện các phím tắt trên màn hình sau đây có thể được xóa tự động trong các bản nâng cấp tương lai.", "Do you really want to reset this list? This action cannot be reverted.": "Bạn có thật sự muốn đặt lại danh sách này không? Hành động này không thể hoàn tác.", + "Open in explorer": "Mở trong Explorer", "Remove from list": "Xóa khỏi danh sách", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Khi phát hiện các phím tắt mới, hãy tự động xóa chúng thay vì hiển thị hộp thoại này.", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI thu thập dữ liệu sử dụng ẩn danh với mục đích duy nhất là hiểu và cải thiện trải nghiệm người dùng.", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Bạn có chấp nhận rằng UniGetUI thu thập và gửi các số liệu thống kê sử dụng ẩn danh, với mục đích duy nhất là hiểu và cải thiện trải nghiệm người dùng không?", "Decline": "Từ chối", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Không có thông tin cá nhân nào được thu thập hoặc gửi đi, và dữ liệu thu thập được là ẩn danh, vì vậy không thể truy ngược lại bạn.", - "About WingetUI": "Giới thiệu về UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI là một ứng dụng giúp việc quản lý phần mềm của bạn dễ dàng hơn bằng cách cung cấp giao diện đồ họa tất cả trong một cho trình quản lý gói dòng lệnh của bạn.", + "Toggle navigation panel": "Bật/tắt ngăn điều hướng", + "Minimize": "Thu nhỏ", + "Maximize": "Phóng to", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI là một ứng dụng giúp việc quản lý phần mềm của bạn dễ dàng hơn bằng cách cung cấp giao diện đồ họa tất cả trong một cho trình quản lý gói dòng lệnh của bạn.", "Useful links": "Liên kết hữu ích", + "UniGetUI Homepage": "Trang chủ UniGetUI", "Report an issue or submit a feature request": "Báo cáo một vấn đề hoặc yêu cầu tính năng nào đó", + "UniGetUI Repository": "Kho mã UniGetUI", "View GitHub Profile": "Xem hồ sơ GitHub", - "WingetUI License": "Giấy phép WingetU", - "Using WingetUI implies the acceptation of the MIT License": "Sử dụng WingetUI ngụ ý việc chấp nhận Giấy phép MIT", + "UniGetUI License": "Giấy phép WingetU", + "Using UniGetUI implies the acceptation of the MIT License": "Sử dụng UniGetUI ngụ ý việc chấp nhận Giấy phép MIT", "Become a translator": "Trở thành người phiên dịch", "View page on browser": "Xem trang trên trình duyệt", "Copy to clipboard": "Sao chép vào bảng nhớ tạm", "Export to a file": "Xuất thành tệp", "Log level:": "Mức độ ghi log:", "Reload log": "Tải lại nhật ký", + "Export log": "Xuất nhật ký", + "UniGetUI Log": "Nhật ký UniGetUI", "Text": "Văn bản", "Change how operations request administrator rights": "Thay đổi cách các thao tác yêu cầu quyền quản trị viên", "Restrictions on package operations": "Các giới hạn áp dụng cho thao tác xử lý gói", @@ -271,7 +297,7 @@ "Leave empty for default": "Để trống theo mặc định", "Add a timestamp to the backup file names": "Thêm dấu thời gian vào tên tệp sao lưu", "Backup and Restore": "Sao lưu và Khôi phục", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Kích hoạt api nền (Tiện ích và chia sẻ WingetUI, cổng 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Kích hoạt api nền (Tiện ích và chia sẻ UniGetUI, cổng 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Chờ cho thiết bị kết nối internet trước khi thực hiện các tác vụ yêu cầu kết nối internet.", "Disable the 1-minute timeout for package-related operations": "Vô hiệu hóa thời gian chờ 1 phút cho các hoạt động liên quan đến gói", "Use installed GSudo instead of UniGetUI Elevator": "Sử dụng GSudo đã cài thay cho UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "Thu thập dữ liệu từ xa", "Manage UniGetUI settings": "Quản lý cài đặt UniGetUI", "Related settings": "Cài đặt liên quan", - "Update WingetUI automatically": "Tự động cập nhật WingetUI", + "Update UniGetUI automatically": "Tự động cập nhật UniGetUI", "Check for updates": "Kiểm tra bản cập nhật", "Install prerelease versions of UniGetUI": "Cài đặt các phiên bản phát hành trước của UniGetUI", "Manage telemetry settings": "Quản lý cài đặt thu thập thông tin", @@ -295,17 +321,17 @@ "Import": "Nhập", "Export settings to a local file": "Xuất cài đặt ra tệp tin cục bộ", "Export": "Xuất", - "Reset WingetUI": "Đặt lại WingetUI", "Reset UniGetUI": "Đặt lại UniGetUI", "User interface preferences": "Tùy chọn giao diện người dùng", "Application theme, startup page, package icons, clear successful installs automatically": "Chủ đề ứng dụng, trang khởi động, biểu tượng gói, tự động xóa các cài đặt thành công", "General preferences": "Tùy chỉnh chung", - "WingetUI display language:": "Ngôn ngữ hiển thị WingetUI:", + "UniGetUI display language:": "Ngôn ngữ hiển thị UniGetUI:", "Is your language missing or incomplete?": "Ngôn ngữ của bạn bị thiếu hoặc không đầy đủ?", "Appearance": "Giao diện", "UniGetUI on the background and system tray": "UniGetUI chạy trong nền và khay hệ thống", "Package lists": "Danh sách gói", "Close UniGetUI to the system tray": "Đóng UniGetUI vào khay hệ thống.", + "Manage UniGetUI autostart behaviour": "Quản lý hành vi tự khởi động của UniGetUI", "Show package icons on package lists": "Hiển thị biểu tượng gói trên danh sách gói", "Clear cache": "Xóa bộ nhớ đệm", "Select upgradable packages by default": "Chọn các gói có thể nâng cấp theo mặc định", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "Xin lưu ý rằng không phải tất cả các trình quản lý gói đều có thể hỗ trợ đầy đủ tính năng này", "Proxy URL": "URL proxy", "Enter proxy URL here": "Nhập URL proxy vào đây", + "Authenticate to the proxy with a user and a password": "Xác thực với proxy bằng tên người dùng và mật khẩu", + "Internet and proxy settings": "Cài đặt Internet và proxy", "Package manager preferences": "Tùy chọn trình quản lý gói", "Ready": "Sẵn sàng", "Not found": "Không tìm thấy", "Notification preferences": "Tùy chọn thông báo", "Notification types": "Các loại thông báo", "The system tray icon must be enabled in order for notifications to work": "Biểu tượng khay hệ thống phải được bật để các thông báo hoạt động", - "Enable WingetUI notifications": "Bật thông báo của WingetUI", + "Enable UniGetUI notifications": "Bật thông báo của UniGetUI", "Show a notification when there are available updates": "Hiển thị thông báo ngay khi có bản cập nhật", "Show a silent notification when an operation is running": "Hiển thị thông báo im lặng khi một thao tác đang chạy", "Show a notification when an operation fails": "Hiển thị thông báo khi thao tác thất bại", "Show a notification when an operation finishes successfully": "Hiển thị thông báo khi một thao tác kết thúc thành công", "Concurrency and execution": "Đồng thời và thực thi", "Automatic desktop shortcut remover": "Trình gỡ lối tắt trên màn hình tự động", + "Choose how many operations should be performed in parallel": "Chọn số thao tác nên được thực hiện song song", "Clear successful operations from the operation list after a 5 second delay": "Xóa các thao tác thành công khỏi danh sách thao tác sau khi trễ 5 giây", "Download operations are not affected by this setting": "Các thao tác tải xuống không bị ảnh hưởng bởi thiết lập này", "Try to kill the processes that refuse to close when requested to": "Cố gắng kết thúc các tiến trình không chịu đóng khi được yêu cầu", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "Chọn tệp thực thi cần sử dụng. Danh sách sau đây hiển thị các tệp thực thi được UniGetUI tìm thấy.", "Current executable file:": "Tệp thực thi hiện tại:", "Ignore packages from {pm} when showing a notification about updates": "Bỏ qua các gói từ {pm} khi hiển thị thông báo về các bản cập nhật", + "Update security": "Bảo mật cập nhật", + "Use global setting": "Sử dụng cài đặt toàn cục", + "e.g. 10": "ví dụ: 10", + "{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", + "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", + "Minimum age for updates": "Tuổi tối thiểu của bản cập nhật", + "Custom minimum age (days)": "Tuổi tối thiểu tùy chỉnh (ngà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, ", "Advanced options": "Tùy chọn nâng cao", "Reset WinGet": "Đặt lại WinGet", "This may help if no packages are listed": "Điều này có thể hữu ích nếu không có gói nào được liệt kê", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "Bật tính năng dọn dẹp Scoop khi khởi chạy", "Use system Chocolatey": "Sử dụng hệ thống Chocolatey", "Default vcpkg triplet": "Bộ ba vcpkg mặc định", + "Change vcpkg root location": "Thay đổi vị trí gốc của vcpkg", "Language, theme and other miscellaneous preferences": "Ngôn ngữ, chủ đề và các cài đặt khác", "Show notifications on different events": "Hiển thị thông báo về các sự kiện khác nhau", "Change how UniGetUI checks and installs available updates for your packages": "Thay đổi cách UniGetUI kiểm tra và cài đặt các bản cập nhật có sẵn cho gói của bạn", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "Không tự động cài đặt cập nhật khi kết nối mạng được đo lường", "Do not automatically install updates when the device runs on battery": "Không tự động cài đặt bản cập nhật khi thiết bị đang chạy bằng pin", "Do not automatically install updates when the battery saver is on": "Không tự động cài đặt cập nhật khi chế độ tiết kiệm pin đang bật", + "Only show updates that are at least the specified number of days old": "Chỉ hiển thị các bản cập nhật đã cũ ít nhất bằng số ngày được chỉ định", "Change how UniGetUI handles install, update and uninstall operations.": "Thay đổi cách UniGetUI xử lý các thao tác cài đặt, cập nhật và gỡ cài đặt.", "Package Managers": "Các trình quản lý gói", "More": "Thêm", - "WingetUI Log": "Nhật ký WingetUI", "Package Manager logs": "Nhật ký Trình quản lý gói", "Operation history": "Lịch sử hoạt động", "Help": "Trợ giúp", + "Quit UniGetUI": "Thoát UniGetUI", "Order by:": "Sắp xếp theo:", "Name": "Tên", "Id": "Mã định danh", @@ -409,6 +448,10 @@ "Both": "Cả hai", "Exact match": "Khớp chính xác", "Show similar packages": "Hiện các gói liên quan", + "Nothing to share": "Không có gì để chia sẻ", + "Please select a package first.": "Vui lòng chọn một gói trước.", + "Share link copied": "Đã sao chép liên kết chia sẻ", + "The share link for {0} has been copied to the clipboard.": "Liên kết chia sẻ cho {0} đã được sao chép vào bảng nhớ tạm.", "No results were found matching the input criteria": "Không tìm thấy kết quả nào phù hợp với tiêu chí đầu vào", "No packages were found": "Không tìm thấy gói nào", "Loading packages": "Đang tải gói", @@ -440,7 +483,11 @@ "Package bundle": "Nhóm gói", "Could not create bundle": "Không thể tạo gói", "The package bundle could not be created due to an error.": "Không thể tạo nhóm gói do có lỗi.", + "Unsaved changes": "Các thay đổi chưa lưu", + "Discard changes": "Bỏ thay đổi", + "You have unsaved changes in the current bundle. Do you want to discard them?": "Bạn có các thay đổi chưa lưu trong gói hiện tại. Bạn có muốn bỏ chúng không?", "Bundle security report": "Tập hợp báo cáo bảo mật", + "The bundle contained restricted content": "Gói chứa nội dung bị hạn chế", "Hooray! No updates were found.": "Yeah! Không có bản cập nhật nào được tìm thấy!", "Everything is up to date": "Mọi thứ đều được cập nhật", "Uninstall selected packages": "Gỡ cài đặt các gói đã chọn", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Trình quản lý gói cổ điển cho Windows. Bạn sẽ tìm thấy mọi thứ ở đó.
Bao gồm: Phần mềm chung", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "Một kho chứa đầy đủ các công cụ và tệp thực thi được thiết kế với hệ sinh thái .NET của Microsoft.
Bao gồm: Các công cụ và tập lệnh liên quan đến .NET", "NuPkg (zipped manifest)": "NuPkg (tệp cấu hình nén)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "Trình quản lý gói còn thiếu cho macOS (hoặc Linux).
Chứa: Formulae, Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Trình quản lý gói của Node JS. Đầy đủ các thư viện và các tiện ích khác xoay quanh thế giới JavaScript
Bao gồm: Các thư viện JavaScript của Node và các tiện ích liên quan khác", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Trình quản lý thư viện của Python. Đầy đủ các thư viện Python và các tiện ích liên quan đến Python khác
Bao gồm: Các thư viện Python và các tiện ích liên quan", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "Trình quản lý gói của PowerShell. Tìm thư viện và tập lệnh để mở rộng khả năng của PowerShell
Bao gồm: Mô-đun, Tập lệnh, Lệnh ghép ngắn", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "Hoạt động trên hàng đợi (vị trí {0})...", "Click here for more details": "Bấm vào đây để biết thêm chi tiết", "Operation canceled by user": "Người dùng đã hủy thao tác", + "Running PreOperation ({0}/{1})...": "Đang chạy PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} trên {1} đã thất bại và được đánh dấu là bắt buộc. Đang hủy...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} trên {1} đã hoàn tất với kết quả {2}", "Starting operation...": "Bắt đầu hoạt động...", + "Running PostOperation ({0}/{1})...": "Đang chạy PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} trên {1} đã thất bại và được đánh dấu là bắt buộc. Đang hủy...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} trên {1} đã hoàn tất với kết quả {2}", "{package} installer download": "{package} trình cài đặt tải xuống", "{0} installer is being downloaded": "Trình cài đặt {0} đang được tải xuống", "Download succeeded": "Tải xuống thành công", @@ -556,14 +610,12 @@ "Portable mode": "Chế độ di động", "DEBUG BUILD": "BẢN DỰNG GỠ LỖI", "Available Updates": "Cập nhật có sẵn", - "Show WingetUI": "Hiển thị WingetUI", + "Show UniGetUI": "Hiển thị UniGetUI", "Quit": "Thoát", "Attention required": "Cần chú ý", "Restart required": "Yêu cầu khởi động lại", "1 update is available": "Có 1 bản cập nhật có sẵn", "{0} updates are available": "Có {0} bản cập nhật", - "WingetUI Homepage": "Trang chủ WingetUI", - "WingetUI Repository": "Kho lưu trữ WingetUI", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Tại đây, bạn có thể thay đổi hành vi của UniGetUI liên quan đến các phím tắt sau. Kiểm tra một phím tắt sẽ làm cho UniGetUI xóa nó nếu nó được tạo ra trong lần nâng cấp tương lai. Bỏ chọn nó sẽ giữ nguyên phím tắt.", "Manual scan": "Quét thủ công", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Các lối tắt hiện có trên màn hình của bạn sẽ được quét, và bạn sẽ cần chọn những lối tắt nào để giữ lại và những lối tắt nào để xóa.", @@ -583,7 +635,6 @@ "Restart later": "Khởi động lại sau ", "An error occurred:": "Đã xảy ra lỗi:", "I understand": "Tôi hiểu", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI đã được chạy với tư cách quản trị viên, điều này không được khuyến khích. Khi chạy WingetUI với tư cách quản trị viên, MỌI thao tác được khởi chạy từ WingetUI sẽ có đặc quyền của quản trị viên. Bạn vẫn có thể sử dụng chương trình nhưng chúng tôi khuyên bạn không nên chạy WingetUI với đặc quyền của quản trị viên.", "WinGet was repaired successfully": "WinGet đã được sửa chữa thành công", "It is recommended to restart UniGetUI after WinGet has been repaired": "Nên khởi động lại UniGetUI sau khi WinGet đã được sửa chữa", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "LƯU Ý: Trình khắc phục sự cố này có thể bị tắt từ Cài đặt UniGetUI, trên phần WinGet", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Các gói hàng của bạn sẽ được thêm vào bộ sản phẩm. Bạn có thể tiếp tục thêm các gói hàng khác hoặc xuất bộ sản phẩm.", "Which backup do you want to open?": "Bạn muốn mở bản sao lưu nào?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Chọn bản sao lưu bạn muốn mở. Sau đó, bạn sẽ có thể xem lại và chọn các gói/chương trình muốn khôi phục.", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Có các hoạt động đang diễn ra. Thoát UniGetUI có thể khiến chúng bị thất bại. Bạn có muốn tiếp tục không?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Có các hoạt động đang diễn ra. Thoát UniGetUI có thể khiến chúng bị thất bại. Bạn có muốn tiếp tục không?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI hoặc một số thành phần của nó đang bị thiếu hoặc bị hỏng.", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "Rất khuyến nghị bạn nên cài đặt lại UniGetUI để xử lý tình huống hiện tại.", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Tham khảo nhật ký UniGetUI để biết thêm chi tiết về (các) tệp bị ảnh hưởng", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "Viết tên các tiến trình vào đây, cách nhau bằng dấu phẩy (,)", "Unset or unknown": "Chưa thiết lập hoặc không xác định", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Vui lòng xem Đầu ra dòng lệnh hoặc tham khảo Lịch sử hoạt động để biết thêm thông tin về sự cố.", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Gói này không có ảnh chụp màn hình hoặc bị thiếu biểu tượng? Hãy đóng góp cho UniGetUI bằng cách thêm các biểu tượng và ảnh chụp màn hình bị thiếu vào cơ sở dữ liệu mở và công cộng của chúng tôi.", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Gói này không có ảnh chụp màn hình hoặc bị thiếu biểu tượng? Hãy đóng góp cho UniGetUI bằng cách thêm các biểu tượng và ảnh chụp màn hình bị thiếu vào cơ sở dữ liệu mở và công cộng của chúng tôi.", "Become a contributor": "Trở thành người đóng góp", "Save": "Lưu", "Update to {0} available": "Đã có bản cập nhật lên {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "Kích hoạt trình khắc phục sự cố WinGet tự động", "Enable an [experimental] improved WinGet troubleshooter": "Bật trình khắc phục sự cố WinGet được cải tiến [thử nghiệm]", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "Thêm các bản cập nhật bị lỗi với thông báo \"không tìm thấy bản cập nhật phù hợp\" vào danh sách cập nhật bị bỏ qua", - "Restart WingetUI to fully apply changes": "Khởi động lại WingetUI để áp dụng đầy đủ tất cả các thay đổi", - "Restart WingetUI": "Khởi động lại WingetUI", "Invalid selection": "Lựa chọn không hợp lệ", "No package was selected": "Không có gói nào được chọn", "More than 1 package was selected": "Đã chọn nhiều hơn 1 gói", @@ -684,6 +733,37 @@ "Log out failed: ": "Đăng xuất thất bại:", "Package backup settings": "Cài đặt sao lưu gói", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "Giới thiệu về UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI là một ứng dụng giúp việc quản lý phần mềm của bạn dễ dàng hơn bằng cách cung cấp giao diện đồ họa tất cả trong một cho trình quản lý gói dòng lệnh của bạn.", + "You have installed WingetUI Version {0}": "Bạn đã cài đặt Phiên bản WingetUI {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI sẽ không thể thực hiện được nếu không có sự giúp đỡ của những người đóng góp. Cảm ơn tất cả các bạn 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI Sử dụng các thư viện sau. Nếu không có họ, WingetUI sẽ không thể tồn tại được", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI đã được dịch sang hơn 40 ngôn ngữ nhờ các dịch giả tình nguyện. Cảm ơn bạn 🤝", + "WingetUI Settings": "Cài đặt WingetUI", + "You may need to install {pm} in order to use it with WingetUI.": "Bạn có thể cần cài đặt {pm} để sử dụng nó với WingetUI.", + "Scoop Installer - WingetUI": "Trình cài đặt Scoop - WingetUI", + "Scoop Uninstaller - WingetUI": "Trình gỡ cài đặt Scoop - WingetUI", + "Clearing Scoop cache - WingetUI": "Dọn dẹp bộ nhớ đệm Scoop - WingetU", + "WingetUI Version {0}": "UniGetUI Phiên bản {0}", + "WingetUI License": "Giấy phép WingetU", + "Using WingetUI implies the acceptation of the MIT License": "Sử dụng WingetUI ngụ ý việc chấp nhận Giấy phép MIT", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "Kích hoạt api nền (Tiện ích và chia sẻ WingetUI, cổng 7058)", + "Update WingetUI automatically": "Tự động cập nhật WingetUI", + "Reset WingetUI": "Đặt lại WingetUI", + "WingetUI display language:": "Ngôn ngữ hiển thị WingetUI:", + "Manage WingetUI autostart behaviour": "Quản lý hành vi tự khởi động của WingetUI", + "Enable WingetUI notifications": "Bật thông báo của WingetUI", + "WingetUI Log": "Nhật ký WingetUI", + "Show WingetUI": "Hiển thị WingetUI", + "WingetUI Homepage": "Trang chủ WingetUI", + "WingetUI Repository": "Kho lưu trữ WingetUI", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI đã được chạy với tư cách quản trị viên, điều này không được khuyến khích. Khi chạy WingetUI với tư cách quản trị viên, MỌI thao tác được khởi chạy từ WingetUI sẽ có đặc quyền của quản trị viên. Bạn vẫn có thể sử dụng chương trình nhưng chúng tôi khuyên bạn không nên chạy WingetUI với đặc quyền của quản trị viên.", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Có các hoạt động đang diễn ra. Thoát UniGetUI có thể khiến chúng bị thất bại. Bạn có muốn tiếp tục không?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Gói này không có ảnh chụp màn hình hoặc bị thiếu biểu tượng? Hãy đóng góp cho UniGetUI bằng cách thêm các biểu tượng và ảnh chụp màn hình bị thiếu vào cơ sở dữ liệu mở và công cộng của chúng tôi.", + "Restart WingetUI to fully apply changes": "Khởi động lại WingetUI để áp dụng đầy đủ tất cả các thay đổi", + "Restart WingetUI": "Khởi động lại WingetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "Quản lý hành vi tự khởi động UniGetUI từ ứng dụng Cài đặt", "(Number {0} in the queue)": "(Số {0} trong hàng đợi)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@txavlog, @legendsjoon, @vanlongluuly, @aethervn2309", "0 packages found": "Không tìm thấy gói nào", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json index 4798fc3154..025b4ea41a 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_CN.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "如果卸载前命令失败则中止卸载操作", "Command-line to run:": "运行命令行:", "Save and close": "保存并关闭", + "General": "常规", + "Architecture & Location": "架构和位置", + "Command-line": "命令行", + "Pre/Post install": "安装前/后", "Run as admin": "以管理员身份运行", "Interactive installation": "交互式安装", "Skip hash check": "跳过哈希校验", @@ -71,6 +75,8 @@ "Manage ignored updates": "管理已忽略更新", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "检查更新时,此处列出的软件包将会被忽略。双击它们或点击它们右侧的按钮可不再忽略其更新。", "Reset list": "重置列表", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "您确定要重置已忽略更新列表吗?此操作无法撤销", + "No ignored updates": "没有已忽略的更新", "Package Name": "软件包名称", "Package ID": "软件包 ID", "Ignored version": "已忽略版本", @@ -86,6 +92,7 @@ "This operation is running interactively.": "此操作正处于交互式运行。", "You will likely need to interact with the installer.": "您可能需要与安装程序交互。", "Integrity checks skipped": "已跳过完整性检查", + "Integrity checks will not be performed during this operation.": "此操作期间不会执行完整性检查。", "Proceed at your own risk.": "继续进行,风险自负。", "Close": "关闭", "Loading...": "正在加载……", @@ -120,16 +127,17 @@ "optional": "可选", "UniGetUI {0} is ready to be installed.": "已准备安装 UniGetUI {0}", "The update process will start after closing UniGetUI": "更新过程将在 UniGetUI 关闭后开始", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI 当前以管理员身份运行,这并不推荐。以管理员身份运行 UniGetUI 时,从 UniGetUI 启动的每一项操作都将拥有管理员权限。您仍然可以继续使用该程序,但我们强烈建议不要以管理员权限运行 UniGetUI。", "Share anonymous usage data": "共享匿名使用数据", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI 收集匿名使用数据,以改善用户体验。", "Accept": "接受", - "You have installed WingetUI Version {0}": "您已安装 WingetUI 版本 {0} ", + "You have installed UniGetUI Version {0}": "您已安装 UniGetUI 版本 {0} ", "Disclaimer": "免责声明", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI 与任何兼容的软件包管理器均无关。UniGetUI 是一个独立项目。", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果没有众多贡献者的帮助,WingetUI 是不可能实现的。感谢大家 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI 使用以下库。如果没有它们,就没有 WingetUI。", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果没有众多贡献者的帮助,UniGetUI 是不可能实现的。感谢大家 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI 使用以下库。如果没有它们,UniGetUI 将不可能实现。", "{0} homepage": "{0} 主页", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI 已经由志愿翻译人员翻译成了 40 多种语言,感谢他们的辛勤工作!🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI 已经由志愿翻译人员翻译成了 40 多种语言,感谢他们的辛勤工作!🤝", "Verbose": "详情", "1 - Errors": "1 - 错误", "2 - Warnings": "2 - 警告", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "你以 {0}(@{1})的身份登录", "Nice! Backups will be uploaded to a private gist on your account": "很好!备份将上传到您账户上的一个私有代码片段。", "Select backup": "选择备份", - "WingetUI Settings": "WingetUI 设置", + "UniGetUI Settings": "UniGetUI 设置", "Allow pre-release versions": "允许预发布版本", "Apply": "应用", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "出于安全原因,自定义命令行参数默认处于禁用状态。前往 UniGetUI 安全设置可更改此项。", "Go to UniGetUI security settings": "前往 UniGetUI 安全设置", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "每次安装、升级或卸载{0}软件包时,将默认应用以下选项。", "Package's default": "软件包默认", @@ -160,6 +169,7 @@ "Username": "用户名", "Password": "密码", "Credentials": "凭据", + "It is not guaranteed that the provided credentials will be stored safely": "无法保证所提供的凭据会被安全存储", "Partially": "部分", "Package manager": "软件包管理器", "Compatible with proxy": "兼容代理", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} 已启用且准备就绪", "{pm} version:": "{pm} 版本:", "{pm} was not found!": "找不到 {pm} !", - "You may need to install {pm} in order to use it with WingetUI.": "您可能需要安装 {pm} 才能将其与 WingetUI 一起使用。 ", - "Scoop Installer - WingetUI": "Scoop 安装程序 - WingetUI", - "Scoop Uninstaller - WingetUI": "Scoop 卸载程序 - WingetUI", - "Clearing Scoop cache - WingetUI": "清理 Scoop 缓存 - WingetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "您可能需要安装 {pm} 才能将其与 UniGetUI 一起使用。 ", + "Scoop Installer - UniGetUI": "Scoop 安装程序 - UniGetUI", + "Scoop Uninstaller - UniGetUI": "Scoop 卸载程序 - UniGetUI", + "Clearing Scoop cache - UniGetUI": "清理 Scoop 缓存 - UniGetUI", + "Restart UniGetUI to fully apply changes": "重启 UniGetUI 以完全应用更改", "Restart UniGetUI": "重启 UniGetUI", "Manage {0} sources": "管理 {0} 安装源", "Add source": "添加安装源", "Add": "添加", + "Source name": "源名称", + "Source URL": "源 URL", "Other": "其它", + "No minimum age": "无最短时长", "1 day": "1 天", "{0} days": "{0} 天", + "Custom...": "自定义...", "{0} minutes": "{0} 分钟", "1 hour": "1 小时", "{0} hours": "{0} 小时", "1 week": "1 周", - "WingetUI Version {0}": "WingetUI 版本 {0}", + "Supports release dates": "支持发布日期", + "Release date support per package manager": "各包管理器的发布日期支持情况", + "UniGetUI Version {0}": "UniGetUI 版本 {0}", "Search for packages": "搜索软件包", "Local": "本地", "OK": "确定", @@ -200,11 +217,13 @@ "Enabled": "已启用", "Disabled": "已禁用", "More info": "更多信息", + "GitHub account": "GitHub 账户", "Log in with GitHub to enable cloud package backup.": "用 GitHub 登录以启用云软件包备份。", "More details": "更多详情", "Log in": "登录", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "如果你启用了云备份,它将作为 GitHub Gist 保存到该账户中", "Log out": "注销", + "About UniGetUI": "关于 UniGetUI", "About": "关于", "Third-party licenses": "第三方许可证", "Contributors": "贡献者", @@ -212,6 +231,7 @@ "Manage shortcuts": "管理快捷方式", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI 检测到以下桌面快捷方式,这些快捷方式会在未来升级时自动删除", "Do you really want to reset this list? This action cannot be reverted.": "你确实想重置此列表吗 ?此操作无法撤销。", + "Open in explorer": "在资源管理器中打开", "Remove from list": "从列表中删除", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "当检测到新的快捷方式时,自动删除它们,而不是显示此对话框。", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI 收集匿名使用数据的唯一目的是了解和改善用户体验。", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "您是否允许 UniGetUI 收集和发送匿名使用统计数据 ?其唯一目的是了解和改善用户体验", "Decline": "拒绝", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "个人信息不会被收集也不会被发送,且收集的数据都已被匿名化,因此无法通过它们回溯到您。", - "About WingetUI": "关于 UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI 应用程序为您基于命令行的软件包管理器提供了一体化图形界面,使得管理软件变得更容易。", + "Toggle navigation panel": "切换导航面板", + "Minimize": "最小化", + "Maximize": "最大化", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI 应用程序为您基于命令行的软件包管理器提供了一体化图形界面,使得管理软件变得更容易。", "Useful links": "帮助链接", + "UniGetUI Homepage": "UniGetUI 主页", "Report an issue or submit a feature request": "报告问题或者提交功能请求", + "UniGetUI Repository": "UniGetUI 仓库", "View GitHub Profile": "查看 GitHub 个人资料", - "WingetUI License": "WingetUI 许可证", - "Using WingetUI implies the acceptation of the MIT License": "使用 WingetUI 意味着接受 MIT 许可证 ", + "UniGetUI License": "UniGetUI 许可证", + "Using UniGetUI implies the acceptation of the MIT License": "使用 UniGetUI 意味着接受 MIT 许可证 ", "Become a translator": "成为翻译人员", "View page on browser": "在浏览器中查看页面", "Copy to clipboard": "复制到剪贴板", "Export to a file": "导出到文件", "Log level:": "日志级别:", "Reload log": "重载日志", + "Export log": "导出日志", + "UniGetUI Log": "UniGetUI 日志", "Text": "文本", "Change how operations request administrator rights": "更改操作请求管理员权限的方式", "Restrictions on package operations": "对包操作的限制", @@ -271,7 +297,7 @@ "Leave empty for default": "选择默认路径请留空", "Add a timestamp to the backup file names": "在备份文件名中添加时间戳", "Backup and Restore": "备份和还原", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "启用后台 API(用于 WingetUI 小组件与分享,端口 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "启用后台 API(用于 UniGetUI 小组件与分享,端口 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "在尝试执行需要互联网连接的任务之前,请等待设备连接到互联网。", "Disable the 1-minute timeout for package-related operations": "禁用包相关操作的 1 分钟超时", "Use installed GSudo instead of UniGetUI Elevator": "使用已安装的 GSudo ,而不是 UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "遥测", "Manage UniGetUI settings": "管理 UniGetUI 设置", "Related settings": "相关设置", - "Update WingetUI automatically": "自动更新 UniGetUI", + "Update UniGetUI automatically": "自动更新 UniGetUI", "Check for updates": "检查更新", "Install prerelease versions of UniGetUI": "安装 UniGetUI 的预发布版本", "Manage telemetry settings": "管理遥测设置", @@ -295,17 +321,17 @@ "Import": "导入", "Export settings to a local file": "导出设置到本地文件", "Export": "导出", - "Reset WingetUI": "重置 WingetUI", "Reset UniGetUI": "重置 UniGetUI", "User interface preferences": "用户界面首选项", "Application theme, startup page, package icons, clear successful installs automatically": "应用程序主题、起始页、软件包图标、自动清除安装成功的记录", "General preferences": "通用首选项", - "WingetUI display language:": "UniGetUI 显示语言:", + "UniGetUI display language:": "UniGetUI 显示语言:", "Is your language missing or incomplete?": "您的语言翻译是否缺失或不完整? ", "Appearance": "外观", "UniGetUI on the background and system tray": "UniGetUI 位于后台和系统托盘", "Package lists": "软件包列表", "Close UniGetUI to the system tray": "关闭 UniGetUI 时将它隐藏到系统托盘", + "Manage UniGetUI autostart behaviour": "管理 UniGetUI 自动启动行为", "Show package icons on package lists": "在软件包列表中显示软件包图标", "Clear cache": "清除缓存", "Select upgradable packages by default": "默认选择可升级软件包", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "请注意,并非所有的软件包管理器都能完全支持此功能", "Proxy URL": "代理网址", "Enter proxy URL here": "在此输入代理网址", + "Authenticate to the proxy with a user and a password": "使用用户名和密码对代理进行身份验证", + "Internet and proxy settings": "网络和代理设置", "Package manager preferences": "软件包管理器首选项", "Ready": "就绪", "Not found": "未找到", "Notification preferences": "通知首选项", "Notification types": "通知类型", "The system tray icon must be enabled in order for notifications to work": "必须启用系统托盘图标才能让通知生效", - "Enable WingetUI notifications": "启用 WingetUI 的通知", + "Enable UniGetUI notifications": "启用 UniGetUI 的通知", "Show a notification when there are available updates": "有可用更新时推送通知", "Show a silent notification when an operation is running": "当操作正在运行时显示一个静默通知", "Show a notification when an operation fails": "当操作失败时显示通知", "Show a notification when an operation finishes successfully": "当操作成功完成时显示通知", "Concurrency and execution": "并发与执行", "Automatic desktop shortcut remover": "桌面快捷方式自动删除程序", + "Choose how many operations should be performed in parallel": "选择并行执行的操作数量", "Clear successful operations from the operation list after a 5 second delay": "延迟 5 秒后从操作列表中清除成功的操作", "Download operations are not affected by this setting": "此设置不影响下载操作", "Try to kill the processes that refuse to close when requested to": "尝试终止那些在收到关闭请求时拒绝关闭的进程", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "选择要使用的可执行文件。以下列表显示了 UniGetUI 找到的可执行文件", "Current executable file:": "当前可执行文件:", "Ignore packages from {pm} when showing a notification about updates": "在显示更新通知时忽略来自 {pm} 的软件包", + "Update security": "更新安全设置", + "Use global setting": "使用全局设置", + "e.g. 10": "例如 10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} 不为其软件包提供发布日期,因此此设置不会生效", + "Override the global minimum update age for this package manager": "为此包管理器覆盖全局最短更新时间", + "Minimum age for updates": "更新最短时长", + "Custom minimum age (days)": "自定义最短时长(天)", "View {0} logs": "查看 {0} 日志", + "If Python cannot be found or is not listing packages but is installed on the system, ": "如果找不到 Python,或者系统中已安装 Python 但无法列出软件包, ", "Advanced options": "高级选项", "Reset WinGet": "重置 WinGet", "This may help if no packages are listed": "未列出任何软件包时此选项可能有帮助", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "打开程序时清理 Scoop", "Use system Chocolatey": "使用系统 Chocolatey", "Default vcpkg triplet": "默认 vcpkg triplet", + "Change vcpkg root location": "更改 vcpkg 根目录位置", "Language, theme and other miscellaneous preferences": "语言、主题和其它首选项", "Show notifications on different events": "显示各种事件的通知", "Change how UniGetUI checks and installs available updates for your packages": "更改 UniGetUI 检查和安装软件包可用更新的方式", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "网络连接为按流量计费时,请勿自动安装更新", "Do not automatically install updates when the device runs on battery": "设备使用电池供电时不自动安装更新", "Do not automatically install updates when the battery saver is on": "开启省电模式时,请勿自动安装更新", + "Only show updates that are at least the specified number of days old": "仅显示至少已发布指定天数的更新", "Change how UniGetUI handles install, update and uninstall operations.": "更改 UniGetUI 处理安装、更新和卸载操作的方式。", "Package Managers": "包管理器", "More": "更多", - "WingetUI Log": "WingetUI 日志", "Package Manager logs": "软件包管理器日志", "Operation history": "操作历史", "Help": "帮助", + "Quit UniGetUI": "退出 UniGetUI", "Order by:": "排序", "Name": "名称", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "软件包名称或 ID", "Exact match": "精确匹配", "Show similar packages": "显示相似软件包", + "Nothing to share": "没有可分享的内容", + "Please select a package first.": "请先选择一个软件包。", + "Share link copied": "分享链接已复制", + "The share link for {0} has been copied to the clipboard.": "{0} 的分享链接已复制到剪贴板。", "No results were found matching the input criteria": "未找到与输入条件匹配的结果", "No packages were found": "未找到软件包", "Loading packages": "正在加载软件包", @@ -440,7 +483,11 @@ "Package bundle": "软件捆绑包", "Could not create bundle": "无法创建捆绑包", "The package bundle could not be created due to an error.": "无法创建软件捆绑包,发生了错误。", + "Unsaved changes": "未保存的更改", + "Discard changes": "放弃更改", + "You have unsaved changes in the current bundle. Do you want to discard them?": "当前捆绑包中有未保存的更改。您要放弃它们吗?", "Bundle security report": "捆绑包安全报告", + "The bundle contained restricted content": "该捆绑包包含受限内容", "Hooray! No updates were found.": "好极了!没有待更新的软件!", "Everything is up to date": "所有软件包均已为最新版", "Uninstall selected packages": "卸载所选软件包", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "Windows 的经典软件包管理器。您可以在其中找到所有需要的东西。
包括:通用软件", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "一个含有所有为微软 .NET 生态设计的工具和可执行程序的存储库。
包括:与 .NET 相关的工具和脚本\n", "NuPkg (zipped manifest)": "NuPkg(压缩清单)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "适用于 macOS(或 Linux)的缺失包管理器。
包含:Formulae、Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS 的软件包管理器。其中包含大量库和其它实用程序,为 JavaScript 世界增添色彩
包括:Node JavaScript 库和其他相关实用程序。", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python 的软件包管理器。包含所有 Python 的库以及其它与 Python 相关的实用工具。
包括:Python 包和相关实用工具", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell 的软件包管理器。可用于寻找扩展 PowerShell 功能的库和脚本。
包括:模块、脚本、Cmdlets\n", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "操作正在排队中(位置 {0})……", "Click here for more details": "单击此处可获取更多详情", "Operation canceled by user": "用户取消了操作", + "Running PreOperation ({0}/{1})...": "正在运行 PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0}/{1} 失败,且被标记为必需。正在中止...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0}/{1} 已完成,结果为 {2}", "Starting operation...": "开始操作...", + "Running PostOperation ({0}/{1})...": "正在运行 PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0}/{1} 失败,且被标记为必需。正在中止...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0}/{1} 已完成,结果为 {2}", "{package} installer download": "{package} 安装程序下载", "{0} installer is being downloaded": "正在下载 {0} 安装程序", "Download succeeded": "下载成功", @@ -556,14 +610,12 @@ "Portable mode": "便携模式", "DEBUG BUILD": "调试构建", "Available Updates": "可用更新", - "Show WingetUI": "显示 WingetUI", + "Show UniGetUI": "显示 UniGetUI", "Quit": "退出", "Attention required": "请注意", "Restart required": "需要重启", "1 update is available": "有 1 个可用更新", "{0} updates are available": "{0} 个可用更新", - "WingetUI Homepage": "WingetUI 主页", - "WingetUI Repository": "WingetUI 存储库", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "在这里,您可以更改 UniGetUI 针对以下快捷方式的行为。勾选则 UniGetUI 会删除未来升级时创建的快捷方式。取消勾选将保持快捷方式不变", "Manual scan": "手动扫描", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "将扫描你桌面上现有的快捷方式,请选择你要保留和删除的内容。", @@ -583,7 +635,6 @@ "Restart later": "稍后重启", "An error occurred:": "出现错误:", "I understand": "我明白", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI 已使用管理员身份运行,但不建议这样做。当以管理员身份运行 WingetUI 时,WingetUI 执行的所有操作都将具有管理员权限。您仍然可以使用此程序,但我们强烈建议您不要用管理员权限运行 WingetUI 。", "WinGet was repaired successfully": "已成功修复 WinGet", "It is recommended to restart UniGetUI after WinGet has been repaired": "建议在 WinGet 完成修复之后重新启动 UniGetUI", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "注意:可在 UniGetUI 设置的 WinGet 部分中,禁用此故障排除程序", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. 你的软件包将被添加进捆绑包。你可以继续添加软件包,或者导出捆绑包。", "Which backup do you want to open?": "你想要打开哪个备份?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "选择你要打开的备份。稍后你将能看到要安装哪些软件包。", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "有正在进行的操作。退出 WingetUI 可能会导致它们失败。您确定要继续吗 ?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "有正在进行的操作。退出 UniGetUI 可能会导致它们失败。您确定要继续吗 ?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI 或它的某些组件缺失或已损坏。", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "强烈建议重新安装 UniGetUI 以解决该情况。", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "参考 UniGetUI 日志可获取有关受影响文件的更多详细信息。", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "在此处写入进程名称,以英文逗号 (,) 分隔", "Unset or unknown": "未设置或未知", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "有关此问题的更多信息,请查看命令行输出或参考操作历史记录。", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "此软件包缺少截图或图标吗?可以向我们的开放公共数据库添加缺失的图标或截图,为 WingetUI 做出贡献。", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "此软件包缺少截图或图标吗?可以向我们的开放公共数据库添加缺失的图标或截图,为 UniGetUI 做出贡献。", "Become a contributor": "成为贡献者", "Save": "保存", "Update to {0} available": "可更新至 {0}", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "启用自动 WinGet 故障排除程序", "Enable an [experimental] improved WinGet troubleshooter": "启用【实验性】改进版 Winget 疑难解答程序。", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "将“未找到适用更新”错误而失败的更新添加进“已忽略更新”列表中。", - "Restart WingetUI to fully apply changes": "重启 UniGetUI 以应用所有更改", - "Restart WingetUI": "重启 UniGetUI", "Invalid selection": "无效选择", "No package was selected": "未选择任何软件包", "More than 1 package was selected": "选择了多个软件包", @@ -684,6 +733,37 @@ "Log out failed: ": "登录失败:", "Package backup settings": "软件包备份设置", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "关于 UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI 应用程序为您基于命令行的软件包管理器提供了一体化图形界面,使得管理软件变得更容易。", + "You have installed WingetUI Version {0}": "您已安装 WingetUI 版本 {0} ", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果没有众多贡献者的帮助,WingetUI 是不可能实现的。感谢大家 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI 使用以下库。如果没有它们,就没有 WingetUI。", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI 已经由志愿翻译人员翻译成了 40 多种语言,感谢他们的辛勤工作!🤝", + "WingetUI Settings": "WingetUI 设置", + "You may need to install {pm} in order to use it with WingetUI.": "您可能需要安装 {pm} 才能将其与 WingetUI 一起使用。 ", + "Scoop Installer - WingetUI": "Scoop 安装程序 - WingetUI", + "Scoop Uninstaller - WingetUI": "Scoop 卸载程序 - WingetUI", + "Clearing Scoop cache - WingetUI": "清理 Scoop 缓存 - WingetUI", + "WingetUI Version {0}": "WingetUI 版本 {0}", + "WingetUI License": "WingetUI 许可证", + "Using WingetUI implies the acceptation of the MIT License": "使用 WingetUI 意味着接受 MIT 许可证 ", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "启用后台 API(用于 WingetUI 小组件与分享,端口 7058)", + "Update WingetUI automatically": "自动更新 UniGetUI", + "Reset WingetUI": "重置 WingetUI", + "WingetUI display language:": "UniGetUI 显示语言:", + "Manage WingetUI autostart behaviour": "管理 WingetUI 自动启动行为", + "Enable WingetUI notifications": "启用 WingetUI 的通知", + "WingetUI Log": "WingetUI 日志", + "Show WingetUI": "显示 WingetUI", + "WingetUI Homepage": "WingetUI 主页", + "WingetUI Repository": "WingetUI 存储库", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI 已使用管理员身份运行,但不建议这样做。当以管理员身份运行 WingetUI 时,WingetUI 执行的所有操作都将具有管理员权限。您仍然可以使用此程序,但我们强烈建议您不要用管理员权限运行 WingetUI 。", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "有正在进行的操作。退出 WingetUI 可能会导致它们失败。您确定要继续吗 ?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "此软件包缺少截图或图标吗?可以向我们的开放公共数据库添加缺失的图标或截图,为 WingetUI 做出贡献。", + "Restart WingetUI to fully apply changes": "重启 UniGetUI 以应用所有更改", + "Restart WingetUI": "重启 UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "通过系统设置管理 UniGetUI 开机自动启动", "(Number {0} in the queue)": "(队伍中的第{0}个)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "Aaron Liu, BUGP Association, ciaran, Cololi, CnYeSheng, adfnekc, @Ardenet, @arthurfsy2, @bai0012, @SpaceTimee, Yisme, @dongfengweixiao, @seanyu0, @Sigechaishijie, @enKl03B, @xiaopangju", "0 packages found": "未找到软件包", diff --git a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json index a94583273f..8bbccd2845 100644 --- a/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json +++ b/src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_zh_TW.json @@ -58,6 +58,10 @@ "Abort uninstall if pre-uninstall command fails": "如果解除安裝前指令失敗,則中止解除安裝", "Command-line to run:": "命令列執行:", "Save and close": "儲存並關閉", + "General": "一般", + "Architecture & Location": "架構與位置", + "Command-line": "命令列", + "Pre/Post install": "安裝前/安裝後", "Run as admin": "以系統管理員身分執行", "Interactive installation": "互動式安裝", "Skip hash check": "略過雜湊值檢查", @@ -71,6 +75,8 @@ "Manage ignored updates": "管理已略過的更新", "The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "檢查更新時將不會考慮此處列出的套件。按兩下它們或按右鍵來停止略過它們的更新。", "Reset list": "重設清單", + "Do you really want to reset the ignored updates list? This action cannot be reverted": "您確定要重設已忽略更新清單嗎?此操作無法還原", + "No ignored updates": "沒有已忽略的更新", "Package Name": "套件名稱", "Package ID": "套件識別碼", "Ignored version": "已略過的版本", @@ -86,6 +92,7 @@ "This operation is running interactively.": "此操作以互動方式執行。", "You will likely need to interact with the installer.": "您可能需要與安裝程式進行互動。", "Integrity checks skipped": "跳過完整性檢查", + "Integrity checks will not be performed during this operation.": "此操作期間不會執行完整性檢查。", "Proceed at your own risk.": "請自行承擔風險。", "Close": "關閉", "Loading...": "正在載入...", @@ -120,16 +127,17 @@ "optional": "可選", "UniGetUI {0} is ready to be installed.": "UniGetUI 版本 {0} 已準備好安裝", "The update process will start after closing UniGetUI": "更新過程將在關閉 UniGetUI 後開始", + "UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI 已以系統管理員身分執行,但不建議這樣做。當 UniGetUI 以系統管理員身分執行時,從 UniGetUI 啟動的每一項操作都將具有系統管理員權限。您仍然可以使用此程式,但我們強烈建議不要以系統管理員身分執行 UniGetUI。", "Share anonymous usage data": "分享匿名使用資料", "UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI 收集匿名使用資料,以改善使用者體驗。", "Accept": "同意", - "You have installed WingetUI Version {0}": "您已經安裝 UniGetUI 版本 {0}", + "You have installed UniGetUI Version {0}": "您已經安裝 UniGetUI 版本 {0}", "Disclaimer": "免責聲明", "UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI 與任何相容的套件管理器無關。UniGetUI 是一個獨立的專案。", - "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果沒有貢獻者的幫助,UniGetUI 就沒辦法實現。感謝各位 🥳", - "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI 使用了以下函式庫。沒有它們,UniGetUI 是沒有辦法實現的。", + "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果沒有貢獻者的幫助,UniGetUI 就沒辦法實現。感謝各位 🥳", + "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI 使用以下函式庫:", "{0} homepage": "{0} 首頁", - "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "感謝貢獻翻譯人員的幫助,UniGetUI 已被翻譯成 40 多種語言。謝謝 🤝", + "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "感謝貢獻翻譯人員的幫助,UniGetUI 已被翻譯成 40 多種語言。謝謝 🤝", "Verbose": "詳細資料", "1 - Errors": "1 - 錯誤", "2 - Warnings": "2 - 警告", @@ -149,9 +157,10 @@ "You are logged in as {0} (@{1})": "您的登入帳號是{0}(@{1})", "Nice! Backups will be uploaded to a private gist on your account": "非常好!備份會上傳到您帳戶的私人 gist 中", "Select backup": "選擇備份", - "WingetUI Settings": "UniGetUI 設定", + "UniGetUI Settings": "UniGetUI 設定", "Allow pre-release versions": "允許預發行版本", "Apply": "套用", + "For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "基於安全考量,自訂命令列參數預設為停用。請前往 UniGetUI 安全性設定變更此設定。", "Go to UniGetUI security settings": "前往 UniGetUI 安全設定", "The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "每次安裝、升級或解除安裝{0}套件時,預設會套用下列選項。", "Package's default": "套件的預設值", @@ -160,6 +169,7 @@ "Username": "使用者名稱", "Password": "密碼", "Credentials": "證書", + "It is not guaranteed that the provided credentials will be stored safely": "無法保證所提供的認證資料會被安全儲存", "Partially": "部分", "Package manager": "套件管理員", "Compatible with proxy": "與 Proxy 相容", @@ -175,22 +185,29 @@ "{pm} is enabled and ready to go": "{pm} 已啟用並準備好", "{pm} version:": "{pm} 版本:", "{pm} was not found!": "沒有找到 {pm}!", - "You may need to install {pm} in order to use it with WingetUI.": "您可能需要安裝 {pm} 來與 UniGetUI 一起使用。", - "Scoop Installer - WingetUI": "Scoop 安裝程式 - UniGetUI", - "Scoop Uninstaller - WingetUI": "解除安裝 Scoop - UniGetUI", - "Clearing Scoop cache - WingetUI": "清理 Scoop 快取 - UniGetUI", + "You may need to install {pm} in order to use it with UniGetUI.": "您可能需要安裝 {pm} 來與 UniGetUI 一起使用。", + "Scoop Installer - UniGetUI": "Scoop 安裝程式 - UniGetUI", + "Scoop Uninstaller - UniGetUI": "解除安裝 Scoop - UniGetUI", + "Clearing Scoop cache - UniGetUI": "清理 Scoop 快取 - UniGetUI", + "Restart UniGetUI to fully apply changes": "重新啟動 UniGetUI 以完整套用變更", "Restart UniGetUI": "重新啟動 UniGetUI", "Manage {0} sources": "管理 {0} 個來源", "Add source": "新增來源", "Add": "新增", + "Source name": "來源名稱", + "Source URL": "來源網址", "Other": "其他", + "No minimum age": "無最短天數限制", "1 day": "1 天", "{0} days": "{0} 天", + "Custom...": "自訂...", "{0} minutes": "{0} 分鐘", "1 hour": "1 小時", "{0} hours": "{0} 小時", "1 week": "1 週", - "WingetUI Version {0}": "UniGetUI 版本 {0}", + "Supports release dates": "支援發行日期", + "Release date support per package manager": "各套件管理器的發行日期支援情況", + "UniGetUI Version {0}": "UniGetUI 版本 {0}", "Search for packages": "搜尋套件", "Local": "本機", "OK": "確定", @@ -200,11 +217,13 @@ "Enabled": "啟用", "Disabled": "禁用", "More info": "詳細資訊", + "GitHub account": "GitHub 帳戶", "Log in with GitHub to enable cloud package backup.": "使用 GitHub 登入,以啟用雲端套件備份。", "More details": "詳細資料", "Log in": "登入", "If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "如果您已啟用雲端備份,則會以 GitHub Gist 的形式儲存於此帳戶中", "Log out": "登出", + "About UniGetUI": "關於 UniGetUI", "About": "關於", "Third-party licenses": "第三方授權", "Contributors": "貢獻者", @@ -212,6 +231,7 @@ "Manage shortcuts": "桌面捷徑管理", "UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI 已偵測到以下桌面捷徑,這些捷徑可以在未來的更新中自動刪除。", "Do you really want to reset this list? This action cannot be reverted.": "您確定要重置此清單嗎?此操作無法撤銷", + "Open in explorer": "在檔案總管中開啟", "Remove from list": "從清單中移除", "When new shortcuts are detected, delete them automatically instead of showing this dialog.": "偵測到新的捷徑時,會自動刪除它們,而不是顯示此對話框。", "UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI 收集匿名使用資料的唯一目的是瞭解並改善使用者體驗。", @@ -219,19 +239,25 @@ "Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "您是否接受 UniGetUI 收集並傳送匿名使用統計資料,其唯一目的在於了解並改善使用者體驗?", "Decline": "拒絕", "No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "我們不會收集或傳送任何個人資訊,而且所收集的資料都是匿名的,因此無法追溯到您。", - "About WingetUI": "關於 UniGetUI", - "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI 是一款應用程式,透過為命令列套件管理程式提供一體化圖形介面,讓您的套件管理變得更加輕鬆。", + "Toggle navigation panel": "切換導覽面板", + "Minimize": "最小化", + "Maximize": "最大化", + "UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI 是一款應用程式,透過為命令列套件管理程式提供一體化圖形介面,讓您的套件管理變得更加輕鬆。", "Useful links": "分享連結", + "UniGetUI Homepage": "UniGetUI 首頁", "Report an issue or submit a feature request": "回報問題或提交功能需求", + "UniGetUI Repository": "UniGetUI 儲存庫", "View GitHub Profile": "檢視 GitHub 個人檔案", - "WingetUI License": "UniGetUI 授權", - "Using WingetUI implies the acceptation of the MIT License": "使用 UniGetUI 代表著您已接受 MIT 許可證", + "UniGetUI License": "UniGetUI 授權", + "Using UniGetUI implies the acceptation of the MIT License": "使用 UniGetUI 代表著您已接受 MIT 許可證", "Become a translator": "成為一位翻譯人員", "View page on browser": "在瀏覽器中顯示頁面", "Copy to clipboard": "複製到剪貼簿", "Export to a file": "匯出為檔案", "Log level:": "紀錄等級:", "Reload log": "重新載入記錄", + "Export log": "匯出紀錄", + "UniGetUI Log": "UniGetUI 紀錄", "Text": "文字", "Change how operations request administrator rights": "變更操作要求管理員權限的方式", "Restrictions on package operations": "套件操作的限制", @@ -271,7 +297,7 @@ "Leave empty for default": "預設值為空", "Add a timestamp to the backup file names": "新增一個時間戳給備份的檔案", "Backup and Restore": "備份與還原", - "Enable background api (WingetUI Widgets and Sharing, port 7058)": "啟用背景 API(UniGetUI 小工具和共享,連接埠 7058)", + "Enable background api (UniGetUI Widgets and Sharing, port 7058)": "啟用背景 API(UniGetUI 小工具和共享,連接埠 7058)", "Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "在嘗試執行需要網際網路連線的操作之前,請等待裝置連線至網際網路。", "Disable the 1-minute timeout for package-related operations": "停用與套件相關操作的 1 分鐘超時限制。", "Use installed GSudo instead of UniGetUI Elevator": "使用已安裝的 GSudo 取代 UniGetUI Elevator", @@ -286,7 +312,7 @@ "Telemetry": "搖測", "Manage UniGetUI settings": "管理 UniGetUI 設定", "Related settings": "相關設定", - "Update WingetUI automatically": "自動更新 UniGetUI", + "Update UniGetUI automatically": "自動更新 UniGetUI", "Check for updates": "檢查更新", "Install prerelease versions of UniGetUI": "安裝 UniGetUI 的預發布版本", "Manage telemetry settings": "管理遙測設定", @@ -295,17 +321,17 @@ "Import": "匯入", "Export settings to a local file": "匯出設定為本機檔案", "Export": "匯出", - "Reset WingetUI": "重設 UniGetUI", "Reset UniGetUI": "重設 UniGetUI", "User interface preferences": "使用者介面偏好設定", "Application theme, startup page, package icons, clear successful installs automatically": "應用程式主題、啟動頁面、套件圖示、自動清除成功安裝", "General preferences": "一般設定", - "WingetUI display language:": "UniGetUI 顯示語言", + "UniGetUI display language:": "UniGetUI 顯示語言", "Is your language missing or incomplete?": "你的語言遺失或是尚未完成", "Appearance": "外觀", "UniGetUI on the background and system tray": "UniGetUI 在背景和系統匣上", "Package lists": "套件清單", "Close UniGetUI to the system tray": "將 UniGetUI 關閉至系統匣", + "Manage UniGetUI autostart behaviour": "管理 UniGetUI 的自動啟動行為", "Show package icons on package lists": "在套件清單中顯示套件圖示", "Clear cache": "清除快取", "Select upgradable packages by default": "預設選擇可更新的套件", @@ -325,19 +351,22 @@ "Please note that not all package managers may fully support this feature": "請注意,並非所有套件管理員都完全支援此功能", "Proxy URL": "Proxy 網址", "Enter proxy URL here": "在這裡輸入 Proxy 伺服器網址", + "Authenticate to the proxy with a user and a password": "使用使用者名稱與密碼驗證 Proxy", + "Internet and proxy settings": "網際網路與 Proxy 設定", "Package manager preferences": "套件管理平台偏好設定", "Ready": "已就緒", "Not found": "沒有找到", "Notification preferences": "通知設定", "Notification types": "通知類型", "The system tray icon must be enabled in order for notifications to work": "必須啟用系統匣圖示,通知功能才能正常運作", - "Enable WingetUI notifications": "啟用 UniGetUI 通知", + "Enable UniGetUI notifications": "啟用 UniGetUI 通知", "Show a notification when there are available updates": "有可用更新時顯示通知", "Show a silent notification when an operation is running": "操作正在進行時顯示背景通知", "Show a notification when an operation fails": "操作失敗時顯示通知", "Show a notification when an operation finishes successfully": "操作成功完成時顯示通知", "Concurrency and execution": "同時作業與執行方式", "Automatic desktop shortcut remover": "桌面捷徑自動刪除工具", + "Choose how many operations should be performed in parallel": "選擇要同時執行的操作數量", "Clear successful operations from the operation list after a 5 second delay": "在 5 秒延遲後清除操作列表中成功的操作。", "Download operations are not affected by this setting": "下載作業不受此設定影響", "Try to kill the processes that refuse to close when requested to": "嘗試停止那些在被要求關閉時拒絕關閉的進程。", @@ -354,7 +383,15 @@ "Select the executable to be used. The following list shows the executables found by UniGetUI": "請選擇要使用的可執行檔。以下列表顯示 UniGetUI 找到的可執行檔。", "Current executable file:": "目前可執行檔:", "Ignore packages from {pm} when showing a notification about updates": "在顯示更新通知時,忽略來自 {pm} 的套件", + "Update security": "更新安全性", + "Use global setting": "使用全域設定", + "e.g. 10": "例如:10", + "{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} 不提供其套件的發行日期,因此此設定不會生效", + "Override the global minimum update age for this package manager": "覆寫此套件管理器的全域最短更新天數", + "Minimum age for updates": "更新的最短天數", + "Custom minimum age (days)": "自訂最短天數(天)", "View {0} logs": "檢視 {0} 記錄", + "If Python cannot be found or is not listing packages but is installed on the system, ": "如果找不到 Python,或系統中已安裝 Python 但未列出任何套件, ", "Advanced options": "進階選項", "Reset WinGet": "重設 WinGet", "This may help if no packages are listed": "這可能對於沒有套件的狀況會有幫助", @@ -368,6 +405,7 @@ "Enable Scoop cleanup on launch": "啟動時自動清理 Scoop", "Use system Chocolatey": "使用系統內的 Chocolatey", "Default vcpkg triplet": "預設 Vcpkg 三重組(triplet)", + "Change vcpkg root location": "變更 vcpkg 根目錄位置", "Language, theme and other miscellaneous preferences": "語言、佈景主題與其他設定", "Show notifications on different events": "顯示不同事件的通知", "Change how UniGetUI checks and installs available updates for your packages": "變更 UniGetUI 檢查與安裝套件更新的方式", @@ -384,13 +422,14 @@ "Do not automatically install updates when the network connection is metered": "網路計量連線時,請勿自動安裝更新", "Do not automatically install updates when the device runs on battery": "當裝置使用電池供電時,請勿自動安裝更新。", "Do not automatically install updates when the battery saver is on": "開啟電池保護模式時,請勿自動安裝更新", + "Only show updates that are at least the specified number of days old": "只顯示至少已發佈指定天數的更新", "Change how UniGetUI handles install, update and uninstall operations.": "變更 UniGetUI 處理安裝、更新以及解除安裝操作的方式。", "Package Managers": "套件管理員", "More": "更多", - "WingetUI Log": "UniGetUI 紀錄", "Package Manager logs": "套件管理器紀錄", "Operation history": "操作歷史記錄", "Help": "說明", + "Quit UniGetUI": "結束 UniGetUI", "Order by:": "根據排序:", "Name": "名稱", "Id": "ID", @@ -409,6 +448,10 @@ "Both": "兩者皆是", "Exact match": "完全符合", "Show similar packages": "顯示相似的套件", + "Nothing to share": "沒有可分享的內容", + "Please select a package first.": "請先選取一個套件。", + "Share link copied": "已複製分享連結", + "The share link for {0} has been copied to the clipboard.": "已將 {0} 的分享連結複製到剪貼簿。", "No results were found matching the input criteria": "沒有符合輸入條件的結果", "No packages were found": "沒有套件被找到", "Loading packages": "正在掃描套件", @@ -440,7 +483,11 @@ "Package bundle": "套件組合", "Could not create bundle": "無法建立組合", "The package bundle could not be created due to an error.": "套件組合建立時發生錯誤,故無法完成建立。", + "Unsaved changes": "未儲存的變更", + "Discard changes": "捨棄變更", + "You have unsaved changes in the current bundle. Do you want to discard them?": "目前的套件組合中有未儲存的變更。您要捨棄它們嗎?", "Bundle security report": "綑綁式安全報告", + "The bundle contained restricted content": "套件組合包含受限制的內容", "Hooray! No updates were found.": "您現在為最新狀態", "Everything is up to date": "每項更新都是最新的", "Uninstall selected packages": "解除安裝已選取的套件", @@ -454,6 +501,7 @@ "The classical package manager for windows. You'll find everything there.
Contains: General Software": "經典的 Windows 套件管理程式。您可以在那裡找到所有東西。
包含:一般軟體", "A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.
Contains: .NET related tools and scripts": "一個充滿工具和可執行檔的儲存庫,在設計使用了 Microsoft .NET 生態系。
包含:.NET 相關的工具與腳本", "NuPkg (zipped manifest)": "NuPkg (壓縮清單)", + "The Missing Package Manager for macOS (or Linux).
Contains: Formulae, Casks": "macOS(或 Linux)缺少的套件管理器。
包含:Formulae、Casks", "Node JS's package manager. Full of libraries and other utilities that orbit the javascript world
Contains: Node javascript libraries and other related utilities": "Node JS 的套件管理程式。圍繞 Javascript 生態的完整套件庫和其他工具程式
包含:Node Javascript 函式庫和其他相關工具程式", "Python's library manager. Full of python libraries and other python-related utilities
Contains: Python libraries and related utilities": "Python 的套件管理程式。完整的 Python 套件庫和其他與 Python 相關的工具程式
包含:Python 套件和相關工具程式", "PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities
Contains: Modules, Scripts, Cmdlets": "PowerShell 的套件管理器。尋找庫和腳本以擴充 PowerShell 功能
包含:模組、腳本、Cmdlet", @@ -473,7 +521,13 @@ "Operation on queue (position {0})...": "(第{0}執行順位)", "Click here for more details": "按一下此處以瞭解更多詳細資訊", "Operation canceled by user": "操作已由使用者取消", + "Running PreOperation ({0}/{1})...": "正在執行 PreOperation ({0}/{1})...", + "PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0}/{1} 失敗,且被標記為必要步驟。正在中止...", + "PreOperation {0} out of {1} finished with result {2}": "PreOperation {0}/{1} 已完成,結果為 {2}", "Starting operation...": "開始操作...", + "Running PostOperation ({0}/{1})...": "正在執行 PostOperation ({0}/{1})...", + "PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0}/{1} 失敗,且被標記為必要步驟。正在中止...", + "PostOperation {0} out of {1} finished with result {2}": "PostOperation {0}/{1} 已完成,結果為 {2}", "{package} installer download": "{package} 下載安裝程式", "{0} installer is being downloaded": "{0} 正在下載安裝程式", "Download succeeded": "下載成功", @@ -556,14 +610,12 @@ "Portable mode": "便攜模式", "DEBUG BUILD": "偵錯建置", "Available Updates": "可用更新", - "Show WingetUI": "顯示 UniGetUI 視窗", + "Show UniGetUI": "顯示 UniGetUI 視窗", "Quit": "離開", "Attention required": "請注意", "Restart required": "需要重新啟動", "1 update is available": "一個可用的更新", "{0} updates are available": "有可用的 {0} 個更新", - "WingetUI Homepage": "UniGetUI 首頁", - "WingetUI Repository": "UniGetUI 儲存庫", "Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "在這裡,您可以更改 UniGetUI 關於以下快速鍵的行為。勾選某個快速鍵將使 UniGetUI 在未來更新時刪除它。取消勾選則會保留該快速鍵不變。", "Manual scan": "手動掃描", "Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "您桌面上的現有捷徑將被掃描,您需要選擇要保留的捷徑以及要移除的捷徑", @@ -583,7 +635,6 @@ "Restart later": "稍後重新啟動", "An error occurred:": "發生錯誤:", "I understand": "我了解", - "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI 已以管理員身份執行,但這並不推薦。當以管理員身份執行 UniGetUI 時,從 UniGetUI 啟動的每個操作都將擁有管理員權限。您仍然可以使用此程式,但我們強烈建議不要以管理員身分執行 UniGetUI。", "WinGet was repaired successfully": "WinGet 已修復成功", "It is recommended to restart UniGetUI after WinGet has been repaired": "建議在 WinGet 修復完成後,重新啟動 UniGetUI", "NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "備註:此疑難排解程式可以從 UniGetUI 設定中停用,位於 WinGet 設定中。", @@ -603,7 +654,7 @@ "4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. 您的套件已成功加入套件包。您可以繼續添加套件,或者匯出套件包", "Which backup do you want to open?": "您要開啟哪個備份?", "Select the backup you want to open. Later, you will be able to review which packages you want to install.": "選擇您要開啟的備份。稍後,您將可檢視要還原的套件/程式。", - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "目前有正在進行的操作。退出 UniGetUI 可能會導致這些操作失敗。您確定要繼續嗎?", + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "目前有正在進行的操作。退出 UniGetUI 可能會導致這些操作失敗。您確定要繼續嗎?", "UniGetUI or some of its components are missing or corrupt.": "UniGetUI 或其某些元件遺失或損毀。", "It is strongly recommended to reinstall UniGetUI to adress the situation.": "強烈建議重新安裝 UniGetUI 以解決問題。", "Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "請參閱 UniGetUI 紀錄,以取得有關受影響檔案的詳細資訊", @@ -635,7 +686,7 @@ "Write here the process names here, separated by commas (,)": "在此輸入程式名稱,並以逗號 (,) 分隔", "Unset or unknown": "尚未設定或未知", "Please see the Command-line Output or refer to the Operation History for further information about the issue.": "請參閱命令列輸出或參考操作歷史記錄以取得有關該問題的詳細資訊。", - "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "此套件沒有螢幕截圖或圖示嗎?您可以向 UniGetUI 開放資料庫提供這些項目。", + "This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "此套件沒有螢幕截圖或圖示嗎?您可以向 UniGetUI 開放資料庫提供這些項目。", "Become a contributor": "成為一位協作者", "Save": "儲存", "Update to {0} available": "{0} 有可用的更新", @@ -656,8 +707,6 @@ "Enable the automatic WinGet troubleshooter": "啟用 WinGet 自動疑難排解程式", "Enable an [experimental] improved WinGet troubleshooter": "啟用 [實驗性] 改良版的 WinGet 疑難排解工具", "Add updates that fail with a 'no applicable update found' to the ignored updates list": "將更新失敗並顯示「未找到適用更新」的項目新增至忽略更新清單", - "Restart WingetUI to fully apply changes": "重新啟動 UniGetUI 來完全套用變更", - "Restart WingetUI": "重新啟動 UniGetUI", "Invalid selection": "無效的選取", "No package was selected": "沒有套件被選取", "More than 1 package was selected": "已選取超過一個套件", @@ -684,6 +733,37 @@ "Log out failed: ": "登出失敗:", "Package backup settings": "套件備份設定", "__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.", + "About WingetUI": "關於 UniGetUI", + "WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI 是一款應用程式,透過為命令列套件管理程式提供一體化圖形介面,讓您的套件管理變得更加輕鬆。", + "You have installed WingetUI Version {0}": "您已經安裝 UniGetUI 版本 {0}", + "WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "如果沒有貢獻者的幫助,UniGetUI 就沒辦法實現。感謝各位 🥳", + "WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI 使用了以下函式庫。沒有它們,UniGetUI 是沒有辦法實現的。", + "WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "感謝貢獻翻譯人員的幫助,UniGetUI 已被翻譯成 40 多種語言。謝謝 🤝", + "WingetUI Settings": "UniGetUI 設定", + "You may need to install {pm} in order to use it with WingetUI.": "您可能需要安裝 {pm} 來與 UniGetUI 一起使用。", + "Scoop Installer - WingetUI": "Scoop 安裝程式 - UniGetUI", + "Scoop Uninstaller - WingetUI": "解除安裝 Scoop - UniGetUI", + "Clearing Scoop cache - WingetUI": "清理 Scoop 快取 - UniGetUI", + "WingetUI Version {0}": "UniGetUI 版本 {0}", + "WingetUI License": "UniGetUI 授權", + "Using WingetUI implies the acceptation of the MIT License": "使用 UniGetUI 代表著您已接受 MIT 許可證", + "Enable background api (WingetUI Widgets and Sharing, port 7058)": "啟用背景 API(UniGetUI 小工具和共享,連接埠 7058)", + "Update WingetUI automatically": "自動更新 UniGetUI", + "Reset WingetUI": "重設 UniGetUI", + "WingetUI display language:": "UniGetUI 顯示語言", + "Manage WingetUI autostart behaviour": "管理 UniGetUI 的自動啟動行為", + "Enable WingetUI notifications": "啟用 UniGetUI 通知", + "WingetUI Log": "UniGetUI 紀錄", + "Show WingetUI": "顯示 UniGetUI 視窗", + "WingetUI Homepage": "UniGetUI 首頁", + "WingetUI Repository": "UniGetUI 儲存庫", + "WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "UniGetUI 已以管理員身份執行,但這並不推薦。當以管理員身份執行 UniGetUI 時,從 UniGetUI 啟動的每個操作都將擁有管理員權限。您仍然可以使用此程式,但我們強烈建議不要以管理員身分執行 UniGetUI。", + "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "目前有正在進行的操作。退出 UniGetUI 可能會導致這些操作失敗。您確定要繼續嗎?", + "This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "此套件沒有螢幕截圖或圖示嗎?您可以向 UniGetUI 開放資料庫提供這些項目。", + "Restart WingetUI to fully apply changes": "重新啟動 UniGetUI 來完全套用變更", + "Restart WingetUI": "重新啟動 UniGetUI", + "UniGetUI": "UniGetUI", + "Manage UniGetUI autostart behaviour from the Settings app": "讓 UniGetUI 自動啟動", "(Number {0} in the queue)": "(剩餘 {0} 個項目)", "0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@yrctw, Aaron Liu, Cololi, @CnYeSheng, @Henryliu880922, @enKl03B, @StarsShine11904, @MINAX2U", "0 packages found": "找不到任何套件", diff --git a/src/UniGetUI.Core.LanguageEngine/LanguageEngine.cs b/src/UniGetUI.Core.LanguageEngine/LanguageEngine.cs index 775f53638c..67650fa333 100644 --- a/src/UniGetUI.Core.LanguageEngine/LanguageEngine.cs +++ b/src/UniGetUI.Core.LanguageEngine/LanguageEngine.cs @@ -12,6 +12,13 @@ namespace UniGetUI.Core.Language { public class LanguageEngine { + private static readonly Dictionary LocaleAliases = new(StringComparer.OrdinalIgnoreCase) + { + { "es_MX", "es-MX" }, + { "tg", "tl" }, + { "ua", "uk" }, + }; + private Dictionary MainLangDict = []; public static string SelectedLocale = "??"; @@ -45,18 +52,7 @@ public void LoadLanguage(string lang) lang = (lang ?? string.Empty).Trim(); Locale = "en"; - if (LanguageData.LanguageReference.ContainsKey(lang)) - { - Locale = lang; - } - else if (lang.Length >= 2) - { - string prefix = lang[0..2].Replace("uk", "ua"); - if (LanguageData.LanguageReference.ContainsKey(prefix)) - { - Locale = prefix; - } - } + Locale = ResolveLocale(lang); MainLangDict = LoadLanguageFile(Locale); Formatter = new() { Locale = Locale.Replace('_', '-') }; @@ -79,6 +75,64 @@ public void LoadLanguage(string lang) } } + private static string ResolveLocale(string lang) + { + foreach (string candidate in GetLocaleCandidates(lang)) + { + if (LanguageData.LanguageReference.ContainsKey(candidate)) + { + return candidate; + } + } + + return "en"; + } + + private static IEnumerable GetLocaleCandidates(string lang) + { + HashSet candidates = new(StringComparer.OrdinalIgnoreCase); + + void AddCandidate(string? candidate) + { + if (!string.IsNullOrWhiteSpace(candidate)) + { + candidates.Add(candidate.Trim()); + } + } + + string requested = (lang ?? string.Empty).Trim(); + string underscored = requested.Replace('-', '_'); + string hyphenated = requested.Replace('_', '-'); + + AddCandidate(requested); + AddCandidate(underscored); + AddCandidate(hyphenated); + + if (LocaleAliases.TryGetValue(requested, out string? requestedAlias)) + { + AddCandidate(requestedAlias); + } + + if (LocaleAliases.TryGetValue(underscored, out string? underscoredAlias)) + { + AddCandidate(underscoredAlias); + } + + string[] localeSegments = underscored.Split('_', StringSplitOptions.RemoveEmptyEntries); + if (localeSegments.Length > 0) + { + string baseLanguage = localeSegments[0]; + AddCandidate(baseLanguage); + + if (LocaleAliases.TryGetValue(baseLanguage, out string? baseLanguageAlias)) + { + AddCandidate(baseLanguageAlias); + } + } + + return candidates; + } + public Dictionary LoadLanguageFile(string LangKey) { try diff --git a/src/UniGetUI.Core.LanguageEngine/UniGetUI.Core.LanguageEngine.csproj b/src/UniGetUI.Core.LanguageEngine/UniGetUI.Core.LanguageEngine.csproj index 314633789a..fc6b27538c 100644 --- a/src/UniGetUI.Core.LanguageEngine/UniGetUI.Core.LanguageEngine.csproj +++ b/src/UniGetUI.Core.LanguageEngine/UniGetUI.Core.LanguageEngine.csproj @@ -46,10 +46,10 @@ - + - + diff --git a/src/UniGetUI.PackageEngine.Managers.Pip/Helpers/PipPkgOperationHelper.cs b/src/UniGetUI.PackageEngine.Managers.Pip/Helpers/PipPkgOperationHelper.cs index fe6bc33392..9375b3df82 100644 --- a/src/UniGetUI.PackageEngine.Managers.Pip/Helpers/PipPkgOperationHelper.cs +++ b/src/UniGetUI.PackageEngine.Managers.Pip/Helpers/PipPkgOperationHelper.cs @@ -85,15 +85,15 @@ int returnCode if (output_string.Contains("externally-managed-environment")) { - if (package.OverridenOptions.Scope != PackageScope.User) + if (!package.OverridenOptions.Pip_BreakSystemPackages) { - package.OverridenOptions.Scope = PackageScope.User; + package.OverridenOptions.Pip_BreakSystemPackages = true; return OperationVeredict.AutoRetry; } - if (!package.OverridenOptions.Pip_BreakSystemPackages) + if (package.OverridenOptions.Scope != PackageScope.User) { - package.OverridenOptions.Pip_BreakSystemPackages = true; + package.OverridenOptions.Scope = PackageScope.User; return OperationVeredict.AutoRetry; } } diff --git a/src/UniGetUI/App.xaml.cs b/src/UniGetUI/App.xaml.cs index 970f5826cb..33171222b3 100644 --- a/src/UniGetUI/App.xaml.cs +++ b/src/UniGetUI/App.xaml.cs @@ -185,7 +185,7 @@ private void RegisterErrorHandling() "An interal error occurred. Please view the log for further details." ); MainWindow.ErrorBanner.IsOpen = true; - Button button = new() { Content = CoreTools.Translate("WingetUI Log") }; + Button button = new() { Content = CoreTools.Translate("UniGetUI Log") }; button.Click += (sender, args) => MainWindow.NavigationPage.UniGetUILogs_Click(sender, args); MainWindow.ErrorBanner.ActionButton = button; @@ -233,7 +233,7 @@ private void RegisterErrorHandling() "An interal error occurred. Please view the log for further details." ); MainWindow.ErrorBanner.IsOpen = true; - Button button = new() { Content = CoreTools.Translate("WingetUI Log") }; + Button button = new() { Content = CoreTools.Translate("UniGetUI Log") }; if (MainWindow.NavigationPage is not null) { // MainWindow.NavigationPage could have not been loaded yet button.Click += (s, a) => diff --git a/src/UniGetUI/MainWindow.xaml.cs b/src/UniGetUI/MainWindow.xaml.cs index 160b6e9962..4d8d034b98 100644 --- a/src/UniGetUI/MainWindow.xaml.cs +++ b/src/UniGetUI/MainWindow.xaml.cs @@ -484,9 +484,9 @@ private void LoadTrayMenu() { InstalledPackages, CoreTools.Translate("Installed Packages") }, { AboutUniGetUI, - CoreTools.Translate("WingetUI Version {0}", CoreData.VersionName) + CoreTools.Translate("UniGetUI Version {0}", CoreData.VersionName) }, - { ShowUniGetUI, CoreTools.Translate("Show WingetUI") }, + { ShowUniGetUI, CoreTools.Translate("Show UniGetUI") }, { QuitUniGetUI, CoreTools.Translate("Quit") }, }; @@ -525,7 +525,7 @@ private void LoadTrayMenu() NavigationPage.NavigateTo(PageType.Installed); Activate(); }; - AboutUniGetUI.Label = CoreTools.Translate("WingetUI Version {0}", CoreData.VersionName); + AboutUniGetUI.Label = CoreTools.Translate("UniGetUI Version {0}", CoreData.VersionName); ShowUniGetUI.ExecuteRequested += (_, _) => { Activate(); diff --git a/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml b/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml index 1253460dd3..acb51fba8a 100644 --- a/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml +++ b/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml @@ -22,9 +22,9 @@ FontFamily="Segoe UI Variable Display" FontSize="24" FontWeight="Bold" - Text="About WingetUI" + Text="About UniGetUI" /> - + - + - + diff --git a/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml.cs b/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml.cs index c58a80b0aa..8cc9405a85 100644 --- a/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml.cs +++ b/src/UniGetUI/Pages/AboutPages/AboutUniGetUI.xaml.cs @@ -16,7 +16,7 @@ public AboutUniGetUI() { InitializeComponent(); VersionText.Text = CoreTools.Translate( - "You have installed WingetUI Version {0}", + "You have installed UniGetUI Version {0}", CoreData.VersionName ); DisclaimerBanner.Title = CoreTools.Translate("Disclaimer"); diff --git a/src/UniGetUI/Pages/AboutPages/Contributors.xaml b/src/UniGetUI/Pages/AboutPages/Contributors.xaml index 40b49cd3c7..d6ac760d8d 100644 --- a/src/UniGetUI/Pages/AboutPages/Contributors.xaml +++ b/src/UniGetUI/Pages/AboutPages/Contributors.xaml @@ -23,7 +23,7 @@ FontWeight="Bold" Text="Contributors" /> - + diff --git a/src/UniGetUI/Pages/AboutPages/ThirdPartyLicenses.xaml b/src/UniGetUI/Pages/AboutPages/ThirdPartyLicenses.xaml index 5c53ed4b89..2da5854309 100644 --- a/src/UniGetUI/Pages/AboutPages/ThirdPartyLicenses.xaml +++ b/src/UniGetUI/Pages/AboutPages/ThirdPartyLicenses.xaml @@ -21,9 +21,9 @@ FontFamily="Segoe UI Variable Display" FontSize="24" FontWeight="Bold" - Text="WingetUI License" + Text="UniGetUI License" /> - + - + diff --git a/src/UniGetUI/Pages/AboutPages/Translators.xaml b/src/UniGetUI/Pages/AboutPages/Translators.xaml index 3fb3a63bd2..c47c535866 100644 --- a/src/UniGetUI/Pages/AboutPages/Translators.xaml +++ b/src/UniGetUI/Pages/AboutPages/Translators.xaml @@ -23,7 +23,7 @@ FontWeight="Bold" Text="Translators" /> - + AskContinueClosing_RunningOps() var d = DialogFactory.Create(); d.Title = CoreTools.Translate("Operation in progress"); d.Content = CoreTools.Translate( - "There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?" + "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?" ); d.PrimaryButtonText = CoreTools.Translate("Quit"); d.SecondaryButtonText = CoreTools.Translate("Cancel"); diff --git a/src/UniGetUI/Pages/DialogPages/PackageDetailsPage.xaml b/src/UniGetUI/Pages/DialogPages/PackageDetailsPage.xaml index 6b2d131ae6..53cda36672 100644 --- a/src/UniGetUI/Pages/DialogPages/PackageDetailsPage.xaml +++ b/src/UniGetUI/Pages/DialogPages/PackageDetailsPage.xaml @@ -202,7 +202,7 @@ diff --git a/src/UniGetUI/Pages/MainView.xaml.cs b/src/UniGetUI/Pages/MainView.xaml.cs index b184047dbb..54748d1431 100644 --- a/src/UniGetUI/Pages/MainView.xaml.cs +++ b/src/UniGetUI/Pages/MainView.xaml.cs @@ -528,7 +528,7 @@ Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e ) { (VersionMenuItem as MenuFlyoutItem).Text = CoreTools.Translate( - "WingetUI Version {0}", + "UniGetUI Version {0}", CoreData.VersionName ); MoreNavButtonMenu.ShowAt(sender as FrameworkElement); diff --git a/src/UniGetUI/Pages/SettingsPages/GeneralPages/Experimental.xaml b/src/UniGetUI/Pages/SettingsPages/GeneralPages/Experimental.xaml index 545a84d864..dc2d0a3cdb 100644 --- a/src/UniGetUI/Pages/SettingsPages/GeneralPages/Experimental.xaml +++ b/src/UniGetUI/Pages/SettingsPages/GeneralPages/Experimental.xaml @@ -36,7 +36,7 @@ CornerRadius="8,8,0,0" SettingName="DisableApi" StateChanged="ShowRestartBanner" - Text="Enable background api (WingetUI Widgets and Sharing, port 7058)" + Text="Enable background api (UniGetUI Widgets and Sharing, port 7058)" /> @@ -65,7 +65,7 @@ diff --git a/src/UniGetUI/Pages/SettingsPages/GeneralPages/Notifications.xaml b/src/UniGetUI/Pages/SettingsPages/GeneralPages/Notifications.xaml index 809dfe9d6c..3a293047f8 100644 --- a/src/UniGetUI/Pages/SettingsPages/GeneralPages/Notifications.xaml +++ b/src/UniGetUI/Pages/SettingsPages/GeneralPages/Notifications.xaml @@ -38,7 +38,7 @@ x:Name="DisableNotifications" CornerRadius="8" SettingName="DisableNotifications" - Text="Enable WingetUI notifications" + Text="Enable UniGetUI notifications" /> false; - public string ShortTitle => CoreTools.Translate("WingetUI Settings"); + public string ShortTitle => CoreTools.Translate("UniGetUI Settings"); public event EventHandler? RestartRequired { diff --git a/src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml.cs b/src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml.cs index a17d60af8f..e0c77ce121 100644 --- a/src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml.cs +++ b/src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml.cs @@ -258,7 +258,7 @@ protected override void OnNavigatedTo(NavigationEventArgs e) "Utilities", "install_scoop.cmd" ), - CoreTools.Translate("Scoop Installer - WingetUI") + CoreTools.Translate("Scoop Installer - UniGetUI") ); RestartRequired?.Invoke(this, new()); }; @@ -280,7 +280,7 @@ protected override void OnNavigatedTo(NavigationEventArgs e) "Utilities", "uninstall_scoop.cmd" ), - CoreTools.Translate("Scoop Uninstaller - WingetUI") + CoreTools.Translate("Scoop Uninstaller - UniGetUI") ); RestartRequired?.Invoke(this, new()); }; @@ -301,7 +301,7 @@ protected override void OnNavigatedTo(NavigationEventArgs e) "Utilities", "scoop_cleanup.cmd" ), - CoreTools.Translate("Clearing Scoop cache - WingetUI"), + CoreTools.Translate("Clearing Scoop cache - UniGetUI"), RunAsAdmin: true ); }; @@ -642,7 +642,7 @@ void ApplyManagerState(bool ShowVersion = false) .Translate("{pm} was not found!") .Replace("{pm}", Manager.DisplayName); ManagerStatusBar.Message = CoreTools - .Translate("You may need to install {pm} in order to use it with WingetUI.") + .Translate("You may need to install {pm} in order to use it with UniGetUI.") .Replace("{pm}", Manager.DisplayName); } } diff --git a/src/UniGetUI/Pages/SettingsPages/SettingsBasePage.xaml.cs b/src/UniGetUI/Pages/SettingsPages/SettingsBasePage.xaml.cs index 63f46a8f7a..add452cf30 100644 --- a/src/UniGetUI/Pages/SettingsPages/SettingsBasePage.xaml.cs +++ b/src/UniGetUI/Pages/SettingsPages/SettingsBasePage.xaml.cs @@ -46,12 +46,12 @@ public SettingsBasePage(bool isManagers) ); RestartRequired.Message = CoreTools.Translate( - "Restart WingetUI to fully apply changes" + "Restart UniGetUI to fully apply changes" ); var RestartButton = new Button { HorizontalAlignment = HorizontalAlignment.Right, - Content = CoreTools.Translate("Restart WingetUI"), + Content = CoreTools.Translate("Restart UniGetUI"), }; RestartButton.Click += (_, _) => MainApp.Instance.KillAndRestart(); RestartRequired.ActionButton = RestartButton;